:root {
    --main-blue: #051650;
    --dark-green: #3D7068;
    --light-green: #eefbf2;
    --light-blue: #6279B8;
    --accent: #EA9E8D;
    --white: #ffffff;
    --black: #000000;
    --nav-height: 10vh;
    --logo-b: 100%;
    --gray: #4f4f4f;
    --light-gray: #F9F9F9;
}

.alt-theme {
    --white: #000000;
    --black: #ffffff;
    --main-blue: #6279B8;
    --light-blue: #051650;
    --gray: #F9F9F9;
    --light-gray: rgb(17, 17, 17);
    --dark-green: #eefbf2;
    --light-green: #3D7068;
    --logo-b: 10000%;
    /* new accent */
    /* override any others here */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
}

.theme-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--main-blue);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    z-index: 1000;
}

.alt-theme .theme-toggle {
    background-color: var(--accent);
}


#my-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* full viewport height */
    z-index: -1;
    /* behind everything */
}

/* Nav Styles */

.nav-section {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--white);
    height: var(--nav-height);
    opacity: 0.95;
    /*box-shadow: 0px 10px 8px -15px var(--black);*/
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    height: 100%;
    width: 85vw;
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: auto;
    filter: brightness(var(--logo-b));
}

.logo-text {
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
}

.nav-links-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a,
.dropdown>a {
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--main-blue);
    background-color: rgb(247, 249, 252);
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1rem;
    color: var(--white);
    padding: 10px 25px;
    background-color: var(--main-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-wrapper i {
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#open {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    pointer-events: none;
}

#closed {
    opacity: 1;
    transform: scale(1);
}

#contact-btn:hover #closed {
    opacity: 0;
    transform: scale(1.2) rotate(20deg);
}

#contact-btn:hover #open {
    opacity: 1;
    transform: scale(1.2) rotate(20deg);
}

.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--black);
    font-weight: 400;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgb(247, 249, 252);
}

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

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.hamburger {
    width: 30px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open .line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media screen and (max-width: 987px) {
    .navbar {
        width: 95vw;
    }

    .hamburger {
        display: flex;
    }

    .nav-links-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: scroll;
        background-color: rgba(255, 255, 255, 1);
        backdrop-filter: blur(8px);
        transition: max-height 0.5s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .nav-links-container.open {
        max-height: 90vh;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        font-weight: 600;
        color: var(--black);
        transition: background-color 0.3s ease;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links a:hover {
        background-color: rgba(0, 0, 0, 0.03);
    }

    .dropdown-content {
        display: block !important;
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        width: 100%;
        margin: 0;
        background-color: transparent;
    }

    .dropdown-content a {
        padding: 15px 0;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        border-top: 1px solid var(--light-gray);
    }

    .dropdown>a {
        pointer-events: none;
        font-weight: 600;
        text-align: center;
        width: 100%;
        padding: 15px 0;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 1rem;
        margin-top: 10px;
    }

    .nav-overlay {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .arrow {
        transition: transform none;
    }

    .dropdown:hover .arrow {
    transform: rotate(0deg);
    }

    .arrow {
        transform: rotate(0deg);
    }
}


/* End Of Nav Styles*/

/*hero section*/

.hero-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-bottom: 8rem;
}

.hero {
    margin-top: 8vh;
    max-width: 1600px;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--black);
}

.hero h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray);
}

.hero a {
    font-size: 1.25rem;
    margin-top: 3rem;
    text-decoration: none;
    color: var(--white);
    background-color: var(--main-blue);
    padding: 13px 26px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.hero a i {
    transition: all .3s ease-in-out;
    margin-left: 4px;
}

.hero a:hover i {
    transform: translateX(5px);
}

.hero video {
    width: 100%;
    height: auto;
    margin-top: 6rem;
    border-radius: 10px;
}

/* End of Hero Section */

/* Info Section */

.info-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: 5rem;
}

.info-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.info-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-point i {
    color: var(--dark-green);
    font-size: 1.125rem;
    margin-top: .25rem;
    flex-shrink: 0;
    display: flex;
}

.info-point h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.info-point p {
    color: var(--gray);
    line-height: 1.625;
}

.process-diagram {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
}

.process-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--main-blue);
    color: var(--white);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.process-step p {
    color: var(--gray);
    font-size: 0.875rem;
}

.process-arrow {
    color: var(--main-blue);
    font-size: 1.25rem;
    margin-top: 10%;
}

@media (max-width: 768px) {
    .info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-diagram {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin-top: auto;
    }
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
    padding: 1rem 0 10rem 0;
}

.feature-title {
    margin-top: 5rem;
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: 4rem;
}

.features {
    margin: 3rem auto 5rem auto;
    width: 85vw;
    max-width: 1600px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 987px) {
    .features {
        width: 95vw;
    }
}

@media (max-width: 700px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: start;
    border: 1px solid rgb(215, 214, 214);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    padding: .5rem;
    background-color: var(--light-gray);
    border-radius: 50%;
    border: 1.5px solid var(--dark-green);
    margin-bottom: 1rem;
    color: var(--black);
}

.feature-card h3 {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 2;
}

/* End of Features Section */

/* Carousel Section */

.demo-section {
    width: 60vw;
    max-width: 1600px;
    background-color: var(--white);
    margin: 0 auto;
    /* Add this line to center the section */
    padding-bottom: 4rem;
}

.demo-title {
    margin-top: 5rem;
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: 4rem;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

#img-1 {
    display: block;
}

#img-2 {
    display: none;
}

#img-3 {
    display: none;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 30px;
}

.carousel-controls button {
    font-size: 1rem;
    padding: 2px 30px;
    background-color: transparent;
    border-width: 1.5px;
    cursor: pointer;
    border-style: solid;
    border-color: var(--main-blue);
    border-radius: 4px;
    color: var(--main-blue);
    transition: all 0.3s ease-in-out;
}

#cc-1 {
    background-color: var(--main-blue);
    color: var(--white);
}

#cc-2 {
    background-color: transparent;
    color: var(--main-blue);
}

#cc-3 {
    background-color: transparent;
    color: var(--main-blue);
}

/* Carousel Section end */


body.who-we-serve-body {
    background-color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.who-we-serve-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.who-we-serve-text-center {
    text-align: center;
    margin-bottom: 3rem;
}

.who-we-serve-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.who-we-serve-subtext {
    font-size: 1.125rem;
    color: #000000;
}

.who-we-serve-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .who-we-serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.who-we-serve-card {
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s ease-in-out;
}

.who-we-serve-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.who-we-serve-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ea9e8d;
}

.who-we-serve-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.who-we-serve-text {
    color: #718096;
}







.use-case-explorer {
    padding: 4rem 1rem;
    width: 85vw;
    margin: auto;
}




.use-case-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}




.use-case-intro h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}




.use-case-intro p {
    font-size: 1.125rem;
    color: #333;
}




.use-case-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0 auto;
}




.use-case {
    background: #ffffff;
    border-left: 4px solid #6279b8;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}




.use-case.critical {
    border-left-color: #ea9e8d;
}




.use-case-title {
    margin: 0;
    font-size: 1.25rem;
    color: #051650;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}




.use-case-title:hover {
    color: #3a6965;
}




.chevron {
    display: inline-block;
    border: solid #6279b8;
    border-width: 0 2px 2px 0;
    padding: 5px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: auto;
}




.use-case.active .chevron {
    transform: rotate(-135deg);
}




.use-case-content {
    margin-top: 1rem;
    display: none;
}




.use-case.active .use-case-content {
    display: block;
}




.use-case-question {
    font-style: italic;
    color: #3a3a3a;
    margin: 0 0 1rem;
    border-left: 3px solid #c1e4ca;
    padding-left: 1rem;
}




.use-case-details {
    list-style: none;
    padding: 0;
    margin: 0;
}




.use-case-details li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #222;
}




.use-case-details li strong {
    color: #051650;
}




.dropdown-hint {
    font-size: 0.875rem;
    color: #888;
    margin-top: 0.25rem;
}




@media (max-width: 600px) {
    .use-case-explorer {
        padding: 2rem 1rem 3rem;
        /* top reduced from 4rem to 2rem, bottom optional */
        max-width: 1100px;
        margin: auto;
    }




    .use-case-title {
        font-size: 1.1rem;
    }
}


/* Testimonials Section */
.testimonials-section {
    background: var(--light-gray);
    padding: 7rem 0 7rem 0;
}

.testimonials-title {
    text-align: center;
    color: var(--main-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    letter-spacing: 0.01em;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 85vw;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    /* Match key features card border and shadow: */
    border: 1px solid rgb(215, 214, 214);
    box-shadow: none;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: 320px;
    transition: all 0.3s ease-in-out;
}

.testimonial-quote-mark {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--main-blue);
    background: var(--light-gray);
}

.testimonial-name {
    font-weight: 600;
    color: var(--black);
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.98rem;
    color: var(--gray);
}

.testimonial-company {
    color: var(--main-blue);
    font-weight: 500;
}

@media (max-width: 1100px) {
    .testimonials {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 98vw;
    }

    .testimonial-card {
        min-height: 0;
    }
}

/* FAQ Section */
.title {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 80px;
    margin-bottom: -40px;
    text-decoration: none;
    border-bottom: none;
}


.questions-container {
    max-width: 800px;
    margin: 100px auto 120px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.question {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.question button {
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 24px;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: left;
}

.question button:hover {
    background-color: #f8f8f8;
}

.question p {
    font-size: 18px;
    max-height: 0;
    opacity: 0;
    line-height: 1.6;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 24px;
    color: #333;
}

.question p.show {
    max-height: 500px;
    opacity: 1;
    padding: 0 24px 24px 24px;
}

.d-arrow {
    transition: transform 0.3s ease;
    background-color: var(--main-blue);
    color: var(--white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.question button .d-arrow.rotate {
    transform: rotate(180deg);
}

.d-arrow svg.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}



/* Paragraph open state */
.question p.show {
    max-height: 500px;
    opacity: 1;
    padding: 15px 15px 30px 15px;
}



.contact-section {
    background: var(--light-gray);
    padding: 6rem 0;
}

.contact-title {
    text-align: center;
    color: var(--main-blue);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
}

.contact-form {
    width: 85vw;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--light-gray);
    color: var(--black);
    transition: border-color 0.2s;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--light-gray);
}

.contact-form textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--light-gray);
    color: var(--black);
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--main-blue);
}

.contact-form button {
    background: var(--main-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 1rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: var(--dark-green);
}

/* Responsive for mobile */
@media (max-width: 700px) {
    .contact-form {
        width: 98vw;
        padding: 1.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }
}

.footer-section {
  background-color: var(--main-blue);
  color: var(--white);
  padding: 5rem 7.5% 2rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.footer-logo a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

#footer-img {
  filter: brightness(10000%);
  width: 50px;
  height: auto;
}

.footer-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-tail-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-tail-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-right {
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-gray);
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col h5 {
    font-size: 0.95rem;
  }

  .footer-tail-link {
    font-size: 0.9rem;
  }

  .footer-logo {
    flex-direction: column;
  }
}



.ww-uc-section {
    background-color: var(--light-gray);
}