/* =========================
   HERO SECTION ENHANCEMENT
========================= */

.homepage_container {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px 0 40px;
    text-align: left;
}

/* Background Video */
.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* Content */
.homepage_container .container {
    position: relative;
    z-index: 2;
}

/* Small Heading */
.homepage_container .swiper h5 {
    color: #67d38b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* Decorative Line */
.homepage_container .swiper h5::before {
    content: "";
    width: 45px;
    height: 2px;
    background: linear-gradient(to right, #3c8450, #56c271);
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 50px;
}

/* Main Headings */
.homepage_container .swiper h1,
.homepage_container .swiper h2 {
    color: #fff;
    font-size: 46px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 800px;
    letter-spacing: -1px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.45);
}

/* Gradient Highlight */
.homepage_container .swiper h1 span,
.homepage_container .swiper h2 span {
    background: linear-gradient(to right, #3c8450, #57d08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.homepage_container .swiper p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.9;
    font-weight: 400;
    max-width: 750px;
    margin-bottom: 40px;
}

/* Buttons */
.btn-custom-slider {
    padding: 15px 34px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* White Button */
.btn-custom-slider:first-child {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-custom-slider:first-child:hover {
    transform: translateY(-4px);
    background: #f3f3f3 !important;
}

/* Gradient Button */
.btn-custom-slider:last-child {
    background: linear-gradient(135deg, #3C8450, #326767) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(60, 132, 80, 0.35);
}

.btn-custom-slider:last-child:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(60, 132, 80, 0.5);
}

/* Smooth Animation */
.swiper-slide-active h5,
.swiper-slide-active h1,
.swiper-slide-active h2,
.swiper-slide-active p,
.swiper-slide-active .btn-custom-slider {
    animation: fadeUp 1s ease forwards;
}

.swiper-slide-active h1,
.swiper-slide-active h2 {
    animation-delay: 0.2s;
}

.swiper-slide-active p {
    animation-delay: 0.4s;
}

.swiper-slide-active .btn-custom-slider {
    animation-delay: 0.6s;
}

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 991px) {

    .homepage_container {
        text-align: center;
        padding: 80px 0 50px;
    }

    .homepage_container .swiper h1,
    .homepage_container .swiper h2 {
        font-size: 42px;
        line-height: 1.3;
        margin: auto auto 20px;
    }

    .homepage_container .swiper p {
        font-size: 16px;
        margin: auto auto 35px;
    }

    .homepage_container .swiper h5::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {

    .homepage_container {
        min-height: auto;
        padding: 90px 0 60px;
    }

    .homepage_container .swiper h1,
    .homepage_container .swiper h2 {
        font-size: 32px;
        line-height: 1.35;
    }

    .homepage_container .swiper p {
        font-size: 15px;
        line-height: 1.8;
    }

    .btn-custom-slider {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .homepage_container::after {
        width: 300px;
        height: 300px;
    }
}



/* =========================================
   TRUSTED BY SECTION - LIGHT PREMIUM DESIGN
========================================= */

.trustedcontainer {
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
    background:
        linear-gradient(to right,
            rgb(225, 235, 227),
            rgb(227, 233, 233));
}

/* =========================================
   SECTION TITLE
========================================= */

.trusted-heading {
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #3c8450 !important;
    font-weight: 700;
    margin-bottom: 18px;
}

.trusted-subheading {
    color: #123b35;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
}

.trusted-description {
    color: rgba(18, 59, 53, 0.72);
    max-width: 760px;
    margin: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* =========================================
   BRAND SLIDER
========================================= */

.mySwiper6 {
    padding: 20px 10px 90px;
}

.mySwiper6 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Brand Card */
.brand-card {
    width: 180px;
    height: 180px;
    background: #198754;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(18, 59, 53, 0.08);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Gradient Border */
.brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 32px;
    background: #198754;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Hover */
.brand-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: #198754;
    box-shadow:
        0 20px 40px rgba(18, 59, 53, 0.12),
        0 0 25px rgba(60, 132, 80, 0.08);
}

/* Brand Logo */
.brand-card img {
    width: 105px;
    height: 105px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.brand-card:hover img {
    transform: scale(1.08);
}

/* =========================================
   PREMIUM PAGINATION
========================================= */

.mySwiper6 .swiper-pagination {
    position: relative;
    margin-top: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

/* Default Bullet */
.mySwiper6 .swiper-pagination-bullet {
    position: relative;
    width: 12px;
    height: 12px;
    background: rgba(18, 59, 53, 0.15);
    border-radius: 50px;
    opacity: 1;
    transition: all 0.45s ease;
    overflow: hidden;
    border: 1px solid rgba(18, 59, 53, 0.08);
}

/* Hover */
.mySwiper6 .swiper-pagination-bullet:hover {
    transform: translateY(-2px) scale(1.08);
    background: rgba(60, 132, 80, 0.35);
}

/* Active Bullet */
.mySwiper6 .swiper-pagination-bullet-active {
    width: 42px;
    height: 12px;
    border-radius: 30px;
    background: linear-gradient(90deg, #3c8450, #57d08a);
    box-shadow:
        0 0 12px rgba(87, 208, 138, 0.25);
    border: none;
}

/* =========================================
   STATS ROW DESIGN
========================================= */

.trusted-stats {
    margin-top: 80px;
}

/* Each Stat */
.stats-row-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(18, 59, 53, 0.12);
    height: 100%;
}

/* Remove Last Border */
.border-end-0 {
    border-right: 0 !important;
}

/* Icon */
.stats-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3c8450, #326767);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(60, 132, 80, 0.15);
    transition: all 0.4s ease;
}

.stats-icon i {
    color: #fff;
    font-size: 24px;
}

/* Content */
.stats-content h2 {
    color: #123b35;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.stats-content h5 {
    color: rgba(18, 59, 53, 0.72);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    max-width: 245px;
}

/* Hover */
.stats-row-item:hover .stats-icon {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(60, 132, 80, 0.22);
}

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

@media (max-width: 1199px) {

    .trusted-subheading {
        font-size: 32px;
    }
}

@media (max-width: 991px) {

    .trustedcontainer {
        padding: 80px 0 60px;
    }

    .trustedcontainer .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .trusted-subheading {
        font-size: 30px;
    }

    .trusted-description {
        font-size: 16px;
    }

    .brand-card {
        width: 155px;
        height: 155px;
    }

    .brand-card img {
        width: 90px;
        height: 90px;
    }

    .stats-row-item {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 59, 53, 0.1);
        padding: 25px 10px;
    }

    .stats-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {

    .trustedcontainer {
        padding: 70px 0 50px;
    }

    .trusted-heading {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .trusted-subheading {
        font-size: 24px;
        line-height: 1.35;
    }

    .trusted-description {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
        margin-bottom: 50px;
    }

    .mySwiper6 {
        padding-bottom: 70px;
    }

    .brand-card {
        width: 130px;
        height: 130px;
        border-radius: 24px;
    }

    .brand-card img {
        width: 72px;
        height: 72px;
    }

    .stats-row-item {
        justify-content: flex-start;
        padding: 22px 5px;
    }

    .stats-icon {
        min-width: 55px;
        width: 55px;
        height: 55px;
        border-radius: 18px;
    }

    .stats-icon i {
        font-size: 22px;
    }

    .stats-content h2 {
        font-size: 28px;
    }

    .stats-content h5 {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Pagination */
    .mySwiper6 .swiper-pagination {
        gap: 10px;
        margin-top: 35px;
    }

    .mySwiper6 .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .mySwiper6 .swiper-pagination-bullet-active {
        width: 32px;
        height: 10px;
    }
}




/* =========================================
   STRETCH VIDEO ON SCROLL
========================================= */

.video-stretch-section {
    position: relative;
    background: #061710;
}

/* Sticky Wrapper */
.video-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Box */
.video-stretch-box {
    position: relative;
    width: 70%;
    height: 100vh;
    overflow: hidden;
    border-radius: 40px;
    transition:
        width 0.15s linear,
        height 0.15s linear,
        border-radius 0.15s linear,
        transform 0.15s linear;
    transform: scale(0.82);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(60, 132, 80, 0.12);
}

/* Video */
.stretch-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.video-stretch-box::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.05));

    pointer-events: none;
}

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

@media (max-width: 991px) {

    .video-stretch-box {
        width: 88%;
        height: 60vh;
    }
}

@media (max-width: 767px) {

    .video-stretch-section {
        height: 170vh;
    }

    .video-stretch-box {
        width: 92%;
        height: 42vh;
        border-radius: 24px;
    }
}




/* =========================================
   AII SERVICES SECTION - PREMIUM DESIGN
========================================= */

.aii-services-section {
    position: relative;
    padding: 60px 0 40px;
    overflow: hidden;
    background: linear-gradient(145deg, #f6fbf8 0%, #eef3f0 100%);
    isolation: isolate;
}

/* Background Glow */

.aii-services-section::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    background:
        radial-gradient(circle,
            rgba(60, 132, 80, 0.10) 0%,
            rgba(60, 132, 80, 0.02) 70%,
            transparent 100%);
    top: -250px;
    left: -200px;
    z-index: 0;
    border-radius: 50%;
    filter: blur(50px);
}

.aii-services-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle,
            rgba(50, 103, 103, 0.12) 0%,
            rgba(50, 103, 103, 0.02) 70%,
            transparent 100%);
    bottom: -180px;
    right: -180px;
    z-index: 0;
    border-radius: 50%;
    filter: blur(60px);
}

.aii-services-section .container,
.aii-services-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* =========================================
   SECTION HEADING
========================================= */

.aii-services-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #198754, #2c9a6e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.aii-services-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 20px;

    background: linear-gradient(to right, #123b35, #1f624f);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.aii-services-description {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #3e5e57;
    font-weight: 450;
}

/* =========================================
   PREMIUM SERVICE CARD
========================================= */

.aii-service-card {
    position: relative;
    width: 100%;

    /* INITIAL CARD BACKGROUND */
    background: linear-gradient(to right, #3c8450, #326767);

    border-radius: 40px;
    padding: 20px 32px 38px;
    overflow: hidden;

    min-height: 420px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1),
        box-shadow 0.5s ease,
        background 0.4s ease;

    box-shadow:
        0 25px 45px -12px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(0, 0, 0, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.08);

    isolation: isolate;
}

/* Card Hover */

.aii-service-card:hover {
    transform: translateY(-12px);

    background: #ffffff;

    box-shadow:
        0 35px 55px -15px rgba(25, 135, 84, 0.25),
        0 10px 20px -8px rgba(0, 0, 0, 0.08);

    border-color: rgba(60, 132, 80, 0.18);
}

/* Glow Effect */

.aii-service-card::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.12) 0%,
            transparent 70%);

    top: -90px;
    right: -90px;

    border-radius: 50%;

    transition: all 0.5s ease;

    z-index: 0;
}

.aii-service-card:hover::before {
    width: 280px;
    height: 280px;

    background:
        radial-gradient(circle,
            rgba(25, 135, 84, 0.12) 0%,
            transparent 70%);
}

/* =========================================
   ICON WRAPPER
========================================= */

.aii-service-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}

/* Uploaded Image */

.aii-service-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;

    transition: all 0.4s ease;

    filter: brightness(0) invert(1);
}

.aii-service-card:hover .aii-service-icon {
    transform: scale(1.05) translateY(-3px);

    filter: none;
}

/* Fallback Icon Box */

.aii-service-fallback-icon {
    width: 70px;
    height: 70px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.4s ease;

    backdrop-filter: blur(10px);
}

.aii-service-card:hover .aii-service-fallback-icon {
    background: linear-gradient(145deg, #ecf7f0, #e0ece4);

    transform: scale(1.02);
}

/* Icon */

.aii-service-fallback-icon i {
    font-size: 34px;

    color: #ffffff;

    transition: all 0.3s ease;
}

.aii-service-card:hover .aii-service-fallback-icon i {
    color: #2c7a4b;
}

/* =========================================
   CONTENT
========================================= */

.aii-service-content {
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Title */

.aii-service-content h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.3px;

    color: #ffffff;

    margin-bottom: 18px;

    transition: color 0.3s ease;
}

/* Description */

.aii-service-content p {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 450;

    color: rgba(255, 255, 255, 0.82);

    margin-bottom: 0;

    transition: color 0.3s ease;
}

/* Hover Text */

.aii-service-card:hover .aii-service-content h4 {
    color: #0c4e3f;
}

.aii-service-card:hover .aii-service-content p {
    color: #40665e;
}

/* =========================================
   TOP RIGHT BUTTON
========================================= */

.aii-top-right-btn {
    position: absolute;
    top: 28px;
    right: 28px;

    width: 48px;
    height: 48px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 20px;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.12);

    z-index: 10;

    transition: all 0.35s ease;
}

/* Button Hover */

.aii-service-card:hover .aii-top-right-btn {
    background: linear-gradient(135deg, #3c8450, #2a6e5c);

    color: #ffffff;

    border-color: transparent;

    transform: translate(4px, -4px);

    box-shadow: 0 6px 14px rgba(44, 110, 73, 0.25);
}

.aii-top-right-btn:hover {
    transform: rotate(45deg) scale(1.05);

    background: #198754;

    color: #ffffff;
}

/* =========================================
   STRETCHED LINK
========================================= */

.stretched-link::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 2;
}

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

@media (max-width: 1399px) {

    .aii-services-title {
        font-size: 48px;
    }

    .aii-service-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {

    .aii-service-card {
        padding: 36px 28px;
        min-height: 400px;
    }

    .aii-service-icon,
    .aii-service-fallback-icon {
        width: 76px;
        height: 76px;
    }

    .aii-service-content h4 {
        font-size: 22px;
    }

    .aii-services-title {
        font-size: 44px;
    }
}

@media (max-width: 991px) {

    .aii-services-section {
        padding: 90px 0 70px;
    }

    .aii-services-title {
        font-size: 38px;
    }

    .aii-service-card {
        min-height: auto;
        padding: 32px 26px;
    }

    .aii-services-description {
        font-size: 16px;
        padding: 0 16px;
    }
}

@media (max-width: 767px) {

    .aii-services-section {
        padding: 70px 0 50px;
    }

    .aii-services-tag {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .aii-services-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .aii-services-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .aii-service-card {
        padding: 28px 22px;
        border-radius: 32px;
    }

    .aii-service-icon,
    .aii-service-fallback-icon {
        width: 68px;
        height: 68px;
    }

    .aii-service-fallback-icon i {
        font-size: 32px;
    }

    .aii-service-content h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .aii-service-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .aii-top-right-btn {
        width: 42px;
        height: 42px;

        top: 20px;
        right: 20px;

        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .aii-service-card {
        padding: 24px 20px;
    }

    .aii-services-title {
        font-size: 28px;
    }
}

/* =========================================
   AOS SMOOTHNESS
========================================= */

[data-aos] {
    transition-timing-function:
        cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* =========================================
   ACCESSIBILITY
========================================= */

.aii-top-right-btn:focus-visible {
    outline: 2px solid #198754;
    outline-offset: 2px;
    transform: scale(1.05);
}





/* =========================================
           PREMIUM TESTIMONIALS SECTION
           Unique class names for clean integration
        ========================================= */
.cx-testimonials-premium {
    position: relative;
    padding: 60px;
    background: linear-gradient(135deg, #0a2e26 0%, #154e3f 50%, #0c3a2f 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Animated background elements */
.cx-testimonials-premium::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 245, 200, 0.08) 0%, rgba(255, 245, 200, 0.02) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: cxFloatGlow 20s ease-in-out infinite;
}

.cx-testimonials-premium::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(60, 132, 80, 0.2) 0%, rgba(50, 103, 103, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    animation: cxFloatGlow 25s ease-in-out infinite reverse;
}

@keyframes cxFloatGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(30px, 20px) scale(1.08);
        opacity: 1;
    }
}

/* Subtle grid overlay */
.cx-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 240, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 240, 0.02) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
    z-index: 0;
}

.cx-testimonials-premium .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* =========================================
           SECTION HEADINGS
        ========================================= */
.cx-badge-premium {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(255, 250, 235, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 20px;
    border-radius: 50px;
    color: #e8f3e6;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 245, 210, 0.3);
}

.cx-heading-premium {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #c9f0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cx-subhead-premium {
    font-size: 16px;
    color: rgba(220, 245, 230, 0.88);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.65;
}

/* =========================================
           VIDEO CARD - LARGER SIZE, FULL CARD IMAGE
           Professional full-width video display
        ========================================= */
.cx-video-card-premium {
    background: rgba(20, 45, 38, 0.55);
    border-radius: 32px;
    overflow: hidden;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 245, 210, 0.25);
    box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    /* Increased card height for full professional look */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cx-video-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(30, 65, 55, 0.75);
    border-color: rgba(255, 235, 180, 0.5);
    box-shadow: 0 30px 45px -18px rgba(0, 0, 0, 0.5);
}

/* Video Wrapper - Full width, increased height */
.cx-video-wrapper-premium {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background: #0a1f1a;
    flex-shrink: 0;
}

/* Larger video - fills the card width, increased height */
.cx-testimonial-video {
    width: 100%;
    display: block;
    transition: transform 0.4s ease, filter 0.3s;
    aspect-ratio: 2 / 2;
    object-fit: cover;
    cursor: pointer;
}

.cx-video-card-premium:hover .cx-testimonial-video {
    transform: scale(1.02);
}

/* Client Name - Professional placement below video */
.cx-client-name-premium {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 22px 0;
    background: linear-gradient(135deg, #fef5e0, #e0efdf);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.2px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.cx-client-name-premium::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(255, 220, 140, 0.7);
    border-radius: 4px;
}

/* =========================================
           SWIPER CUSTOMIZATION
           Initial display: 4 cards on desktop
        ========================================= */
.cx-testimonials-premium .swiper {
    padding: 30px 5px 55px 5px;
    overflow: visible;
}

.cx-testimonials-premium .swiper-slide {
    transition: all 0.35s;
    transform: scale(0.94);
    height: auto;
}

.cx-testimonials-premium .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/* Pagination Styling */
.cx-testimonials-premium .swiper-pagination-bullet {
    background: rgba(220, 240, 220, 0.6);
    width: 10px;
    height: 10px;
    transition: all 0.25s;
}

.cx-testimonials-premium .swiper-pagination-bullet-active {
    background: #ffdfaa;
    width: 32px;
    border-radius: 10px;
}

/* Navigation arrows - premium style */
.cx-swiper-button-next,
.cx-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 245, 210, 0.3);
    color: #e8f3e6;
    font-size: 24px;
}

.cx-swiper-button-next:hover,
.cx-swiper-button-prev:hover {
    background: rgba(255, 245, 210, 0.3);
    transform: translateY(-50%) scale(1.05);
    color: #ffffff;
}

.cx-swiper-button-next {
    right: 10px;
}

.cx-swiper-button-prev {
    left: 10px;
}

/* =========================================
           RESPONSIVE ADJUSTMENTS
           Maintain 4 cards on desktop, fewer on mobile
        ========================================= */
@media (max-width: 1200px) {
    .cx-heading-premium {
        font-size: 48px;
    }

    .cx-client-name-premium {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .cx-testimonials-premium {
        padding: 90px 0 100px;
    }

    .cx-heading-premium {
        font-size: 42px;
    }

    .cx-client-name-premium {
        font-size: 17px;
        margin: 20px 0 18px;
    }

    .cx-swiper-button-next,
    .cx-swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .cx-heading-premium {
        font-size: 34px;
    }

    .cx-badge-premium {
        font-size: 11px;
        padding: 5px 16px;
        letter-spacing: 3px;
    }

    .cx-subhead-premium {
        font-size: 16px;
    }

    .cx-client-name-premium {
        font-size: 16px;
        margin: 18px 0 15px;
    }

    .cx-testimonial-video {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .cx-heading-premium {
        font-size: 28px;
    }

    .cx-video-card-premium {
        border-radius: 24px;
    }

    .cx-client-name-premium {
        font-size: 15px;
    }
}





.cx-case-slider-premium {
    position: relative;
    padding: 50px 0;
    background: #f3f4f7;
    overflow: hidden;
}

/* =========================================
           SECTION HEADER
        ========================================= */
.cx-section-header {
    text-align: center;
    margin-bottom: 35px;
}

.cx-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2e8a45;
    margin-bottom: 16px;
}

.cx-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    color: #112718;
    margin-bottom: 14px;
}

.cx-highlight {
    color: #49b86a;
}

.cx-subtitle {
    font-size: 16px;
    color: #6b8073;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

/* =========================================
           SWIPER CONTAINER
        ========================================= */
.cx-fullcard-swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* =========================================
           CARD (premium design, matching provided image)
           Improved shadow, border radius, hover
        ========================================= */
.cx-slide-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    min-height: 420px;
    transition: all 0.35s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
}

.cx-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
}

/* LEFT CONTENT area */
.cx-slide-content {
    padding: 38px 32px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    height: 100%;
}

/* TAGS GROUP - exactly as image style */
.cx-tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.cx-tech-tag {
    font-size: 9px;
    font-weight: 600;
    color: #4a3b5c;
    background: #f0ebfa;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: none;
    position: relative;
}

/* remove dot separator because we use background style cleaner but keep layout like original */
.cx-tech-tag::after {
    display: none;
}

/* title premium */
.cx-slide-title {
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    color: #0a0c14;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

/* description */
.cx-slide-description {
    font-size: 15px;
    line-height: 1.55;
    color: #4b5565;
    margin-bottom: 28px;
}

/* STATS row */
.cx-stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    align-items: center;
}

/* Each stat item */
.cx-stat-item {
    min-width: 140px;
    text-align: center;
}

/* Value */
.cx-stat-value {
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    color: #101010;
    margin-bottom: 8px;

    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    gap: 2px;
    text-align: center;
}

.cx-stat-value small {
    font-size: 16px;
    font-weight: 700;
    margin-left: 2px;
}

/* Text */
.cx-stat-text {
    font-size: 12px;
    font-weight: 500;
    color: #5c6a7d;
    letter-spacing: 0.2px;
    line-height: 1.4;
    text-align: center;
}

/* BUTTON (case study) with gradient or bold accent */
.cx-case-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    background: #ffffff;
    border: 2px solid #0f5225;
    color: #0f5225;
    padding: 6px 16px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.cx-case-link:hover {
    background: #0f5225;
    color: #fff;
    border-color: #0f5225;
    transform: scale(1.02);
    box-shadow: 0 10px 18px rgba(46, 255, 98, 0.2);
}

.cx-case-link i {
    font-size: 18px;
    transition: transform 0.2s;
}

.cx-case-link:hover i {
    transform: translateX(4px);
}

/* VIDEO SECTION - right side with autoplay loop */
.cx-slide-video {
    position: relative;
    background: #0a461c;
    min-height: 420px;
    overflow: hidden;
}

.cx-video-wrapper {
    width: 100%;
    height: 100%;
}

.cx-autoplay-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide default video controls for clean aesthetic */
.cx-autoplay-video::-webkit-media-controls {
    display: none !important;
}

/* =========================================
           BOTTOM CONTROLS (pagination untouched)
        ========================================= */
.cx-bottom-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    margin-top: 48px;
}

/* PAGINATION TRACK (unchanged structure) */
.cx-pagination-track {
    position: relative;
    flex: 1;
    height: 4px;
    background: #e3d6f5;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;
}

/* moving progress stick with gradient */
.cx-pagination-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #1d754c, #164432);
    transition: width 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* RIGHT SIDE ARROWS */
.cx-nav-arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

.cx-swiper-button-prev,
.cx-swiper-button-next {
    position: relative !important;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dbd0e6;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}


.cx-swiper-button-prev i,
.cx-swiper-button-next i {
    font-size: 22px;
    color: #2d2a3e;
    line-height: 1;
}

/* =========================================
           RESPONSIVE (keeping original responsiveness with enhancements)
        ========================================= */
@media (max-width: 1199px) {
    .cx-slide-title {
        font-size: 26px;
    }

    .cx-slide-content {
        padding: 32px 28px;
    }

    .cx-stat-value {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .cx-case-slider-premium {
        padding: 70px 0;
    }

    .cx-title {
        font-size: 36px;
    }

    .cx-slide-title {
        font-size: 24px;
    }

    .cx-slide-video {
        min-height: 340px;
    }

    .cx-slide-content {
        padding: 32px 28px;
    }

    .cx-stats-row {
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .cx-case-slider-premium {
        padding: 60px 0;
    }

    .cx-title {
        font-size: 28px;
    }

    .cx-subtitle {
        font-size: 15px;
    }

    .cx-slide-content {
        padding: 28px 24px;
    }

    .cx-slide-title {
        font-size: 22px;
    }

    .cx-slide-description {
        font-size: 14px;
    }

    .cx-stat-value {
        font-size: 26px;
    }

    .cx-stats-row {
        gap: 20px;
    }

    .cx-slide-video {
        min-height: 240px;
    }

    .cx-bottom-controls {
        gap: 16px;
        margin-top: 36px;
    }

    .cx-swiper-button-prev,
    .cx-swiper-button-next {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 575px) {
    .cx-slide-card {
        border-radius: 28px;
    }

    .cx-slide-title {
        font-size: 20px;
    }

    .cx-slide-content {
        padding: 24px 20px;
    }

    .cx-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .cx-case-link {
        padding: 10px 22px;
        font-size: 13px;
    }

    .cx-stat-item {
        min-width: 100%;
    }

    .cx-tech-tag {
        font-size: 9px;
        padding: 3px 10px;
    }
}





/* =========================================
   MK POPUP MODAL CSS
========================================= */

.mk-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    padding: 15px;
}

.mk-popup-overlay.mk-active {
    opacity: 1;
    visibility: visible;
}

.mk-popup-modal {
    width: 100%;
    max-width: 920px;
    background: #f3f7fb;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transform: translateY(20px);
    transition: 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.mk-popup-overlay.mk-active .mk-popup-modal {
    transform: translateY(0);
}

.mk-popup-wrapper {
    display: flex;
    min-height: 480px;
}

/* =========================
   LEFT SIDE
========================= */

.mk-popup-left {
    width: 50%;
    background: linear-gradient(180deg, #02452b 0%, #013814 100%);
    padding: 35px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mk-popup-tag {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #d9e5f0;
    margin-bottom: 14px;
    display: block;
}

.mk-popup-left h2 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.mk-popup-desc {
    color: #d6dfe7;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
}

/* =========================
   RIGHT SIDE
========================= */

.mk-popup-right {
    width: 50%;
    padding: 35px;
    background: #eef4f8;
}

.mk-form-title {
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    color: #024520;
    margin-bottom: 20px;
    font-weight: 700;
}

.mk-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.mk-popup-right input,
.mk-popup-right textarea {
    width: 100%;
    border: 1px solid #d6dde5;
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    outline: none;
    transition: 0.3s;
}

.mk-popup-right textarea {
    min-height: 90px;
    resize: none;
}

.mk-popup-right input:focus,
.mk-popup-right textarea:focus {
    border-color: #0dd879;
    box-shadow: 0 0 0 3px rgba(13, 216, 131, 0.1);
}

.mk-phone-field {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d6dde5;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.mk-phone-field span {
    padding: 0 10px;
    font-size: 13px;
    color: #333;
    border-right: 1px solid #e2e2e2;
    white-space: nowrap;
}

.mk-phone-field input {
    border: none;
    box-shadow: none !important;
}

/* =========================
   CHECKBOX
========================= */

.mk-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #4b6857;
    margin: 14px 0 18px;
}

.mk-checkbox-wrap input {
    width: 13px;
    height: 13px;
}

/* =========================
   BUTTON
========================= */

.mk-popup-btn {
    width: 100%;
    background: linear-gradient(90deg, #0c7a36 0%, #00b67f 100%);
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.mk-popup-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   CLOSE BUTTON
========================= */

.mk-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #024524;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.mk-testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.mk-testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mk-quote-stars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mk-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 2px;
}

.mk-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin: 0;
    font-weight: 500;
}

.mk-client-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.mk-client-info img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mk-client-content {
    flex: 1;
}

.mk-client-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.mk-client-content span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

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

@media(max-width:991px) {

    .mk-popup-wrapper {
        flex-direction: column;
    }

    .mk-popup-left,
    .mk-popup-right {
        width: 100%;
    }

    .mk-popup-left h2,
    .mk-form-title {
        font-size: 26px;
    }
}

@media(max-width:767px) {

    .mk-popup-overlay {
        padding: 10px;
        overflow-y: auto;
    }

    .mk-popup-modal {
        border-radius: 18px;
    }

    .mk-popup-left,
    .mk-popup-right {
        padding: 24px 18px;
    }

    .mk-popup-left h2,
    .mk-form-title {
        font-size: 24px;
    }

    .mk-form-row {
        flex-direction: column;
    }

    .mk-popup-btn {
        font-size: 14px;
        padding: 13px;
    }

    .mk-testimonial-card {
        padding: 20px;
        border-radius: 20px;
    }

    .mk-testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .mk-client-info img {
        width: 50px;
        height: 50px;
    }
}




.ai-cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-width: calc(100% - 30px);
    background: linear-gradient(to right, #3c8450, #326767);
    border-radius: 10px;
    padding: 22px;
    z-index: 999999;
    box-shadow: 0 10px 35px rgba(36, 35, 35, 0.35);
}

.ai-cookie-popup h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.ai-cookie-popup p {
    color: #d7d7d7;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.ai-cookie-btns {
    display: flex;
    gap: 12px;
}

.ai-reject-btn {
    flex: 1;
    height: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.ai-reject-btn:hover {
    background: #f0efef;
    color: #000;
}

.ai-accept-btn:hover {
    background: #f0efef;
    color: #000;
}

.ai-accept-btn {
    flex: 1;
    height: 30px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #3c8450, #418f61);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.ai-cookie-settings {
    color: #fff;
    text-decoration: underline;
    font-size: 12px;
}

.ai-cookie-close {
    position: absolute;
    top: 11px;
    right: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    line-height: 1;
}

/* Mobile */
@media(max-width:768px) {

    .ai-cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        padding: 18px;
        border-radius: 16px;
    }

    .ai-cookie-popup h2 {
        font-size: 20px;
    }

    .ai-cookie-popup p {
        font-size: 13px;
    }

    .ai-cookie-btns {
        flex-direction: column;
        gap: 10px;
    }

    .ai-reject-btn,
    .ai-accept-btn {
        width: 100%;
        height: 45px;
        font-size: 14px;
    }

    .ai-cookie-settings {
        font-size: 14px;
    }

    .ai-cookie-close {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
}