/* =========================================================
   GENESIS IT SERVICES — MAIN STYLES
   ========================================================= */

:root {
    --purple: #000;
    --purple-light: #000;
    --purple-dark: #000;

    --green: #1faa59;
    --green-light: #2ebe6b;
    --green-dark: #0e7a3e;

    --ink: #111318;
    --dark: #20232b;
    --gray: #5b616e;
    --muted: #7b818c;

    --line: #e7e9ed;
    --soft: #f7f8fa;
    --white: #ffffff;

    --shadow-sm: 0 8px 25px rgba(17, 19, 24, 0.06);
    --shadow-md: 0 18px 45px rgba(17, 19, 24, 0.10);
    --shadow-lg: 0 30px 70px rgba(17, 19, 24, 0.14);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   HEADER
   ========================================================= */

header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
}

header > div {
    min-height: 70px;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    position: relative;

    background: linear-gradient(
        145deg,
        var(--purple),
        var(--purple-light)
    );

    clip-path: polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 22px;
    font-weight: 800;

    box-shadow: 0 8px 20px rgba(123, 47, 247, 0.25);
}

.logo-text {
    line-height: 1.1;
}

.logo-text strong {
    display: block;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.logo-text span {
    display: block;
    margin-top: 3px;

    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--gray);
    font-weight: 700;
}

/* Navigation */

/* =========================================================
   NAVIGATION LIST
   ========================================================= */

.navigation {
    display: flex;
    align-items: center;
    gap: 24px;

    list-style: none;
    margin: 0;
    padding: 0;

    height: 100%;
}

.navigation > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.navigation > li > a {
    display: flex;
    align-items: center;
    height: 100%;
}

/* =========================================================
   DROPDOWN SUBMENU (desktop = hover, mobile = click)
   ========================================================= */

.dropdown {
    position: relative;
}

.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 200px;

    list-style: none;
    margin: 0;
    padding: 10px 0;

    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;

    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;

    z-index: 10;
}

.dropdown:hover > ul,
.dropdown:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown > ul li a {
    display: block;
    padding: 10px 20px;

    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);

    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown > ul li a:hover {
    background: var(--soft);
    color: var(--green-dark);
}

.dropdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;
    margin-left: 4px;

    font-size: 10px;
    color: var(--gray);
    cursor: pointer;

    transition: transform 0.25s ease, color 0.25s ease;
}

.dropdown:hover .dropdown-btn {
    transform: rotate(180deg);
    color: var(--green-dark);
}

/* =========================================================
   MOBILE OFF-CANVAS NAV
   ========================================================= */

@media (max-width: 991.98px) {

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;

        width: min(320px, 85vw);
        height: 100vh;

        background: #fff;

        z-index: 10001;

        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;

        transition:
            transform 0.3s ease,
            visibility 0.3s ease;

        overflow-y: auto;

        padding: 70px 25px 30px;
    }

    .main-nav.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }


    /* Close button */
    .nav-close {
        display: flex;

        position: absolute;
        top: 18px;
        right: 20px;

        width: 40px;
        height: 40px;

        align-items: center;
        justify-content: center;

        border: 0;
        background: transparent;

        font-size: 25px;
        color: #222;

        cursor: pointer;

        z-index: 10003;
    }


    /* Navigation list */
    .main-nav .navigation {
        display: block;
        width: 100%;

        padding: 0;
        margin: 0;

        list-style: none;
    }

    .main-nav .navigation > li {
        display: block;
        width: 100%;
        height: fit-content;
        position: relative;
        border-bottom: 1px solid #eee;
    }


    /* IMPORTANT:
       Make the actual <a> clickable */
    .main-nav .navigation > li > a {
        display: block;
        width: 100%;
height: fit-content;
        padding: 15px 45px 15px 10px;

        color: #222;
        text-decoration: none;

        position: relative;
        z-index: 2;

        cursor: pointer;
    }


    .main-nav .menu-text {
        display: flex;
        align-items: center;
    }

    .main-nav .menu-text span {
        display: inline;
    }


    /* Services dropdown */
        .main-nav .navigation .dropdown > ul {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
        display: none;
        width: 100%;
        padding: 0;
        margin: 0;
        background: #f8f8f8;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
    
      .main-nav .navigation .dropdown.is-open > ul {
        display: block !important;
      }

    
    .main-nav .navigation .dropdown > ul li {
        display: block;
        width: 100%;
    }

    .main-nav .navigation .dropdown > ul li a {
        display: block;

        padding: 12px 15px;

        color: #333;
        text-decoration: none;

        cursor: pointer;
    }

    .main-nav .navigation .dropdown > ul li a:hover {
        background: #eee;
    }


    /* Dropdown arrow */
    .dropdown-btn {
        position: absolute;

        top: 7px;
        right: 5px;

        width: 45px;
        height: 45px;

        display: flex;
        align-items: center;
        justify-content: center;

        z-index: 5;

        cursor: pointer;

        color: #222;
    }

    .dropdown-btn span {
        transition: transform 0.3s ease;
    }

    .dropdown.is-open > .dropdown-btn span {
        transform: rotate(180deg);
    }


    /* Header should remain above overlay */
    header {
        position: relative;
        z-index: 10002;
    }}

/* =========================================================
   MOBILE NAV — hamburger toggle + off-canvas drawer
   (.main-nav / .cta-btn are display:none below 991.98px in the
   original tablet/mobile media query further down; this restores
   navigation via a slide-in panel instead of removing it outright)
   ========================================================= */

.header-actions {
    gap: 14px;
}

.nav-toggle {
    display: none;

    width: 42px;
    height: 42px;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: #fff;
    cursor: pointer;

    padding: 0;
}

.nav-toggle_bar {
    width: 20px;
    height: 2px;

    border-radius: 2px;
    background: var(--dark);

    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active .nav-toggle_bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle_bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active .nav-toggle_bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-close {
    display: none;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-mobile-cta {
    display: none;
    align-items: center;
    gap: 8px;
}

/* Header CTA */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 10px 11px 22px;

    background: var(--green-dark);
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    border-radius: 50px;

    box-shadow: 0 8px 20px rgba(14, 122, 62, 0.16);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cta-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 122, 62, 0.25);
}

.circle {
    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--green-light);

    transition: transform 0.25s ease;
}

.cta-btn:hover .circle,
.btn-primary:hover .circle {
    transform: translateX(4px);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 590px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("./images/background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 70px 0 90px;
}






/* Badge */

.badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border: 1px solid var(--line);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.85);

    color: var(--dark);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    box-shadow: 0 6px 20px rgba(17, 19, 24, 0.04);
}

.badge .dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow: 0 0 0 4px rgba(31, 170, 89, 0.10);
}

/* Hero heading */

.hero h1 {
    margin-top: 25px;

    max-width: 700px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;

    font-weight: 800;
    letter-spacing: -2.5px;
}

.hero h1 .accent {
    background: linear-gradient(
        90deg,
        var(--green)
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

/* Hero paragraph */

.hero p {
    max-width: 540px;

    margin-top: 25px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--gray);
}

/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 7px 8px 7px 22px;

    border-radius: 50px;

    background: var(--green-dark);
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(14, 122, 62, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(14, 122, 62, 0.28);
}

.watch {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 700;

    color: var(--dark);

    transition: color 0.25s ease;
}

.watch:hover {
    color: var(--purple);
}

.play {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #f1efff;
    color: var(--purple);

    font-size: 11px;

    padding-left: 2px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.watch:hover .play {
    transform: scale(1.08);
    background: #e7e1ff;
}

/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 480px;

    z-index: 2;
}

.hero-img {
    width: 100%;
    max-width: 620px;
    height: auto;

    object-fit: contain;

    filter: drop-shadow(
        0 25px 45px rgba(17, 19, 24, 0.12)
    );

}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================================================
   TRUSTED BRANDS SLIDER
   ========================================================= */

.trusted {
    position: relative;
    z-index: 5;
    margin-top: -30px;
}

.trusted-inner {
    min-height: 105px;

    display: flex;
    align-items: center;

    padding: 22px 30px;

    border: 1px solid var(--line);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow: var(--shadow-sm);

    overflow: hidden;
}

/* Trusted label */

.trusted-label {
    position: relative;

    flex: 0 0 190px;

    display: flex;
    flex-direction: column;

    padding-right: 30px;

    font-size: 12px;
    line-height: 1.55;

    font-weight: 800;
    letter-spacing: 0.7px;

    color: var(--dark);
}

.trusted-label strong {
    color: var(--green-dark);
    font-weight: 800;
}

.trusted-label::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 55px;

    transform: translateY(-50%);

    background: var(--line);
}

/* Slider window */

.brand-slider {
    position: relative;

    flex: 1;

    overflow: hidden;

    /* Fade edges */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

/* Moving track */

.brand-track {
    width: max-content;

    display: flex;
    align-items: center;

    gap: 55px;

    animation: brandSlider 25s linear infinite;
}

/* Brand */

.brand-item {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 9px;

    color: #555b65;

    font-size: 17px;
    font-weight: 700;

    white-space: nowrap;

    opacity: 0.85;

    transition:
        color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.brand-item:hover {
    color: var(--green-light);
    opacity: 1;
    transform: translateY(-2px);
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: currentColor;

    font-size: 18px;
    font-weight: 800;
}

/* AWS text */

.brand-item:nth-child(2),
.brand-item:nth-child(9) {
    font-size: 20px;
    letter-spacing: -1px;
}

/* Infinite animation */

@keyframes brandSlider {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(
            calc(-50% - 27.5px)
        );
    }
}

/* Pause on hover */

.brand-slider:hover .brand-track {
    animation-play-state: paused;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .trusted {
        margin-top: -15px;
    }

    .trusted-inner {
        flex-direction: column;

        gap: 20px;

        padding: 25px 20px;
    }

    .trusted-label {
        flex: none;

        width: 100%;

        padding-right: 0;
        padding-bottom: 18px;

        text-align: center;
    }

    .trusted-label::after {
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;

        width: 55px;
        height: 1px;

        transform: translateX(-50%);
    }

    .brand-slider {
        width: 100%;
    }

    .brand-track {
        gap: 40px;

        animation-duration: 22s;
    }

    .brand-item {
        font-size: 15px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .trusted-inner {
        padding: 22px 15px;
        border-radius: 18px;
    }

    .trusted-label {
        font-size: 9px;
    }

    .brand-track {
        gap: 32px;

        animation-duration: 18s;
    }

    .brand-item {
        font-size: 14px;
    }

    .brand-icon {
        font-size: 16px;
    }

    .brand-item:nth-child(2),
    .brand-item:nth-child(9) {
        font-size: 17px;
    }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .brand-track {
        animation: none;
    }
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    padding-top: 75px;
}

.services-intro {
    padding-right: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--green-dark);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.eyebrow::before {
    content: "";

    width: 25px;
    height: 2px;

    border-radius: 10px;

    background: var(--green);
}

.services-intro h2 {
    margin-top: 16px;

    font-size: 31px;
    line-height: 1.2;

    font-weight: 800;
    letter-spacing: -1px;
}

.services-intro p {
    margin-top: 18px;

    font-size: 13.5px;
    line-height: 1.75;

    color: var(--gray);
}

.view-all {
    display: inline-flex;
    align-items: center;

    margin-top: 20px;

    color: var(--green-dark);

    font-size: 13px;
    font-weight: 800;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.view-all:hover {
    color: var(--purple);
    transform: translateX(4px);
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-card {
    position: relative;

    min-height: 300px;

    padding: 28px 24px;

    display: flex;
    flex-direction: column;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: #fff;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -70px;
    right: -50px;

    border-radius: 50%;

    opacity: 0;

    transition: opacity 0.3s ease;
}

.service-card.purple::before {
    background: rgba(123, 47, 247, 0.10);
}

.service-card.green::before {
    background: rgba(31, 170, 89, 0.10);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #dedfe4;

    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

/* Service icon */

.service-card .s-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--soft);

    font-size: 25px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.service-card:hover .s-icon {
    transform: scale(1.08) rotate(-3deg);
}

.service-card.purple .s-icon {
    color: var(--purple);
    background: #f2edff;
}

.service-card.green .s-icon {
    color: var(--green-dark);
    background: #eaf8ef;
}

/* Card title */

.service-card h3 {
    position: relative;
    z-index: 2;

    margin-top: 5px;

    font-size: 17px;
    line-height: 1.35;

    font-weight: 800;

    letter-spacing: -0.3px;
}

/* Card paragraph */

.service-card p {
    position: relative;
    z-index: 2;

    margin-top: 2px;

    font-size: 13px;
    line-height: 1.7;

    color: var(--gray);
}

/* Arrow */

.service-card .go {
    position: relative;
    z-index: 2;

    width: 40px;
    height: 40px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--soft);

    font-size: 16px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.service-card:hover .go {
    transform: translateX(5px);

    background: var(--green-dark);
    color: #fff;
}

.service-card.purple .go {
    color: var(--purple);
}

.service-card.green .go {
    color: var(--green-dark);
}

/* =========================================================
   LIVE CHAT
   ========================================================= */

.live-chat {
    position: fixed;

    right: 0;
    top: 70%;

    transform: translateY(-50%);

    z-index: 1050;

    padding: 16px 10px;

    border-radius: 12px 0 0 12px;

    background: var(--green-dark);
    color: #fff;

    writing-mode: vertical-rl;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;

    box-shadow: -5px 8px 25px rgba(14, 122, 62, 0.20);

    cursor: pointer;

    transition:
        padding 0.25s ease,
        background 0.25s ease;
}

.live-chat:hover {
    padding-right: 14px;
    background: var(--purple-dark);
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1199.98px) {

    .main-nav {
        gap: 20px !important;
    }

    .main-nav a {
        font-size: 13px;
    }

    .hero {
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-img {
        max-width: 520px;
    }

    .trusted-inner {
        gap: 25px !important;
    }

    .brand-row {
        gap: 25px !important;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE / TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    header {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    header > div {
        min-height: 55px;
    }

    .cta-btn {
        display: none !important;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        width: min(620px, 100vw);
        height: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;

        padding: 70px 28px 30px;

        background: #fff;

        box-shadow: -20px 0 45px rgba(17, 19, 24, 0.12);

        transform: translateX(100%);
        transition: transform 0.3s ease;

        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a.active::after {
        display: none;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 36px;
        height: 36px;

        border: 1px solid var(--line);
        border-radius: 50%;

        background: #fff;
        color: var(--dark);

        font-size: 14px;
        cursor: pointer;
    }

    .nav-mobile-cta {
        display: inline-flex;

        margin-top: 18px;

        padding: 12px 18px;

        border-radius: 50px;

        background: var(--green-dark);
        color: #fff;

        font-size: 13px;
        font-weight: 700;
    }

    .hero {
        min-height: auto;

        padding: 55px 0 70px;

        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.97),
                rgba(255, 255, 255, 0.92)
            ),
            url("./images/background.png");
    }

    .hero-copy {
        text-align: center;
    }

    .badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        max-width: 750px;

        margin-left: auto;
        margin-right: auto;

        font-size: 46px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 300px;

        margin-top: 25px;
    }

    .hero-img {
        max-width: 520px;
    }

    .trusted {
        margin-top: -15px;
    }

    .trusted-inner {
        justify-content: center;
        text-align: center;
    }

    .trusted-label {
        padding-right: 0;
        padding-bottom: 18px;
        width: 100%;
    }

    .trusted-label::after {
        width: 55px;
        height: 1px;

        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;

        transform: translateX(-50%);
    }

    .brand-row {
        justify-content: center;
        width: 100%;
    }

    .services {
        padding-top: 55px;
    }

    .services-intro {
        padding-right: 0;
        text-align: center;
        margin-bottom: 15px;
    }

    .services-intro h2 {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-intro p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .eyebrow {
        justify-content: center;
    }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .logo-mark {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .logo-text span {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hero {
        padding: 45px 0 60px;
    }

    .hero h1 {
        margin-top: 20px;

        font-size: 39px;
        line-height: 1.12;

        letter-spacing: -1.5px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        gap: 18px;
    }

    .btn-primary {
        font-size: 13px;
    }

    .hero-visual {
        min-height: 240px;
    }

    .hero-img {
        width: 95%;
    }

    .trusted-inner {
        padding: 25px 18px !important;
        border-radius: 18px;
    }

    .brand-row {
        font-size: 14px;
        gap: 20px !important;
    }

    .services-intro h2 {
        font-size: 27px;
    }

    .service-card {
        min-height: 280px;
    }

    .live-chat {
        top: auto;
        bottom: 20px;

        transform: none;

        padding: 12px 9px;

        border-radius: 10px 0 0 10px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 13.5px;
    }

    .badge {
        font-size: 8.5px;
        letter-spacing: 1px;
        padding: 8px 12px;
        gap: 6px;
    }

    .badge .dot {
        width: 5px;
        height: 5px;
    }

    .hero-visual {
        min-height: 190px;
    }

    .hero-img {
        width: 100%;
    }

    .trusted {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .brand-row {
        font-size: 13px;
        gap: 15px !important;
    }

    .service-card {
        min-height: 270px;
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 12.5px;
    }
}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================== */


.welcome-one{
  --black: #16191c;
  --ink-soft: #4a5157;
  --white: #ffffff;
  --green: #3fae5c;
  --green-dark: #2c8a47;
  --green-tint: #eaf8ee;
  --green-tint-2: #d8f2df;
  --line: #e3e8e4;

  position: relative;
  background: var(--white);
  color: var(--black);
  padding: 1rem 0;
  overflow: hidden;
}

.welcome-one_circle{
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-tint-2), transparent 70%);
  z-index: 0;
}

.welcome-one .auto-container{ position: relative; z-index: 1; margin: 0 auto; }

.welcome-one .sec-title.centered{ text-align: center; margin: 0 auto 3.5rem; }
.welcome-one .sec-title_title{
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  background: var(--green-tint);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.welcome-one .sec-title_heading{ font-size: 1rem;  line-height: 1.5; font-weight: 600; margin: 0; }

.welcome-one .row.clearfix{ display: flex; flex-wrap: wrap; gap: 2.5rem; }
.welcome-one .row.clearfix > .column{ flex: 1 1 420px; min-width: 0; }

.welcome-one_subtitle{ font-size: 1rem; font-weight: 700; color: var(--green-dark); margin: 0 0 0.75rem; }
.welcome-one .column > p{ color: var(--ink-soft); line-height: 1.7; margin: 0 0 1.75rem; }

.middle-box{ background: var(--green-tint); border-radius: 16px; padding: 1.75rem; margin-bottom: 2rem; }
.middle-box .row.clearfix{ gap: 1.5rem; align-items: center; }
.welcome-one_counter{ display: flex; flex-direction: column; gap: 1rem; }
.welcome-one_counter-count{ font-size: 1.05rem; font-weight: 700; }
.welcome-one_counter-count .odometer{ color: var(--green-dark); font-size: 1.35rem; }

.welcome-one_options{ display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.theme-btn.btn-style-two{
  display: inline-flex; align-items: center;
  background: var(--green); color: var(--white);
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  transition: background 0.2s ease;
}
.theme-btn.btn-style-two:hover{ background: var(--green-dark); }
.theme-btn .text-two{ display: none; }

.welcome-one_phone{ display: flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.welcome-one_phone .fa-phone{
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-tint); color: var(--green-dark);
  border-radius: 50%;
}
.welcome-one_phone .fa-phone::before{ content: "☎"; }
.welcome-one_phone a{ color: var(--black); text-decoration: none; }
.welcome-one_phone a:hover{ color: var(--green-dark); }

/* ==========================================
   TABLET
========================================== */
@media (max-width: 991px) {
  .welcome-one{ padding: 3.5rem 0; }
  .welcome-one_circle{ width: 300px; height: 300px; top: -120px; right: -120px; }
  .welcome-one .sec-title.centered{ margin-bottom: 2.5rem; }
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width: 767px) {
  .welcome-one{ padding: 2.75rem 0; }

  .welcome-one_circle{ width: 220px; height: 220px; top: -90px; right: -90px; }

  .welcome-one .sec-title_title{ font-size: 1rem; padding: 0.3rem 0.75rem; }
  .welcome-one .sec-title_heading{ font-size: 1.3rem; line-height: 1.4; }

  .welcome-one .row.clearfix{ gap: 1.5rem; }
  .welcome-one .row.clearfix > .column{ flex: 1 1 100%; }

  .middle-box{ padding: 1.25rem; }
  .middle-box .row.clearfix{ flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .welcome-one_options{
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }
  .theme-btn.btn-style-two{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 480px) {
  .welcome-one .sec-title_heading{ font-size: 1.15rem; }
  .welcome-one_counter-count .odometer{ font-size: 1.15rem; }
  .welcome-one_phone{ font-size: 0.9rem; }
}

/* ---- What We Do: mouse-wheel horizontal scroll ---- */
.blocks_outer{
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--green-tint);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 28px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 28px), transparent 100%);
}
.blocks_outer::-webkit-scrollbar{ height: 6px; }
.blocks_outer::-webkit-scrollbar-track{ background: var(--green-tint); border-radius: 999px; }
.blocks_outer::-webkit-scrollbar-thumb{ background: var(--green); border-radius: 999px; }

.welcome-block_one{ scroll-snap-align: start; flex: 0 0 300px; }

.welcome-block_one-inner{
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.welcome-block_one-inner:hover{
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(63,174,92,0.14);
}

.welcome-block_one-number{ font-size: 0.75rem; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }

.welcome-block_one-icon{
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  overflow: hidden;
}
.welcome-block_one-icon img{ width: 32px; height: 32px; object-fit: contain; }

.welcome-block_one-heading{ margin: 0 0 0.6rem; font-size: 1.05rem; }
.welcome-block_one-heading a{ color: var(--black); text-decoration: none; }
.welcome-block_one-heading a:hover{ color: var(--green-dark); }

.welcome-block_one-text{ color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; }

/* ==========================================
   TABLET (992px and below)
========================================== */
@media (max-width: 991px) {
  .welcome-one{ padding: 3.5rem 0; }
  .welcome-one_circle{ width: 300px; height: 300px; top: -120px; right: -120px; }
  .welcome-one .sec-title.centered{ margin-bottom: 2.5rem; }

  .welcome-one .row.clearfix{ flex-direction: column; gap: 2.5rem; }
  .welcome-one .row.clearfix > .column{ flex: 1 1 100%; }

  .welcome-block_one{ flex: 0 0 220px; }
}

/* ==========================================
   MOBILE (767px and below)
========================================== */
@media (max-width: 767px) {
  .welcome-one{ padding: 2.75rem 0; }

  .welcome-one_circle{ width: 220px; height: 220px; top: -90px; right: -90px; }

  .welcome-one .sec-title_title{ font-size: 1rem; padding: 0.3rem 0.75rem; }
  .welcome-one .sec-title_heading{ font-size: 1.3rem; line-height: 1.4; }

  .welcome-one .row.clearfix{ gap: 1.5rem; }

  .middle-box{ padding: 1.25rem; }
  .middle-box .row.clearfix{ flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .welcome-one_options{
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }
  .theme-btn.btn-style-two{
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .welcome-one_phone{ flex-wrap: wrap; }

  .welcome-block_one{ flex: 0 0 200px; }
  .welcome-block_one-inner{ padding: 1.5rem 1.25rem; }
}

/* ==========================================
   SMALL MOBILE (480px and below)
========================================== */
@media (max-width: 480px) {
  .welcome-one .sec-title_heading{ font-size: 1.15rem; }
  .welcome-one_counter-count .odometer{ font-size: 1.15rem; }
  .welcome-one_phone{ font-size: 0.9rem; }
  .welcome-one_phone a{ word-break: break-all; }

  .blocks_outer{ gap: 0.85rem; }
  .welcome-block_one{ flex: 0 0 320px; }
  .welcome-block_one-inner{ padding: 1.25rem 1rem; }
  .welcome-block_one-heading{ font-size: 0.95rem; }
  .welcome-block_one-text{ font-size: 0.82rem; line-height: 1.55; }
}


/* ================================================= */


/* =========================================================
   GENESIS UNIQUE MARQUEE
   ========================================================= */

.genesis-marquee {
    position: relative;

    width: 100%;

    padding: 15px 0 15px;

    background: #f4fbf6;

    overflow: hidden;

    border-top: 1px solid #e2f0e6;
    border-bottom: 1px solid #e2f0e6;
}


/* Soft background glow */

.genesis-marquee::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 15%;
    top: -300px;

    border-radius: 50%;

    background: rgba(31, 170, 89, 0.08);

    filter: blur(10px);

    pointer-events: none;
}

.genesis-marquee::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: 5%;
    bottom: -300px;

    border-radius: 50%;

    background: rgba(31, 170, 89, 0.06);

    pointer-events: none;
}


/* =========================================================
   SMALL LABEL
   ========================================================= */

.marquee-label {
    position: absolute;

    left: 35px;
    top: 28px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #111318;
}

.marquee-label span {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #16894a;

    color: #ffffff;

    font-size: 10px;
    font-weight: 800;
}

.marquee-label small {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #6a716c;
}


/* =========================================================
   MARQUEE WINDOW
   ========================================================= */

.marquee-window {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 10px 0;
}


/* Fade edges */

.marquee-window::before,
.marquee-window::after {
    content: "";

    position: absolute;

    top: 0;

    width: 180px;
    height: 100%;

    z-index: 4;

    pointer-events: none;
}

.marquee-window::before {
    left: 0;

    background: linear-gradient(
        90deg,
        #f4fbf6,
        transparent
    );
}

.marquee-window::after {
    right: 0;

    background: linear-gradient(
        270deg,
        #f4fbf6,
        transparent
    );
}


/* =========================================================
   MOVING TRACK
   ========================================================= */

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;

    animation: genesisMarquee 28s linear infinite;

    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;

    gap: 38px;

    padding-right: 38px;

    white-space: nowrap;
}


/* =========================================================
   TEXT
   ========================================================= */

.marquee-content h2 {
    margin: 0;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: clamp(48px, 7vw, 105px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -5px;

    white-space: nowrap;
}


/* Outline */

.marquee-outline {
    color: transparent;

    -webkit-text-stroke: 1.5px #111318;
}


/* Black */

.marquee-solid {
    color: #111318;
}


/* Green */

.marquee-light {
    color: #2baa61;
}


/* =========================================================
   ROUND SYMBOL
   ========================================================= */

.marquee-badge {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid #b9d8c3;

    background: #ffffff;

    color: #16894a;

    box-shadow:
        0 8px 25px rgba(17, 19, 24, 0.06);

    animation: badgeRotate 5s linear infinite;
}

.marquee-badge span {
    font-size: 24px;
}

.marquee-badge.green {
    background: #16894a;

    border-color: #16894a;

    color: #ffffff;
}


/* =========================================================
   BOTTOM LABEL
   ========================================================= */

.marquee-bottom {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.marquee-bottom span {
    width: 45px;
    height: 1px;

    background: #bddbc6;
}

.marquee-bottom p {
    margin: 0;

    color: #16894a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes genesisMarquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

@keyframes badgeRotate {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}


/* =========================================================
   HOVER
   ========================================================= */

.genesis-marquee:hover .marquee-track {
    animation-play-state: paused;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .genesis-marquee {
        padding: 70px 0 50px;
    }

    .marquee-content {
        gap: 25px;
        padding-right: 25px;
    }

    .marquee-content h2 {
        font-size: 60px;
        letter-spacing: -3px;
    }

    .marquee-badge {
        width: 48px;
        height: 48px;

        flex-basis: 48px;
    }

    .marquee-badge span {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .genesis-marquee {
        padding: 20px 0 20px;
    }

    .marquee-label {
        left: 20px;
        top: 20px;
    }

    .marquee-label small {
        font-size: 8px;
    }

    .marquee-content {
        gap: 18px;
        padding-right: 18px;
    }

    .marquee-content h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .marquee-badge {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .marquee-badge span {
        font-size: 14px;
    }

    .marquee-bottom {
        margin-top: 25px;
    }

    .marquee-bottom p {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .marquee-window::before,
    .marquee-window::after {
        width: 70px;
    }

}

/* ============================================================= */


/* ================================
   SERVICES SECTION
================================ */

.services-green {
    position: relative;
    padding: 20px 0 10px;
    background-color: #eaf8ee;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.services-green::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    top: -120px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: eduTopFloat 8s ease-in-out infinite;
}

.services-green::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    animation: eduBottomFloat 10s ease-in-out infinite;
}


/* Light Green Background */

.services-green-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: #e9f8ee;
    z-index: 0;
}


/* Container */

.services-green .container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    width: 90%;
    margin: auto;
}


/* ================================
   HEADING
================================ */

.services-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 60px;
}


.services-heading-left {
    width: 60%;
    padding-top: 10px;
}


.section-subtitle {
    display: inline-block;
    margin-bottom: 15px;

    color: #23864a;

    font-size: 50px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;
}


.services-heading h2 {
    margin: 0;

    color: #111111;

    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
}


.services-heading-text {
    width: 40%;
    max-width: 470px;

    color: #555555;

    font-size: 16px;
    line-height: 1.8;
}


/* ================================
   MAIN CONTENT
================================ */

.services-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: #f0faF3;
    padding: 5px;
    border-radius: 30px;
}


/* ================================
   SERVICE GRID
================================ */

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Staggered reveal delays for the four cards (paired with [data-reveal] below) */
.services-list .service-card:nth-child(1) { transition-delay: 0ms; }
.services-list .service-card:nth-child(2) { transition-delay: 90ms; }
.services-list .service-card:nth-child(3) { transition-delay: 180ms; }
.services-list .service-card:nth-child(4) { transition-delay: 270ms; }


/* Card */

.service-card {
    position: relative;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dceee2;
    border-radius: 20px;

    transition: all 0.35s ease;

    overflow: hidden;
}


.service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 5px;
    height: 0;

    background: #45b66b;

    transition: 0.35s ease;
}


.service-card:hover::before {
    height: 100%;
}


.service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.08);
}


/* Card Top */

.service-card-top {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 18px;
}


/* Icon */

.service-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;
    font-size: 28px;
    padding: 10px;

    border-radius: 15px;

    background: #e8f8ed;

    display: flex;
    align-items: center;
    justify-content: center;
}


.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    border-radius: 10px;
}


/* Title */

.service-card h3 {
    margin: 0;

    font-size: 21px;
    line-height: 1.4;
}


.service-card h3 a {
    color: #111111;

    text-decoration: none;

    transition: 0.3s;
}


.service-card h3 a:hover {
    color: #299653;
}


/* Description */

.service-card p {
    color: #5e5e5e;

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* Arrow */

.service-arrow {
    width: 42px;
    height: 42px;

    background: #111111;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 22px;

    transition: 0.3s;
    margin-top: auto;
}


.service-arrow:hover {
    background: #3cac63;
    color: #ffffff;

    transform: translateX(5px);
}


/* ================================
   VIDEO
================================ */

.services-video {
    height: 100%;
}


.video-box {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 520px;

    overflow: hidden;

    border-radius: 25px;
}


.video-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.video-box:hover img {
    transform: scale(1.05);
}


.video-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.05)
        );
}


/* Play Button */

.video-play {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 85px;
    height: 85px;

    border-radius: 50%;

    background: #ffffff;

    color: #111111;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 24px;

    text-decoration: none;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.2);

    transition: 0.35s;
}


.video-play:hover {
    background: #45b66b;
    color: #ffffff;

    transform:
        translate(-50%, -50%)
        scale(1.1);
}


/* ================================
   CLIENTS
================================ */

.clients-area {
    margin-top: 70px;

    padding: 30px 35px;

    background: #ffffff;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}


.clients-title {
    margin-bottom: 25px;

    color: #111111;

    font-size: 14px;
    font-weight: 700;

    text-align: center;

    text-transform: uppercase;
    letter-spacing: 2px;
}


.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    align-items: center;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 8px), transparent 100%);
}

.clients-track::-webkit-scrollbar {
    display: none;
}

.client-logo {
    flex: 0 0 20%;
    scroll-snap-align: start;
}

.client-logo {
    height: 90px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 15px;
}


.client-logo img {
    max-width: 150px;
    max-height: 65px;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.6;

    transition: 0.3s ease;
}


.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;

    transform: scale(1.08);
}


/* Buttons */

.clients-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;

    margin-top: 25px;
}


.clients-prev,
.clients-next {
    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    cursor: pointer;

    font-size: 20px;

    transition: 0.3s;
}


.clients-prev:hover,
.clients-next:hover {
    background: #42ad65;

    transform: translateY(-3px);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .services-green {
        padding: 70px 0;
    }


    .services-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }


    .services-heading-left,
    .services-heading-text {
        width: 100%;
        max-width: 100%;
    }


    .services-heading h2 {
        font-size: 42px;
    }


    .services-main {
        grid-template-columns: 1fr;
    }


    .video-box {
        min-height: 420px;
    }

}


@media (max-width: 767px) {

    .services-green-bg {
        width: 100%;
        opacity: 0.5;
    }


    .services-heading h2 {
        font-size: 34px;
    }


    .services-main {
        padding: 20px;
        border-radius: 20px;
    }


    .services-list {
        grid-template-columns: 1fr;
    }


    .service-card {
        padding: 25px 20px;
    }


    .video-box {
        min-height: 350px;
    }


    .client-logo {
        flex: 0 0 42%;
    }

}


@media (max-width: 480px) {

    .client-logo {
        flex: 0 0 62%;
    }

    .services-green {
        padding: 55px 0;
    }


    .services-green .container {
        width: 92%;
    }


    .services-heading {
        margin-bottom: 35px;
    }


    .services-heading h2 {
        font-size: 29px;
    }


    .services-heading h2 br {
        display: none;
    }


    .service-card-top {
        align-items: flex-start;
    }


    .service-icon {
        width: 55px;
        height: 55px;

        min-width: 55px;
    }


    .service-card h3 {
        font-size: 19px;
    }


    .video-box {
        min-height: 300px;
    }


    .video-play {
        width: 65px;
        height: 65px;

        font-size: 19px;
    }

}


/* =========================================
   CTA TWO - Light Green / Black / White
========================================= */

.cta-two {
    position: relative;
    padding: 40px 0;
    background: #ffffff;
}

.cta-two .inner-container {
    position: relative;
    overflow: hidden;
    padding: 70px 80px;
    background: #dff5e5;
    border-radius: 24px;
}

/* Background Image */
.cta-two_image-layer {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.08;
}

/* Decorative Vector */
.cta-two_vector-layer {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12;
    animation: ctaVectorFloat 8s ease-in-out infinite;
    transform-origin: center;
    pointer-events: none;
}

@keyframes ctaVectorFloat {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) rotate(90deg) scale(1.05);
    }
}

/* Content */
.cta-two_content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Small Title */
.cta-two .sec-title_title {
    margin-bottom: 15px;
    color: #35a854;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Heading */
.cta-two .sec-title_heading {
    margin-bottom: 18px;
    color: #111111;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

/* Description */
.cta-two .sec-title_text {
    color: #333333;
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
}

/* Button */
.cta-two_button {
    margin-top: 30px;
}

.cta-two_button .theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    min-width: 180px;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    border: 2px solid #111111;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Button Hover */
.cta-two_button .theme-btn:hover {
    background: #35a854;
    border-color: #35a854;
    color: #ffffff;
}

/* Button Text */
.cta-two_button .btn-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.cta-two_button .text-one,
.cta-two_button .text-two {
    display: block;
    transition: transform 0.3s ease;
}

.cta-two_button .text-two {
    position: absolute;
    top: 100%;
    left: 0;
    color: #ffffff;
}

/* Button Text Animation */
.cta-two_button .theme-btn:hover .text-one {
    transform: translateY(-100%);
}

.cta-two_button .theme-btn:hover .text-two {
    transform: translateY(-100%);
}


/* =========================================
   Decorative Green Circle
========================================= */

.cta-two .inner-container::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -130px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.5;
    z-index: 1;
}


/* =========================================
   Responsive
========================================= */

@media only screen and (max-width: 991px) {

    .cta-two {
        padding: 60px 0;
    }

    .cta-two .inner-container {
        padding: 55px 45px;
    }

    .cta-two .sec-title_heading {
        font-size: 40px;
    }

}

@media only screen and (max-width: 767px) {

    .cta-two {
        padding: 40px 0;
    }

    .cta-two .inner-container {
        padding: 45px 25px;
        border-radius: 18px;
    }

    .cta-two .sec-title_title {
        font-size: 13px;
    }

    .cta-two .sec-title_heading {
        font-size: 32px;
        line-height: 1.2;
    }

    .cta-two .sec-title_text {
        font-size: 15px;
    }

    .cta-two_button .theme-btn {
        padding: 13px 25px;
        min-width: 160px;
    }

    .cta-two_vector-layer {
        width: 250px;
        height: 250px;
        right: -80px;
        top: -50px;
    }
}


/* ==========================================
========================================== */

.main-footer {
    position: relative;
    background: #111111;
    color: #ffffff;
    padding: 10px 0px 0px;
}


/* ==========================================
   BACKGROUND IMAGE (animated GIF via <img>)
========================================== */

.main-footer .footer_bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    z-index: 0;

    /* Fallback color while the GIF loads or if it fails to load */
    background-color: #0a1f0f;
}

.main-footer .footer_bg-image .footer_bg-gif {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    /* fills the footer edge-to-edge without distortion, like background-size: cover */
    object-fit: cover;
    object-position: center;

    display: block;
}




/* ==========================================
   FOOTER CONTENT
========================================== */

.main-footer .footer-content {
    position: relative;
    z-index: 2;
}


/* ==========================================
   UPPER BOX / LOGO
========================================== */

.main-footer .upper-box {
    padding: 0px 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.main-footer .footer-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.main-footer .footer-logo img:hover {
    transform: translateY(-3px);
}


/* ==========================================
   WIDGETS SECTION
========================================== */

.main-footer .widgets-section {
    padding: 20px 0 10px;
}

.main-footer .footer-column {
    margin-bottom: 30px;
}

.main-footer .footer-widget {
    height: 100%;
}


/* ==========================================
   WIDGET HEADING
========================================== */

.main-footer .footer-widget h5 {
    position: relative;

    margin: 0 0 25px;
    padding-bottom: 13px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;

    text-transform: capitalize;
}

.main-footer .footer-widget h5::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 45px;
    height: 3px;

    background: #35A854;

    border-radius: 10px;
}


/* ==========================================
   INFORMATION
========================================== */

.main-footer .logo-widget p {
    max-width: 420px;

    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;
    line-height: 1.85;
}


/* ==========================================
   QUICK LINKS
========================================== */

.main-footer .footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-footer .footer-list li {
    margin-bottom: 13px;
}

.main-footer .footer-list li:last-child {
    margin-bottom: 0;
}

.main-footer .footer-list li a {
    position: relative;

    display: inline-block;

    padding-left: 18px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.5;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Green Dot */

.main-footer .footer-list li a::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 6px;
    height: 6px;

    background: #35A854;

    border-radius: 50%;

    transform: translateY(-50%);

    transition: all 0.3s ease;
}


/* Link Hover */

.main-footer .footer-list li a:hover {
    color: #DFF5E5;
    transform: translateX(5px);
}

.main-footer .footer-list li a:hover::before {
    width: 8px;
    height: 8px;
    background: #DFF5E5;
}

/* ================================ */

.map-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    background: #dff5e5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid #dff5e5;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        height: 250px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 280px;
        border-radius: 12px;
    }
}



/* ==========================================
   CONTACT
========================================== */

.main-footer .footer-contact_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-footer .footer-contact_list li {
    position: relative;

    margin-bottom: 18px;
    padding-left: 50px;

    color: rgba(255, 255, 255, 0.80);

    font-size: 15px;
    line-height: 1.7;
}

.main-footer .footer-contact_list li:last-child {
    margin-bottom: 0;
}


/* Contact Icon Box */

.main-footer .footer-contact_list li > span {
    position: absolute;

    left: 0;
    top: 2px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #DFF5E5;
    color: #111111;

    border-radius: 8px;

    font-size: 10px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.main-footer .footer-contact_list li:hover > span {
    background: #35A854;
    color: #ffffff;

    transform: translateY(-2px);
}


/* Contact Links */

.main-footer .footer-contact_list li a {
    color: rgba(255, 255, 255, 0.80);

    text-decoration: none;

    transition: color 0.3s ease;
}

.main-footer .footer-contact_list li a:hover {
    color: #DFF5E5;
}


/* ==========================================
   FOOTER BOTTOM
========================================== */

.main-footer .footer-bottom {
    position: relative;
    z-index: 3;

    padding: 20px 0;

    background: rgba(0, 0, 0, 0.42);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.main-footer .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* ==========================================
   COPYRIGHT
========================================== */

.main-footer .copyright {
    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================
   SOCIAL ICONS
========================================== */

.main-footer .footer_socials {
    display: flex;
    align-items: center;

    gap: 10px;
}

.main-footer .footer_socials a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #ffffff;

    font-size: 15px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.main-footer .footer_socials a:hover {
    background: #35A854;

    border-color: #35A854;

    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(53, 168, 84, 0.30);
}


/* ==========================================
   DECORATIVE GREEN GLOW
========================================== */

.main-footer .footer-content::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    bottom: 70px;

    border-radius: 50%;

    background: #35A854;

    opacity: 0.08;

    filter: blur(5px);

    pointer-events: none;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .main-footer .upper-box {
        padding: 0px 0 10px;
    }

    .main-footer .widgets-section {
        padding: 50px 0 30px;
    }

    .main-footer .footer-logo img {
        width: 170px;
    }

    .main-footer .footer-widget h5 {
        font-size: 19px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .main-footer .upper-box {
        padding: 0px 0 10px;

        text-align: center;
    }

    .main-footer .footer-logo img {
        width: 160px;
        margin: 0 auto;
    }

    .main-footer .widgets-section {
        padding: 45px 0 20px;
    }

    .main-footer .footer-column {
        margin-bottom: 35px;

        text-align: center;
    }

    .main-footer .footer-column:last-child {
        margin-bottom: 10px;
    }

    .main-footer .footer-widget h5 {
        font-size: 18px;
    }

    .main-footer .footer-widget h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .main-footer .logo-widget p {
        max-width: 100%;
    }

    .main-footer .footer-list li a {
        padding-left: 0;
    }

    .main-footer .footer-list li a::before {
        display: none;
    }

    .main-footer .footer-contact_list {
        display: inline-block;
        text-align: left;
    }

    .main-footer .footer-bottom {
        padding: 22px 15px;
    }

    .main-footer .footer-bottom-inner {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 15px;
    }

    .main-footer .footer_socials {
        justify-content: center;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .main-footer .footer-logo img {
        width: 145px;
    }

    .main-footer .logo-widget p {
        font-size: 14px;
        line-height: 1.75;
    }

    .main-footer .footer-contact_list li {
        font-size: 14px;
    }

    .main-footer .footer_socials a {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .main-footer .copyright {
        font-size: 13px;
    }
}


/* ================== test =========== */

/* ==========================================
   TESTIMONIALS (SLIDER)
========================================== */

.testimonials-one{
  --black: #16191c;
  --ink-soft: #4a5157;
  --white: #ffffff;
  --green: #3fae5c;
  --green-dark: #2c8a47;
  --green-tint: #eaf8ee;
  --green-tint-2: #d8f2df;
  --line: #e3e8e4;

  position: relative;
  background: var(--green-tint);
  color: var(--black);
  padding: 2rem 0;
}

.testimonials-one .auto-container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.testimonials-one .sec-title.centered{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.testimonials-one .sec-title_title{
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  background: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.testimonials-one .sec-title_heading{
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

.testimonials-one {
    position: relative;
    overflow: hidden;
}

.testimonials-one::before,
.testimonials-one::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Top-left */
.testimonials-one::before {
    left: -100px;
    top: -130px;
    animation: testimonialTopCircle 8s ease-in-out infinite;
}

/* Bottom-right */
.testimonials-one::after {
    right: -100px;
    bottom: -130px;
    animation: testimonialBottomCircle 10s ease-in-out infinite;
}

.testimonials-one .container {
    position: relative;
    z-index: 1;
}


/* Top-left animation */
@keyframes testimonialTopCircle {
    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(25px, 20px) scale(1.08) rotate(12deg);
    }
}


/* Bottom-right animation */
@keyframes testimonialBottomCircle {
    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-25px, -20px) scale(1.1) rotate(-12deg);
    }
}



/* ==========================================
   SLIDER SHELL
========================================== */

.testimonial-slider{
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-slider_viewport{
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
}

.testimonial-slider_track{
  display: flex;
  align-items: stretch;
  gap: 1.5rem;

  transition: opacity 0.2s ease;
}

.testimonial-slider_track.is-fading{
  opacity: 0;
}

.testimonial-slider_slide{
  display: none;
  flex: 1 1 0;
  min-width: 0;
}

.testimonial-slider_slide.is-active{
  display: flex;
}

.testimonial-slider_slide .testimonial-card{
  width: 100%;
}


/* ==========================================
   ARROWS
========================================== */

.testimonial-slider_arrow{
  flex-shrink: 0;

  width: 46px;
  height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 50%;

  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.testimonial-slider_arrow:hover{
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.testimonial-slider_arrow:focus-visible{
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}


/* ==========================================
   DOTS
========================================== */

.testimonial-slider_dots{
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-slider_dot{
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;

  background: var(--green-tint-2);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.testimonial-slider_dot.is-active{
  width: 22px;
  border-radius: 999px;
  background: var(--green);
}

.testimonial-slider_dot:focus-visible{
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}


/* ==========================================
   CARD
========================================== */

.testimonial-card{
  position: relative;
  overflow: hidden;

  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.85rem 1.65rem;
}

.testimonial-card_mark{
  position: absolute;
  top: -0.6rem;
  right: 0.75rem;

  font-size: 6.5rem;
  line-height: 1;
  font-weight: 700;

  color: var(--green-tint-2);
  z-index: 0;

  pointer-events: none;
}

.testimonial-card_head{
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;

  margin-bottom: 1.1rem;
}

.testimonial-card_avatar{
  flex-shrink: 0;

  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: var(--green-tint);
  color: var(--green-dark);

  font-size: 0.85rem;
  font-weight: 700;

  border-radius: 50%;
}

.testimonial-card_who{
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-right: auto;
}

.testimonial-card_name{
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.testimonial-card_name:hover{
  color: var(--green-dark);
}

.testimonial-card_stars{
  color: var(--green);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.testimonial-card_tag{
  flex-shrink: 0;

  font-size: 0.75rem;
  font-weight: 700;

  color: var(--green-dark);
  background: var(--green-tint);

  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.testimonial-card_text{
  position: relative;
  z-index: 1;

  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;

  margin: 0 0 1.25rem;
}

.testimonial-card_source{
  position: relative;
  z-index: 1;

  display: inline-block;

  font-size: 0.8rem;
  font-weight: 700;

  color: var(--green-dark);
  text-decoration: none;

  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  width: 100%;
}

.testimonial-card_source:hover{
  color: var(--black);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px){
  .testimonials-one{ padding: 3.75rem 0; }
  .testimonials-one .sec-title.centered{ margin-bottom: 2.5rem; }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px){
  .testimonials-one{ padding: 3rem 0 4.5rem; }

  .testimonials-one .sec-title_heading{ font-size: 1.3rem; }

  .testimonial-slider{ gap: 0.6rem; }

  .testimonial-slider_arrow{
    width: 38px;
    height: 38px;
  }

  .testimonial-card{
    padding: 1.75rem 1.5rem 1.4rem;
  }

  .testimonial-card_mark{
    font-size: 5rem;
  }

  .testimonial-card_tag{
    order: 3;
    width: 100%;
  }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px){
  .testimonials-one .sec-title_title{ font-size: 1rem; padding: 0.3rem 0.75rem; }
  .testimonial-card_text{ font-size: 0.9rem; }

  .testimonial-slider_arrow{
    width: 34px;
    height: 34px;
  }
}


/* =========================================================================
   NEW — SCROLL REVEAL ("WOW" REPLACEMENT)
   Elements marked [data-reveal] fade + rise into place the first time
   they enter the viewport. One consistent, restrained treatment reused
   everywhere it's applied — no per-section variations.
   ========================================================================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

/* Staggered reveal delays for the three footer columns */
.main-footer .footer-column:nth-child(1) { transition-delay: 0ms; }
.main-footer .footer-column:nth-child(2) { transition-delay: 90ms; }
.main-footer .footer-column:nth-child(3) { transition-delay: 180ms; }

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* =========================================================
   VIDEO LIGHTBOX MODAL
   ========================================================= */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal_backdrop {
    position: absolute;
    inset: 0;

    background: rgba(10, 12, 15, 0.9);
}

.video-modal_dialog {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 960px;

    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.video-modal.is-open .video-modal_dialog {
    transform: scale(1);
}

.video-modal_frame {
    position: relative;
    width: 100%;

    /* 16:9 aspect ratio */
    padding-top: 56.25%;

    border-radius: 14px;
    overflow: hidden;

    background: #000;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.video-modal_frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal_close {
    position: absolute;
    top: -46px;
    right: 0;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);
    color: #fff;

    font-size: 16px;
    cursor: pointer;

    transition: background 0.25s ease, transform 0.25s ease;
}

.video-modal_close:hover {
    background: var(--green-dark, #1faa59);
    transform: rotate(90deg);
}

@media (max-width: 575.98px) {
    .video-modal_close {
        top: -42px;
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}


/* =========================================================
   KITSKILLHUB - FLAGSHIP PROGRAMS
   COLOR SYSTEM
   Light Green + White + Black
========================================================= */

:root {
    --edu-green: #B8E6C8;
    --edu-green-dark: #78C995;
    --edu-green-deep: #4FAE70;
    --edu-green-light: #F0FAF3;

    --edu-black: #111111;
    --edu-black-soft: #242424;

    --edu-gray: #6B6B6B;
    --edu-gray-light: #E8E8E8;

    --edu-white: #FFFFFF;

    --edu-radius: 20px;

    --edu-shadow:
        0 8px 30px rgba(0, 0, 0, 0.06);

    --edu-shadow-hover:
        0 20px 50px rgba(0, 0, 0, 0.13);

    --edu-transition:
        all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}


/* =========================================================
   RESET - ONLY INSIDE PROGRAM SECTION
========================================================= */

.edu-app-wrapper,
.edu-app-wrapper * {
    box-sizing: border-box;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.e-con-inner {
    position: relative;
    overflow: hidden;
}

/* Top-left decoration */
.e-con-inner::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    top: -120px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;

    animation: eduTopFloat 8s ease-in-out infinite;
}

/* Bottom-right decoration */
.e-con-inner::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: #b8e8c7;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;

    animation: eduBottomFloat 10s ease-in-out infinite;
}


/* Keep all actual content above circles */
.e-con-inner > * {
    position: relative;
    z-index: 1;
}


@keyframes eduTopFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(30px, 25px, 0) scale(1.08);
    }
}

@keyframes eduBottomFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-30px, -25px, 0) scale(1.08);
    }
}



.e-con-inner{
  background-color: #eaf8ee;
  padding: 10px 0px;
}

.edu-app-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 20px;
}


/* =========================================================
   HERO / HEADER
========================================================= */

.edu-hero-section {
    width: 100%;

    margin: 0 0 48px;

    padding: 0;
    background-color: transparent;
    text-align: center;
}


/* Small heading */

.edu-tagline {
    margin: 0 0 12px;

    color: var(--edu-green-deep);

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    line-height: 1.4;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Main heading */

.edu-heading-primary {
    margin: 0;

    color: var(--edu-black);

    font-family: inherit;

    font-size: clamp(28px, 4vw, 42px);

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


/* =========================================================
   COURSE GRID
========================================================= */

.edu-course-matrix {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 26px;

    width: 100%;
}


/* =========================================================
   COURSE CARD
========================================================= */

.edu-feature-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: var(--edu-white);

    border: 1px solid #E5EDE7;

    border-radius: var(--edu-radius);

    box-shadow: var(--edu-shadow);

    transition: var(--edu-transition);
}


/* Card hover */

.edu-feature-card:hover {
    transform: translateY(-9px);

    border-color: var(--edu-green-dark);

    box-shadow: var(--edu-shadow-hover);
}


/* =========================================================
   IMAGE CONTAINER
========================================================= */

.edu-visual-container {
    position: relative;

    width: 100%;

    height: 190px;

    overflow: hidden;

    background: var(--edu-green-light);
}


/* Image */

.edu-visual-container img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}


/* Image zoom on hover */

.edu-feature-card:hover
.edu-visual-container img {
    transform: scale(1.07);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.edu-visual-container::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 45%,
            rgba(0, 0, 0, 0.10) 100%
        );

    pointer-events: none;
}


/* =========================================================
   CARD BODY
========================================================= */

.edu-body-content {
    display: flex;

    flex-direction: column;

    flex-grow: 1;

    min-height: 190px;

    padding: 22px;
}


/* =========================================================
   COURSE TITLE
========================================================= */

.edu-item-headline {
    margin: 0 0 15px;

    padding: 0;

    color: var(--edu-black);

    font-family: inherit;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: -0.2px;

    transition:
        color 0.3s ease;
}


/* Title hover */

.edu-feature-card:hover
.edu-item-headline {
    color: var(--edu-green-deep);
}


/* =========================================================
   ENROLLED INFORMATION
========================================================= */

.edu-meta-info {
    display: flex;

    align-items: center;

    width: 100%;

    margin: 0 0 20px;

    padding: 0;

    color: var(--edu-gray);

    font-family: inherit;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;
}


.edu-meta-block {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin: 0;

    padding: 0;

    color: var(--edu-gray);

    white-space: nowrap;
}


/* =========================================================
   BUTTON LINK
========================================================= */


.edu-button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;

    width: 100%;
    margin-top: auto;
}

.edu-action-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;

    text-decoration: none !important;
}

.edu-action-trigger {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 46px;

    margin: 0;
    padding: 12px 16px;

    background: #f0faf3;
    color: #111111;

    border: 1px solid #b8e6c8;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* First button hover */
.edu-action-link:first-child
.edu-action-trigger:hover {
    background: #b8e6c8;
    border-color: #78c995;
    color: #111111;
}

/* Brochure button */
.edu-brochure-btn {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Brochure hover */
.edu-brochure-btn:hover {
    background: #78c995 !important;
    border-color: #78c995 !important;
    color: #111111 !important;
}



/* =========================================================
   BUTTON ACTIVE
========================================================= */

.edu-action-trigger:active {
    transform: scale(0.98);
}


/* =========================================================
   REMOVE COMMON WORDPRESS / ELEMENTOR BUTTON STYLES
========================================================= */

.edu-app-wrapper
.edu-action-trigger::before,
.edu-app-wrapper
.edu-action-trigger::after {
    display: none !important;
}


/* Prevent Elementor link styling */

.edu-app-wrapper a {
    text-decoration: none;
}


/* =========================================================
   CARD FOCUS - ACCESSIBILITY
========================================================= */

.edu-feature-card:focus-within {
    border-color: var(--edu-green-dark);

    box-shadow:
        0 0 0 3px rgba(120, 201, 149, 0.20),
        var(--edu-shadow-hover);
}


/* =========================================================
   TABLET - 2 COLUMNS
========================================================= */

@media (max-width: 1100px) {

    .edu-app-wrapper {
        padding: 0 18px;
    }

    .edu-course-matrix {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px;
    }

    .edu-visual-container {
        height: 210px;
    }

    .edu-body-content {
        min-height: 190px;
    }
}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 767px) {

    .edu-app-wrapper {
        padding: 0 15px;
    }

    .edu-hero-section {
        margin-bottom: 35px;
    }

    .edu-tagline {
        font-size: 11px;

        letter-spacing: 1.5px;

        margin-bottom: 10px;
    }

    .edu-heading-primary {
        font-size: 30px;

        line-height: 1.25;
    }

    .edu-course-matrix {
        gap: 20px;
    }

    .edu-visual-container {
        height: 200px;
    }
}


/* =========================================================
   MOBILE - 1 COLUMN
========================================================= */

@media (max-width: 600px) {

    .edu-app-wrapper {
        padding: 0 15px;
    }

    .edu-course-matrix {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .edu-hero-section {
        margin-bottom: 30px;
    }

    .edu-heading-primary {
        font-size: 28px;

        letter-spacing: -0.3px;
    }

    .edu-visual-container {
        height: 215px;
    }

    .edu-body-content {
        min-height: 185px;

        padding: 20px;
    }

    .edu-item-headline {
        font-size: 18px;
    }

    .edu-action-trigger {
        min-height: 48px;

        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .edu-app-wrapper {
        padding: 0 12px;
    }

    .edu-heading-primary {
        font-size: 25px;
    }

    .edu-visual-container {
        height: 190px;
    }

    .edu-body-content {
        padding: 18px;

        min-height: 180px;
    }

    .edu-item-headline {
        font-size: 17px;
    }

    .edu-meta-info {
        font-size: 12px;
    }

    .edu-action-trigger {
        font-size: 13px;

        padding: 12px 14px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 340px) {

    .edu-app-wrapper {
        padding: 0 10px;
    }

    .edu-heading-primary {
        font-size: 23px;
    }

    .edu-visual-container {
        height: 175px;
    }

    .edu-body-content {
        padding: 16px;
    }
}

/* ======================================== */

.youtube-video{
    margin: 45px auto; 
}

.youtube-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;

    background: #000;

    overflow: hidden;
    border-radius: 25px;
    position: relative;
    z-index: 2;
}

.about-genesis-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green-dark);
    background: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    text-align: center;
    margin-bottom: 1.5rem;
}


.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: block;
}


/* =========================================
   LARGE SCREEN
========================================= */

@media (min-width: 1200px) {

    .youtube-video-wrapper {
        width: 100%;
        max-width: 100%;

        aspect-ratio: 16 / 9;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .youtube-video-wrapper {
        width: 100%;

        aspect-ratio: 16 / 9;

        min-height: 0;
    }
}

/* =========================================================
   SCROLL REVEAL ANIMATION
========================================================= */

.edu-feature-card,
.edu-tagline,
.edu-heading-primary {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.edu-feature-card.edu-visible,
.edu-tagline.edu-visible,
.edu-heading-primary.edu-visible {

    opacity: 1;

    transform: translateY(0);
}


/* Stagger */

.edu-feature-card:nth-child(1) {
    transition-delay: 0.05s;
}

.edu-feature-card:nth-child(2) {
    transition-delay: 0.12s;
}

.edu-feature-card:nth-child(3) {
    transition-delay: 0.19s;
}

.edu-feature-card:nth-child(4) {
    transition-delay: 0.26s;
}

.edu-feature-card:nth-child(5) {
    transition-delay: 0.33s;
}

.edu-feature-card:nth-child(6) {
    transition-delay: 0.40s;
}

.edu-feature-card:nth-child(7) {
    transition-delay: 0.47s;
}

.edu-feature-card:nth-child(8) {
    transition-delay: 0.54s;
}

.edu-feature-card:nth-child(9) {
    transition-delay: 0.61s;
}

.edu-feature-card:nth-child(10) {
    transition-delay: 0.68s;
}



/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .edu-feature-card,
    .edu-visual-container img,
    .edu-action-trigger,
    .edu-item-headline {
        transition: none !important;
    }

    .edu-feature-card:hover {
        transform: none;
    }

    .edu-feature-card:hover
    .edu-visual-container img {
        transform: none;
    }
}



/* ========================= index completed - started service details ======================== */

/* =========================================================
   SERVICE DETAIL
   ========================================================= */

.service-detail{
    position: relative;
    padding: 5.5rem 0;
    background: #ffffff;
    color: #16191c;
    overflow: hidden;
}

.service-detail .auto-container{
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.service-detail_color-circle{
    position: absolute;
    top: -180px;
    right: -180px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d8f2df, transparent 70%);
    z-index: 0;
}

.service-detail .inner-container{
    position: relative;
}

.service-detail h3{
    margin: 3rem 0 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.35;
    color: #16191c;
}

.service-detail > .auto-container > .inner-container > h3:first-of-type{
    margin-top: 0;
}

.service-detail p{
    color: #4a5157;
    line-height: 1.8;
    margin: 0 0 1.25rem;
}


/* ==========================================
   ROW / COLUMNS
========================================== */

.service-detail .row.clearfix{
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail_content-column,
.service-detail_image-column{
    flex: 1 1 420px;
    min-width: 0;
}


/* ==========================================
   FEATURE BLOCK (Our Approach)
========================================== */

.feature-block_inner{
    background: #eaf8ee;
    border-radius: 20px;
    padding: 2rem 1.85rem;
}

.feature-block_icon{
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.feature-block_icon img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.feature-block h3{
    margin: 0 0 0.85rem;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    color: #2c8a47;
}

.feature-block p{
    margin: 0;
    font-size: 0.95rem;
}


/* ==========================================
   IMAGES
========================================== */

.service-detail_image,
.service-detail_image-two{
    border-radius: 18px;
    overflow: hidden;
    margin-top: 1.75rem;
}

.service-detail_image img,
.service-detail_image-two img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail_image:hover img,
.service-detail_image-two:hover img{
    transform: scale(1.04);
}

.service-detail_image-column{
    display: flex;
}

.service-detail_image-two{
    width: 100%;
    margin-top: 0;
}


/* ==========================================
   WHAT WE PROVIDE — SERVICE BLOCKS
========================================== */

.services-outer{
    margin: 2.5rem 0 3rem;
}

.services-outer h3{
    margin-top: 0;
}

.services-outer .row.clearfix{
    gap: 1.5rem;
}

.service-block_one{
    flex: 1 1 300px;
}

.service-block_one-inner{
    height: 100%;
    background: #ffffff;
    border: 1px solid #e3e8e4;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-block_one-inner:hover{
    border-color: #3fae5c;
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(63, 174, 92, 0.14);
}

.service-block_one-upper{
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.service-block_one-icon{
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #eaf8ee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-block_one-icon img{
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.service-block_one-heading{
    margin: 0;
    font-size: 1rem;
}

.service-block_one-heading a{
    color: #16191c;
    text-decoration: none;
    transition: color 0.25s ease;
}

.service-block_one-heading a:hover{
    color: #2c8a47;
}

.service-block_one-text{
    color: #4a5157;
    font-size: 0.88rem;
    line-height: 1.7;
}


/* ==========================================
   VIDEO BLOCK
========================================== */

.service-detail_video{
    position: relative;
    margin: 3rem 0;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    background: #16191c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail_video img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.service-detail_video .services-one_play{
    position: relative;
    z-index: 1;

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: #16191c;

    font-size: 22px;

    text-decoration: none;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-detail_video .services-one_play:hover{
    background: #3fae5c;
    color: #ffffff;
    transform: scale(1.1);
}

/* Ripple */

.services-one_play .ripple{
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid #3fae5c;
    animation: playRipple 2.2s ease-out infinite;
}

@keyframes playRipple{
    0%   { transform: scale(0.9); opacity: 0.9; }
    100% { transform: scale(1.6); opacity: 0; }
}


/* ==========================================
   ACCORDION
========================================== */

.accordion-box{
    list-style: none;
    margin: 1.5rem 0 2.5rem;
    padding: 0;
}

.accordion.block{
    border: 1px solid #e3e8e4;
    border-radius: 14px;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.25s ease;
}

.accordion.block.active-block,
.accordion.block:has(.acc-btn.active){
    border-color: #3fae5c;
}

.acc-btn{
    display: flex;
    align-items: center;
    gap: 0.9rem;

    padding: 1.1rem 1.4rem;

    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #16191c;

    cursor: pointer;
    user-select: none;

    transition: color 0.25s ease, background 0.25s ease;
}

.acc-btn.active,
.acc-btn:hover{
    background: #eaf8ee;
    color: #2c8a47;
}

.icon-outer{
    flex-shrink: 0;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eaf8ee;
    color: #2c8a47;

    font-size: 11px;

    transition: background 0.25s ease, color 0.25s ease;
}

.acc-btn.active .icon-outer{
    background: #3fae5c;
    color: #ffffff;
}

.icon-outer .icon-minus{ display: none; }
.acc-btn.active .icon-outer .icon-plus{ display: none; }
.acc-btn.active .icon-outer .icon-minus{ display: inline-block; }

.acc-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.acc-content.current{
    max-height: 400px;
}

.acc-content .content{
    padding: 0 1.4rem 1.4rem;
}

.acc-content .text{
    color: #4a5157;
    font-size: 0.92rem;
    line-height: 1.75;
}


/* ==========================================
   RESEARCH LINE
========================================== */

.service-detail h4{
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e3e8e4;

    font-size: 0.95rem;
    font-weight: 700;
    color: #2c8a47;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px){
    .service-detail{ padding: 4rem 0; }
    .service-detail_color-circle{ width: 320px; height: 320px; top: -140px; right: -140px; }

    .service-detail .row.clearfix{
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail_image-column{
        order: -1;
    }

    .service-detail_video{ min-height: 280px; }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px){
    .service-detail{ padding: 3rem 0; }

    .service-detail h3{ font-size: 1.3rem; margin: 2.25rem 0 0.85rem; }

    .feature-block_inner{ padding: 1.5rem 1.25rem; border-radius: 16px; }

    .services-outer{ margin: 2rem 0; }

    .service-block_one-inner{ padding: 1.5rem 1.25rem; }

    .service-detail_video{ min-height: 220px; border-radius: 16px; }
    .service-detail_video .services-one_play{ width: 62px; height: 62px; font-size: 17px; }

    .acc-btn{ padding: 0.95rem 1.1rem; font-size: 0.85rem; }
    .acc-content .content{ padding: 0 1.1rem 1.1rem; }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px){
    .service-detail_color-circle{ width: 220px; height: 220px; top: -100px; right: -100px; }

    .service-detail h3{ font-size: 1.15rem; }

    .service-detail_video{ min-height: 190px; }
    .service-detail_video .services-one_play{ width: 54px; height: 54px; font-size: 15px; }

    .service-detail h4{ font-size: 0.85rem; }
}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce){
    .services-one_play .ripple{ animation: none; }
    .service-detail_image img,
    .service-detail_image-two img{ transition: none; }
}

/* ================== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}


/* ================================= */



.team-showcase {
    margin: 20px auto;
}

.team-showcase h2 {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--green-dark);
    background: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* =========================
   TEAM CARD
========================= */

.our-team {
    border: 2px solid green;
    border-radius: 10px;
    text-align: center;
    margin: 10px 0;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.our-team:before,
.our-team:after {
    content: "";
    width: 100%;
    height: 104%;
    background: green;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;

    transform: translateY(-50%) scaleX(0.3);

    transition: all 0.3s ease 0s;
}

.our-team:after {
    width: 106%;
    left: 50%;

    transform: translate(-50%, -50%) scaleY(0.25);
}

.our-team:hover:before {
    transform: translateY(-50%) scaleX(0.7);
}

.our-team:hover:after {
    transform: translate(-50%, -50%) scaleY(0.7);
}

/* =========================
   IMAGE
========================= */

.our-team img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;

    display: block;

    transition: all 0.3s ease 0s;
}

/* =========================
   CONTENT
========================= */

.our-team .team-content {
    width: 93%;
    padding: 25px 10px 10px;

    background: green;

    position: absolute;
    bottom: 50px;
    left: 50%;

    opacity: 0;

    clip-path: polygon(
        0% 15%,
        15% 15%,
        15% 0%,
        85% 0%,
        85% 15%,
        100% 15%,
        100% 85%,
        85% 85%,
        85% 100%,
        15% 100%,
        15% 85%,
        0% 85%
    );

    transform: translateX(-50%);

    transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
}

.our-team:hover .team-content {
    bottom: 10px;
    opacity: 1;
}

.our-team .title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}

.our-team .post {
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* =========================
   SWIPER
========================= */

/* Team Carousel */
#teamCarousel {
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

#teamCarousel .carousel-inner {
    overflow: hidden;
}

#teamCarousel .carousel-item {
    width: 100%;
}

#teamCarousel .row {
    margin-left: 0;
    margin-right: 0;
}

#teamCarousel .col-lg-3,
#teamCarousel .col-md-6,
#teamCarousel .col-12 {
    padding-left: 10px;
    padding-right: 10px;
}

.our-team {
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
}

.our-team img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}


/* =========================
   DESKTOP - 4 MEMBERS
   ========================= */
@media (min-width: 992px) {

    #teamCarousel {
        padding-left: 50px;
        padding-right: 50px;
    }

    #teamCarousel .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

}


/* =========================
   TABLET - 2 MEMBERS
   ========================= */
@media (min-width: 768px) and (max-width: 991px) {

    #teamCarousel {
        padding-left: 35px;
        padding-right: 35px;
    }

    #teamCarousel .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .our-team img {
        height: 320px;
    }

}


/* =========================
   MOBILE - 1 MEMBER
   ========================= */
@media (max-width: 767px) {

    #teamCarousel {
        padding-left: 25px;
        padding-right: 25px;
    }

    #teamCarousel .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .our-team img {
        height: 350px;
    }

}
