/* --- 1. Global Setup & Variables --- */
:root {
    --header-height: 80px;

    /* A vibrant tomato color */
    --background-color: #fdfdfd;
    --text-color: #ffffff;
    --transition-speed: 400ms;
    --primary-color: #2b3a90;
    /* Dark blue for titles */
    --text-color-2: #4a5568;
    /* Grey for body text */
    --highlight-color: #c6d3ff;
    /* Light blue for highlighted text */
    --background-color: #f7f8fc;
    --card-background: #ffffff;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@font-face {
    font-family: 'Switzer';
    /* Give the font family a name */
    src: url('assets/fonts/Switzer-Light.otf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;/
}

@font-face {
    font-family: 'Switzer';
    /* Give the font family a name */
    src: url('assets/fonts/Switzer-Regular.otf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;/
}

/* Definition for the BOLD font weight */
@font-face {
    font-family: 'Switzer';
    /* Use the SAME family name */
    src: url('assets/fonts/Switzer-Bold.otf') format('otf');
    font-weight: 700;
    /* 700 = bold */
    font-style: normal;
    font-display: swap;
}

/* Definition for the ITALIC font style */
@font-face {
    font-family: 'Switzer';
    /* Use the SAME family name */
    src: url('assets/fonts/Switzer-Italic.otf') format('otf');
    font-weight: 400;
    /* This is a regular-weight italic */
    font-style: italic;
    font-display: swap;
}


html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Switzer';
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    font-weight: 500;
}




.body-no-scroll {
    overflow: hidden;
}

/* --- 2. Header & Desktop Navigation --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);


    background-color: transparent;
    position: relative;

}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.inner-pad {
    padding-right: 50px;
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav a {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed) ease;
}



.menu-toggle,
.menu-close,
.menu-overlay {
    display: none;
}

/* --- 2a. Desktop Dropdown Styles --- */
.has-dropdown {
    position: relative;
}

/* sub-menu styles */

.sub-menu-item {
    display: flex;
    gap: 15px;
    align-items: center;


}

.sub-menu-item p {
    color: #000000;
}

.sub-menu-item a {
    padding: 0px;
}

.sub-menu a:hover {
    background: #4a485c12;
}

/* .sub-menu-item:hover {
    background: #4a485c12;
} */


.sub-items {
    display: grid;
    /* Create two columns of equal width */
    grid-template-columns: repeat(2, 1fr);
    /* Add some space between the grid items (rows and columns) */
    gap: 12px;
    /* Add padding inside the container so items don't touch the edge */
    padding: 16px;
}


.sub-menu-item p {
    font-size: 14px;
}

/* sub menu items styles */


.sub-menu {
    position: absolute;
    top: 100%;
    left: -100px;

    background-color: #fff9f9;
    list-style: none;

    gap: 40px;
    margin: 0;
    width: 389px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
}

.has-dropdown a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {

    font-size: 0.95rem;
    font-weight: 400;
}

.dropdown-icon {
    /* 1. Make the container a flexbox */
    display: inline-flex;

    /* 2. Center the SVG inside it perfectly */
    align-items: center;
    justify-content: center;

    /* 3. Ensure the transition is smooth */
    transition: transform 300ms ease;
}

/* We don't need to style size-4 here, it's fine on the SVG */
.size-4 {
    width: 16px;
    height: 16px;
}

li:hover {
    background: #4a485c12;
    border-radius: 5px;
}

/* 
  COMBINED RULE:
  Rotate the icon when the parent is HOVERED (desktop)
  OR has the .is-open class (mobile).
*/
.has-dropdown:hover>a>.dropdown-icon,
.has-dropdown.is-open>a>.dropdown-icon {
    transform: rotate(180deg);
}

.size-6 {
    width: 23px;
    height: 24px;
}

/* --- 3. Responsive Styles (Mobile) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 101;
    }

    .menu-toggle .bar {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--text-color);
        margin: 6px auto;
        transition: all var(--transition-speed) ease-in-out;
    }

    .body-no-scroll .menu-toggle .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .body-no-scroll .menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }

    .body-no-scroll .menu-toggle .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- 3a. Slide-in Panel & Overlay --- */
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background-color: #fff;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 102;
        transform: translateX(100%);
        transition: transform var(--transition-speed) cubic-bezier(0.77, 0, 0.175, 1);
    }

    .body-no-scroll .main-nav {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;

    }

    .main-nav a {
        font-size: 14px;
        padding: 5px;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
        font-weight: 200;
        background: none;
        border: none;
        cursor: pointer;
        color: #aaa;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
    }

    .body-no-scroll .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* --- 3b. Mobile Dropdown (Accordion) --- */
    .has-dropdown {
        position: static;
    }

    .sub-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 300ms ease-in-out;
    }

    .has-dropdown.is-open>.sub-menu {
        max-height: 300px;
    }

    .sub-menu a {
        padding-left: 2rem;
        font-size: 14px;
        color: #555;
    }

    .has-dropdown.is-open>a>.dropdown-icon {
        transform: rotate(180deg);
    }
}

.top-content-section {


    /* background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%); */
    background: linear-gradient(113.26deg, #0E1747 12.22%, #6777D1 68.17%, #4A5BB8 92.47%);


    padding: 20px;

    margin-top: 10px;
    margin-inline: 10px;
    border-radius: 20px;


    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.10);
}

.first-section {
    padding: 100px 0px
}


.get-started-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
    background: #C08F01;
    /* Your original gold color */
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    /* Good practice to remove default borders */
    text-decoration: none;
    /* Removes underline if it's a link */
    cursor: pointer;
    /* Shows a hand icon on hover */

    /* --- The Magic Ingredient for a Smooth Effect --- */
    /* Makes changes to background, shadow, and transform take 0.3s */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}


/* --- 2. The Hover Effect --- */
/* This is what happens when a user's mouse is over the button */
.get-started-btn:hover {
    background: #A87900;
    /* A slightly darker, richer gold */
    transform: translateY(-4px);
    /* Lifts the button up by 4 pixels */
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
    /* Adds a shadow to create depth */
}




.first-section h1 {
    font-size: 64px;
    line-height: 60px;
    font-weight: 500;

    color: #fff;
}

.first-section p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    max-width: 786px;
    width: 100%;
    margin-top: 30px;
    color: #fff;
}



@media screen and (max-width:786px) {
    .first-section h1 {
        font-size: 48px;
        line-height: 54px;
        font-weight: 500;
        word-spacing: -1px;
        text-align: center;
    }

    .first-section p {
        font-size: 20px;
        line-height: 28px;
        font-weight: 500;
        max-width: 786px;
        width: 100%;
        text-align: center;
        margin-top: 30px;
        color: #ffffff;
    }




}

.trusted-text {
    text-align: center;
    margin-top: 10px;
    color: oklch(.551 .027 264.364);
    font-size: 16px;
}

.section-second {
    padding: 80px 0px;
}

.section-second h2 {
    font-size: 60px;


}

.section-second p {
    padding-top: 80px;
    font-size: 30px;
    color: oklch(.446 .03 256.802);
    max-width: 500px;
    width: 100%;
    margin: auto;
    font-style: italic;
}


@media screen and (max-width:786px) {
    .section-second h2 {
        font-size: 30px;


    }

    .section-second p {
        max-width: 200px;
        width: 100%;
    }

}



.animated-paragraph span {
    display: inline-block;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    opacity: 1;
    /* Default state */
}

/* 1. RESET STATE: Instantly hide all words */
.animated-paragraph.is-reset span {
    opacity: 0;
    transform: translateY(20px);
    transition: none;
    /* No transition on hard reset */
}

/* 2. REVEAL STATE: The main fadeInUp animation is triggered. */
.animated-paragraph.is-revealing span {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Stagger the reveal of each word (slower pace) */
/* CHANGED: Delay increment is now 0.12s instead of 0.08s */
.animated-paragraph.is-revealing span:nth-child(1) {
    animation-delay: 0.00s;
}

.animated-paragraph.is-revealing span:nth-child(2) {
    animation-delay: 0.25s;
}

.animated-paragraph.is-revealing span:nth-child(3) {
    animation-delay: 0.50s;
}

.animated-paragraph.is-revealing span:nth-child(4) {
    animation-delay: 0.75s;
}

.animated-paragraph.is-revealing span:nth-child(5) {
    animation-delay: 1.00s;
}

.animated-paragraph.is-revealing span:nth-child(6) {
    animation-delay: 1.25s;
}

.animated-paragraph.is-revealing span:nth-child(7) {
    animation-delay: 1.50s;
}

.animated-paragraph.is-revealing span:nth-child(8) {
    animation-delay: 1.75s;
}

.animated-paragraph.is-revealing span:nth-child(9) {
    animation-delay: 2.00s;
}

.animated-paragraph.is-revealing span:nth-child(10) {
    animation-delay: 2.25s;
}

.animated-paragraph.is-revealing span:nth-child(11) {
    animation-delay: 2.50s;
}

.animated-paragraph.is-revealing span:nth-child(12) {
    animation-delay: 2.75s;
}

.animated-paragraph.is-revealing span:nth-child(13) {
    animation-delay: 3.00s;
}

.animated-paragraph.is-revealing span:nth-child(14) {
    animation-delay: 3.25s;
}

.animated-paragraph.is-revealing span:nth-child(15) {
    animation-delay: 3.50s;
}

.animated-paragraph.is-revealing span:nth-child(16) {
    animation-delay: 3.75s;
}

.animated-paragraph.is-revealing span:nth-child(17) {
    animation-delay: 4.00s;
}

.animated-paragraph.is-revealing span:nth-child(18) {
    animation-delay: 4.25s;
}

.animated-paragraph.is-revealing span:nth-child(19) {
    animation-delay: 4.50s;
}

.animated-paragraph.is-revealing span:nth-child(20) {
    animation-delay: 4.75s;
}

.animated-paragraph.is-revealing span:nth-child(21) {
    animation-delay: 5.00s;
}

.animated-paragraph.is-revealing span:nth-child(22) {
    animation-delay: 5.25s;
}

.animated-paragraph.is-revealing span:nth-child(23) {
    animation-delay: 5.50s;
}

.animated-paragraph.is-revealing span:nth-child(24) {
    animation-delay: 5.75s;
}

.animated-paragraph.is-revealing span:nth-child(25) {
    animation-delay: 6.00s;
}

.animated-paragraph.is-revealing span:nth-child(26) {
    animation-delay: 6.25s;
}

.animated-paragraph.is-revealing span:nth-child(27) {
    animation-delay: 6.50s;
}

.animated-paragraph.is-revealing span:nth-child(28) {
    animation-delay: 6.75s;
}

.animated-paragraph.is-revealing span:nth-child(29) {
    animation-delay: 7.00s;
}

.animated-paragraph.is-revealing span:nth-child(30) {
    animation-delay: 7.25s;
}

.animated-paragraph.is-revealing span:nth-child(31) {
    animation-delay: 7.50s;
}

.animated-paragraph.is-revealing span:nth-child(32) {
    animation-delay: 7.75s;
}

.animated-paragraph.is-revealing span:nth-child(33) {
    animation-delay: 8.00s;
}

/* 3. CONDENSED STATE: Hide all words except the first two. */
.animated-paragraph.condensed span:not(:nth-child(1)):not(:nth-child(2)) {
    opacity: 0;
    transform: translateY(-10px);

}

.section-white {
    padding: 100px 0px;
}

.seciton-title {
    font-size: 36px;
    max-width: 550px;
    width: 100%;
    line-height: 41px;
    margin-top: 8px;
}

.sm {
    font-size: 12px;
    color: #555;
}

.fe-content-info {
    border: 1px solid #DDDDDD;
    padding: 50px;
    border-radius: 20px;
    background: linear-gradient(180deg, #FAFAFD 0%, #C9CFEF 100%);

}



.fe-content-info p:nth-of-type(1) {
    /* styles for first p */
    font-size: 14px;
    color: #555;
    margin-top: 8px;

}

.fe-content-info p:nth-of-type(2) {
    /* styles for second p */
    font-size: 24px;
    margin-top: 30px;
    text-align: center;
    font-weight: 600;

}

.fe-content-info p:nth-of-type(3) {
    /* styles for third p */
    font-size: 14px;
    color: #000000;
    margin-top: 10px;
}

.fe-content-info p:nth-of-type(4) {
    /* styles for third p */
    font-size: 14px;
    color: #000000;
    margin-top: 10px;
}

.fe-content-info p:nth-of-type(5) {
    /* styles for third p */
    font-size: 14px;
    color: #000000;
    margin-top: 10px;
}

.fe-content-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;


}

/* Target all direct children of the container */
.fe-content-infos>* {
    /* This is the key: we define how much space each item should take up */
    flex-grow: 1;
}

/*
 * For the first two items, a basis of 40% ensures only two can fit
 * on one line (40% + 40% + gap < 100%).
 */
.fe-content-infos>*:nth-child(1),
.fe-content-infos>*:nth-child(2) {
    flex-basis: 40%;
}

/*
 * For the next three items, a basis of 30% ensures only three can
 * fit on the second line (30% + 30% + 30% + gaps < 100%).
 */
.fe-content-infos>*:nth-child(n+3) {
    flex-basis: 30%;
}

.fe-content-info {

    margin: 40px auto;
    /* Center the section with some spacing */
    font-family: sans-serif;
    line-height: 1.6;
}

.fe-content-info figure {
    margin: 25px 0;
    /* Space around images */
    text-align: center;
}

.fe-content-info img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.fe-content-info figcaption {
    font-size: 0.9em;
    color: #000000;
    margin-top: 8px;
    font-style: italic;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 20px;
    /* Space between the images */
}

/* For smaller screens, stack the images */
@media (max-width: 600px) {
    .image-grid {
        grid-template-columns: 1fr;
        /* Single column */
    }
}

.pad {
    padding-top: 100px;
}

.section-bg {
    background-color: oklch(.21 .034 264.665);
    margin-inline: 20px;
    border-radius: 20px;
    margin-top: 100px;
    padding: 80px 0px;
}



.section-bg .seciton-title {
    color: #fdfdfd;
}

.text-sm {
    color: oklch(.707 .022 261.325);
    font-size: 12px;
}





.ce-content-info {

    padding: 20px;
    border-radius: 20px;
}



.ce-content-info p:nth-of-type(1) {
    /* styles for first p */

    font-size: 24px;
    margin-top: 5px;
    color: #fdfdfd;
    font-weight: 600;
}

.section-white h1 {
    font-size: 70px;
    margin-bottom: 53px;
    text-align: center;
}

.ce-content-info p:nth-of-type(2) {
    /* styles for second p */
    font-size: 14px;
    margin-top: 8px;
    color: oklch(.707 .022 261.325);

}

.ce-content-info p:nth-of-type(3) {
    /* styles for third p */
    font-size: 14px;
    color: oklch(.707 .022 261.325);
    margin-top: 10px;
}

.ce-content-inner {
    display: flex;
    align-items: center;
}

.ce-content-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;


}

.ce-content-info {
    background-color: oklch(.278 .033 256.848)
}

/* Target all direct children of the container */
.ce-content-infos>* {
    /* This is the key: we define how much space each item should take up */
    flex-grow: 1;
}

/*
 * For the first two items, a basis of 40% ensures only two can fit
 * on one line (40% + 40% + gap < 100%).
 */
.ce-content-infos>*:nth-child(1),
.ce-content-infos>*:nth-child(2),
.ce-content-infos>*:nth-child(3) {
    flex-basis: 30%;
}

/*
 * For the next three items, a basis of 30% ensures only three can
 * fit on the second line (30% + 30% + 30% + gaps < 100%).
 
 */
.ce-content-infos>*:nth-child(n+3) {
    flex-basis: 40%;
}

.flex {
    display: flex;
    gap: 20px;
}

@media screen and (max-width:786px) {
    .seciton-title {
        font-size: 30px;
        line-height: 36px;
    }

    .fe-content-infos {
        flex-direction: column;
    }

    .ce-content-infos {
        flex-direction: column;
    }
}


.logosSlide {
    display: inline-block;

    animation-name: slide;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.logos:hover .logosSlide {
    animation-play-state: paused;
}

.logos {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0px 82px 0px;
}

.logos::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    height: 100%;
    width: 200px;
    z-index: 2;
}

.logos::after {
    content: "";
    top: 0;
    right: 0;
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    height: 100%;
    width: 200px;
    z-index: 2;
}

.logosSlide img {
    margin: 0 32.5px;
}

.logosSlide img {
    width: 163px;
    /* height: 71px; */
    margin: 0px 42.5px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 1000px) {
    .logos {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        padding: 50px 0px 69px 0px;
    }

    .logosSlide img {
        width: 150px;

        margin: 0px 15.5px;
    }

    .logos::before {
        content: "";
        top: 0;
        left: 0;
        position: absolute;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
        height: 100%;
        width: 50px;
        z-index: 2;
    }

    .logos::after {
        content: "";
        top: 0;
        right: 0;
        position: absolute;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
        height: 100%;
        width: 50px;
        z-index: 2;
    }
}

footer {
    background: linear-gradient(113.26deg, #0E1747 12.22%, #6777D1 68.17%, #4A5BB8 92.47%);
    margin-inline: 15px;
    border-radius: 20px;
    margin-top: 100px;
}

.footer-padding {
    padding: 30px;
}

.footer-upper-content {
    text-align: center;
    max-width: 444px;
    margin: auto;
    padding: 80px 0px;
}



.footer-upper-content p:nth-of-type(1) {
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 10px;
    color: #ffffff;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    /* Added for better readability */
    color: #fff;
    background-color: #222;
    padding: 12px 24px;
    /* Slightly more horizontal padding looks balanced */
    border-radius: 40px;
    margin-top: 25px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    /* Makes the cursor a hand icon */

    /* --- The Key to a Professional Effect --- */
    /* This animates the changes smoothly over 0.3 seconds */
    transition: all 0.3s ease-out;
}


/* --- 2. The Hover Effect --- */
/* This style applies when the mouse is over the button */
.book-btn:hover {
    background-color: #000;
    /* Change to a pure, deep black */
    transform: translateY(-3px);
    /* Lifts the button up slightly */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    /* Adds a soft shadow for depth */
}

/* footer styles */
.footer-nav {
    /* The soft gradient background from the image */

    padding: 4rem 5rem;
    /* Ample padding on all sides */
    display: grid;
    grid-template-columns: 1fr 3fr;
    /* Logo gets 1 part, links get 3 parts of the space */
    gap: 4rem;
}

/* --- Logo Styling --- */
.footer-logo a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* The diamond shape next to the logo text */
/* .footer-logo a::before {
    content: '';
    display: block;
    width: 0.8em;
    height: 0.8em;
    background-color: #000;
    transform: rotate(45deg);
} */

/* --- Link Columns Container --- */
.footer-columns {
    display: flex;
    /* justify-content: space-between; */
    /* Space out the columns evenly */
    gap: 5rem;
    /* Gap for smaller screens when they wrap */
}

.footer-column ul {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.footer-column h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    /* A soft gray for the titles */
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.footer-column li {
    margin-bottom: 1rem;
    /* Vertical space between links */
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-column a:hover {

    /* A slightly lighter color on hover */
    text-decoration: underline;
}

/* --- Responsive Design for Smaller Screens --- */
@media (max-width: 1024px) {
    .footer-nav {
        grid-template-columns: 1fr;
        /* Stack logo and links vertically */
        padding: 3rem 2rem;
    }

    .footer-columns {
        flex-wrap: wrap;
        /* Allow columns to wrap */
        justify-content: flex-start;
    }

    .footer-column {
        /* On small screens, each column takes ~half the width */
        flex-basis: calc(50% - 1rem);
        min-width: 180px;
    }
}

@media (max-width: 500px) {
    .footer-column {
        /* On very small screens, each column takes the full width */
        flex-basis: 100%;
    }
}


/* accordian styles start */
.faq-container {
    margin: auto;
    background-color: #f0f2f9;
    width: 100%;

    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Dashed decorative line from the image */
.decorative-line {
    border-top: 2px dashed #d9ddee;
    margin-bottom: 30px;
}

/* Main Title */
.faq-title {
    color: #1e2a78;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 30px 0;
}

/* Styles for each accordion item */
.accordion-item {
    /* The line separator between items */
    border-bottom: 1px solid #d9ddee;
}

/* The very first item also has a line on top */
.accordion-item:first-of-type {
    border-top: 1px solid #d9ddee;
}

/* The clickable header of the accordion item */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e2a78;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background-color: rgba(217, 221, 238, 0.3);
}

/* Icon styling (+ and -) */
.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e2a78;
    transition: transform 0.3s ease;
}

/* Rotate icon when active (optional but nice touch) */
.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

/* The content that slides down */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #4a5568;
    line-height: 1.6;
}

.accordion-content p {
    padding: 0 0 20px 0;
    margin: 0;
}

/* accordian style end */


/* testimonials styles */
.testimonials-section {
    width: 100%;
    padding: 100px 20px;
}



/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    margin: 0 0 50px 0;
}

/* Grid for the testimonial cards */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Individual Testimonial Card */
.testimonial-card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    flex: 1 1 400px;
    /* Flex-grow, flex-shrink, flex-basis */
    max-width: 480px;
    /* Max width for each card */
    display: flex;
    flex-direction: column;

    /* For JS animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Class added by JS when element is in view */
.testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    /* Placeholder background color if image fails */
    background-color: #e2e8f0;
}

.user-info .name {
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    font-size: 1rem;
}

.user-info .title {
    font-size: 0.875rem;
    color: var(--text-color-2);
    margin: 0;
}

.card-body blockquote {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.card-body p {
    margin: 0;
}

.highlight {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        /* On mobile, cards take full width */
        flex-basis: 100%;
    }
}


/* features  */
/* The main container for the features section */
.feature-sections {
    padding: 80px 0px;
    margin-inline: 10px;
}

.addtional-feature-container {
    width: 100%;

    background-color: #111827;
    /* The dark background from the image */
    color: #d1d5db;
    /* Default light grey text color for descriptions */
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* The grid that holds the feature items */
.features-grid {
    display: grid;
    /* Create 4 equal columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    /* Space between the grid items */
}

/* Individual feature item styling */
.additional-feature-item {
    text-align: center;
}

.feature-icon {
    height: 48px;
    width: 48px;
    margin: 0 auto 24px auto;
    /* Center the icon and add space below */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Placeholder styling - replace with your SVG icons */
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: #d1d5db;
}

.feature-icon.check-icon {
    border-radius: 50%;
}

.feature-title {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.feature-description {
    font-size: 1rem;
    /* 16px */
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Design --- */

/* For tablets and smaller devices (less than 992px) */
@media (max-width: 992px) {
    .features-grid {
        /* Switch to a 2x2 grid */
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
        /* Adjust gap for the new layout */
    }

    .addtional-feature-container {
        padding: 40px;
    }
}

/* For mobile phones (less than 576px) */
@media (max-width: 576px) {
    .features-grid {
        /* Stack items in a single column */
        grid-template-columns: 1fr;
    }

    .addtional-feature-container {
        padding: 32px 24px;
    }
}

/* show case 1 section  */

.product-showcase-section {

    margin-inline: 10px;
    padding: 60px 0;

    background-color: oklch(.21 .034 264.665);
    border-radius: 20px;
}

.showcase-layout-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.showcase-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 24px;
    background-color: oklch(.278 .033 256.848);
}

.showcase-info-column:first-of-type .info-card {
    text-align: right;
}

.showcase-info-column:last-of-type .info-card {
    text-align: left;
}

.info-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.info-card p {
    margin: 0;
    line-height: 1.6;
    color: #FFFFFF99;
}

.ai-agent-heading {
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 40px;
    font-size: 56px;
}

.central-visual-wrapper {
    flex-shrink: 0;
}

.central-visual-wrapper img {
    display: block;
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {

    .showcase-info-column:first-of-type .info-card {
        text-align: left;
    }

    .showcase-layout-grid {
        grid-template-columns: 1fr;
    }

    .central-visual-wrapper {
        order: -1;
        margin-bottom: 40px;
    }

    .central-visual-wrapper img {
        margin: 0 auto;
    }

    .showcase-info-column .info-card {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .product-showcase-section {
        padding: 40px 0;
    }

    .central-visual-wrapper img {
        max-width: 300px;
    }
}

/* multimodel section  */
.unified-model-showcase {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.showcase-header-group h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e2a78;
    margin: 0 0 16px 0;
}

.showcase-header-group p {
    font-size: 1.125rem;
    color: #5a6789;
    max-width: 500px;
    margin: 0 auto 48px auto;
    line-height: 1.6;
}

.showcase-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
}

.showcase-image-holder {
    /* For JS Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.showcase-image-holder img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    /* Center image within its column */
}

.showcase-points-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-point-card {
    background-color: #e8eaf6;
    padding: 24px;
    border-radius: 16px;
    color: #1e2a78;
    font-weight: 500;
    line-height: 1.6;

    /* For JS Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Add delays for a staggered animation effect */
.showcase-point-card:nth-child(2) {
    transition-delay: 0.1s;
}

.showcase-point-card:nth-child(3) {
    transition-delay: 0.2s;
}

/* Class added by JS when element is visible */
.is-now-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .showcase-content-layout {
        grid-template-columns: 1fr;
        /* Stack columns on tablets and mobile */
        gap: 40px;
    }

    .showcase-image-holder {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .inner-pad {
        padding-right: 8px;
    }

    .ai-agent-heading {
        font-size: 36px;
    }


    .unified-model-showcase {
        padding: 40px 0;
    }

    .showcase-header-group h2 {
        font-size: 2rem;
    }

    .showcase-header-group p {
        font-size: 1rem;
    }
}



/* steps sections styles  */
.section-steps {
    padding: 100px 0px;
}

.steps-container {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 36px;
    padding-right: 31px;
    text-decoration: none;
    display: flex;
    position: relative;
}



.text-title {
    background-image: linear-gradient(92deg, #fff3, #b9c1f0), linear-gradient(#fff, #fff), url(./assets/images/bg-image.png);
    border-radius: 20px;
    width: 78%;
    min-height: 1960px;
    padding: 48px 132px 48px 40px;
}

.text-title p {
    font-size: 56px;
    color: #21328F;
    font-weight: 600;
    line-height: 52px;
    text-align: end;
}

.items {
    grid-row-gap: 50px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    text-decoration: none;
    display: flex;
    position: relative;
    left: -44px;
}

.item-1 {
    grid-column-gap: 44px;
    justify-content: flex-start;
    align-items: start;
    width: 100%;
    max-width: 785px;
    text-decoration: none;
    display: flex;
}

.number {
    background-color: #21328F;
    border-radius: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 80px;
    padding: 20px 24px;
    text-decoration: none;
    display: flex;
    position: relative;
    flex: 0 0 80px;
}

.text-22 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    text-decoration: none;
    position: absolute;
}

.text-23 {
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    display: flex;
}

.text-20 span {
    font-size: 24px;
    color: #21328F;
    font-weight: 600;
    line-height: 25px;
}

.text-24 {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #222222;
    margin-top: 8px;
    margin-bottom: 26px;
}

/* aditional features style */

.additional-features-section {
    background: linear-gradient(180deg, #FAFAFD 0%, #C9CFEF 100%);
    margin: 80px 0px;
    padding: 80px 0px;
}

.additional-features-section h2 {
    text-align: center;
    padding: 40px 0px;
    font-family: Switzer;
    font-weight: 600;
    font-style: Semibold;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 65.18px;
    letter-spacing: 0%;
    color: #21328F;

}

.container-include {
    max-width: 1076px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-include {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 70px;
}

.feature-inlcude-text p:nth-of-type(1) {
    font-family: Switzer;
    font-weight: 600;
    font-style: Semibold;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 27.4px;
    letter-spacing: 0.3px;
    vertical-align: middle;
    color: #313F89;

}

.container-include {
    max-width: 1027px;
    width: 100%;
}

.feature-inlcude-text p:nth-of-type(2) {
    margin-top: 15px;
    color: #18266D;
    font-family: Switzer;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;

    line-height: 25px;
    letter-spacing: 0px;
    vertical-align: middle;


}

.rev {
    flex-direction: row-reverse;
}

.section-last {
    padding: 140px 0px;
}

.section-last::before {
    content: '';
    display: inline-block;
    background-image: url(./assets/images/Quixoa-Logos.png);
    width: 229px;
    height: 316px;

    background-repeat: no-repeat;
    background-position: top, left;
    background-size: cover;
}

.section-last h2 {
    font-family: Switzer;
    font-weight: 600;
    font-style: Semibold;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 65px;
    letter-spacing: 0%;
    color: #21328F;
}

.section-last p {
    font-family: Switzer;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    margin-top: 15px;
    line-height: 25px;
    letter-spacing: 0%;

}

.section-last a {
    display: inline-block;
    background-color: #000000;
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: 20px;

}

@media screen and (max-width: 768px) {
    .feature-include {
        flex-direction: column;
    }
}

/* ai imgae model styles */
.title-heading {
    font-family: Switzer;
    font-weight: 600;
    font-style: Semibold;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 64px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;


}

.img-div {
    text-align: center;
    padding: 100px 0px;
}

.content-item p:nth-of-type(1) {
    font-family: Switzer;
    font-weight: 600;
    font-style: Semibold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    margin-top: 8px;

}


.content-item p:nth-of-type(2) {
    font-family: Switzer;
    margin-top: 8px;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    color: #EFEDFD99;
}



.content-items {
    display: flex;
    margin-top: 192px;
}

.center {
    text-align: center;
}

.cs-display {
    display: block;
}

.cs-width {
    width: 250px !important;
}

@media screen and (max-width: 768px) {


    .sub-items {

        /* Create two columns of equal width */
        grid-template-columns: repeat(1, 1fr);

    }

    .title-heading {
        font-size: 30px;
        line-height: 47px;
    }

    .img-div img {
        width: 295px;
    }

    .content-items {
        flex-direction: column;
        gap: 50px;
    }

    .main-nav a {
        color: #000000
    }

    .footer-upper-content p:nth-of-type(1) {
        font-size: 33px;
    }
}



.section-bg-bg {
    background-image: url(./assets/images/check-the-bg.png);

    /* Center the image */
    background-position: center;

    /* Do not repeat the image */
    background-repeat: no-repeat;

    /* Scale the image to cover the entire element */
    background-size: cover;
    height: 814px;
}