#site-header {
    background: #2A3138;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.home #site-header {
    background-color: transparent;
}

#site-header .navbar-nav>li>a {
    color: #333;
    font-weight: normal;
    padding: 15px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Desktop only navbar hover effects */
@media (min-width: 992px) {
    #site-header .navbar-nav>li>a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    #site-header .navbar-nav>li.Nav__btn>a::after {
        display: none;
    }

    #site-header .navbar-nav>li>a:hover::after {
        width: 80%;
    }

    #site-header .navbar-nav>li>a:hover {
        color: #333;
        background: transparent;
    }

    /* Special hover for Nav__btn - override the white underline */
    .Nav__btn:hover::after {
        width: 0 !important;
    }

    .Nav__btn:hover {
        color: white !important;
        background: #4A72A0 !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(92, 134, 176, 0.4);
    }
}


/* Desktop only current menu item styling */
@media (min-width: 992px) {
    #site-header .navbar-nav>li.current-menu-item>a {
        color: #ffffff;
        background: transparent;
    }

    #site-header .navbar-nav>li.current-menu-item>a::after {
        width: 80%;
        background: white;
    }
}


#site-header .navbar-brand img {
    height: 45px;
    width: auto;
}

#site-header .header-ham-icon {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

#site-header .header-ham-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

#site-header .header-ham-icon span:first-child {
    margin-top: 0;
}

#site-header .header-ham-icon span:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    #site-header .navbar-collapse {
        background: transparent !important;
        border-top: none;
        margin-top: 0px;
        border-radius: 0;
        box-shadow: none;
    }

    #site-header .navbar-nav>li>a {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    #site-header .navbar-brand img {
        height: 35px;
    }
}

.Nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 2px;
    background: #5C86B0;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.Nav__btn:hover {
    background: #476a8c;
    /* slightly darker shade of #5C86B0 */
    transform: translateY(-2px);
    /* subtle lift effect */
}

@media (max-width: 767px) {
    .Nav__btn {
        border-radius: 5px;
    }
}



.btn-primary,
.hero__btn,
.values__btn,
.cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: #5C86B0;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.hero__btn:hover,
.values__btn:hover,
.cta__btn:hover {
    background: #4A72A0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    color: white;
    text-decoration: none;
}

.btn-primary:focus,
.hero__btn:focus,
.values__btn:focus,
.cta__btn:focus {
    color: white;
}

.btn-primary:active,
.hero__btn:active,
.values__btn:active,
.cta__btn:active {
    transform: translateY(0);
}



.hero {
    position: relative;
    /* height: 920px; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

.hero .container {
    height: 100%;
    position: relative;
    /* padding-top: 250px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.4) 80%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.hero__video.loaded {
    opacity: 1;
    z-index: 2;
}

.hero__fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero__fallback.hidden {
    opacity: 0;
}


.hero__logo {
    position: relative;
    z-index: 20;
    text-align: left;
    margin-bottom: 0px;
}

.hero__logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__logo-icon {
    width: 324px;
    height: 163px;
    flex-shrink: 0;
}

.hero__logo-icon:hover {
    animation: float 3s ease-in-out infinite;
}

.hero__logo-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.hero__logo-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.hero__logo-tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}


.hero__content {
    position: relative;
    z-index: 20;
    /* max-width: 800px; */
    margin-bottom: 0;
    margin-left: 0;
    color: white;
    text-align: left;
}

/* Desktop: Center hero content */
@media (min-width: 992px) {
    .hero__content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 88px;
    margin-bottom: 10px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.hero__title-highlight {
    color: #63A1DE;
    display: inline;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero__title-main {
    color: white;
    display: inline;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.hero__copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 1200px;
    color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
    margin: 70px 0 0 0;
    text-align: center;
}


.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 20px 0 0 0;
    position: relative;
    z-index: 10;
}

.quick-action-card {
    background: none;
    border: none;
    padding: 0;
    text-align: center;
    transition: none;
    box-shadow: none;
}

.quick-action-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-card__icon img {
    width: 57.31px;
    /* height: 57.31px; */
    object-fit: contain;
}

.quick-action-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}


@media (max-width: 991px) {
    .quick-action-card__icon img {
        width: 55px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .quick-actions__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 500px;
    }

    .quick-action-card {
        padding: 0;
    }

    .quick-action-card__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .quick-action-card__title {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .quick-actions__grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        display: none;
    }

    .quick-action-card {
        padding: 0;
    }

    .hero__title-highlight {
        line-height: 1.4;
    }
}



.services {
    background: #2A3138;
    font-family: 'Montserrat', sans-serif;
    padding: 100px 0;
    overflow-x: hidden;
}

.services .services__header {
    text-align: center;
    margin-bottom: 22px;
}

.services .services__title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 7px;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.services .services__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    /* height: 300px; */
    cursor: unset;
}


@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-10px) scale(1.0);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        border: 0px solid rgba(255, 255, 255, 0.2);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .service-card:hover::before {
        opacity: 1;
    }
}

.service-card:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}


.service-card__image {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .service-card:hover .service-card__image img {
        transform: scale(1.05);
    }
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 25px 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 400ms ease;
    pointer-events: none;
}


/* @media (min-width: 1025px) and (hover: hover) and (pointer: fine) { */
.service-card:hover .service-card__overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* } */

.service-card__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    color: white;
    width: 100%;
}

.service-card__benefits li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.service-card__benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

.service-card__benefits li:last-child {
    margin-bottom: 0;
}

/* Title Bar */
.service-card__title-bar {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    right: 0;
    background: #5C86B0;
    padding: 12px 10px;
    z-index: 2;
}

.service-card__title {
    margin: 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 550;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 1199px) {
    .service-card {
        cursor: pointer;
    }


    .service-card:hover {
        transform: none !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    }

    .service-card:hover::before {
        opacity: 0 !important;
    }

    .service-card:hover .service-card__overlay {
        /* opacity: 0 !important; */
        /* transform: translateY(20px) !important; */
        pointer-events: none !important;
    }

    .service-card:hover .service-card__image img {
        transform: none !important;
    }
}


@media (max-width: 1199px) {
    .services__grid {
        /* max-width: 1000px; */
        gap: 25px;
        /* padding: 0 30px; */
    }
}

@media (max-width: 1199px) {
    .services {
        padding: 100px 0;
    }

    .services .services__title {
        font-size: 2.5rem;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        /* grid-template-rows: repeat(3, 1fr); */
        gap: 25px;
        /* padding: 0 20px; */
    }

    .service-card {
        /* height: 300px; */
    }

    .service-card__overlay {
        padding: 25px 20px;
    }

    .service-card__title-bar {
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }

    .services .services__header {
        margin-bottom: 40px;
    }

    .services .services__title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .services .services__subtitle {
        font-size: 1.1rem;
        /* padding: 0 20px; */
    }

    .services__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 24px;
        /* padding: 0 20px; */
    }

    .service-card {
        /* height: 320px; */
    }

    .service-card__overlay {
        padding: 30px 24px;
    }

    .service-card__benefits li {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .service-card__title {
        font-size: 1rem;
    }

    .service-card__title-bar {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .services .services__header {
        margin-bottom: 30px;
    }

    .service-card__image {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 60px 0;
    }

    .services .services__title {
        font-size: 1.9rem;
    }

    .services .services__subtitle {
        font-size: 15px;
    }

    .services__grid {
        gap: 20px;
        /* padding: 0 16px; */
    }

    .service-card {
        /* height: 300px; */
    }

    .service-card__overlay {
        padding: 25px 20px;
    }

    .service-card__benefits li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .service-card__title {
        font-size: 0.95rem;
    }
}



/* Story Split Band Section */
.split.section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.split-row {
    background-color: #ffffff;
    width: 100%;
    display: block;
    padding: 140px 0;
    position: relative;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
    max-width: 50%;
    padding-right: 5%;
}

.split-title {
    color: #5C86B0;
    font-weight: 600;
    line-height: 1.2;
    font-size: 36px;
    margin: 0 0 16px;
    font-family: 'Poppins', sans-serif;
}

.split-desc {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.split-image {
    flex: 1;
    max-width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
}

.split-image.si-right {
    right: 0;
}

.split-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .split-row {
        padding-bottom: 0;
        padding-top: 70px;
    }

    .split-text {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .split-image.si-right {
        position: static;
        height: auto;
        width: 100%;
        max-width: none;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .split-row {
        /* padding: 60px 0; */
    }

    .split-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .split-text {
        /* max-width: 100%; */
        padding-right: 0;
        order: 1;
    }

    .split-image {
        max-width: 100%;
        position: relative;
        top: auto;
        bottom: auto;
        right: auto;
        width: 100%;
        order: 2;
        height: 300px;
    }

    .split-title {
        font-size: 28px;
        text-align: center;
    }

    .split-desc {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .split-row {
        padding-top: 50px;
    }

    .split-desc {
        font-size: 15px;
    }
}



.steps {
    background: #2A3138;
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}


.steps .section__header {
    text-align: center;
    margin-bottom: 60px;
}

.steps .section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.3px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.steps .section__subtext {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 7px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.step-card__image {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.step-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    /* font-weight: 400; */
    color: #186493;
    margin: 24px 0 16px;
    text-align: center;
    line-height: 1.2;
}

.step-card__desc {
    color: #4F4F4F;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    padding: 0 19px 71px;
    font-family: 'Montserrat', sans-serif;
}

.steps__cta {
    text-align: center;
    grid-column: 1;
    grid-row: 2;
}

.steps__arrow {
    margin: 20px auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    display: block;
    text-align: center;
}

.steps__arrow i {
    color: #fff;
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.steps__cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 95px;
    background: #5C86B0;
    /* keep brand color */
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(92, 134, 176, 0.3);
    /* subtle depth */
}

.steps__cta .btn-primary:hover {
    background: #4A7194;
    /* darker shade on hover */
    box-shadow: 0 6px 16px rgba(92, 134, 176, 0.4);
    transform: translateY(-2px);
}

.steps__cta .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(92, 134, 176, 0.2);
}



@media (max-width: 768px) {
    .steps {
        padding: 80px 0;
    }


    .steps .section__title {
        font-size: 2rem;
        max-width: 100%;
        padding: 0 20px;
    }

    .steps .section__subtext {
        font-size: 1rem;
        padding: 0 20px;
        max-width: 100%;
    }

    .steps__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 auto;
        position: relative;
    }

    .steps__cta {
        grid-column: 1;
        grid-row: 4;
        text-align: center;
        margin-top: 30px;
        order: 4;
    }

    .steps__arrow {
        display: block;
        text-align: center;
        margin: 15px 0;
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.5rem;
    }

    .steps__arrow i {
        color: #ffffff;
        font-size: 24px;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-8px);
        }

        60% {
            transform: translateY(-4px);
        }
    }

    .step-card {
        max-width: 100%;
    }

    .step-card__image {
        height: 55%;
    }

    .step-card__desc {
        font-size: 15px;
        padding: 0 24px 20px;
        line-height: 1.5;
    }

}

@media (max-width: 767px) {
    .steps .section__subtext {
        padding: 0;
        font-size: 15px;
    }

    .step-card__image {
        height: 60%;
    }
}

@media (max-width: 480px) {
    .steps {
        text-align: center;
    }

    .steps .section__title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
        padding: 0 16px;
        margin: 0 auto 20px;
        max-width: 100%;
    }

    .steps .section__subtext {
        text-align: center;
        /* padding: 0 16px; */
        margin: 0 auto;
    }

    .steps__grid {
        gap: 15px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        margin: 0 auto;
        text-align: center;
        position: relative;
    }

    .step-card:nth-child(1) {
        grid-row: 1;
        order: 1;
    }

    .step-card:nth-child(2) {
        grid-row: 2;
        order: 2;
    }

    .step-card:nth-child(3) {
        grid-row: 3;
        order: 3;
    }

    .steps__cta {
        grid-column: 1;
        grid-row: 4;
        text-align: center;
        margin-top: 20px;
        order: 4;
    }

    .steps__arrow {
        display: block;
        text-align: center;
        margin: 15px 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.4rem;
        order: 2;
    }

    .steps__arrow i {
        color: #ffffff;
        font-size: 24px;
        animation: bounce 2s infinite;
    }

    .step-card {
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .step-card__image {
        /* height: 50%; */
        flex-shrink: 0;
    }

    .step-card__title {
        font-size: 20px;
        margin: 25px 0 12px;
        padding: 0 16px;
        text-align: center;
    }

    .step-card__desc {
        display: block;
        line-height: 1.5;
        padding: 0 16px 0;
        text-align: center;
        color: #666;
        font-size: 15px;
    }

    .steps__cta {
        text-align: center;
        margin: 20px auto;
        grid-column: 1;
        grid-row: auto;
    }

}

@media (max-width: 420px) {
    .step-card__image {
        height: 50%;
    }
}

.container:before {
    content: none;
}

.values-split {
    background: #2A3138;
    font-family: 'Montserrat', sans-serif;
    padding: 100px 0;
}

.values-split .container {
    display: grid;
    grid-template-columns: 45% 45%;
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* width: 100%; */
    justify-content: space-between;
}

.values-split__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.values-split__desc {
    color: rgba(255, 255, 255, 0.85);
    max-width: 54ch;
    line-height: 1.7;
    font-size: 1.1rem;
}

.values-split__right {
    position: relative;
    min-height: 560px;
}

.values-split__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, #2A3138 0%, rgba(42, 49, 56, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.values-split__right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(0deg, #2A3138 0%, rgba(42, 49, 56, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.values-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    max-height: 560px;
    width: auto;
    z-index: 1;
    pointer-events: none;
}

.values-col {
    position: absolute;
    height: 100%;
    width: 46%;
    overflow: clip;
    z-index: 2;
}

.values-col--up {
    left: 0;
}

.values-col--down {
    right: 0;
}

.values-col__inner {
    display: flex;
    flex-direction: column;
    gap: 65px;
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.values-col--up .values-col__inner {
    animation-name: scroll-up;
}

.values-col--down .values-col__inner {
    animation-name: scroll-down;
}

.values-split__right:hover .values-col__inner {
    animation-play-state: paused;
}

.value-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #607999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 24px 20px;
    text-align: center;
    min-width: 0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: #CBD5E0;
}

.value-card__icon {
    width: 64px;
    height: 64px;
    background: #5C86B4;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(92, 134, 180, 0.25);
    border: 1px solid rgba(92, 134, 180, 0.2);
}

.value-card__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.value-card__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    color: #1D3D74;
    line-height: 1.3;
}

.value-card__desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #848C99;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}


@media (max-width: 900px) {
    .values-split .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-split__right {
        min-height: 520px;
    }

    .values-split__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .values-split {
        padding: 60px 0;
        overflow-x: hidden;
    }

    .values-split .container {
        /* padding: 0 24px; */
        max-width: 100%;
    }

    .values-split__title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 24px;
    }

    .values-split__desc {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .values-split__right {
        min-height: 450px;
        /* margin: 0 auto; */
        /* max-width: 600px; */
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .values-split__right {
        margin-left: 50%;
        transform: translateX(-50%);
        min-width: 100%;
    }

    .values-split.section {
        padding: 1.2rem 0px 3.2rem;
        overflow: hidden;
    }
}

@media (max-width: 480px) {

    .values-split .container {
        padding: 0 16px;
        gap: 32px;
    }

    .values-split__content {
        text-align: center;
        /* padding: 0 8px; */
    }

    .values-split__title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .values-split__desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .values-split__right {
        min-height: 420px;
        /* max-width: 373px; */
        /* margin: 0 -8px; */
        overflow: hidden;
        position: relative;
    }

    .values-col {
        overflow: hidden;
    }

    .value-card {
        padding: 16px 14px;
        margin-bottom: 12px;
    }

    .value-card__title {
        font-size: 0.9rem;
    }

    .value-card__desc {
        font-size: 14px;
        line-height: 1.4;
    }

    .value-card__icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }

    .values-phone {
        max-width: 200px;
        height: auto;
    }
}



.testimonials {
    background: linear-gradient(135deg, #698DB2 0%, #7BA7D4 100%);
    padding: 86px 0 66px;
    position: relative;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.testimonials__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    position: relative;
}

.testimonials__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.testimonials__nav {
    display: flex;
    gap: 12px;
    z-index: 100;
}

.testimonials__nav--positioned {
    position: absolute;
    top: 90px;
    right: 370px;
    display: flex;
    gap: 12px;
    z-index: 1000;
    pointer-events: all;
}

.testimonials__nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.testimonials__nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.testimonials__nav-btn--next,
.testimonials__nav-btn--prev {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(10px);
    pointer-events: all;
    outline: none;
    z-index: 1001;
    position: relative;
}

.testimonials__nav-btn--next:hover,
.testimonials__nav-btn--prev:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.testimonials__nav-btn--next.swiper-button-disabled,
.testimonials__nav-btn--prev.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


.testimonials__nav-btn--next:active,
.testimonials__nav-btn--prev:active {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0.95);
}

.testimonials__swiper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.testimonials__swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}


/* .testimonials__swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.9);
} */

.testimonials__swiper .swiper-slide-active {
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 2;
}

.testimonials__swiper .swiper-slide-next,
.testimonials__swiper .swiper-slide-prev {
    opacity: 0.8;
    transform: scale(0.95);
}

.testimonials .testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 90px;
    padding: 15px;
    /* width: 70vw; */
    /* max-width: 100% ; */
    min-height: 320px;
    align-items: center;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
    margin: 50px 0px 32px;
    box-sizing: border-box;
    position: relative;
}

.testimonial-card__image {
    position: relative;
    width: 345px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
}

.testimonial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__content {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 20px 0;
    justify-content: center;
    height: 100%;
}

.testimonial-card__quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #698DB2;
    line-height: 1.3;
    margin: 0 0 0px 0;
    margin-bottom: 4px;
}

.testimonial-card__quote h3 {
    font-weight: 500;
    font-size: 33px;
}

/* .testimonial-card__quote::before {
    content: open-quote;
    font-size: 1.2em;
}

.testimonial-card__quote::after {
    content: close-quote;
    font-size: 1.2em;
} */

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin: 0 0 24px 0;
}

.testimonial-card__stars i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-card__text {
    color: #4A5568;
    line-height: 1.7;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.testimonial-card__text:last-of-type {
    margin-bottom: 24px;
}

.testimonial-card__author {
    /* margin-top: auto; */
}

.testimonial-card__name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #698DB2;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.testimonial-card__age {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #7BA7D4;
    margin: 0;
    font-weight: 500;
    font-size: 17px;
}

.testimonials .swiper-pagination {
    position: relative;
    bottom: auto;
    text-align: center;
    margin-top: 50px;
}

.testimonials .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.testimonials .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.4);
}


.testimonials__swiper .swiper-slide:not(.swiper-slide-active) .testimonial-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials__swiper .owl-nav.disabled,
.testimonials__swiper .owl-dots.disabled {
    display: block;
}

.testimonials__swiper .owl-dots.disabled {
    display: flex;
}

.testimonials.section .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonials.section .owl-carousel .owl-nav button {
    position: absolute;
    right: 0;
    left: unset;
    top: -20px;
}

.testimonials.section .owl-carousel .owl-nav button.owl-prev {
    right: 55px;
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials__header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    .testimonials__title {
        font-size: 28px;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        max-width: 100%;
        min-height: auto;
    }

    .testimonial-card__image {
        height: 200px;
        order: 1;
    }

    .testimonial-card__content {
        order: 2;
        text-align: center;
    }

    .testimonial-card__quote {
        font-size: 22px;
    }
}

@media (min-width: 481px) and (max-width: 640px) {
    .testimonial-card {
        max-width: 100%;
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }

    .testimonial-card__image {
        height: 280px;
    }

    .testimonial-card__quote {
        font-size: 24px;
    }
}

@media (min-width: 641px) and (max-width: 991px) {
    .testimonials__swiper {
        overflow: visible;
        /* padding: 0 40px; */
    }

    .testimonial-card {
        max-width: 100%;
        grid-template-columns: 240px 1fr;
        gap: 35px;
        padding: 32px;
    }

    .testimonial-card__image {
        height: 320px;
    }

    .testimonial-card__quote {
        font-size: 26px;
    }
}

@media (min-width: 992px) and (max-width: 1279px) {
    .testimonials__swiper {
        overflow: visible;
        /* padding: 0 50px; */
    }

    .testimonial-card {
        max-width: 100%;
        grid-template-columns: 280px 1fr;
        gap: 40px;
        padding: 35px;
    }

    .testimonial-card__quote {
        font-size: 28px;
    }
}


@media (min-width: 1680px) {
    .testimonials__swiper .owl-item.center .testimonial-card {
        /* transform: scale(1.05); */
    }
}

@media (max-width: 1439px) {
    .testimonials .testimonial-card {
        width: 90vw;
    }
}

@media (max-width: 1199px) {
    .testimonials .testimonial-card {
        /* width: auto; */
        width: 70vw;
        /* margin-bottom: 5px; */
    }

    .testimonials.section .owl-carousel .owl-stage-outer {
        /* overflow: hidden; */
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-card {
        flex-direction: column;
        display: flex;
        padding: 50px;
        height: auto;
        min-height: unset;
        gap: 40px;
    }

    .testimonial-card__quote h3 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    #testimonials .testimonial-card {
        width: auto;
    }

    .testimonials .testimonial-card {
        padding: 20px;
    }
}


/* @media (min-width: 1280px) {
    .testimonials__swiper {
        overflow: visible;
        padding: 0 60px;
    }

    .testimonial-card {
        max-width: 100%;
        grid-template-columns: 300px 1fr;
        gap: 50px;
        padding: 40px;
    }

    .testimonial-card__image {
        height: 360px;
    }

    .testimonial-card__quote {
        font-size: 32px;
    }
} */

/* ===================================
   BLOG SECTION
   ================================= */

/* Blog card clickable elements */
.blog-card__image-link {
    display: inline-table;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.blog-card__image-link:hover .blog-card__image img {
    /* transform: scale(1.05); */
}

.blog-card__title a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog.section {
    background: #2A3138;
    /* padding: 80px 0; */
}

.blog__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.blog__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
    gap: 920px;
}

.blog__title {
    font-size: 2.75rem;
    font-weight: 600;
    color: white;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.blog__nav {
    display: flex;
    gap: 1rem;
}

.blog__nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.blog__nav-btn:hover {
    background: white;
    color: #5C86B0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.blog__swiper {
    overflow: visible;
    padding-bottom: 0;
}

.blog-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* cursor: pointer; */
    transition: all 0.3s ease;
    /* height: 430px; */
    /* width: 360px; */
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.blog-card__image {
    height: 60%;
    overflow: hidden;
    position: relative;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__overlay {
    background: #7AA3CC;
    padding: 23px 31px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.blog-card__content {
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.blog-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.blog-card__date {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.blog-card__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: auto;
    align-self: flex-start;
}

.blog-card__link:hover {
    transform: translateX(4px);
}

.blog-card__link:hover {
    color: white
}

.blog-card__link i {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
    opacity: 1;
}

.blog-card__link:hover i {
    transform: translateX(3px);
}

/* Swiper Pagination for Blog */
.blog .swiper-pagination {
    bottom: 0;
    position: relative;
    text-align: center;
    margin-top: 50px;
    display: block !important;
    visibility: visible !important;
}

.blog .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6) !important;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    opacity: 1 !important;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: inline-block !important;
    cursor: pointer;
}

.blog .swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Make each slide a fixed card width so 'auto' can compute overflow */
.blog__swiper .swiper-slide {
    width: 330px;
}

.blog .blog__swiper.owl-carousel .owl-stage-outer {
    padding-top: 10px;
    padding-bottom: 30px;
}

.blog .blog__swiper.owl-carousel .owl-dots.disabled {
    display: flex;
}

.blog .blog__swiper.owl-carousel .owl-nav.disabled {
    display: block;
}

.blog.section .owl-carousel .owl-nav button {
    position: absolute;
    right: 0;
    left: unset;
    top: -46px;
}

.blog.section .owl-carousel .owl-nav button.owl-prev {
    right: 55px;
}

/* ===================================
   BLOG MOBILE RESPONSIVE STYLES
   ================================= */

/* Tablet responsive - 768px to 1024px */
@media (max-width: 1199px) {
    .blog {
        padding: 70px 0;
    }

    .blog__container {
        /* max-width: 95%; */
        /* padding: 0 20px; */
    }

    .blog__swiper .swiper-slide {
        width: 300px;
    }

    .blog-card {
        /* height: 380px; */
        /* width: 300px; */
        margin: 0 auto;
    }

    .blog-card__overlay {
        padding: 20px 25px;
    }

    .blog-card__title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
}

/* Mobile responsive - 768px and below */
@media (max-width: 768px) {
    .blog {
        padding: 60px 0;
    }

    .blog__container {
        max-width: 100%;
        /* padding: 0 15px; */
    }

    .blog__header {
        /* flex-direction: column; */
        gap: 20px;
        text-align: center;
        /* margin-bottom: 30px; */
        padding: 0;
    }

    .blog__title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .blog__nav {
        justify-content: center;
        gap: 12px;
    }

    .blog__nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .blog__swiper .swiper-slide {
        width: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Center the active blog slide on tablet */
    .blog__swiper .swiper-slide-active {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }

    .blog-card {
        /* height: 350px; */
        /* width: 280px; */
        margin: 0 auto;
        border-radius: 12px;
    }

    .blog-card__overlay {
        padding: 18px 22px;
    }

    .blog-card__title {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .blog-card__date {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .blog-card__link {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .blog-card__overlay {
        height: 170px;
    }

    .section.blog {
        padding: 4.8rem 0px 3.2rem;
    }

    .blog .blog__swiper.owl-carousel .owl-stage-outer {
        padding-bottom: 20px;
    }

    .blog-card__overlay {
        padding: 28px 26px;
    }
}

@media (max-width: 480px) {
    .blog {
        background-color: #2d3748;
        padding: 50px 0;
    }

    .page-header-banner {
        margin-top: 0px;

    }

    .blog__container {
        /* padding: 0 10px; */
        max-width: 100%;
    }

    .blog__header {
        gap: 15px;
        /* margin-bottom: 25px; */
        /* padding: 0 5px; */
    }

    .blog__title {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .blog__nav {
        gap: 8px;
    }

    .blog__nav-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        display: none;
    }

    .blog__swiper {
        overflow: visible !important;
        padding-bottom: 20px !important;
        /* padding-top: 20px !important; */
        width: 100%;
    }

    .blog__swiper .swiper-wrapper {
        width: auto !important;
        align-items: stretch !important;
    }

    /* Center the active blog slide on mobile */
    .blog__swiper .swiper-slide-active {
        justify-content: center !important;
        align-items: center !important;
        margin: 0 auto !important;
        transform: translateX(0) !important;
    }

    /* Ensure blog swiper container centers slides properly */
    .blog__swiper {
        justify-content: center;
        align-items: center;
    }

    .blog__swiper .swiper-wrapper {
        display: flex;
        align-items: center;
    }

    .blog-card {
        height: auto;
        min-height: 360px;
        /* width: 90vw; */
        /* max-width: 300px; */
        margin: 0 auto;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
    }

    .blog-card__image {
        height: 55%;
        flex-shrink: 0;
    }

    .blog-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-card__overlay {
        /* padding: 18px 16px; */
        /* height: 45%; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
        background: #7AA3CC;
    }

    .blog-card__content {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }

    .blog-card__title {
        font-size: 1.0rem;
        line-height: 1.3;
        margin-bottom: 8px;
        font-weight: 600;
        color: white;
    }

    .blog-card__date {
        font-size: 0.8rem;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.9);
        opacity: 0.9;
    }

    .blog-card__link {
        font-size: 0.85rem;
        margin-top: auto;
        color: white;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .blog-card__link:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .blog-card__link i {
        font-size: 0.75rem;
        margin-left: 3px;
    }

    /* Mobile pagination */
    .blog .swiper-pagination {
        margin-top: 60px;
        position: static;
    }

    .blog .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}

/* Ensure nav is always clickable and above overlays */
.blog__nav-btn {
    position: relative;
    z-index: var(--z-content);
}

/* Back to Home Button */
.back-to-home-btn:hover {
    background: #005a87 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.back-to-home-btn:active {
    transform: translateY(0);
}

/* ===================================
   GALLERY SECTION
   ================================= */

.gallery {
    background: #2A3138;
    padding: 87px 0 100px;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.gallery .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.gallery__header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gallery__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    /* max-width: 700px; */
    margin: 0 auto;
    font-weight: 400;
}

.gallery__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gallery__row {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.gallery__track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-play-state: running;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.gallery__row--ltr .gallery__track {
    animation: scroll-left 300s linear infinite;
}

.gallery__row--rtl .gallery__track {
    animation: scroll-right 300s linear infinite;
}

.gallery__item {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Pause animation on hover */
.gallery__container:hover .gallery__track {
    animation-play-state: paused;
}

/* Force animations even if user prefers reduced motion */
.gallery__track {
    will-change: transform;
}

/* Ensure animations work on all browsers */
.gallery__row--ltr .gallery__track {
    -webkit-animation: scroll-left 60s linear infinite;
    -moz-animation: scroll-left 60s linear infinite;
    -o-animation: scroll-left 60s linear infinite;
    animation: scroll-left 60s linear infinite;
}

.gallery__row--rtl .gallery__track {
    -webkit-animation: scroll-right 60s linear infinite;
    -moz-animation: scroll-right 60s linear infinite;
    -o-animation: scroll-right 60s linear infinite;
    animation: scroll-right 60s linear infinite;
}

/* Truly Seamless Scrolling animations */
@keyframes scroll-left {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .gallery {
        padding: 80px 0;
    }

    .gallery__item {
        width: 240px;
        height: 170px;
    }

    .gallery__track {
        /* gap: 20px; */
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery .container {
        /* padding: 0 20px; */
        max-width: 100%;
    }

    .gallery__header {
        margin-bottom: 48px;
    }

    .gallery__title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }

    .gallery__subtitle {
        font-size: 1rem;
        /* padding: 0 20px; */
    }

    .gallery__item {
        width: 190px;
        height: 135px;
    }

    .gallery__track {
        /* gap: 12px; */
    }

    .gallery__container {
        /* gap: 16px; */
    }

    .gallery__row--ltr .gallery__track {
        animation-duration: 55s;
    }

    .gallery__row--rtl .gallery__track {
        animation-duration: 55s;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 50px 0;
    }

    .gallery .container {
        /* padding: 0 0px; */
        max-width: 100%;
    }

    .gallery__header {
        margin-bottom: 40px;
    }

    .gallery__title {
        font-size: 1.6rem;
    }

    .gallery__subtitle {
        font-size: 0.95rem;
        /* padding: 0 16px; */
    }

    .gallery__item {
        width: 170px;
        height: 120px;
        border-radius: 6px;
    }

    .gallery__track {
        gap: 10px;
    }

    .gallery__container {
        gap: 5px;
    }
}

/* ===================================
   CTA BAND
   ================================= */

.cta-band {
    background: url('../assets/Images/get.jpg');
    background-size: cover;
    background-position: center center;
    /* background-attachment: fixed; */
    color: white;
    text-align: center;
    padding: 6rem 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow-x: hidden;
    overflow: hidden;
}

.cta-band .container {
    max-width: 1200px;
    margin: 0 auto;
    /* width: 100%; */
}

.cta-band__content {
    max-width: 830px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-band__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.cta-band__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.cta-band__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5C86B0 0%, #4A72A0 100%);
    color: white;
    padding: 15px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-band__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); */
    transition: left 0.6s ease;
}

.cta-band__btn:hover::before {
    left: 100%;
}

.cta-band__btn:hover {
    background: linear-gradient(135deg, #4A72A0 0%, #3A5B7D 100%);
    transform: translateY(-4px) scale(1.05);
    color: white;
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
}

.cta-band__btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.cta-band__trust {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
    margin-top: 2rem;
    font-family: 'Montserrat', sans-serif;
}

/* CTA Band Responsive Design */
@media (max-width: 768px) {
    .cta-band {
        padding: 60px 0;
    }

    .cta-band .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .cta-band__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .cta-band__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-band__btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-band {
        padding: 50px 0;
    }

    .cta-band .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .cta-band__title {
        font-size: 1.8rem;
    }

    .cta-band__subtitle {
        font-size: 0.95rem;
    }

    .cta-band__btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}


/* ===================================
   FOOTER
   ================================= */

.footer {
    background: #4A5568;
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.footer__top {
    background: #2A3138;
    padding-bottom: 40px;
    padding-top: 40px;
}

.footer__cols {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 40px; */
}

/* Plus10 Brand Column */
.footer__col--brand {
    max-width: 300px;
}

.footer__logo {
    height: auto;
    width: 213px;
    margin-bottom: 12px;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

/* Section Titles */
.footer__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

/* Our Address Section */
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer__contact-icon {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.footer__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer__contact-link:hover {
    color: white;
    /* transform: translateY(-2px); */
}

.footer__contact-item:hover {
    /* transform: translateY(-2px); */
}

.footer__contact-item:hover .footer__contact-icon {
    /* transform: scale(1.1); */
}

.footer__contact-item {
    transition: all 0.3s ease;
}

.footer__contact-link:focus {
    color: #fff;
}

.footer__contact-icon {
    transition: all 0.3s ease;
}

.footer__contact-link .footer__contact-icon {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Quick Links Section */
.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    line-height: 1.5;
    font-weight: 400;
}

.footer__list a:hover {
    color: white;
}

/* Social Links */
.social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    text-decoration: none;
    font-size: 20px;
}

.social__link:hover {
    color: white;
    transform: translateY(-2px);
}

.social__icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Bottom Bar */
.footer__bottom {
    background: #2A3138;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}

.footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 0 40px; */
}

.footer__left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__copyright {
    margin: 0;
}

.footer__solution-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer__domedia-logo {
    height: 18px;
    width: auto;
    margin: 0 4px;
}

.footer__domedia-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer__domedia-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__domedia-link:hover {
    transform: translateY(-1px);
}

.footer__domedia-link:hover .footer__domedia-text {
    color: rgba(255, 255, 255, 0.9);
}

.footer__domedia-link:hover .footer__domedia-logo {
    transform: scale(1.05);
}

.footer__legal {
    display: flex;
    gap: 16px;
    justify-self: end;
    align-items: center;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer__legal a:hover {
    color: white;
}

.footer__legal-divider {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .footer__cols {
        gap: 30px;
        /* padding: 0 30px; */
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer__bottom-content {
        /* padding: 0 30px; */
        gap: 10px;
    }
}

/* @media (max-width: 900px) { */
@media (max-width: 991px) {
    .footer__top {
        padding: 50px 0;
    }

    .footer__cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        /* padding: 0 30px; */
    }

    .footer__bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        /* gap: 16px; */
        /* padding: 0 30px; */
    }

    .footer__left {
        justify-self: center;
        order: 2;
    }

    .footer__copyright {
        /* order: 1; */
    }

    .footer__legal {
        justify-self: center;
        order: 3;
    }

    .footer__bottom {
        padding-bottom: 35px;
        padding-top: 35px;
    }
}

@media (max-width: 767px) {
    .footer__top {
        padding: 60px 0 50px 0;
    }

    .footer__cols {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        /* padding: 0 20px; */
        max-width: 100%;
    }

    /* Center logo and brand section */
    .footer__col--brand {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: -1;
    }

    .footer__logo {
        /* height: 80px; */
        margin-bottom: 40px;
        width: 235px;
    }

    .footer__tagline {
        text-align: center;
        /* max-width: 280px; */
        line-height: 1.5;
        font-size: 15px;
    }

    .footer__title {
        font-size: 1.1rem;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Center contact items */
    .footer__contact {
        align-items: center;
    }

    .footer__contact-item,
    .footer__contact-link {
        justify-content: center;
        text-align: center;
    }

    /* Center social icons */
    .social {
        justify-content: center;
        gap: 24px;
    }

    /* Footer bottom section mobile layout */
    .footer__bottom {
        /* padding: 20px 0; */
    }

    .footer__solution-text {
        margin-left: 0;
    }

    .footer__bottom-content {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
        text-align: center;
    }

    .footer__left {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.8rem;
        order: 1;
    }

    .footer__legal {
        justify-content: center;
        gap: 12px;
        order: 2;
        font-size: 0.8rem;
    }

    .footer__legal-divider {
        font-size: 0.8rem;
    }
}

@media (max-width: 1439px) {
    .hero__title {
        font-size: 50px;
        line-height: 1.4;
    }

    .hero__copy {
        margin-bottom: 15px;
        font-size: 19px;
    }
}

@media (max-width: 1365px) {
    .hero__title {
        margin-bottom: 40px;
    }

    .hero__copy {
        margin-bottom: 45px;
    }
}

@media (max-width: 1199px) {
    .hero__copy {
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__legal {
        gap: 10px;
    }

    .footer__domedia-logo {
        margin: 0 0 0 -2px;
    }

    .footer__solution-text {
        margin-left: 5px;
    }
}

/* Tablet landscape responsive - 1024px and below */
@media (max-width: 1024px) and (min-width: 769px) {

    /* HERO SECTION TABLET */
    .hero {
        padding: 100px 0 80px;
        /* min-height: 85vh; */
    }

    .hero .container {
        max-width: 90%;
        /* padding: 0 2rem; */
    }

    .hero__logo-icon {
        width: 320px;
        height: 170px;
        padding-right: 550px;
    }

    .hero__content {
        text-align: left;
        max-width: 550px;
        /* margin-bottom: 3rem; */
    }

    .hero__title {
        /* font-size: 90px; */
        /* line-height: 1.1; */
        margin-bottom: 1.5rem;
    }

    .hero__copy {
        font-size: 30px;
        line-height: 1.6;
        /* max-width: 670px; */
    }

    .hero__btn {
        padding: 22px 43px;
        font-size: 24px;
        display: inline-flex;
    }

    .hero__cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        justify-content: center;
        margin: 3rem auto 0;
        max-width: 700px;
    }

    .hero__card {
        padding: 1.25rem 1rem;
        min-height: 120px;
        border-radius: 14px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transition: all 0.4s ease;
    }

    .hero__card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    }

    .hero__card-icon {
        width: 52px;
        height: 52px;
    }

    .hero__card-icon img {
        width: 36px;
        height: 36px;
    }

    .hero__card-title {
        font-size: 0.95rem;
        font-weight: 600;
    }

    /* SERVICES SECTION TABLET */
    .services {
        padding: 120px 0 100px;
    }

    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        /* max-width: 900px; */
        margin: 0 auto;
    }

    .service-card {
        /* height: 320px; */
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }


    .service-card__title {
        font-size: 18px;
        padding: 0 1rem;
    }

    /* STORY SECTION TABLET */
    .split {
        padding: 120px 0;
    }

    .split__container {
        grid-template-columns: 55% 45%;
        gap: 0;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }

    .split__content-inner {
        margin-left: 3rem;
        max-width: 480px;
    }

    .split__title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .split__desc {
        font-size: 17px;
        line-height: 1.8;
    }

    .split__media {
        border-radius: 0;
        overflow: hidden;
        box-shadow: none;
        width: 100%;
        height: 100%;
    }

    .split__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* STEPS SECTION TABLET */
    .steps {
        padding: 120px 0;
    }

    .steps .section__title {
        font-size: clamp(2.5rem, 5vw, 3rem);
        max-width: 700px;
        margin: 0 auto 1rem;
    }

    .steps .section__subtext {
        font-size: 18px;
        max-width: 600px;
    }

    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        /* max-width: 900px; */
        margin: 0 auto;
    }

    .step-card {
        /* padding: 2rem 1.5rem; */
        border-radius: 18px;
        transition: all 0.4s ease;
        background: #ffffff;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(92, 134, 176, 0.2);
    }

    .step-card:hover {
        transform: translateY(-10px);
        background: #f8f9fa;
        border-color: rgba(92, 134, 176, 0.3);
    }

    .step-card__image {
        /* height: 180px; */
        /* border-radius: 14px; */
        margin-bottom: 1.5rem;
    }

    .step-card__title {
        font-size: 22px;
        margin: 1.5rem 0 1rem;
    }

    .steps__cta {
        /* display: none; */
    }

    /* VALUES SECTION TABLET */
    .values-split {
        padding: 120px 0;
    }

    .values-split .container {
        grid-template-columns: 50% 40%;
        gap: 5px;
        /* padding: 0 45px; */
    }

    .values-split__title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .values-split__desc {
        font-size: 18px;
        line-height: 1.8;
        max-width: 90%;
    }

    .values-split__right {
        min-height: 600px;
    }

    .value-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
        transform: scale(0.95);
        transition: all 0.4s ease;
    }

    .value-card:hover {
        transform: scale(1) translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .value-card__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .value-card__title {
        font-size: 20px;
        margin-bottom: 1rem;
    }

    /* TESTIMONIALS SECTION TABLET */
    .testimonials {
        padding: 120px 0;
    }

    .testimonials .container {
        max-width: 100%;
        /* width: 100%; */
        /* padding: 0 30px; */
    }


    /* .testimonial-card {
        background: #FFFFFF;
        border-radius: 20px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        display: grid;
        grid-template-columns: 35% 50% 15%;
        gap: 0px;
        padding: 10px;
        width: 100%;
        min-height: 380px;
        align-items: stretch;
        transform: scale(0.95);
        transition: all 0.4s ease;
        max-width: 900px;
        margin: 0 auto;
    } */

    .testimonial-card.swiper-slide-active {
        transform: scale(1);
    }

    .testimonial-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-card__content {
        display: flex;
        flex-direction: column;
        padding: 0;
        justify-content: center;
    }

    .testimonial-card__quote h3 {
        font-family: 'Montserrat', sans-serif;
        /* font-size: 32px; */
        font-weight: 500;
        color: #4A90E2;
        line-height: 1.2;
        /* margin: 0 0 8px 0; */
    }

    .testimonial-card__stars {
        display: flex;
        gap: 4px;
        /* margin: 8px 0 16px 0; */
    }

    .testimonial-card__stars i {
        color: #FFD700;
        font-size: 18px;
    }

    .testimonial-card__text {
        color: #4A5568;
        line-height: 1.7;
        margin: 0 0 16px 0;
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        text-align: left;
    }

    .testimonial-card__text:last-of-type {
        margin-bottom: 0;
    }

    .testimonial-card__content {
        display: flex;
        flex-direction: column;
        padding: 10px;
        justify-content: center;
    }

    .testimonial-card__author {
        /* margin-top: auto; */
        padding-top: 16px;
    }

    .testimonial-card__name {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 600;
        /* color: #2D3748; */
        margin: 0 0 4px 0;
    }

    .testimonial-card__age {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        color: #698DB2;
        margin: 0;
    }


    /* CTA SECTION TABLET */
    .cta-band {
        padding: 120px 0;
    }

    .cta-band__title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }

    .cta-band__subtitle {
        font-size: 1.3rem;
        max-width: 650px;
        margin-bottom: 3rem;
    }

    .cta-band__btn {
        padding: 18px 45px;
        font-size: 1.2rem;
        border-radius: 14px;
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    }

    .cta-band__btn:hover {
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 15px 40px rgba(74, 144, 226, 0.6);
    }

    /* FOOTER SECTION TABLET */
    .footer {
        padding: 0px 0 0;
    }

    .footer__cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        /* padding: 0 2rem; */
        /* max-width: 900px; */
        margin: 0 auto;
    }

    .footer__col h3 {
        font-size: 1.3rem;
        /* margin-bottom: 1.5rem; */
    }

    .footer__col ul li {
        margin-bottom: 0.75rem;
    }

    .footer__col ul li a {
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .footer__col ul li a:hover {
        transform: translateX(4px);
        color: #7AA3CC;
    }

    /* FOOTER BOTTOM TABLET OPTIMIZED */
    .footer__bottom {
        padding: 30px 0;
        margin-top: 0px;
    }

    .footer__bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* max-width: 900px; */
        margin: 0 auto;
        /* padding: 0 2rem; */
        /* gap: 1rem; */
        text-align: center;
    }

    .footer__left {
        justify-content: center;
        align-items: center;
        /* gap: 1rem; */
        order: 1;
    }

    .footer__left .footer__logo {
        width: 50px;
        height: 25px;
        margin-right: 0.75rem;
    }

    .footer__left .footer__copyright {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer__right {
        order: 2;
    }

    .footer__legal {
        display: flex;
        align-items: center;
        justify-content: center;
        /* gap: 1.5rem; */
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer__legal a {
        transition: all 0.3s ease;
    }

    .footer__legal a:hover {
        color: rgba(255, 255, 255, 0.9);
    }

    .footer__legal-divider {
        color: rgba(255, 255, 255, 0.4);
    }

    /* Hide social icons in footer bottom for tablet */
    .footer__center,
    .footer__bottom .social {
        display: none;
    }
}

@media (max-width: 1199px) {
    .values-split .container {
        grid-template-columns: 100%;
    }
}

@media (max-width: 768px) {

    /* Reduce hero logo size for tablet */
    .hero__logo-icon {
        width: 220px;
        height: 110px;
    }

    /* Limit hero content width for better readability */
    .hero__content {
        max-width: 400px;
    }

    /* Adjust Get Started button for tablet */
    .hero__btn {
        display: inline-flex;
        padding: 14px 28px;
        font-size: 16px;
        margin-top: 20px;
    }

    /* Keep 4 action cards visible on tablet - already handled by existing grid */
}

/* Mobile responsive - 480px and below */
@media (max-width: 480px) {

    /* Further reduce hero logo size for mobile */
    .hero__logo-icon {
        width: 180px;
        height: 90px;
    }

    /* Reduce hero content width for mobile */
    .hero__content {
        max-width: 320px;
    }

    /* Ensure hero title "10 Years To Your Healthspan" remains visible */
    .hero__title {
        font-size: 48px;
        line-height: 1.1;
        text-align: center;
    }

    /* Center hero content on mobile */
    .hero__content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    /* Hero copy text responsive */
    .hero__copy {
        font-size: 18px;
        text-align: center;
        /* max-width: 90%; */
        /* margin: 0 auto 30px auto; */
    }

    /* Center hero actions button */
    .hero__actions {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Center hero logo on mobile */
    .hero__logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero__logo-container {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Hide 4 action cards completely on mobile - already done with display: none */
    .quick-actions__grid {
        display: none;
    }
}

/* ===================================
   SCROLL DOWN ARROW COMPONENT
   ================================= */

.scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-arrow:hover i {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   ================================= */

/* Extra Large screens */
@media (min-width: 1600px) {
    .hero__content {
        max-width: 1200px;
    }

    .hero__cards {
        max-width: 1200px;
    }
}

/* Large screens */
@media (max-width: 1199px) {
    :root {
        --container-padding: 1.5rem;
    }
}

/* Medium screens */
@media (max-width: 1199px) {
    .navbar__container {
        justify-content: space-between;
    }

    .navbar__brand {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex: 1;
    }

    .navbar__logo {
        height: 50px;
        width: auto;
        max-width: 200px;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: 110%;
        height: 100vh;
        width: min(350px, 85vw);
        background: linear-gradient(135deg, #3A5B7D 0%, #4A72A0 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 0.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
        padding: 4rem 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar__menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        pointer-events: none;
    }

    .navbar__menu.navbar__menu--active {
        left: 0;
    }

    .navbar__item {
        width: 100%;
        margin: 0;
    }

    .navbar__toggle {
        display: flex;
        z-index: 1001;
    }

    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: white;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }

    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: white;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    .navbar__toggle.navbar__toggle--active {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .navbar__link {
        color: white !important;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.4;
        padding: 1.2rem 0;
        text-align: left;
        width: 100%;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        display: block;
        margin: 0.25rem -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        text-decoration: none;
        overflow: hidden;
    }

    .navbar__link::after {
        content: '';
        position: absolute;
        bottom: 0.5rem;
        left: 2rem;
        width: 0;
        height: 2px;
        background: #4A90E2;
        transition: width 0.3s ease;
    }

    /* Disabled - using simple white underline instead */
    /* .navbar__link:hover::after {
        width: calc(100% - 4rem);
    }

    .navbar__link:hover {
        color: #4A90E2 !important;
    } */

    .navbar__link:active {
        opacity: 0.8;
    }

    .navbar__link--cta {
        margin: 1.5rem -1.5rem 0 -1.5rem;
        background: linear-gradient(135deg, #4A90E2 0%, #3A7BC8 100%);
        color: white !important;
        text-align: center;
        border-radius: 12px;
        padding: 5px 20px;
        line-height: 1.3;
        font-weight: 600;
        letter-spacing: 0.3px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        font-size: 1rem;
    }

    .navbar__link--cta::before {
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    /* Disabled - using simple white underline instead */
    /* .navbar__link--cta:hover {
        background: linear-gradient(135deg, #3A7BC8 0%, #2A5B98 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
        border-color: rgba(255, 255, 255, 0.4);
        border-left: none;
    } */

    .navbar__link--cta:active {
        transform: translateY(-1px) scale(0.98);
    }

    body.navbar-open {
        overflow: hidden;
    }

    body.navbar-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 998;
        opacity: 0;
        animation: fadeInOverlay 0.4s ease forwards;
    }

    @keyframes fadeInOverlay {
        to {
            opacity: 1;
        }
    }

    .hero {
        width: 100%;
        margin-left: 0;
        /* height: 100vh; */
        /* min-height: 700px; */
    }

    .hero .container {
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        width: 100%;
        max-width: 1200px;
    }

    .hero__content {
        text-align: justify;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        /* grid-template-rows: repeat(3, 1fr); */
        gap: 25px;
        justify-content: center;
        /* max-width: 700px; */
    }

    .service-card {
        width: 100%;
        /* height: 280px; */
        border-radius: 12px;
    }

    .service-card__content {
        border-radius: 0 0 12px 12px;
    }

    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps__grid {}

    .split .container {
        grid-template-columns: 1fr;
        gap: 4rem;
        /* text-align: center; */
    }

    .testimonials__swiper .swiper-slide {
        width: 100%;
    }

    .testimonials__swiper .swiper-slide .testimonial-card {
        width: 100%;
        max-width: none;
    }
}

/* Small screens - Enhanced with Bootstrap utilities */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }

    /* Bootstrap-enhanced mobile utilities */
    .container-fluid {
        padding-left: var(--container-padding) !important;
        padding-right: var(--container-padding) !important;
    }

    /* Mobile-first responsive text */
    .display-1,
    .display-2,
    .display-3 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }

    /* Mobile spacing utilities */
    .py-mobile-lg {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .my-mobile-lg {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    /* Bootstrap responsive grid helpers */
    .row {
        /* margin-left: -0.5rem !important; */
        /* margin-right: -0.5rem !important; */
    }

    .col,
    .col-12 {
        /* padding-left: 0.5rem !important; */
        /* padding-right: 0.5rem !important; */
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        /* min-height: 100vh; */
        /* height: 100vh; */
        text-align: center;
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .hero .container {
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-top: 0;
    }

    .hero__logo {
        /* display: block; */
        margin-bottom: 15px;
        text-align: center;
    }

    .hero__logo-icon {
        width: 250px;
        height: 125px;
    }

    .hero__content {
        padding: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero__cards {
        display: none;
    }

    .hero__title {
        /* font-size: clamp(2.2rem, 8vw, 3.5rem); */
        /* line-height: 1.1; */
        /* margin-bottom: 1.5rem; */
    }

    .hero__copy {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        line-height: 1.5;
        /* margin-bottom: 2rem; */
        /* max-width: 90%; */
        margin-left: auto;
        margin-right: auto;
    }

    .hero__btn {
        display: inline-flex;
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        margin-top: 24px;
        width: auto;
        min-width: 180px;
        text-align: center;
    }

    .services__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 24px;
        justify-content: center;
        /* max-width: 400px; */
    }

    /* Bootstrap-enhanced service cards for mobile */
    .service-card {
        width: 100%;
        /* height: 250px; */
        border-radius: 12px;
    }

    /* Bootstrap responsive classes for services */
    .services .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .service-card.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .service-card__content {
        border-radius: 0 0 12px 12px;
        padding: 10px 16px;
    }

    .service-card__title {
        font-size: 0.9rem;
    }

    .steps__grid,
    .values__grid,
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .service-card__title {
        font-size: 18px;
    }

    .service-card__title-bar {
        min-height: 53px;
    }

    .hero {
        min-height: 670px;
        max-height: 100vh;
    }

    .hero__title {
        margin-bottom: 20px;
    }

    .service-card {
        /* height: 280px; */
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    .hero {
        /* min-height: 100vh; */
        padding-top: 2rem;
    }

    .hero__logo-icon {
        width: 250px;
        height: 125px;
    }

    .hero__title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.1;
        /* margin-bottom: 1rem; */
    }

    .hero__copy {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
        line-height: 1.4;
        /* margin-bottom: 1.5rem; */
        /* max-width: 70%; */
    }

    .hero__btn {
        display: inline-flex;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 8px;
        margin-top: 20px;
        min-width: 160px;
        box-shadow: 0 3px 12px rgba(74, 144, 226, 0.25);
    }

    .hero__cards {
        display: none;
    }

    .hero__card {
        padding: 1.5rem;
    }

    .hero__logo-container {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Section titles for mobile */
    .section__title {
        font-size: clamp(1.75rem, 6vw, 2.2rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .section__subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem) !important;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    /* Enhanced mobile padding */
    .section {
        padding: 3.2rem 0px;
    }

    /* Bootstrap-enhanced mobile container adjustments */

    /* Mobile container-fluid for full width sections */
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        width: 100% !important;
        max-width: none !important;
    }

    /* Mobile responsive container variants */
    .container-sm-mobile {
        max-width: 540px !important;
        padding: 0 1rem !important;
        margin: 0 auto !important;
    }

    .container-md-mobile {
        max-width: 720px !important;
        padding: 0 1.25rem !important;
        margin: 0 auto !important;
    }

    /* Section-specific mobile containers */
    .hero .container {
        /* padding: 0 1rem !important; */
        max-width: 482px !important;
    }

    .services .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    .testimonials .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }

    .blog .container {
        /* padding: 0 1rem !important; */
        max-width: 100% !important;
    }

    /* Mobile navbar toggle adjustments - smaller size */
    .navbar__toggle {
        padding: 0.25rem;
        gap: 3px;
        border-radius: 6px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar__toggle-bar {
        width: 18px;
        height: 2px;
    }

    .navbar__toggle:hover {
        transform: scale(1.02);
        background: rgba(255, 255, 255, 0.08);
    }

    /* Close icon when navbar is active - X icon */
    .navbar__toggle.navbar__toggle--active {
        transform: scale(1.05);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar {
        background: white;
    }

    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    /* Add close icon alternative - using Font Awesome */
    .navbar__toggle.navbar__toggle--active::after {
        content: '\f00d';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        font-size: 16px;
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Show close icon, hide hamburger bars when active */
    .navbar__toggle.navbar__toggle--active .navbar__toggle-bar {
        opacity: 0;
    }

    .navbar__toggle.navbar__toggle--active::after {
        opacity: 1;
    }

    /* Bootstrap Mobile Typography & Spacing Utilities */
    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.2 !important;

    }

    .display-4 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        font-weight: 600 !important;
        line-height: 1.1 !important;
    }

    .lead {
        font-size: clamp(1rem, 4vw, 1.25rem) !important;
        line-height: 1.4 !important;
    }

    /* Bootstrap responsive spacing for mobile */
    .px-mobile-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-mobile-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .px-mobile-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-mobile-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-mobile-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .py-mobile-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-mobile-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .py-mobile-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .py-mobile-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-mobile-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-mobile-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-mobile-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .text-left-mobile {
        text-align: left !important;
    }

    /* Mobile-optimized card spacing */
    .card-mobile {
        margin-bottom: 1.5rem !important;
        border-radius: 0.75rem !important;
        box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1) !important;
    }

    /* Mobile button improvements */
    .btn-mobile-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1.1rem !important;
        border-radius: 0.5rem !important;
    }

    .btn-mobile-block {
        display: block !important;
        width: 100% !important;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    :root {
        --container-padding: 0.75rem;
    }

    .hero__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1;
        margin-bottom: 0.75rem;
    }

    .hero__copy {
        font-size: clamp(0.9rem, 3.2vw, 1rem);
        line-height: 1.4;
        margin-bottom: 1.25rem;
        max-width: 100%;
    }

    .hero__logo-icon {
        width: 160px;
        height: 80px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .hero__btn {
        display: inline-flex;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        margin-top: 16px;
        min-width: 140px;
        box-shadow: 0 2px 10px rgba(74, 144, 226, 0.2);
        touch-action: manipulation;
    }

    /* Mobile-specific button hover/active states */
    .hero__btn:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }

    .hero__btn:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 1px 8px rgba(74, 144, 226, 0.25);
    }
}

.section__title {
    /* font-size: clamp(1.5rem, 5.5vw, 1.9rem) !important; */
}

.section__subtitle {
    font-size: clamp(0.85rem, 3.2vw, 1rem) !important;
}

/* ===================================
   NAVBAR CUSTOMIZATION
   ================================= */

/* Hide navbar menu on desktop */
@media (min-width: 1025px) {

    .navbar__menu,
    .navbar ul {
        display: none !important;
    }

    .navbar__toggle {
        display: none !important;
    }
}

/* Show only logo on desktop */
@media (min-width: 1025px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar__container {
        justify-content: center;
    }

    .navbar__brand {
        margin: 0 auto;
    }
}

@media (min)
/* ===================================
   NAVBAR FIXES FOR BAGELS NAVIGATION
   ================================= */

/* Ensure Bagels navbar is visible and functional */
    {}


.navbar.navbar-fixed-top.navbar-default .navbar-nav {
    display: flex !important;
    visibility: visible !important;
}

.navbar.navbar-fixed-top.navbar-default .navbar-nav>li {
    display: block !important;
    visibility: visible !important;
    margin-left: 10px;
    margin-bottom: 0;
}

.navbar.navbar-fixed-top.navbar-default .navbar-nav>li>a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    padding: 15px !important;
}

/* Desktop navbar visibility */
@media (min-width: 768px) {
    .navbar.navbar-fixed-top.navbar-default .navbar-collapse {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
    }

    .navbar.navbar-fixed-top.navbar-default .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end;
    }
}

/* ===================================
   MOBILE STICKY NAVBAR (DISABLED)
   ================================= */

.mobile-sticky-nav {
    display: none !important;
    /* Disabled - using Bagels navbar-fixed-top navbar-default only */
}

.mobile-sticky-nav.sticky-active {
    transform: translateY(0);
}

/* Show only on mobile/tablet devices */
@media (max-width: 1199px) {
    .mobile-sticky-nav {
        display: block;
    }
}

.mobile-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.mobile-nav-left {
    flex: 0 0 auto;
}

.mobile-nav-logo {
    height: 50px;
    width: auto;
}

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

.mobile-ham-icon {
    display: block;
    width: 35px;
    height: 30px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-ham-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: #4A5568;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-ham-icon:hover span {
    background: #7AA3CC;
}

/* Active hamburger animation */
.mobile-ham-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-ham-icon.active span:nth-child(2) {
    opacity: 0;
}

.mobile-ham-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-ham-icon.active span:nth-child(4) {
    display: none;
}

/* ===================================
   FRONT PAGE MOBILE NAV STYLING
   ================================= */

/* Front page mobile nav - removed contact-header references */

/* Mobile nav links styling - removed contact references */

/* Front page mobile hamburger menu styling */
.mobile-sticky-nav .mobile-menu {
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

/* Front page hamburger menu sizing */
.contact-mobile-menu {
    width: 40px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
}

.mobile-sticky-nav .contact-mobile-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-sticky-nav .contact-mobile-menu span,
.sidebar-toggler.contact-mobile-menu span {
    background: #ffffff !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Ensure front page hamburger menu is always white */
.contact-mobile-menu span {
    background: #ffffff !important;
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hide entire mobile sticky nav on desktop */
@media (min-width: 769px) {
    .mobile-sticky-nav {
        display: none !important;
    }
}

/* Mobile responsive styles for contact removed */

.mobile-sticky-nav .contact-mobile-menu {
    padding: 6px 10px;
}


/* ===================================
   CONTACT PAGE STYLING
   ================================= */

/* Contact Section - matches footer background */
.contact-section {
    background: #2A3138;
    padding: 80px 0;
    min-height: 100vh;
}

.contact-section .page-header {
    border: none;
}

/* Page Header - matches section styling pattern */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Contact Content Grid - matches front-page two-column layouts */
.contact-content {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

/* Desktop specific layout improvements */
@media (min-width: 768px) {
    .contact-content {
        /* display: grid; */
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
        align-items: start;
    }


    .contact-info-section {
        color: white;
        padding: 30px 20px;
    }

    .contact-info-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 30px;
        font-family: 'Poppins', sans-serif;
    }
}



/* Contact Info Section */
.contact-info-section {
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}

.contact-social-title,
.contact-info-title {
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    color: white;
}

.contact-info-title {
    margin-bottom: 20px;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    margin: 0;
}

/* Contact Details Styling */
.contact-details {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    width: calc(100% / 3);
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.contact-detail-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.contact-detail-item>i {
    font-size: 35px;
}

.contact-detail-content {
    flex: 1;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-detail-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-detail-link:hover,
.contact-detail-link:focus {
    color: white;
    /* text-decoration: underline; */
}

.contact-detail-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Social Media Section */
.contact-social {
    padding-top: 20px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
}

.contact-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Responsive Design - matches front-page responsive patterns */
@media (max-width: 1199px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .page-title {
        /* font-size: 2.5rem; */
    }

    .contact-info-title {
        /* font-size: 1.5rem !important; */
    }

    .contact-info-section {
        /* padding: 20px !important; */
    }
}

@media (max-width: 991px) {
    .contact-detail-item {
        padding-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 30px;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .page-title {
        /* font-size: 2rem; */
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .contact-info-title {
        /* font-size: 1.4rem !important; */
        margin-bottom: 25px !important;
    }

    .contact-detail-item {
        padding: 15px;
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;
    }

    .contact-detail-content h4 {
        font-size: 1rem;
    }

    .contact-detail-link,
    .contact-detail-text {
        font-size: 0.9rem;
    }

    .contact-social-link {
        width: 45px;
        height: 45px;
    }

    .contact-social-icon {
        width: 20px;
        height: 20px;
    }


    .contact-info-section {
        /* padding: 15px !important; */
    }
}

/* ===================================
   CONTACT FORM 7 STYLING
   ================================= */

/* Contact Form 7 Form Container */
.wpcf7 {
    margin: 0;
}

.wpcf7-form {
    font-family: 'Montserrat', sans-serif;
}

/* Form Field Containers */
.wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Labels */
.wpcf7-form label {
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Input Fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Input Focus States */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #5C86B0;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(92, 134, 176, 0.3);
}

/* Placeholder Styling */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

/* Textarea Specific */
.wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    background: #5C86B0;
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0px;
}

.wpcf7-form input[type="submit"]:hover {
    background: #4A72A0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 134, 176, 0.4);
}

.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Validation Messages */
.wpcf7-not-valid-tip {
    color: #FF6B6B;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

.wpcf7-validation-errors {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #FF6B6B;
    border-radius: 8px;
    padding: 15px;
    color: #FF6B6B;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Success Message */
.wpcf7-mail-sent-ok {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid #28A745;
    border-radius: 8px;
    padding: 15px;
    color: #28A745;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Loading Spinner */
/* .wpcf7-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid white;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    visibility: visible;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
} */

.wpcf7 .wpcf7-spinner::before {
    top: 3px;
    left: 3px;
}

.wpcf7 .wpcf7-spinner {
    position: absolute;
    margin: auto;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    opacity: 1;
    border: 1px solid #fff;
}

.contact-form-section {
    max-width: 500px;
    margin: auto;
}

.wpcf7 .book-appointment__form-row {
    display: flex;
    gap: 10px;
}

.wpcf7 .book-appointment__form-submit>p {
    position: relative;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Two Column Layout for Desktop */
@media (min-width: 768px) {
    .wpcf7-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .wpcf7-form .form-full {
        grid-column: 1 / -1;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 12px 16px;
        font-size: 16px;
    }

    .wpcf7-form input[type="submit"] {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }

    .wpcf7 .book-appointment__form-row {
        display: block;
    }

    .contact-content {
        margin-top: 0;
    }

    .contact-section .page-header {
        margin-bottom: 30px;
    }

    .contact-details {
        flex-wrap: wrap;
        margin-bottom: 50px;
    }

    .contact-detail-item {
        width: 100%;
        padding-bottom: 25px;
        margin-bottom: 0;
    }
}


/* ===================================
   LEGAL PAGES STYLING (Privacy Policy & Legal Notice)
   ================================= */

.privacy-policy-section,
.legal-notice-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #2d3748;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #698DB2;
    display: inline-block;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 16px;
}

.legal-section strong {
    color: #2d3748;
    font-weight: 600;
}

/* Legal Pages Mobile Responsive */
@media (max-width: 768px) {

    .privacy-policy-section,
    .legal-notice-section {
        padding: 40px 0;
    }

    .legal-content {
        margin: 0 15px;
        padding: 30px 25px;
        border-radius: 15px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .privacy-policy-section,
    .legal-notice-section {
        padding: 30px 0;
    }

    .legal-content {
        margin: 0 10px;
        padding: 25px 20px;
        border-radius: 12px;
    }

    .legal-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .legal-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }
}

.thankyou-btn--secondary {
    background: transparent;
    color: #7AA3CC;
    border: 2px solid #7AA3CC;
}

.thankyou-btn--secondary:hover {
    background: #7AA3CC;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Contact Info Section */
.thankyou-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(42, 49, 56, 0.1);
}

.thankyou-contact-text {
    font-size: 1rem;
    color: #666;
    margin: 0 0 20px 0;
}

.thankyou-contact-details {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-contact-item {
    color: #7AA3CC;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thankyou-contact-item:hover {
    background: rgba(122, 163, 204, 0.1);
    text-decoration: none;
    color: #698DB2;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .thankyou-content {
        padding: 50px 30px;
        margin: 0 20px;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .thankyou-section {
        padding: 40px 0;
    }

    .thankyou-content {
        padding: 40px 25px;
        margin: 0 15px;
        border-radius: 20px;
    }

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

    .thankyou-description {
        font-size: 1rem;
    }

    .thankyou-logo-img {
        max-width: 120px;
    }

    .checkmark-circle {
        width: 60px;
        height: 60px;
    }

    .checkmark {
        width: 25px;
        height: 25px;
    }

    .checkmark::before {
        width: 12px;
        height: 20px;
        left: 6px;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-btn {
        width: 100%;
        max-width: 250px;
    }

    .thankyou-contact-details {
        flex-direction: column;
        align-items: center;
    }

    /* Hide testimonial navigation arrows on mobile */
    .testimonials__nav,
    .testimonials__nav--positioned,
    .testimonials__nav-btn,
    .testimonials__nav-btn--prev,
    .testimonials__nav-btn--next {
        display: none !important;
    }
}

/* ===================================
   TESTIMONIAL MOBILE RESPONSIVE STYLES
   ================================= */

@media (max-width: 1679px) {
    .testimonials .testimonial-card {
        width: auto;
    }

    .testimonials.section .owl-carousel .owl-stage-outer {
        overflow: hidden;
    }
}

/* Tablet responsive - 768px to 900px */
@media (max-width: 991px) {

    .testimonials .testimonial-card {
        /* width: 70vw; */
    }

    .testimonials.section .owl-carousel .owl-stage-outer {
        overflow: visible;
    }

    .testimonials__swiper .swiper-slide-active .testimonial-card {
        border: 2px solid rgba(122, 163, 204, 0.3);
        background: #FFFFFF;
        border-radius: 20px;
        display: flex;
        gap: 5px;
        padding: 10px;
        width: 100%;
        max-width: 1200px;
        min-height: 380px;
        align-items: stretch;
        position: static;
        box-sizing: border-box;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        margin: 35px auto;
    }

    .testimonials {
        padding: 70px 0;
    }

    .testimonials .container {
        /* padding: 0 25px; */
        max-width: 100%;
    }

    .testimonials__nav--positioned {
        top: 20px;
        right: 25px;
        gap: 10px;
    }

    .testimonials__nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .testimonial-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 25px;
        min-height: auto;
        /* max-width: 500px; */
        margin: 0 auto;
        text-align: center;
    }

    .testimonial-card__image {
        height: auto;
        max-width: 150px;
        border-radius: 50%;
        margin: 0 auto;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(92, 134, 176, 0.3);
        border: 3px solid #ffffff;
    }

    .testimonial-card__content {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-card__quote h3 {
        font-size: 22px;
        text-align: center;
        /* margin-bottom: 16px; */
    }

    .testimonial-card__stars {
        justify-content: center;
        margin: 0px 0 30px;
    }

    .testimonial-card__text {
        text-align: center;
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .testimonial-card__author {
        text-align: center;
        /* margin-top: 20px; */
    }

    .testimonial-card__name,
    .testimonial-card__age {
        display: block;
        margin-left: 0;
        text-align: center;
    }

    .testimonial-card__text:last-of-type {
        margin-bottom: 55px;
    }
}

/* Mobile responsive - 600px and below */
@media (max-width: 600px) {
    .testimonials {
        padding: 60px 15px;
        overflow-x: hidden;
    }

    .testimonials .container {
        padding: 0 20px;
        max-width: 100%;
    }

    /* Hide navigation arrows on mobile - swipe only */
    .testimonials__nav--positioned {
        display: none;
    }

    .testimonials__swiper {
        overflow: visible !important;
        width: 100%;
        padding: 0;
    }

    /* Mobile testimonial card styling */

    #testimonials .testimonial-card {
        align-items: center;
    }

    .testimonial-card {
        background: #FFFFFF;
        border-radius: 16px;
        padding: 30px 20px;
        margin: 0 auto;
        /* max-width: 350px; */
        width: calc(100vw - 40px);
        /* Ensure full width minus padding */
        min-height: auto;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: space-between;
        gap: 16px;
    }

    .testimonial-card__image {
        width: 100px;
        height: 100px;
        margin: 0 auto 16px auto;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .testimonial-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-card__content {
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        flex: 1;

    }

    .testimonial-card__quote h3 {
        font-size: 18px;
        line-height: 1.4;
        font-weight: 600;
        color: #698DB2;
        margin: 0;
        text-align: center;
        max-width: 100%;
        word-wrap: break-word;
    }

    .testimonial-card__stars {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin: 0;
        font-size: 18px;
        color: #FFD700;
        flex-shrink: 0;
    }

    .testimonial-card__text {
        font-size: 14px;
        line-height: 1.5;
        color: #4A5568;
        text-align: center;
        margin: 0 0 8px 0;
        max-width: 100%;
        word-wrap: break-word;
    }


    .testimonial-card__text:last-of-type {
        margin-bottom: 0;
    }

    .testimonial-card__author {
        text-align: center;
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid #e9ecef;
        width: 100%;
    }

    .testimonial-card__name {
        font-size: 16px;
        font-weight: 600;
        color: #7AA3CC;
        margin-bottom: 4px;
        display: block;
    }

    .testimonial-card__age {
        font-size: 14px;
        color: #7AA3CC;
        opacity: 0.7;
        margin: 0;
        display: block;
    }

    /* Mobile swiper slide configuration */
    .testimonials__swiper .swiper-slide {
        width: calc(100vw - 40px);
        /* Set width to be responsive */
        max-width: 380px;
        margin: 0 auto;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 10px;
    }

    .testimonials__swiper .swiper-wrapper {
        display: flex !important;
        align-items: center !important;
    }

    .testimonials__swiper {
        text-align: center;
        overflow: visible !important;
    }

    /* Mobile responsive testimonials height */
    #testimonials .swiper,
    #testimonials .swiper-wrapper,
    #testimonials .swiper-slide {
        height: 400px;
        max-width: 30px;
    }

    /* Enhanced mobile pagination */
    .testimonials .swiper-pagination {
        position: relative;
        bottom: auto;
        margin-top: 30px;
        text-align: center;
    }

    .testimonials .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 6px;
        background: rgba(255, 255, 255, 0.5) !important;
        opacity: 1;
        transition: all 0.3s ease;
    }

    .testimonials .swiper-pagination-bullet-active {
        background: white !important;
        transform: scale(1.2);
        box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
    }
}

/* Enhanced mobile responsive - 480px and below */
@media (max-width: 767px) {
    .testimonials {
        padding: 80px 0 60px;
        background: #698DB2;

    }

    .testimonials .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Enhanced mobile testimonial card with Bootstrap-inspired styling */
    .testimonial-card {
        width: 100%;
        /* max-width: 350px; */
        padding: 30px 20px;
        border-radius: 20px;
        margin: 0 auto;
        background: #ffffff;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        gap: 20px;
    }

    .testimonials .testimonial-card {
        padding: 40px 20px;
        gap: 20px;
        margin-bottom: 20px;
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        /* background: linear-gradient(90deg, #5C86B0 0%, #87CEEB 100%); */
    }

    .testimonial-card.swiper-slide-active {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(92, 134, 176, 0.25);
    }

    .testimonial-card__image {
        width: 110px;
        height: 110px;
        margin: 0 auto 20px auto;
    }

    .testimonial-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover .testimonial-card__image img {
        transform: scale(1.05);
    }

    .testimonial-card__quote h3 {
        font-size: 18px;
        line-height: 1.4;
        /* margin-bottom: 15px; */
        color: #698DB2;
        font-weight: 600;
    }

    .testimonial-card__stars {
        font-size: 18px;
        gap: 4px;
        margin: 15px 0;
        color: #ffc107;
    }

    .testimonial-card__stars i {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .testimonial-card__text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
        color: #555;
        max-width: 280px;
    }

    .testimonial-card__text:last-of-type {
        margin-bottom: 20px;
    }

    .testimonial-card__author {
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1px solid #e9ecef;
        width: 100%;
    }

    .testimonial-card__name {
        font-size: 16px;
        margin-bottom: 5px;
        color: #5C86B0;
        font-weight: 600;
    }

    .testimonial-card__age {
        font-size: 14px;
        color: #6c757d;
        font-style: italic;
    }

    /* Optimized mobile slide configuration */
    .testimonials__swiper .swiper-slide {
        width: calc(100vw - 40px);
        max-width: 370px;
        padding: 0 10px;
        margin: 0 auto;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: auto;
    }

    .testimonials__swiper {
        /* padding: 20px 0 60px 0; */
        overflow: visible;
    }

    .testimonials__swiper .swiper-wrapper {
        align-items: stretch;
    }

    /* Responsive testimonials height with proper spacing */
    #testimonials .swiper,
    #testimonials .swiper-wrapper,
    #testimonials .swiper-slide {
        max-height: 750px;
        height: 600px;
        min-height: 400px;
        max-width: 100%;
    }

    /* Enhanced mobile pagination */
    .testimonials .swiper-pagination {
        position: relative;
        margin-top: 30px;
        text-align: center;
    }

    .testimonials .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 6px;
        background: rgba(92, 134, 176, 0.3);
        border-radius: 50%;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .testimonials .swiper-pagination-bullet-active {
        background: #5C86B0;
        transform: scale(1.2);
        box-shadow: 0 2px 8px rgba(92, 134, 176, 0.4);
    }

    /* Hide navigation arrows on mobile for cleaner look */
    .testimonials__nav,
    .testimonials__nav--positioned,
    .testimonials__nav-btn,
    .testimonials__nav-btn--prev,
    .testimonials__nav-btn--next {
        display: none !important;
    }

    /* Touch-friendly swipe area */
    .testimonials__swiper {
        cursor: grab;
    }

    .testimonials__swiper:active {
        cursor: grabbing;
    }
}

.section {
    overflow: hidden;
}