/* General reset for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.NAV {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
    background: var(--background);
}

.nav-header {
    display: flex;
    align-items: center;
}

.nav-header .hamburger {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    cursor: pointer;
}

.nav-text {
    color: var(--text-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-text-active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: black;
    transition: all 0.3s ease;
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .NAV {
        padding: 1rem;
        flex-direction: column;
    }

    .nav-header {
        justify-content: space-between;
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-header .hamburger {
        display: flex;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        background: white;
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 1.5rem;
        transition: all 0.3s ease;
        z-index: 100;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-text {
        color: black;
        font-size: 1.1rem;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .NAV>img {
        display: none;
    }
}

.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fafafa;
    width: 100%;
    min-height: 100vh;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem;
    width: 100%;
    background-color: #fafafa;
}

.NAV {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem;
    width: 100%;
    background-color: var(--vms-white, #ffffff);
    border-radius: 2rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.LOGO {
    width: clamp(70px, 10vw, 112px);
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 5vw, 4rem);
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav-text {
    font-size: clamp(14px, 2vw, 18px);
    font-family: var(--VMS-reg3-font-family, sans-serif);
    font-weight: var(--VMS-reg3-font-weight, 400);
    color: var(--vms-blk, #000000);
    white-space: nowrap;
}

.nav-text-active {
    color: var(--vms-secondary-1, #006fb5);
}

.nav-icon {
    width: 24px;
    height: 24px;
}


.button-primary {
    border:none;
    color: #fafafa;
    position: relative;
    width: fit-content;
    font-family: var(--VMS-BOLD-3-font-family);
    font-weight: var(--VMS-BOLD-3-font-weight);
    font-size: var(--VMS-BOLD-3-font-size);
    letter-spacing: var(--VMS-BOLD-3-letter-spacing);
    line-height: var(--VMS-BOLD-3-line-height);
    white-space: nowrap;
    font-style: var(--VMS-BOLD-3-font-style);
    display: flex;
    width: clamp(200px, 25vw, 185px);
    height: 4rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--vms-primary-1, #f18e1a);
    border-radius: 0.5rem;
    color: #fafafa;
}
.button-primary-lg-wh {

    color: #fafafa;
    position: relative;
    width: fit-content;
    font-family: var(--VMS-BOLD-3-font-family);
    font-weight: var(--VMS-BOLD-3-font-weight);
    font-size: var(--VMS-BOLD-3-font-size);
    letter-spacing: var(--VMS-BOLD-3-letter-spacing);
    line-height: var(--VMS-BOLD-3-line-height);
    white-space: nowrap;
    font-style: var(--VMS-BOLD-3-font-style);
    display: flex;
    width: clamp(200px, 25vw, 185px);
    height: 4rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border-radius: 0.5rem;
    color: #006fb5;
}

.button-primary-dk {

    color: #fafafa;
    position: relative;
    width: fit-content;
    font-family: var(--VMS-BOLD-3-font-family);
    font-weight: var(--VMS-BOLD-3-font-weight);
    font-size: var(--VMS-BOLD-3-font-size);
    letter-spacing: var(--VMS-BOLD-3-letter-spacing);
    line-height: var(--VMS-BOLD-3-line-height);
    white-space: nowrap;
    font-style: var(--VMS-BOLD-3-font-style);
    display: flex;
    width: clamp(200px, 25vw, 185px);
    border: 1px solid #006fb5;
    height: 4rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border-radius: 0.5rem;
    color: #006fb5;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0 1rem;
}

.breadcrumb-text {
    font-size: clamp(12px, 1.5vw, 16px);
    font-family: var(--VMS-reg4-font-family, sans-serif);
    font-weight: var(--VMS-reg4-font-weight, 400);
    color: var(--vms-blk, #000000);
}

.breadcrumb-text-active {
    color: var(--vms-secondary-1, #006fb5);
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* flex: 1; */
}

.heading {
    align-self: stretch;
    font-family: var(--VMS-BOLD-8-font-family);
    font-weight: var(--VMS-BOLD-8-font-weight);
    color: var(--vms-blk);
    font-size: var(--VMS-BOLD-8-font-size);
    line-height: var(--VMS-BOLD-8-line-height);
    position: relative;
    margin-top: -1.00px;
    letter-spacing: var(--VMS-BOLD-8-letter-spacing);
    font-style: var(--VMS-BOLD-8-font-style);

    /* font-size: clamp(24px, 4vw, 36px);
    font-family: var(--VMS-BOLD-8-font-family, sans-serif);
    font-weight: var(--VMS-BOLD-8-font-weight, 700);
    color: var(--vms-blk, #000000); */
}

.description {
    font-size: clamp(14px, 2vw, 18px);
    font-family: var(--VMS-reg5-font-family, sans-serif);
    font-weight: var(--VMS-reg5-font-weight, 400);
    color: var(--vms-blk, #000000);
    line-height: 1.5;
}

.button-group {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 1rem;
    width: 100%;
}

.image-section {
    flex: 1;
    height: clamp(300px, 50vw, 604px);
    border-radius: 0 4rem 0 4rem;
    background-image: url(../images/about.png);
    background-size: cover;
    background-position: center;
    position: relative;
}
.image-section-faq {
    flex: 1;
    height: clamp(300px, 50vw, 604px);
    border-radius: 0 4rem 0 4rem;
    background-image: url(../images/faq.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-section::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 8px;
    border-radius: 0 4rem 0 4rem;
    background: linear-gradient(130deg, rgba(241, 142, 26, 0.5) 11%, rgba(0, 111, 181, 1) 50%, rgba(24, 145, 208, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.suite-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    width: 100%;
    background-color: #ffffff;
}

.suite-title {
    font-size: clamp(18px, 3vw, 24px);
    font-family: var(--VMS-BOLD-5-font-family, sans-serif);
    font-weight: var(--VMS-BOLD-5-font-weight, 700);
    color: var(--vms-gray-4, #666666);
    text-align: center;
}

.suite-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    overflow-x: auto;
    padding: 0 1rem;
}

.suite-logos::-webkit-scrollbar {
    display: none;
}

.suite-logo {
    width: clamp(100px, 15vw, 232px);
    height: auto;
}

.suite-text {
    font-size: clamp(20px, 4vw, 48px);
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    color: var(--vms-gray-4, #666666);
    white-space: nowrap;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    background-color: #00243b;
    width: 100%;
    color: #fafafa;
}
.footer-blue {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    background-color: #006FB5;
    width: 100%;
    color: #fafafa;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 608px;
}

.footer-text {
    font-size: clamp(14px, 2vw, 16px);
    font-family: var(--VMS-reg4-font-family, sans-serif);
    font-weight: var(--VMS-reg4-font-weight, 400);
    line-height: 1.5;
}

.button-secondary {
    background-color: #fafafa;
    color: var(--vms-primary-1, #f18e1a);
}

.button-outlined {
    display: flex;
    width: clamp(120px, 20vw, 150px);
    height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid #fafafa;
    border-radius: 0.5rem;
    color: #fafafa;
    font-family: var(--VMS-BOLD-3-font-family, sans-serif);
    font-weight: var(--VMS-BOLD-3-font-weight, 700);
    font-size: clamp(14px, 2vw, 16px);
}
.button-outlined-lg {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid #fafafa;
    border-radius: 0.5rem;
    color: #fafafa;
    font-family: var(--VMS-BOLD-3-font-family, sans-serif);
    font-weight: var(--VMS-BOLD-3-font-weight, 700);
    font-size: clamp(14px, 2vw, 16px);
    background: transparent;
    width: clamp(200px, 25vw, 185px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    flex: 1;
    text-decoration: none;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 150px;
}

.footer-heading {
    font-size: clamp(16px, 2.5vw, 20px);
    font-family: var(--VMS-BOLD-4-font-family, sans-serif);
    font-weight: var(--VMS-BOLD-4-font-weight, 700);
}

.footer-link {
    font-size: clamp(12px, 1.5vw, 16px);
    font-family: var(--VMS-reg4-font-family, sans-serif);
    font-weight: var(--VMS-reg4-font-weight, 400);
    color: #fafafa;
    text-decoration: none;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #fafafa;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.copyright-icon {
    width: 12px;
    height: 12px;
}

.copyright-text {
    font-size: clamp(10px, 1.5vw, 14px);
    font-family: var(--VMS-reg1-font-family, sans-serif);
    font-weight: var(--VMS-reg1-font-weight, 400);
}

/* Media Queries */
@media (min-width: 768px) {
    .NAV {
        gap: 4rem;
    }
    .content-section {
        flex-direction: row;
    }
    .hero {
        padding: 1.5rem;
    }
    .suite-logos {
        gap: 4rem;
    }
    .footer {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .NAV {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    .suite-text {
        font-size: 24px;
    }
    .footer-links {
        gap: 1rem;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 5px;
}

.dropdown-content .dropdown-item {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s;
}

.dropdown-content .dropdown-item:hover {
    background-color: #f1f1f1;
}

.dropdown-content .dropdown-item.active {
    color: #0066FF;
    background-color: #f8f9fa;
}

.dropdown-content.show {
    display: block;
}

.nav-text i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s;
}

.nav-text.active i {
    transform: rotate(180deg);
}