* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.header__button {
    padding: 14px 12px;  
    border-radius: 4px;
    width: 160px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header_login_button {
        font-family: 'Inter', sans-serif;

    padding: 14px 12px;
    border-radius: 4px;
    width: 125px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border:1px solid #CDA048;
    color: black;
}

.button {
    /* display: inline-block; */
    padding: 20px 24px;
    border-radius: 4px;
    width: 250px;
    height: 60px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.response-message{
    color: black;
}
.button--primary {
    background-color: #c9a55c;
    color: #fff;
    border: none;
}

.button--primary:hover {
    background-color: #b89348;
}


.button--outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.button--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header block */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10px;
    position: relative;
    z-index: 2;
    border: none;
    border-bottom: 3px solid rgba(39, 29, 29, 0.1);
}

.header__divider {
    /* border-left: 3px solid rgba(39, 29, 29, 0.1); */
    height: 75px;
}

.header__logo {
    flex: 0 0 10%;
    padding: 16px 48px 0 0;
    margin-left: 2%;

}

.group_divs {
    flex: 0 0 50%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

/* .header__logo img{

    width: 200px;
    
} */
.header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.header__contact {
    flex: 0 0 26%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
    margin-right: 2%;
}

.header__contact a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;

}

.header-phone-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services__label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #CDA048;
    margin-bottom: 2px;
}
.header__phone {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

/* Navigation component */
.nav {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;

}

.nav__item {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15.03px;
}

.nav__link {
    color: black;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #c9a55c;
}


/*  for added hamburger menu so you should have to specify me */
.hamburger span {
    width: 25px;
    height: 3px;
    background: black;
    border-radius: 2px;
}

/*  for mobile responsiveness working  */

.hamburger {
    display: none;
    /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.hamburger__line {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.mobile-menu--active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu__logo img {
    width: 240px;
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu__close-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 0;
}

.mobile-menu__close-line:first-child {
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu__close-line:last-child {
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu__nav {
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 20%;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu__item {
    margin-bottom: 30px;
}

.mobile-menu__link {
    font-family: 'Inter', sans-serif;

    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #c9a55c;
}

.mobile-menu__contact {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu__phone {
    display: block;
    color: black;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 22px;

}

/* Media Queries for Responsive Design */
@media (max-width: 912px) {

    /* Show hamburger on tablet and mobile */
    .hamburger {
        display: block;
    }

    /* Hide regular navigation and contact on tablet and mobile */
    .header__nav,
    .header__contact,
    .header__divider {
        flex: 0;
        display: none;
    }

    .group_divs {
        flex: 0 !important;
    }

    .header {
        justify-content: space-between;
        padding: 10px 20px;
    }
}


.group_divs {
    flex: 0 0 45%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}



/* team profile details section css start here accordinlgy*/

.tm-profile-bg-wrapper {
    background: url("../images/team-detail.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    background-color: #fafafa;
    height: 550px !important;

}

.tm-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
    position: relative;
}



/* Content layout */
.tm-profile-content {
    display: flex;
    gap: 32px;
    position: relative;
    z-index: 10;
    /* background: url("../images/team-detail-bg.png") ; */
    /* background-size: cover; */
    /* background-position: center; */

}

/* Profile information */
.tm-profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.tm-profile-name {
    font-family: 'Jomolhari', serif;
    font-weight: 400;
    font-size: 50px;
}

.tm-profile-title {
    font-family: 'Inter', serif;
    font-weight: 500;
    color: #c9a55c;
    /* Amber color */
}

.tm-profile-bio {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;

    color: #4b5563;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Contact information */
.tm-profile-contact {
    display: flex;
    align-items: center;
    color: #6b7280;
}

.tm-profile-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.tm-profile-email {
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 16px;
    font-weight: 400;
}

.tm-profile-email:hover {
    color: #f59e0b;
}

/* Profile image */
.tm-profile-image-wrapper {
    display: flex;
    justify-content: center;
}

.tm-profile-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
}

.tm-profile-image {
    width: 100%;
}

@media (max-width:700px) {
    .tm-profile-content {
        display: flex;
        flex-direction: column;
    }

    .tm-profile-container {
        background-size: 0%;
        background-position: center;

    }

    .tm-profile-info {
        display: flex;
        align-items: center;
    }

    .tm-profile-container {
        background-size: contain;
        background-position: top;
    }

}

/* Responsive styles */
@media (min-width: 768px) {
    .tm-profile-content {
        flex-direction: row;
        /* align-items: flex-start; */
    }

    .tm-profile-info {
        width: 50%;
    }

    .tm-profile-image-wrapper {
        width: 50%;
        justify-content: flex-end;
    }

    .tm-profile-name {
        font-size: 3rem;
    }
}


/* team 2 member details section accordinlgy */



/* Container */
.vs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

/* Section styling */
.vs-about-section,
.vs-ikigai-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

/* Section titles */
.vs-section-title {
    font-family: 'Jomolhari', serif;
    font-weight: 400;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    line-height: 24.56px;
}

/* Paragraphs */
.vs-paragraph {
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.vs-paragraph:last-child {
    margin-bottom: 0;
}

/* Achievements section styling */
.vs-achievements-section {
    border-radius: 8px;
    margin-bottom: 40px;
}

.vs-achievements-list {
    list-style: none;
    padding-left: 10px;
    font-family: 'Inter', sans-serif;

}

.vs-achievements-list li {
    position: relative;
    font-family: 'Inter', sans-serif;

    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.vs-achievements-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vs-container {
        padding: 30px 15px;
    }

    .vs-section-title {
        font-size: 24px;
    }

    .vs-paragraph {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vs-container {
        padding: 20px 15px;
    }

    .vs-section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .vs-paragraph {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}


/*  conatct form css start here accordingly  */

.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact__left {
    flex: 1;
    min-width: 300px;
}

.contact__right {
    flex: 1;
    min-width: 300px;
}

.contact__subtitle {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;

}

.contact__title {
    font-family: 'Jomolhari', serif;
    font-size: 39px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.0;
    color: black;
}

.contact__text {
   color: #4B5465;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
font-size: 20px;
    margin-top: 5rem;
}

.contact__form {
    width: 100%;
}

.contact__form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.contact__form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact__input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid rgb(182, 177, 177);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.contact__input:focus {
    border-color: #555;
}

.contact__select-wrapper {
    position: relative;
}

.contact__select-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #555;
    pointer-events: none;
}

.contact__select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid rgb(182, 177, 177);
    font-size: 16px;
    appearance: none;
    background-color: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.contact__select:focus {
    border-color: #555;
}

.contact__button {
    background-color: #0f1a2a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.contact__button:hover {
    background-color: #1b3968;
}

/* For tablets and smaller desktops */
@media (max-width: 992px) {
    .contact__container {
        gap: 30px;
    }

    .contact__title {
        width: 100%;
        /* Remove fixed width constraint on smaller screens */
        font-size: 28px;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
      .header_login_button {   
    width: 100%;   
    color: black;
    margin-top: 1rem;
            padding: 20px 20px;

  }

    .button {
        width: 100%;
        padding: 20px 20px;
    }
    .contact__container {
        flex-direction: column;
        gap: 20px;
    }

    .contact__left,
    .contact__right {
        flex: none;
        width: 100%;
    }

    .contact__form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact__form-group {
        margin-bottom: 15px;
    }

      .contact__text {
         font-size: 18px;
        margin-top: 1.5rem;
    }
    .contact__button {
        width: 100%;
        /* Full-width button on mobile */
        padding: 12px 20px;
    }

    .contact__title {
        font-size: 28px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .contact {
        padding: 20px 15px;
    }

    .contact__subtitle {
        font-size: 14px;
    }

    .contact__title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .contact__text {
         font-size: 18px;
        margin-top: 1.5rem;
    }

    .contact__input,
    .contact__select {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* footer css start here accordinlgy  */


.footer {
    background: url("../images/foot-bg.svg") center;
    position: relative;
    color: white;
    padding: 40px 0 0;
    overflow: hidden;
}


.container {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 5rem;
    padding: 20px 20px 10px 20px;
    background: url("../images/footer-map-bg.svg") center/cover no-repeat;
}

.logo {
    position: relative;
    height: 25.34px;
    margin: 0 auto;
}

.logo h2 {
    font-size: 24px;
    letter-spacing: 2px;
}

.logo p {
    font-size: 10px;
    letter-spacing: 1px;
    text-align: end;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px 20px;
}
.contact__textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    border: 1px solid #b1b1b1 !important;
    color: black;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contact-item p,
.copyright p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* New icon wrapper for the outer circle effect */
.icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item-text {
    color: white !important;
}

/* Inner circle with icon */
.icon-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Outer circle effect using ::before */
.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #D9D9D933;
    z-index: 1;
}

.icon-container i {
    font-size: 18px;
}

.contact-item p {
    font-size: 14px;
    line-height: 1.5;
}

.copyright {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px !important;
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    /* border: 1px solid red; */
}

.group_divs {
    flex: 0 0 50;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.copyright a {
    color: white;
    text-decoration: underline;
}


@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-item {
        margin: 15px 0;
    }

    .tm-profile-bg-wrapper {
        height: auto !important;

    }
}