:root {
    /* Brand Colors */
    --primary-color: #0F6B3E;
    --primary-light: #1F8A4C;
    --primary-dark: #0A4D2C;

    /* Accent */
    --accent-color: #C62828;
    --accent-hover: #B71C1C;

    /* Background */
    --bg-color: #FFFFFF;
    --bg-light: #F8FAF9;
    --section-bg: #F1F5F3;

    /* Text */
    --heading-color: #111827;
    --text-color: #1f2937;
    --text-light: #374151;

    /* Border */
    --border-color: #E2E8F0;

    /* Status */
    --success-color: #16A34A;
    --warning-color: #F59E0B;
    --danger-color: #DC2626;

    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(15, 107, 62, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 107, 62, 0.12);
    --shadow-lg: 0 8px 30px rgba(15, 107, 62, 0.15);

    /* Gradient */
    --primary-gradient: linear-gradient(135deg,
            #0F6B3E 0%,
            #1F8A4C 100%);

    /* Typography & Structure (Header) */

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --radius-lg: 22px;
    --radius-xl: 32px;
    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(15, 107, 62, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 107, 62, 0.12);
    --shadow-lg: 0 8px 30px rgba(15, 107, 62, 0.15);


    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-sm: 10px;
}

html,
body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    font-size: 17px;
}

.text-muted-custom {
    color: var(--text-light);
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon-box {
    background: var(--section-bg);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.brand-text {
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.55rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color) !important;
    margin: 0 5px;
    padding: 8px 0 !important;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.nav-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-left: 15px;
    position: relative;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #081222;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    color: var(--primary-color);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-white:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Hero Section */
.hero-tag {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-desc {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-spacing: -1px;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 450px;
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-feature-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Hero Section */
.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px 0;
    margin-top: 72px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: right center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-video-content {
    z-index: 2;
    position: relative;
}

.z-index-2 {
    z-index: 2;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.hero-image-text h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-image-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-nav-arrows {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;

    cursor: pointer;
    transition: all 0.3s;
}

.arrow-btn-light {
    background-color: white;
    color: var(--primary-color);
}

.arrow-btn-light:hover {
    background-color: #f8f9fa;
}

.arrow-btn-dark {
    background-color: var(--primary-color);
    color: white;
}

.arrow-btn-dark:hover {
    background-color: #081222;
}

/* Category Cards */
.category-card {
    background-color: var(--section-bg);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    height: 220px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.category-img {
    padding: 70px;
    position: absolute;
    bottom: -82px;
    right: -101px;
    width: 92%;
    object-fit: cover;
    z-index: 1;
}

.card-action-btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: none;
    transition: transform 0.3s;
}

.category-card:hover .card-action-btn {
    transform: scale(1.1);
}

/* Features Banner */
.features-banner {
    background-color: var(--section-bg);
    border-radius: 20px;
    padding: 30px;
}

.feature-col {
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature-col h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.feature-col p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.4;
}


/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
        height: 400px;
    }

    .hero-image-overlay {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-features {
        gap: 10px;
    }

    .category-card {
        margin-bottom: 1rem;
    }

    .feature-col {
        margin-bottom: 1.5rem;
    }

    .hero-image-text {
        padding: 15px !important;
    }

    .hero-image-text h3 {
        font-size: 1.5rem;
    }
}

.hero-section {
    margin-top: 7rem;
}

:root {
    --off-white: var(--bg-light);
    --light: var(--section-bg);
    --mid: var(--border-color);
    --text: var(--heading-color);
    --text2: var(--text-color);
    --text3: var(--text-light);
    --accent: var(--primary-color);
    --accent-light: var(--primary-light);
    --accent2: var(--accent-color);
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 100px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

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

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.92)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes floatY {

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

    50% {
        transform: translateY(-14px)
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0
    }

    100% {
        background-position: 400px 0
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.06)
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes badgeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.8)
    }

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

.hero-bottom-spacer {
    height: 60px;
    background: var(--white)
}

/* =========================================================
   JOURNEY SECTION
   ========================================================= */
.section-journey {

    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 44px;
    animation: fadeUp .7s ease both;
}

.section-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.section-title {

    color: var(--text);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text2);
    max-width: 500px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1400px;
    margin: 0 auto;
}

.journey-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    height: 280px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s;
    background: var(--light);
}

.journey-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg)
}

.jc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
    filter: brightness(.82) saturate(.9);
}

.journey-card:hover .jc-bg {
    transform: scale(1.05)
}

.jc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 30, .7) 0%, transparent 55%);
}

.jc-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: opacity .3s;
}

.journey-card:hover .jc-expand {
    opacity: 1
}

.jc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    color: #fff;
}

.jc-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

.jc-desc {
    font-size: 16px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    line-height: 1.45;
    transition: opacity 0.3s ease, max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), margin-top 0.3s ease;
}

.journey-card:hover .jc-title {
    margin-bottom: 5px;
}

.journey-card:hover .jc-desc {
    opacity: .82;
    max-height: 150px;
    margin-top: 5px;
}

/* card images */
.jc-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1584568694244-14fbdf83bd30?w=600&q=80')
}

.jc-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1571175443880-49e1d25b2bc5?w=600&q=80')
}

.jc-bg-3 {
    background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=600&q=80')
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.section-features {
    background: var(--off-white);
    padding: 72px 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.features-left .section-header {
    text-align: left;
    margin-bottom: 36px
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--mid);
    transition: background .2s;
    cursor: default;
}

.feat-item:last-child {
    border-bottom: none
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform .3s;
}

.feat-item:hover .feat-icon {
    transform: scale(1.12)
}

.fi-1 {
    background: #fde8d8
}

.fi-2 {
    background: #d8edf8
}

.fi-3 {
    background: #d8f8e4
}


.feat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px
}

.feat-desc {
    font-size: 1rem;
    color: var(--text3);
    line-height: 1.55
}

/* Right media card */
.features-media {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-lg);
}

.features-media-bg {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1584568694244-14fbdf83bd30?w=700&q=80') center/cover;
    filter: brightness(.88) saturate(.88);
    transition: transform .5s ease;
}

.features-media:hover .features-media-bg {
    transform: scale(1.03)
}

.features-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 30, .55) 0%, transparent 55%);
}

.fm-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .93);
    border-radius: var(--r-md);
    padding: 10px 14px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.fm-label span {
    display: block;
    font-size: 0.9rem;
    color: var(--text3);
    margin-bottom: 2px
}

.fm-label strong {
    font-size: 13px;
    color: var(--text);
    font-weight: 700
}

.fm-play {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
}

.fm-play:hover {
    transform: scale(1.12);
    box-shadow: var(--shadow-lg)
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 16px solid var(--text);
    margin-left: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media(max-width:900px) {
    nav {
        padding: 0 24px
    }

    .nav-links {
        display: none
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 90px 24px 80px
    }

    .hero-right {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .nav-sub {
        display: none;
    }
}

/* =========================================================
   PREMIUM ABOUT US SECTION (MISSION & VISION)
   ========================================================= */
.section-about-premium {
    padding: 0px 52px;

    position: relative;
    overflow: hidden;
}

.about-premium-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 107, 62, 0.1);
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.premium-title {

    font-size: 48px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeUp 0.9s ease both;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-text-fill-color: transparent;
}

.premium-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeUp 1s ease both;
}

.premium-stats {
    display: flex;
    gap: 24px;
    animation: fadeUp 1.1s ease both;
}

.stat-box {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 18px 28px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    align-items: center;
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.stat-val {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--primary-gradient);
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Visual Area */
.about-premium-visual {
    position: relative;
    height: 600px;
    animation: slideLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visual-img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.premium-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.visual-img-wrapper:hover .premium-main-img {
    transform: scale(1.05);
}

.img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

/* Glass Cards */
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    width: 320px;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.glass-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: floatY 6s ease-in-out infinite alternate 0.8s;
}

.glass-card.is-visible:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
    animation-play-state: paused;
}

.mission-card {
    top: 60px;
    left: 0;
    transition-delay: 0.2s;
}

.vision-card {
    bottom: 60px;
    left: -40px;
    transition-delay: 0.4s;
    animation-delay: 3s;
}

.glass-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--bg-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.glass-text {
    flex: 1;
}

.glass-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.glass-desc {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
}

/* =========================================================
   DARK THEME OVERRIDES FOR PREMIUM ABOUT US SECTION
   ========================================================= */
.section-about-premium.dark-theme {
    background-color: #0b111e;
    color: #ffffff;
}

.section-about-premium.dark-theme::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(30, 60, 110, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.section-about-premium.dark-theme .premium-title,
.section-about-premium.dark-theme .glass-title {
    color: #ffffff;
}

.section-about-premium.dark-theme .premium-desc,
.section-about-premium.dark-theme .glass-desc {
    color: rgba(255, 255, 255, 0.8);
}

.section-about-premium.dark-theme .stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-about-premium.dark-theme .stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-about-premium.dark-theme .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.section-about-premium.dark-theme .stat-val {
    background: linear-gradient(135deg, #fff 0%, #a0c4ff 100%);
    -webkit-text-fill-color: transparent;
}

.section-about-premium.dark-theme .text-gradient {
    background: linear-gradient(135deg, #a0c4ff 0%, #fff 100%);
    -webkit-text-fill-color: transparent;
}

.section-about-premium.dark-theme .glass-card {
    background: rgba(10, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-about-premium.dark-theme .premium-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

@media(max-width:992px) {
    .section-about-premium {
        padding: 60px 24px;
    }

    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-premium-visual {
        height: 500px;
    }

    .visual-img-wrapper {
        width: 100%;
    }

    .mission-card {
        top: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }

    .vision-card {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
}

/* =========================================================
   EXPERT ADVICE SECTION (Dark Theme)
   ========================================================= */
.section-expert {
    background-color: #0B1110;
    color: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.huge-bg-text {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 280px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;

}

.expert-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.expert-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.expert-left {
    animation: fadeUp 1s ease both;
    margin-bottom: 40px;
}

.expert-main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-center {
    position: relative;
    animation: scaleIn 1.2s ease both;
}

.expert-img-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expert-img-wrapper:hover .expert-img {
    transform: scale(1.05);
}

.img-arrow-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.img-arrow-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: #fff;
}

.expert-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    animation: fadeUp 1.4s ease both;
}

.expert-sub-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.3;
}

.expert-desc {
    font-size: 1rem;
    color: #a0aab2;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-explore {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #fff;
    color: #0B1110;
}

.expert-nav {
    display: flex;
    gap: 16px;
    margin-top: 60px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

    .expert-right {
        grid-column: 1 / -1;
        margin-top: 40px;
    }

    .huge-bg-text {
        font-size: 180px;
    }

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

    .feat-item {
        flex-direction: column;
    }

    .category-img {
        padding: 70px;
        position: absolute;
        bottom: -15px;
        right: -77px;
        width: 92%;
        object-fit: cover;
        z-index: 1;
    }
}

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

    .expert-main-title {
        font-size: 36px;
    }

    .expert-img-wrapper {
        height: 400px;
    }

    .huge-bg-text {
        font-size: 120px;
        top: 20%;
    }

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

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

    .feat-item {
        flex-direction: column;
    }

    .category-img {
        padding: 70px;
        position: absolute;
        bottom: -15px;
        right: -77px;
        width: 92%;
        object-fit: cover;
        z-index: 1;
    }
}

/* =========================================================
   FOOTER SECTION
   ========================================================= */
.main-footer {
    background: #ffffff;
    color: #333333;
    padding: 30px 10px 0px 10px;
    position: relative;
    z-index: 10;
    border-top: 1px solid #edf2f7;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.02);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 20px !important;
    font-weight: 700;

    color: var(--accent-color);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer-brand-p {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color, #0F6B3E);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.footer-desc {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #1f2937;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #0F6B3E);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-links a:hover::before {
    transform: scale(1.3);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color) !important;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #1f2937;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: var(--primary-color, #0F6B3E);

    color: #ffffff;
    font-size: 14px;

    box-shadow: 0 4px 12px rgba(15, 107, 62, 0.15);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media(max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =========================================================
   ENQUIRY FORM MODAL
   ========================================================= */
.enquiry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInOverlay 0.5s ease forwards;
    pointer-events: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 10px;
}

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

.floating-enquiry {
    position: relative;
    width: 480px;
    background: #ffffff;
    /* Correctly white */
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    opacity: 0;
    animation: popModal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

@keyframes popModal {
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.enquiry-header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(15, 107, 62, 0.2);
    flex-shrink: 0;
}

.enquiry-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.enquiry-title-wrap i {
    font-size: 20px;
}

.enquiry-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.enquiry-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.enquiry-body {
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    overflow-y: auto;
    /* Allow scrolling if screen is too small */
    overflow-x: hidden;
    background: #ffffff;
    animation: expandEnquiry 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

@keyframes expandEnquiry {
    to {
        max-height: 900px;
        opacity: 1;
        padding: 24px;
    }
}

.enquiry-body p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.enquiry-input {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

textarea.enquiry-input {
    resize: none;
}

.captcha-img-box {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
    background: #f1f5f3;
}

.captcha-image {
    height: 100%;
    width: auto;
    display: block;
}

.btn-refresh-captcha {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0 5px;
}

.btn-refresh-captcha:hover {
    transform: rotate(180deg);
}

.enquiry-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 107, 62, 0.15);
    outline: none;
}

.btn-enquiry {
    background: var(--primary-color);
    color: #fff;
    border: none;
    margin-top: 10px;
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-enquiry:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: #fff;
}

@media(max-width: 992px) {
    .section-about-premium {
        padding: 60px 24px;
    }

    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .visual-content {
        height: 500px;
        /* Reduced height on tablet */
    }
}

@media(max-width: 768px) {

    /* About Us Premium Section */
    .premium-title {
        font-size: 32px;
    }

    .visual-content {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
    }

    .visual-img-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        border-radius: 16px;
    }

    .glass-card {
        position: relative;
        width: 100%;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        right: 0 !important;
        padding: 20px;
        transform: translateY(40px) scale(0.9);
    }

    .glass-card.is-visible {
        transform: translateY(0) scale(1);
        animation: floatYMobile 6s ease-in-out infinite alternate 0.8s;
    }

    /* Expert Section */
    .expert-left .huge-bg-text {
        font-size: 60px;
        left: -10px;
    }

    .expert-main-title {
        font-size: 32px;
    }

    .expert-sub-title {
        font-size: 24px;
    }

    .expert-img-wrapper {
        height: 350px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .floating-enquiry {
        width: calc(100% - 30px);
    }
}

@keyframes floatYMobile {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-8px) scale(1);
    }
}

@media(max-width: 768px) {
    .wwd-section {
        padding: 3rem 1.2rem;
    }

    .wwd-body {
        flex-direction: column;
        gap: 1.5rem;
    }

    .wwd-left {
        position: relative;
        top: auto;
        max-height: none;
        overflow-y: visible;
        flex: 1 1 100%;
    }

    .wwd-right {
        order: -1;
        flex: 0 !important;
    }

    .image-box {
        aspect-ratio: 16/10;
    }

    .slide-item {
        font-size: 1.25rem;
    }

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

.wwd-section {
    background: var(--section-bg);
    color: var(--text-color);

    padding: 5rem 2rem;
}

.wwd-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.wwd-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.wwd-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--heading-color);
    margin-bottom: 1rem;
    max-width: 700px;
}

.wwd-heading span {
    color: var(--primary-color);
}

.wwd-sub {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 0;
}

.wwd-body {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.wwd-left {
    flex: 1 1 320px;
    min-width: 280px;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 15px;
}

.wwd-left::-webkit-scrollbar {
    width: 6px;
}

.wwd-left::-webkit-scrollbar-track {
    background: transparent;
}

.wwd-left::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.wwd-left::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.wwd-right {
    flex: 1 1 340px;
    min-width: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.we-do-heding-sub {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;

    margin-bottom: 3.5rem;

}

.wwd-body {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.wwd-left {
    width: 100%;
}

.wwd-right {
    width: 100%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.image-box {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

/* Slide list */
.slide-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.slide-item {
    font-size: clamp(1.4rem, 3vw, 1.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    cursor: pointer;
    line-height: 1.15;
    display: flex;
    align-items: center;
    color: var(--heading-color);
    user-select: none;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: border-color 0.3s ease;
}

.slide-item:last-child {
    border-bottom: none;
}

.slide-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-item.active::after {
    width: 100%;
}

.slide-num {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--text-light);
    margin-right: 1.5rem;
    transition: color 0.3s ease;
    opacity: 0.6;
}

.slide-item.active .slide-num {
    color: var(--primary-color);
    opacity: 1;
}

.slide-title-wrap {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.char-wrap {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.char-default {
    display: inline-block;
    opacity: 0.18;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    transform: translateY(0);
}

.char-hover {
    display: inline-block;
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--primary-color);
}

.slide-item.active .char-default {
    transform: translateY(-110%);
    opacity: 0.18;
}

.slide-item.active .char-hover {
    transform: translateY(0%);
}

.slide-item.active {
    color: var(--primary-color);
}

/* Image box */
.image-box {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
    box-shadow: var(--shadow-lg);
    min-height: 400px;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    transition: clip-path 0.85s cubic-bezier(0.33, 1, 0.68, 1);
}

.slide-img.visible {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.img-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--bg-color);
    backdrop-filter: blur(6px);
    color: var(--heading-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    border: 1px solid var(--primary-light);
    transition: opacity 0.3s;
}

/* ISO badge */
.iso-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 8px 18px;
    margin-bottom: 2rem;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.07em;
}

.iso-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

@media(max-width:991px) {
    .wwd-body {
        flex-direction: column;
    }

    .wwd-right {
        order: -1;
        flex: 0 !important;
    }

    .image-box {
        aspect-ratio: 16/10;
    }

    .wwd-section {
        padding: 3rem 1.2rem;
    }

    .slide-item {
        font-size: 1.25rem;
    }

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


/* ── SECTION ── */
.testi-section {
    width: 100%;
    margin-bottom: 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* ── BADGE ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 107, 62, 0.09);
    border: 1px solid rgba(15, 107, 62, 0.22);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: .4;
        transform: scale(1.4);
    }
}

/* ── HEADER ── */
.testi-header {
    text-align: center;
    max-width: 620px;
    margin-bottom: 3.5rem;
}

.testi-header h2 {

    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.15;
    margin-bottom: .9rem;
}

.testi-header h2 em {
    font-style: normal;
    color: var(--primary-color);
    position: relative;
}

.testi-header h2 em::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.testi-header p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.75;
}

/* ── TRACK WRAPPER ── */
.track-wrap {
    width: 100%;
    max-width: 1160px;
    position: relative;
}

.track-wrap::before,
.track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}



.track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--section-bg), transparent);
}

.track-outer {
    overflow: hidden;
    width: 100%;
}

.track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s var(--ease-out);
    will-change: transform;
}

.products-grid .card {
    padding: 0px !important;
}

/* ── CARD ── */
.card {
    flex: 0 0 340px;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: transform .35s var(--ease-out), box-shadow .35s ease;
    cursor: default;
}



.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    opacity: .03;
}

.quote-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.quote-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.star {
    font-size: 14px;
    color: var(--warning-color);
}

.card-text {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    word-spacing: -1px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.78;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    position: relative;
    z-index: 1;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.client-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.client-role {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 1px;
}

.verified {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--success-color);
    background: rgba(22, 163, 74, 0.08);
    border-radius: 50px;
    padding: 4px 10px;
}

.verified svg {
    width: 12px;
    height: 12px;
    fill: var(--success-color);
}

/* ── DOTS ── */
.dots {
    display: flex;
    gap: 8px;
    margin-top: 2.5rem;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all .3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-color);
}

/* ── ARROWS ── */
.arrows {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    justify-content: center;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all .25s ease;
}

.arrow-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.arrow-btn:hover svg {
    stroke: #fff;
}

.arrow-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .25s;
}

/* ── STATS ROW ── */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
    max-width: 900px;
}

.stat-item {
    text-align: center;
    flex: 1 1 160px;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform .3s var(--ease-out), box-shadow .3s;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-num {

    font-size: 2.4rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: .4rem;
    font-weight: 500;
}

@media(max-width:768px) {
    .card {
        flex: 0 0 280px;
    }

    .track-wrap::before,
    .track-wrap::after {
        width: 30px;
    }

    .testi-section {
        padding: 4rem 1rem;
    }

    .stats-row {
        gap: 1rem;
    }

    .stat-item {
        flex: 1 1 130px;
        padding: 1.2rem .8rem;
    }

    .stat-num {
        font-size: 2rem;
    }
}

@media(max-width:480px) {
    .card {
        flex: 0 0 260px;
    }

    .arrows {
        margin-top: 1rem;
    }

    .slide-img {
        object-fit: contain;
    }
}

/* ── CLIENT PAGE CSS FROM DUMMY ── */
@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(.6);
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
    padding: 1rem 1.5rem 4rem;
}

/* Diagonal split */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--primary-gradient);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

/* Pattern overlay on green */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='15' cy='15' r='2'/%3E%3C/g%3E%3C/svg%3E");
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1180px;
    width: 100%;
}

.hero-left {
    animation: fadeUp .9s var(--ease-out) .1s both;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.hero-eyebrow span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1 {

    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--heading-color);
    margin-bottom: 1.4rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--primary-color);
}

.hero-desc {
    font-size: 15.5px;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-numbers {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}


.hero-num-val {

    font-size: 2.4rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero-num-val sup {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.hero-num-label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    align-self: center;
}

/* Right visual */
.hero-right {
    position: relative;
    animation: fadeUp .9s var(--ease-out) .25s both;
}

.hero-img-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
}

.hero-img-main {
    width: 78%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform .5s var(--ease-out);
}

.hero-img-main:hover {
    transform: scale(1.02);
}

.hero-img-secondary {
    width: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: absolute;
    left: 0;
    bottom: 10%;
    border: 4px solid var(--bg-color);
    transition: transform .5s var(--ease-out);
}

.hero-img-secondary:hover {
    transform: scale(1.04);
}

.hero-float-badge {
    position: absolute;
    top: 15%;
    left: -10px;
    background: var(--bg-color);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
    min-width: 140px;
}

.hero-float-badge .label {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 4px;
}

.hero-float-badge .val {

    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-float-badge2 {
    position: absolute;
    bottom: 22%;
    right: -12px;
    background: var(--primary-gradient);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float 3.5s ease-in-out infinite;
}

.hero-float-badge2 p {
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    text-transform: uppercase;
}

.hero-float-badge2 strong {

    font-size: 1.4rem;
    color: #fff;
    display: block;
}

.deco-ring {
    position: absolute;
    bottom: -5%;
    right: -5%;
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(15, 107, 62, .25);
    border-radius: 50%;
    animation: spinSlow 14s linear infinite;
}

.deco-ring::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(15, 107, 62, .15);
    border-radius: 50%;
}

/* ─── Ticker ─── */
.ticker-wrap {
    background: var(--primary-gradient);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-inner {
    display: flex;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.ticker-inner:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 2rem;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════ */
.sec-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.sec-title {

    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.15;
    margin: 1rem 0;
}

.sec-title em {
    font-style: normal;
    color: var(--primary-color);
}

.sec-sub {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.78;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ═══════════════════════════════════════
   SECTION 1 — CLIENT STORIES (Cards with images)
═══════════════════════════════════════ */
.clients-section {
    padding: 6rem 1.5rem;
    background: var(--section-bg);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.8rem;
    max-width: 1180px;
    margin: 0 auto;
}

.client-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform .4s var(--ease-out), box-shadow .4s;
    position: relative;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.client-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease-out);
}

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

.client-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.client-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 77, 44, .5) 0%, transparent 50%);
    transition: opacity .4s;
}

.client-card-body {
    padding: 1.5rem 1.6rem 1.8rem;
}

.client-card-sector {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(15, 107, 62, .09);
    border-radius: 50px;
    padding: 3px 12px;
    margin-bottom: .9rem;
}

.client-card-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: .55rem;
    line-height: 1.3;
}

.client-card-desc {
    font-size: 13.5px;
    color: var(--text-color);
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.client-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.client-card-product {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.client-card-product strong {
    color: var(--heading-color);
    display: block;
    font-size: 13px;
}

.verify-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--success-color);
    background: rgba(22, 163, 74, .09);
    border-radius: 50px;
    padding: 4px 10px;
}

.verify-chip svg {
    width: 12px;
    height: 12px;
    stroke: var(--success-color);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Featured wide card */


.client-card.featured .client-card-img {
    height: 280px;
}

@media(max-width:780px) {
    .client-card.featured {
        grid-column: span 1;
    }

    .client-card.featured .client-card-img {
        height: 200px;
    }
}

/* ═══════════════════════════════════════
   SECTION 2 — LOGO WALL
═══════════════════════════════════════ */
.logos-section {
    background: var(--bg-color);
    padding: 4rem 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
    justify-content: center;
}

.logos-grid .logo-tile {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 104px !important;
    flex: 0 1 auto !important;
    flex-shrink: 1 !important;
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    padding: 5px 5px !important;
    transition: all .3s var(--ease-out) !important;
    cursor: default !important;
    margin: 0 auto !important;
}

.logos-grid .logo-tile:hover {
    background: var(--bg-color) !important;
    box-shadow: var(--shadow-md) !important;
    border-color: rgba(15, 107, 62, .25) !important;
    transform: scale(1.05) !important;
}

.logos-grid .logo-tile-inner {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color .3s !important;
}

.logos-grid .logo-tile:hover .logo-tile-inner {
    color: var(--primary-color) !important;
}

.logos-grid .logo-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.logos-grid .logo-tile:hover .logo-img {
    transform: scale(1.03) !important;
}

.logos-grid .logo-tile.accent-tile {
    border-color: rgba(15, 107, 62, .18) !important;
}

@media(max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 14px;
    }

    .logos-grid .logo-tile {
        height: 75px !important;
        padding: 7px 10px !important;
    }
}

@media(max-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }

    .logos-grid .logo-tile {
        height: 70px !important;
        padding: 6px 10px !important;
    }
}

@media(max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .logos-grid .logo-tile {
        height: 70px !important;
        padding: 6px 10px !important;
    }
}

@media(max-width: 480px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        padding: 0 1rem;
    }

    .logos-grid .logo-tile {
        height: 65px !important;
        padding: 6px 8px !important;
        border-radius: 8px !important;
    }
}

@media(max-width: 320px) {
    .logos-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
}

/* Industry grid below logos */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    max-width: 1180px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.industry-chip {
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all .3s var(--ease-out);
}

.industry-chip:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.industry-chip svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
    margin: 0 auto .55rem;
    transition: stroke .3s;
}

.industry-chip:hover svg {
    stroke: #fff;
}

.industry-chip span {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    transition: color .3s;
}

.industry-chip:hover span {
    color: #fff;
}

/* ═══════════════════════════════════════
   TRUST BAND
═══════════════════════════════════════ */
.trust-band {
    background: var(--primary-dark);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.trust-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}

.trust-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.trust-left .sec-title {
    color: #fff;
}

.trust-left .sec-title em {
    color: rgba(255, 255, 255, .6);
    font-style: italic;
}

.trust-left p {
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    line-height: 1.78;
    margin: 1rem 0 2rem;
}

.trust-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}

.trust-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .25);
}

.trust-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.trust-stat {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 1.6rem;
    backdrop-filter: blur(8px);
    transition: transform .3s var(--ease-out), background .3s;
}

.trust-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .14);
}

.trust-stat-num {

    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.trust-stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    margin-top: 5px;
    font-weight: 500;
}

.trust-stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
}

.trust-stat-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, .8);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero::before,
    .hero::after {
        width: 100%;
        clip-path: polygon(0 75%, 100% 60%, 100% 100%, 0 100%);
    }

    .hero-right {
        order: -1;
    }

    .hero-img-stack {
        aspect-ratio: 16/9;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 70%;
        aspect-ratio: 4/3;
    }

    .hero-img-secondary {
        width: 42%;
        bottom: 0;
    }

    .hero-numbers {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .trust-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:640px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-float-badge,
    .hero-float-badge2,
    .deco-ring {
        display: none;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .logo-tile {
        width: 140px;
        height: 78px;
    }

    .industry-grid {
        grid-template-columns: repeat(2fr);
    }

    .trust-stats {
        grid-template-columns: 1fr;
    }
}

@media(max-width:400px) {
    .industry-grid {
        grid-template-columns: repeat(1fr);
    }
}

section {
    margin-top: 50px;
}

/* --- NEW PREMIUM TOP CARDS --- */
.image-card-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15, 107, 62, 0.1);
    border-color: rgba(15, 107, 62, 0.2);
}

.image-card-box img {
    width: 100%;
    height: 240px !important;
    object-fit: contain !important;
    padding: 25px !important;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.4s ease;
}

.image-card-box:hover img {
    transform: scale(1.05);
}

.ic-content {
    padding: 22px;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 1px solid #f0f0f0;
}

.ic-content h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111111;
    transition: color 0.3s ease;
    padding-right: 40px;
}

.image-card-box:hover .ic-content h4 {
    color: #0F6B3E;
}

.ic-content p {
    font-size: 15px;
    margin-bottom: 0;
    color: #1f2937;
    line-height: 1.5;
    padding-right: 40px;
}

.ic-arrow {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 38px;
    height: 38px;
    background: #f0f5f2;
    color: #0F6B3E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
}

.image-card-box:hover .ic-arrow {
    background: #0F6B3E;
    color: #ffffff;
    transform: translateX(4px);
}

/* --- FEATURES ROW --- */
.feature-icon-new {
    color: #388e3c;
    font-size: 20px;
    margin-top: 2px;
}

/* --- NEW ABOUT SECTION --- */
.established-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: #c62828;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3);
}

.est-year {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.est-text {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-new-subtitle {
    color: #d32f2f;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-new-title {
    font-size: 34px;
    font-weight: 700;
    color: #0b111e;
    line-height: 1.25;
    margin-bottom: 20px;

}

.about-new-desc {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    color: #1f2937;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.check-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1b5e20;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(27, 94, 32, 0.2);
}

.btn-learn-more:hover {
    background: #144d18;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
}

@media(max-width:992px) {
    .established-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }
}

/* --- CTA BANNER SECTION --- */
.cta-banner-section {
    position: relative;
    padding: 100px 0;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    filter: blur(2px);
    transform: scale(1.05);
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.cta-banner-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.cta-banner-desc {
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-banner-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-red {
    background: #d32f2f;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: all 0.3s;
}

.btn-cta-red:hover {
    background: #b71c1c;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}



/* ══ PAGE WRAPPER ══ */
.wcc-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

/* ══ TWO-COLUMN HERO ══ */
.wcc-hero {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
}

/* ── LEFT STICKY ── */
.wcc-left {
    width: 420px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    align-self: flex-start;
}

.wcc-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    aspect-ratio: 3/3;
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wcc-img-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s var(--ease-out);
}

.wcc-img-main:hover img {
    transform: scale(1.04);
}

.wcc-img-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 77, 44, 0.88);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
}

.wcc-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.wcc-thumb {
    width: 74px;
    height: 62px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

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

.wcc-thumb.wcc-thumb--active {
    border-color: var(--primary-color);
}

.wcc-thumb:hover {
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.wcc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.wcc-stat {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
    padding: 12px 8px;
    box-shadow: var(--shadow-sm);
}

.wcc-stat__label {
    font-size: 0.70rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.wcc-stat__value {

    font-size: 1.25rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.1;
}

/* ── RIGHT SCROLL ── */
.wcc-right {
    flex: 1;
    min-width: 0;
}

.wcc-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E6F4EC;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid #b6ddc8;
}

.wcc-cat-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
}

.wcc-title {

    font-size: 2.55rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.wcc-desc {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    font-size: 0.96rem;
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 560px;
}

.wcc-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}



.wcc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff;

    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(15, 107, 62, 0.35);
}

.wcc-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(15, 107, 62, 0.45);
}

.wcc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-color);

    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.wcc-btn-outline:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

/* SECTION CARD */
.wcc-section {
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.wcc-section__title {

    font-size: 0.80rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wcc-section__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* SPECS */
.wcc-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.wcc-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.wcc-spec-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

/* ══ FULL-WIDTH BOTTOM SECTIONS ══ */
.wcc-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* WHY CHOOSE */
.wcc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.wcc-why-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.wcc-why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.wcc-why-icon {
    width: 46px;
    height: 46px;
    background: #E6F4EC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.3rem;
}

.wcc-why-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.wcc-why-text {
    font-size: 0.80rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* FEATURES FULL-WIDTH */
.wcc-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.wcc-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-color);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    box-shadow: var(--shadow-sm);
}

.wcc-feat-item:hover {
    border-color: var(--primary-light);
    background: var(--bg-light);
    transform: translateY(-1px);
}

.wcc-check {
    width: 22px;
    height: 22px;
    background: #E6F4EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wcc-check svg {
    width: 11px;
    height: 11px;
}

/* APPLICATIONS FULL-WIDTH */
.wcc-apps-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wcc-app-tag {
    background: #E6F4EC;
    color: var(--primary-dark);
    font-size: 0.83rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #b6ddc8;
    cursor: default;
    transition: background 0.2s, transform 0.15s, color 0.2s;
}

.wcc-app-tag:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
    border-color: var(--primary-color);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .wcc-feat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcc-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .wcc-hero {
        flex-direction: column;
        gap: 24px;
    }

    .wcc-left {
        width: 100%;
        position: static;
    }

    .wcc-img-main {
        aspect-ratio: 16/9;
    }

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

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

@media (max-width: 600px) {
    .wcc-page {
        padding: 20px 14px 48px;
    }

    .wcc-title {
        font-size: 1.7rem;
    }

    .wcc-specs-grid {
        grid-template-columns: 1fr;
    }

    .wcc-feat-grid {
        grid-template-columns: 1fr;
    }

    .wcc-why-grid {
        grid-template-columns: 1fr;
    }

    .wcc-cta-row {
        flex-direction: column;
    }

    .wcc-btn-primary,
    .wcc-btn-outline {
        justify-content: center;
    }

    .wcc-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ══ PAGE ══ */
.glr-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px 60px;
}

/* ══ HEADER ══ */
.glr-header {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: glrFadeUp 0.5s var(--ease-out) 0.05s forwards;
}

.glr-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E6F4EC;
    color: var(--primary-color);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid #b6ddc8;
}

.glr-header__eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
}

.glr-header__title {

    font-size: 2.4rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.glr-header__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 520px;
}

/* ══ FILTER TABS ══ */
.glr-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(12px);
    animation: glrFadeUp 0.5s var(--ease-out) 0.15s forwards;
}

.glr-filter-btn {

    font-size: 16px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.glr-filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-color);
    background: var(--bg-light);
}

.glr-filter-btn.glr-filter-btn--active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(15, 107, 62, 0.3);
}

/* ══ GRID ══ */
.glr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

/* Each card */
.glr-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    animation: glrCardIn 0.45s var(--ease-out) forwards;
}

.glr-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.glr-card:hover .glr-card__overlay {
    opacity: 1;
}

.glr-card:hover .glr-card__img {
    transform: scale(1.08);
}

.glr-card:hover .glr-card__zoom {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.glr-card__img-wrap {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    position: relative;
}

.glr-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.glr-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 77, 44, 0.55) 0%, rgba(10, 77, 44, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glr-card__zoom {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7) rotate(-15deg);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.glr-card__zoom svg {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
}

.glr-card__info {
    padding: 12px 14px 14px;
}

.glr-card__tag {
    display: inline-block;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.glr-card__title {

    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.25;
}

/* stagger */
.glr-card:nth-child(1) {
    animation-delay: 0.10s;
}

.glr-card:nth-child(2) {
    animation-delay: 0.15s;
}

.glr-card:nth-child(3) {
    animation-delay: 0.20s;
}

.glr-card:nth-child(4) {
    animation-delay: 0.25s;
}

.glr-card:nth-child(5) {
    animation-delay: 0.30s;
}

.glr-card:nth-child(6) {
    animation-delay: 0.35s;
}

.glr-card:nth-child(7) {
    animation-delay: 0.40s;
}

.glr-card:nth-child(8) {
    animation-delay: 0.45s;
}

.glr-card:nth-child(9) {
    animation-delay: 0.50s;
}

.glr-card:nth-child(10) {
    animation-delay: 0.55s;
}

.glr-card:nth-child(11) {
    animation-delay: 0.60s;
}

.glr-card:nth-child(12) {
    animation-delay: 0.65s;
}

/* ══ LIGHTBOX ══ */
.glr-lb {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.glr-lb.glr-lb--open {
    opacity: 1;
    pointer-events: all;
}

.glr-lb__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 18, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.glr-lb__box {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    background: var(--bg-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.glr-lb--open .glr-lb__box {
    transform: scale(1) translateY(0);
}

/* Image side */
.glr-lb__img-side {
    flex: 1.2;
    min-width: 0;
    background: #0d1f14;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.glr-lb__img-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.25s ease, transform 0.35s var(--ease-out);
}

.glr-lb__img-side img.glr-lb__img--switching {
    opacity: 0;
    transform: scale(0.95);
}

/* Prev / Next arrows */
.glr-lb__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s, transform 0.2s;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.glr-lb__arrow:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%) scale(1.08);
}

.glr-lb__arrow--prev {
    left: 14px;
}

.glr-lb__arrow--next {
    right: 14px;
}

.glr-lb__arrow svg {
    width: 18px;
    height: 18px;
}

/* Counter */
.glr-lb__counter {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    z-index: 3;
}

/* Info side */
.glr-lb__info-side {
    width: 300px;
    flex-shrink: 0;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--bg-color);
}

.glr-lb__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    color: var(--heading-color);
    transition: background 0.2s, transform 0.2s;
}

.glr-lb__close:hover {
    background: var(--border-color);
    transform: rotate(90deg);
}

.glr-lb__close svg {
    width: 16px;
    height: 16px;
}

.glr-lb__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #E6F4EC;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid #b6ddc8;
    width: fit-content;
}

.glr-lb__title {

    font-size: 1.65rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.15;
    margin-bottom: 12px;
}

.glr-lb__desc {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Specs inside lightbox */
.glr-lb__specs {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glr-lb__spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.84rem;
}

.glr-lb__spec-key {
    color: var(--text-light);
    font-weight: 500;
}

.glr-lb__spec-val {
    font-weight: 700;
    color: var(--heading-color);
}

/* Thumbnails strip inside LB */
.glr-lb__strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.glr-lb__sthumb {
    width: 52px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
    opacity: 0.55;
    flex-shrink: 0;
}

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

.glr-lb__sthumb.glr-lb__sthumb--active {
    border-color: var(--primary-color);
    opacity: 1;
}

.glr-lb__sthumb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* CTA inside LB */
.glr-lb__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff;

    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(15, 107, 62, 0.3);
    transition: opacity 0.2s, transform 0.15s;
    margin-bottom: 12px;
}

.glr-lb__btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ══ KEYFRAMES ══ */
@keyframes glrFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glrCardIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Filter hide */
.glr-card.glr-card--hidden {
    display: none;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .glr-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .glr-lb__box {
        flex-direction: column;
        max-height: 95vh;
    }

    .glr-lb__img-side {
        min-height: 260px;
        max-height: 50vh;
        flex: none;
    }

    .glr-lb__info-side {
        width: 100%;
        max-height: 42vh;
    }

    .glr-lb__strip {
        display: none;
    }
}

@media (max-width: 720px) {
    .glr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .glr-header__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 440px) {
    .glr-page {
        padding: 20px 12px 48px;
    }

    .glr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .glr-lb__box {
        border-radius: 16px;
    }

    .glr-lb__info-side {
        padding: 20px 18px;
    }
}



/* ───── MAIN LAYOUT ───── */
.contact-section {
    max-width: 1270px;
    margin: 0 auto;
    padding: 80px 24px 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
    position: relative;
}

/* ───── INFO PANEL ───── */
.info-panel {
    position: sticky;
    top: 24px;
    align-self: flex-start;
    height: fit-content;
    z-index: 10;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.info-heading {
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300;
    color: var(--heading-color);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.info-heading strong {
    font-weight: 600;
    color: var(--primary-color);
}

.info-desc {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 40px;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 5px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.35s var(--ease-out);
    border-radius: 0 2px 2px 0;
}

.contact-card:hover {
    background: var(--bg-color);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: rgba(15, 107, 62, 0.2);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 107, 62, 0.25);
}

.card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-body {
    flex: 1;
    min-width: 0;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 3px;
}

.card-value {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--heading-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hours */
.hours-block {
    margin-top: 17px;
    padding: 20px 22px;
    background: var(--section-bg);
    border-radius: var(--radius-lg);
}

.hours-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text-color);
    font-weight: 400;
}

.hours-time {
    color: var(--heading-color);
    font-weight: 500;
}

.hours-time.closed {
    color: var(--danger-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ───── FORM PANEL ───── */
.form-panel {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.form-panel:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.form-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.form-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.form-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 34px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    margin-bottom: 20px;
    position: relative;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 8px;
}

label .req {
    color: var(--accent-color);
    margin-left: 2px;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    color: var(--heading-color);
    background: var(--bg-light);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s var(--ease-out);
    appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 107, 62, 0.1);
}

input.error,
textarea.error {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.field-error {
    font-size: 12px;
    color: var(--danger-color);
    margin-top: 5px;
    display: none;
}

.field-error.show {
    display: block;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Checkbox */
.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.checkbox-field input[type="checkbox"] {
    appearance: checkbox;
    -webkit-appearance: checkbox;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    padding: 0;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
    border-radius: 4px;
}

.checkbox-field label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 13.5px;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
}

.checkbox-field label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Submit */
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 6px 20px rgba(15, 107, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 107, 62, 0.4);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success State */
.success-msg {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-msg.show {
    display: block;
    animation: fadeUp 0.6s var(--ease-out) forwards;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(15, 107, 62, 0.3);
    animation: popIn 0.5s var(--ease-out) 0.1s both;
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 34px;
    height: 34px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-heading {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.success-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ───── MAP STRIP ───── */
.map-section {
    background: var(--section-bg);
    padding: 60px 24px;
}

.map-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 36px;
}

.map-header h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 400;
    color: var(--heading-color);
}

.map-header p {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 380px;
    background: #e8ede9;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Map placeholder if iframe blocked */
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--text-light);
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 1.5;
}

.map-placeholder p {
    font-size: 15px;
}

.map-placeholder a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

/* ───── TOAST ───── */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--heading-color);
    color: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.45s var(--ease-out);
    z-index: 9999;
    max-width: 320px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    background: var(--success-color);
}

.toast.error-toast {
    background: var(--danger-color);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
    .contact-grid {
        display: block;
        gap: 40px;
    }

    .info-panel {
        position: static;
        top: auto;
    }

    .form-panel {
        padding: 32px 24px;
    }
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 20px 60px;
    }

    .contact-section {
        padding: 52px 20px 72px;
    }

    .map-container {
        height: 280px;
    }
}

/* ───── SCROLL REVEAL ───── */
.reveal {
    opacity: 1;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Focus ring */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* =========================================================
   CUSTOM ALERT MODAL (RESPONSIVE & THEMED)
   ========================================================= */
.custom-alert-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.65);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: alertFadeIn 0.3s ease forwards;
}

.custom-alert-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

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

.custom-alert-modal {
    width: 440px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    animation: alertPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    display: flex;
    flex-direction: column;
}

@keyframes alertPop {
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.custom-alert-header {
    background: var(--primary-color);
    color: #ffffff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(10, 25, 47, 0.1);
}

.custom-alert-header i {
    font-size: 20px;
}

.custom-alert-body {
    padding: 24px;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

.custom-alert-actions {
    padding: 14px 20px;
    background: #f8faf9;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.custom-alert-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 10px 32px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(15, 107, 62, 0.25);
}

.custom-alert-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 107, 62, 0.35);
}

.custom-alert-btn:active {
    transform: translateY(1px);
}

/* =========================================================
   TOAST NOTIFICATION (RESPONSIVE & THEMED)
   ========================================================= */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e293b;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    z-index: 10000;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 5px solid var(--primary-color);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toast.success {
    background: #0F6B3E;
    border-left-color: #16A34A;
}

.toast.error-toast {
    background: #C62828;
    border-left-color: #EF4444;
}

@media (max-width: 600px) {
    .toast {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: center;
        text-align: center;
    }
}

/* ── PREMIUM ABOUT US STYLES ── */

/* PY-6 for larger padding */
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Animated Premium Hero */
.about-premium-hero {
    position: relative;
    padding: 16rem 0 12rem;
    background-color: #0a1118;
    /* Deep rich dark blue/black */
    overflow: hidden;
    margin-top: -100px;
    z-index: 0;
}

.hero-bg-anim {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: blobMove 20s infinite alternate ease-in-out;
    border-radius: 50%;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(15, 107, 62, 0.4);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(10, 77, 44, 0.5);
    bottom: -100px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: rgba(22, 163, 74, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, 50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }

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

.hero-overlay-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.badge-premium-light {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpAnim 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    transform: rotateY(180deg);
}

.hero-wave .shape-fill {
    fill: #FFFFFF;
}

/* Badges */
.badge-premium {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(15, 107, 62, 0.15);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid rgba(15, 107, 62, 0.3);
}

/* Product Pills */
.product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-pills span {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

.product-pills span:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(15, 107, 62, 0.15);
}

/* Image Stack */
.image-stack {
    position: relative;
}

.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5 {
    text-align: left;
}

@media (max-width: 767px) {

    .about-content,
    .about-content h2,
    .about-content h3,
    .about-content h4,
    .about-content h5 {
        text-align: left;
    }
}

.image-stack {
    position: relative;
}

.image-stack .img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

    transition: transform 0.5s;
}

.image-stack:hover .img-main {
    transform: scale(1.02);
}

.stats-glass {
    position: absolute;
    bottom: -30px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s;
}

.image-stack:hover .stats-glass {
    transform: translateY(-10px);
}

.stats-glass h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.stats-glass p {
    margin: 12px 0 0;
    font-weight: 700;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Stats Section Premium */
.stats-premium-section {
    background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&auto=format&fit=crop') center/cover fixed no-repeat;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 24, 0.85);
    /* Dark overlay */
    z-index: 0;
}

.stat-premium {
    padding: 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, background 0.4s;
    border-radius: 20px;
}

.stat-premium:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-premium:last-child {
    border-right: none;
}

.stat-premium h2 {

    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-premium h2 span {
    color: var(--primary-color);
}

.stat-premium p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
}

.stat-anim {
    opacity: 0;
    animation: scaleUpFadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes scaleUpFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Industry Cards */
.industry-card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(15, 107, 62, 0.1);
    border-color: rgba(15, 107, 62, 0.1);
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-card .ic-icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 107, 62, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    transition: all 0.4s ease;
}

.industry-card:hover .ic-icon {
    background: var(--primary-gradient);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.industry-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
    font-size: 17px;
}

/* ═══════════════════════════════════════
   MILESTONES
═══════════════════════════════════════ */
.milestones {
    margin-bottom: 54px;
    background: var(--bg-color);
}

.milestones-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1160px;
    margin: 0 auto;
}

.milestone-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg, 16px);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform .35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow .35s;
    position: relative;
    overflow: hidden;
}

.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 107, 62, 0.1);
}

.milestone-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.milestone-card:hover::after {
    transform: scaleX(1);
}

.milestone-num {

    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.milestone-num::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
}

.milestone-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: .8rem;
    line-height: 1.35;
}

.milestone-desc {
    font-size: 17px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
    color: var(--text-color);
    line-height: 1.72;
}

.image-stack .person-photo {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 38%;
    max-width: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.image-stack .person-photo img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .image-stack .img-main {

        width: 100%;

    }

    .image-stack .person-photo {
        position: relative;
        bottom: auto;
        right: auto;
        width: 52%;
        max-width: none;
        margin: 1.5rem auto 0;
    }
}

@media (max-width: 768px) {
    .stat-premium {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-premium:last-child {
        border-bottom: none;
    }

    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .about-premium-hero {
        padding: 10rem 0 5rem;
    }

    .milestones-grid {
        grid-template-columns: 1fr;
    }

    .stats-glass {
        padding: 0.5rem;
    }
}

/* Numbers / Stats section */
.numbers-section {
    background: #f8fafb;
}

.numbers-section .display-6 {
    color: var(--heading-color, #0b1a1f);
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border-color, #e6eef0);
    box-shadow: 0 8px 20px rgba(12, 30, 36, 0.04);
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.stat-num {
    color: var(--primary-color, #0f6b3e);
    line-height: 1;
}

.stat-num .plus {
    font-size: .6em;
    margin-left: .1rem;
}

.stat-label {
    color: var(--text-color, #6b7280);
    font-weight: 600;
}

@media (max-width: 575px) {
    .stat-card {
        padding: 1rem 0.75rem;
    }

    .stat-num.display-4 {
        font-size: 2.25rem;
    }
}

/* Modern numbers layout */
.numbers-modern {
    background: linear-gradient(180deg, #fbfdfc 0%, #f3fbff 100%);
}

.numbers-modern .stat-card.modern {
    background: linear-gradient(90deg, rgba(15, 107, 62, 0.12), rgba(42, 163, 114, 0.08));
    border: 1px solid rgba(15, 107, 62, 0.08);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 30px rgba(12, 30, 36, 0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.numbers-modern .stat-card.modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(12, 30, 36, 0.09);
}

.numbers-modern .stat-icon {
    font-size: 20px;
}

.numbers-modern .stat-num {
    color: #0f6b3e;
    text-align: center;
}

.numbers-modern .stat-label {
    color: #21343a;
    font-weight: 600;
}

@media (max-width: 575px) {
    .numbers-modern .stat-card.modern {
        padding: 1rem;
    }

    .numbers-modern .stat-num.display-5 {
        font-size: 1.9rem;
    }
}

/* ===== MOBILE (≤767px) ===== */
@media (max-width: 767px) {
    .hero-video-section {
        min-height: 100vh;
        padding: 120px 0 50px 0;
        align-items: flex-start;
        margin-top: 20px;
    }

    .hero-video-bg {
        object-position: center center;

    }

    .hero-video-overlay {

        background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.8) 100%);
    }

    .hero-title {
        font-size: 1.9rem !important;
    }

    .hero-desc {
        font-size: 1rem !important;
    }

    .hero-features {
        flex-wrap: wrap;
        row-gap: 15px;
    }

    .enquiry-modal-overlay {
        align-items: flex-start !important;
        padding: 30px 10px !important;
    }

    .floating-enquiry {
        margin: 20px auto !important;
        max-height: none !important;
    }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
    .hero-video-section {
        min-height: 95vh;
        padding: 100px 0 40px 0;
    }
.badge-premium {
    font-size: 0.8rem !important;
}
    .hero-title {
        font-size: 1.5rem !important;
    }

    .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .floating-enquiry {
        padding: 24px 16px !important;
        width: 95% !important;
    }

    .floating-enquiry .success-icon-wrap,
    .floating-enquiry .alert-icon-wrap {
        font-size: 3rem !important;
        margin-bottom: 12px !important;
    }

    .floating-enquiry h3 {
        font-size: 1.35rem !important;
    }

    .floating-enquiry p {
        font-size: 13.5px !important;
        margin-bottom: 20px !important;
    }
}