 /* =========================================
           1. CSS VARIABLES & RESET
           ========================================= */
        :root {
            --primary: #FF5722;       /* Vibrant Orange from design */
            --primary-dark: #E64A19;
            --secondary: #FFF3E0;     /* Light Orange Background */
            --text-dark: #1A1A1A;
            --text-light: #666666;
            --white: #FFFFFF;
            --black: #000000;
            --transition: all 0.3s ease-in-out;
            --font-main: 'Manrope', sans-serif;
            --font-head: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            background-color: #fcfcfc;
            overflow-x: hidden;
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--text-dark);
            color: var(--text-dark);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h4 {
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .section-title h2 {
            font-family: var(--font-head);
            font-size: 2.5rem;
            color: var(--text-dark);
        }

        /* Span highlight for text */
        .highlight {
            color: var(--primary);
        }

        /* =========================================
           2. HEADER & NAVIGATION
           ========================================= */
        header {
            background: var(--white);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .logo i { color: var(--primary); }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-icon {
            cursor: pointer;
            font-size: 1.1rem;
        }

        /* Mobile Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            transition: var(--transition);
        }

        /* =========================================
           3. HERO SECTION
           ========================================= */
        .hero {
            background-color: #fafafa;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
        }

        .hero-text h1 {
            font-family: var(--font-head);
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .play-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }

        .play-btn:hover {
            transform: scale(1.1);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            border-radius: 20px; /* Slight rounding like paper */
            z-index: 2;
            position: relative;
        }

        /* Abstract blobs background */
        .hero-bg-shape {
            position: absolute;
            background: var(--primary);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 1;
        }

        /* =========================================
           4. PARTNERS STRIP
           ========================================= */
        .partners {
            background-color: #111;
            padding: 30px 0;
        }

        .partners-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0.7;
        }
        
        .partners-grid i {
            color: white;
            font-size: 2rem;
        }
        
        .partners-grid span {
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            font-family: var(--font-head);
        }

        /* =========================================
           5. MISSION SECTION (THE SLIDERS)
           ========================================= */
        .mission {
            background-color: var(--white);
        }

        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* THE REQUESTED SLIDER LOGIC */
        .mission-visuals {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 20px;
        }

        .slider-group {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 15px;
            transition: transform 1s ease-in-out, opacity 1s ease-in-out;
            opacity: 0;
            transform: translateX(100%); /* Start off-screen right */
        }

        /* Images within the slider grid */
        .slider-group img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .slider-group .large-img {
            grid-row: span 2;
        }

        /* Active State for Slider */
        .slider-group.active {
            opacity: 1;
            transform: translateX(0);
            z-index: 2;
        }

        /* Exiting State (sliding out to left) */
        .slider-group.exit {
            transform: translateX(-100%);
            opacity: 0;
            z-index: 1;
        }

        .mission-text h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .mission-text h2 {
            font-family: var(--font-head);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .features-box {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .f-item {
            background: var(--secondary);
            padding: 20px;
            border-radius: 10px;
            flex: 1;
            transition: var(--transition);
        }

        .f-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .f-item i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .f-item h5 {
            margin-bottom: 5px;
            font-weight: 700;
        }

        .f-item p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* =========================================
           6. SERVICES / ICONS SECTION
           ========================================= */
        .services {
            background: #fafafa;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 20px;
            border-radius: 15px;
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .service-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 87, 34, 0.1);
        }

        .icon-circle {
            width: 70px;
            height: 70px;
            background: #ffebe6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .service-card:hover .icon-circle {
            background: var(--primary);
            color: var(--white);
        }

        /* =========================================
           7. SUPPORT SECTION
           ========================================= */
        .support {
            background: var(--white);
        }

        .support-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
        }

        .support-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .support-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: var(--white);
            border: 1px solid #eee;
            border-radius: 10px;
            transition: var(--transition);
        }

        .support-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary);
        }

        .support-icon {
            font-size: 2rem;
            color: var(--primary);
        }

        /* =========================================
           8. STATS & FOOTER
           ========================================= */
        .stats {
            background: var(--black);
            color: var(--white);
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        footer {
            background: #151515;
            color: #bbb;
            padding: 70px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a:hover {
            color: var(--primary);
        }

        .newsletter-bar {
            background: var(--primary);
            padding: 30px;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--white);
            margin-bottom: 40px;
        }

        .newsletter-bar .btn {
            background: var(--white);
            color: var(--primary);
        }

        /* =========================================
           9. RESPONSIVENESS
           ========================================= */
        @media (max-width: 1024px) {
            .hero-text h1 { font-size: 2.8rem; }
            .mission-content, .support-container { gap: 30px; }
        }

        @media (max-width: 900px) {
            .hamburger { display: flex; }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: 0.4s ease;
                z-index: 999;
            }

            .nav-links.active { right: 0; }
            
            .hero-content, .mission-content, .support-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-buttons { justify-content: center; }
            
            .services-grid, .stats-grid, .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .mission-visuals { height: 400px; }
        }

        @media (max-width: 600px) {
            .services-grid, .stats-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-bar { flex-direction: column; gap: 15px; text-align: center; }
            
            .hero-text h1 { font-size: 2.2rem; }
        }

        /* =========================================
   SCOPED VARIABLES & FONTS
   ========================================= */
.abt-page-wrapper {
    --abt-primary: #FF5722;       /* Vibrant Orange */
    --abt-primary-dark: #E64A19;
    --abt-secondary: #FFF8F0;     /* Light Cream Background */
    --abt-text-dark: #1D1D1D;
    --abt-text-light: #666666;
    --abt-white: #FFFFFF;
    --abt-black: #000000;
    --abt-font-main: 'Manrope', sans-serif;
    --abt-font-head: 'Playfair Display', serif;
    
    font-family: var(--abt-font-main);
    color: var(--abt-text-dark);
    line-height: 1.6;
    background-color: #fafafa;
    overflow-x: hidden;
    width: 100%;
}

/* Reset specific to wrapper to avoid global reset conflicts */
.abt-page-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.abt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-section {
    padding: 80px 0;
}

.abt-text-center { text-align: center; }

/* Typography */
.abt-page-wrapper h1, 
.abt-page-wrapper h2, 
.abt-page-wrapper h3 {
    font-family: var(--abt-font-head);
    font-weight: 700;
}

.abt-subtitle {
    color: var(--abt-primary);
    font-family: 'Damion', cursive, var(--abt-font-main); /* Fallback */
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
}

.abt-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--abt-text-dark);
}

.abt-highlight {
    color: var(--abt-primary);
}

/* =========================================
   SECTION 1: HERO
   ========================================= */
.abt-hero {
    position: relative;
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=1600&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.abt-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.abt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--abt-white);
}

.abt-hero-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Brush stroke effect behind text */
.abt-hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: var(--abt-primary);
    opacity: 0.8;
    z-index: -1;
    clip-path: polygon(10% 0, 100% 10%, 90% 100%, 0% 90%);
    border-radius: 5px;
}

.abt-breadcrumbs {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.abt-breadcrumbs i {
    font-size: 0.7rem;
    margin: 0 10px;
    color: var(--abt-primary);
}

.abt-active {
    color: var(--abt-primary);
}

/* =========================================
   SECTION 2: INTRO & TABS
   ========================================= */
.abt-intro {
    background-color: var(--abt-secondary);
}

.abt-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.abt-image-wrapper {
    position: relative;
}

.abt-blob-shape {
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    background: var(--abt-primary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    opacity: 0.15;
}

.abt-main-img {
    position: relative;
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.abt-main-img:hover {
    transform: scale(1.02);
}

/* Tabs */
.abt-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.abt-tab-btn {
    padding: 10px 25px;
    border: none;
    background: var(--abt-white);
    font-family: var(--abt-font-main);
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    color: var(--abt-text-dark);
}

.abt-tab-btn:hover,
.abt-tab-btn.active {
    background: var(--abt-primary);
    color: var(--abt-white);
    transform: translateY(-2px);
}

.abt-tab-content {
    display: none;
    animation: abtFadeIn 0.5s ease;
}

.abt-tab-content.active {
    display: block;
}

.abt-desc {
    color: var(--abt-text-light);
    margin-bottom: 25px;
}

.abt-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.abt-check-list li {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.abt-check-list i {
    color: var(--abt-primary);
}

/* =========================================
   SECTION 3: DELIVER (SERVICES)
   ========================================= */
.abt-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.abt-service-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.abt-service-card:hover {
    transform: translateY(-10px);
}

.abt-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    /* Brush stroke background simulation */
    box-shadow: inset 0 0 0 5px rgba(255,255,255,0.5);
}

.abt-icon-green { background: #E8F5E9; color: #4CAF50; }
.abt-icon-blue { background: #E3F2FD; color: #2196F3; }
.abt-icon-yellow { background: #FFFDE7; color: #FBC02D; }
.abt-icon-pink { background: #FCE4EC; color: #E91E63; }

.abt-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.abt-service-card p {
    font-size: 0.9rem;
    color: var(--abt-text-light);
}

/* =========================================
   SECTION 4: PARTNERS (JAGGED STRIP)
   ========================================= */
.abt-partners {
    background: #1a1a1a;
    padding: 60px 0;
    margin-top: 50px;
    position: relative;
    /* Jagged Edges using clip-path */
    clip-path: polygon(0 5%, 2% 0, 4% 5%, 6% 0, 8% 5%, 10% 0, 12% 5%, 14% 0, 16% 5%, 18% 0, 20% 5%, 22% 0, 24% 5%, 26% 0, 28% 5%, 30% 0, 32% 5%, 34% 0, 36% 5%, 38% 0, 40% 5%, 42% 0, 44% 5%, 46% 0, 48% 5%, 50% 0, 52% 5%, 54% 0, 56% 5%, 58% 0, 60% 5%, 62% 0, 64% 5%, 66% 0, 68% 5%, 70% 0, 72% 5%, 74% 0, 76% 5%, 78% 0, 80% 5%, 82% 0, 84% 5%, 86% 0, 88% 5%, 90% 0, 92% 5%, 94% 0, 96% 5%, 98% 0, 100% 5%, 100% 95%, 98% 100%, 96% 95%, 94% 100%, 92% 95%, 90% 100%, 88% 95%, 86% 100%, 84% 95%, 82% 100%, 80% 95%, 78% 100%, 76% 95%, 74% 100%, 72% 95%, 70% 100%, 68% 95%, 66% 100%, 64% 95%, 62% 100%, 60% 95%, 58% 100%, 56% 95%, 54% 100%, 52% 95%, 50% 100%, 48% 95%, 46% 100%, 44% 95%, 42% 100%, 40% 95%, 38% 100%, 36% 95%, 34% 100%, 32% 95%, 30% 100%, 28% 95%, 26% 100%, 24% 95%, 22% 100%, 20% 95%, 18% 100%, 16% 95%, 14% 100%, 12% 95%, 10% 100%, 8% 95%, 6% 100%, 4% 95%, 2% 100%, 0 95%);
}

.abt-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.abt-partner-logo {
    color: var(--abt-white);
    font-size: 2.5rem;
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
}

.abt-partner-logo:hover {
    opacity: 1;
    color: var(--abt-primary);
    transform: scale(1.1);
}

/* =========================================
   VOLUNTEER SECTION LAYOUT FIX
   ========================================= */

/* 1. Force the Flexbox Layout (Side-by-Side) */
.abt-vol-wrapper {
    display: flex !important; /* Forces the layout */
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 40px 0;
    width: 100%;
}

/* 2. Constrain the Image Width (Left Side) */
.abt-vol-left {
    flex: 1;
    max-width: 50%; /* Ensures it doesn't take full width */
}

/* 3. Constrain the Text Width (Right Side) */
.abt-vol-right {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

/* 4. Image Styling */
.abt-vol-img-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: block;
}

/* 5. Mobile Responsiveness (Stack on small screens) */
@media (max-width: 992px) {
    .abt-vol-wrapper {
        flex-direction: column !important;
        text-align: center;
    }

    .abt-vol-left, 
    .abt-vol-right {
        max-width: 100%;
        width: 100%;
    }
    
    .abt-vol-right {
        text-align: center; /* Center text on mobile */
    }
}

/* =========================================
   SECTION 6: LIFESTYLE COMPARISON
   ========================================= */
.abt-lifestyle-split {
    display: flex;
    flex-wrap: wrap;
}

.abt-lifestyle-box {
    flex: 1;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.abt-style-old {
    background: var(--abt-white);
    color: var(--abt-text-dark);
}

.abt-style-new {
    background: var(--abt-primary);
    color: var(--abt-white);
}

.abt-life-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.abt-life-list {
    list-style: none;
}

.abt-life-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.abt-corner-icon {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    opacity: 0.2;
}

.abt-bg-watermark {
    position: absolute;
    bottom: -20px;
    left: 20px;
    font-size: 15rem;
    opacity: 0.05;
    pointer-events: none;
}

/* =========================================
   SECTION 7: STATS COUNTER
   ========================================= */
.abt-stats {
    background: linear-gradient(135deg, var(--abt-primary) 0%, var(--abt-primary-dark) 100%);
    padding: 60px 0;
    color: var(--abt-white);
}

.abt-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.abt-stat-item {
    padding: 20px;
}

.abt-counter {
    font-size: 3.5rem;
    font-weight: 800;
    display: inline-block;
}

.abt-stat-item span {
    font-size: 3.5rem;
    font-weight: 800;
}

.abt-stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* =========================================
   ANIMATIONS & RESPONSIVENESS
   ========================================= */
@keyframes abtFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.abt-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.abt-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .abt-grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .abt-main-img {
        max-width: 500px;
        margin: 0 auto;
    }

    .abt-tabs {
        justify-content: center;
    }

    .abt-check-list {
        text-align: left;
    }

    .abt-services-grid, 
    .abt-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .abt-title { font-size: 2rem; }
    .abt-hero-title { font-size: 2.5rem; }
    
    .abt-services-grid, 
    .abt-team-grid {
        grid-template-columns: 1fr;
    }

    .abt-lifestyle-split {
        flex-direction: column;
    }

    .abt-stats-grid {
        flex-direction: column;
        gap: 30px;
    }
}

/* =========================================
   SCOPED CSS FOR SERVICES PAGE
   ========================================= */

.srv-page-wrapper {
    /* Scoped Variables */
    --srv-primary: #FF5722;       /* Vibrant Orange */
    --srv-primary-dark: #E64A19;
    --srv-secondary: #FFF8F0;     /* Light Cream Background */
    --srv-text-dark: #1D1D1D;
    --srv-text-light: #666666;
    --srv-white: #FFFFFF;
    --srv-black: #000000;
    --srv-font-main: 'Manrope', sans-serif;
    --srv-font-head: 'Playfair Display', serif;
    
    font-family: var(--srv-font-main);
    color: var(--srv-text-dark);
    line-height: 1.6;
    background-color: #fdfdfd;
    width: 100%;
    overflow-x: hidden;
}

/* Local Reset */
.srv-page-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Utilities */
.srv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.srv-section {
    padding: 100px 0;
}

.srv-text-center { text-align: center; }

/* Typography */
.srv-subtitle {
    font-family: 'Damion', cursive, var(--srv-font-main); /* Fallback */
    color: var(--srv-primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.srv-title {
    font-family: var(--srv-font-head);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--srv-text-dark);
    line-height: 1.3;
}

.srv-highlight {
    color: var(--srv-primary);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.srv-hero {
    position: relative;
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1593113598332-cd288d649433?q=80&w=1600&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

/* Brush Stroke Effect behind Hero Title */
.srv-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--srv-white);
}

.srv-hero-title {
    font-family: var(--srv-font-head);
    font-size: 3.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.srv-hero-title::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140%; height: 90%;
    background: #a03010; /* Darker Red/Brown brush */
    opacity: 0.8;
    z-index: -1;
    clip-path: polygon(5% 5%, 100% 0%, 95% 90%, 0% 95%); /* Rough shape */
    border-radius: 5px;
}

.srv-breadcrumbs {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.srv-breadcrumbs i {
    font-size: 0.7rem;
    margin: 0 10px;
}

.srv-active {
    color: var(--srv-primary);
    font-weight: 700;
}

/* =========================================
   2. DELIVER GRID SECTION
   ========================================= */
.srv-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.srv-card {
    background: var(--srv-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.srv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.srv-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #333;
    /* Organic "Brush" Shape using border-radius */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transition: all 0.4s ease;
}

/* Icon Colors (Pastel Backgrounds) */
.srv-bg-pink { background-color: #f8bbd0; color: #c2185b; }
.srv-bg-blue { background-color: #bbdefb; color: #1976d2; }
.srv-bg-green { background-color: #c8e6c9; color: #388e3c; }
.srv-bg-yellow { background-color: #fff9c4; color: #fbc02d; }
.srv-bg-orange { background-color: #ffe0b2; color: #f57c00; }
.srv-bg-purple { background-color: #e1bee7; color: #7b1fa2; }

.srv-card:hover .srv-icon-circle {
    transform: rotate(10deg) scale(1.1);
}

.srv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.srv-card p {
    font-size: 0.9rem;
    color: var(--srv-text-light);
    line-height: 1.7;
}

/* =========================================
   3. VIDEO SECTION (JAGGED)
   ========================================= */
.srv-video-section {
    position: relative;
    height: 450px;
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=1600&auto=format&fit=crop'); /* Earth in hands */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Jagged Edge Effect Top and Bottom */
    clip-path: polygon(
        0% 5%, 2% 0%, 4% 5%, 6% 0%, 8% 5%, 10% 0%, 12% 5%, 14% 0%, 16% 5%, 18% 0%, 20% 5%, 
        22% 0%, 24% 5%, 26% 0%, 28% 5%, 30% 0%, 32% 5%, 34% 0%, 36% 5%, 38% 0%, 40% 5%, 
        42% 0%, 44% 5%, 46% 0%, 48% 5%, 50% 0%, 52% 5%, 54% 0%, 56% 5%, 58% 0%, 60% 5%, 
        62% 0%, 64% 5%, 66% 0%, 68% 5%, 70% 0%, 72% 5%, 74% 0%, 76% 5%, 78% 0%, 80% 5%, 
        82% 0%, 84% 5%, 86% 0%, 88% 5%, 90% 0%, 92% 5%, 94% 0%, 96% 5%, 98% 0%, 100% 5%,
        100% 95%, 98% 100%, 96% 95%, 94% 100%, 92% 95%, 90% 100%, 88% 95%, 86% 100%, 84% 95%, 
        82% 100%, 80% 95%, 78% 100%, 76% 95%, 74% 100%, 72% 95%, 70% 100%, 68% 95%, 66% 100%, 
        64% 95%, 62% 100%, 60% 95%, 58% 100%, 56% 95%, 54% 100%, 52% 95%, 50% 100%, 48% 95%, 
        46% 100%, 44% 95%, 42% 100%, 40% 95%, 38% 100%, 36% 95%, 34% 100%, 32% 95%, 30% 100%, 
        28% 95%, 26% 100%, 24% 95%, 22% 100%, 20% 95%, 18% 100%, 16% 95%, 14% 100%, 12% 95%, 
        10% 100%, 8% 95%, 6% 100%, 4% 95%, 2% 100%, 0% 95%
    );
    margin: 50px 0;
}

.srv-video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

.srv-play-btn-wrapper {
    width: 80px;
    height: 80px;
    background: var(--srv-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 87, 34, 0.3);
}

/* Pulse Animation */
@keyframes srvPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

.srv-pulse-anim {
    animation: srvPulse 2s infinite;
}

/* =========================================
   4. FEATURES SECTION (HORIZONTAL CARDS)
   ========================================= */
.srv-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.srv-feature-card {
    display: flex;
    align-items: center;
    background: var(--srv-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f2f2f2;
}

.srv-feature-card:hover {
    transform: translateX(10px);
    border-left: 5px solid var(--srv-primary);
}

.srv-feature-icon {
    font-size: 3rem;
    margin-right: 25px;
    min-width: 60px;
    text-align: center;
}

.srv-feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.srv-feature-content p {
    font-size: 0.9rem;
    color: var(--srv-text-light);
    line-height: 1.6;
}

/* =========================================
   5. STATS STRIP
   ========================================= */
.srv-stats-strip {
    background: linear-gradient(135deg, var(--srv-primary) 0%, #ff7043 100%);
    padding: 80px 0;
    color: var(--srv-white);
    margin-top: 50px;
}

.srv-stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.srv-stat-item {
    flex: 1;
    min-width: 150px;
    position: relative;
}

/* Add slight separator lines */
.srv-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.srv-counter {
    font-size: 3.5rem;
    font-weight: 800;
    display: inline-block;
    line-height: 1;
}

.srv-stat-item span {
    font-size: 3.5rem;
    font-weight: 800;
}

.srv-stat-item p {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* =========================================
   ANIMATIONS & RESPONSIVENESS
   ========================================= */

/* Fade Up Class */
.srv-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.srv-fade-up.srv-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .srv-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .srv-hero-title { font-size: 2.8rem; }
    .srv-stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    .srv-grid-3, .srv-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .srv-hero-title { font-size: 2.2rem; }
    
    .srv-video-section {
        height: 300px;
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }

    .srv-stats-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .srv-feature-card:hover {
        transform: translateY(-5px); /* Up instead of right on mobile */
    }
}

/* =========================================
   SCOPED CSS FOR GALLERY PAGE
   ========================================= */

.gal-wrapper {
    /* Scoped Variables */
    --gal-primary: #FF5722;       /* Vibrant Orange */
    --gal-primary-dark: #E64A19;
    --gal-secondary: #FFF8F0;     /* Light Cream Background */
    --gal-text-dark: #1D1D1D;
    --gal-text-light: #666666;
    --gal-white: #FFFFFF;
    --gal-black: #000000;
    --gal-font-main: 'Manrope', sans-serif;
    --gal-font-head: 'Playfair Display', serif;
    --gal-font-script: 'Damion', cursive;
    
    font-family: var(--gal-font-main);
    color: var(--gal-text-dark);
    line-height: 1.6;
    background-color: #fdfdfd;
    width: 100%;
    overflow-x: hidden;
}

/* Local Reset */
.gal-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Utilities */
.gal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gal-section {
    padding: 80px 0;
    background-color: var(--gal-secondary);
}

.gal-text-center { text-align: center; }

/* Typography */
.gal-subtitle {
    font-family: var(--gal-font-script);
    color: var(--gal-primary);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.gal-heading {
    font-family: var(--gal-font-head);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--gal-text-dark);
    line-height: 1.2;
}

.gal-highlight {
    color: var(--gal-primary);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.gal-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?q=80&w=1600&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gal-white);
    text-align: center;
}

.gal-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.gal-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Brush Stroke Effect for Title */
.gal-title-box {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.gal-hero-title {
    font-family: var(--gal-font-head);
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
}

/* Simulated Brush Stroke using CSS Clip Path */
.gal-title-box::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    width: 140%; height: 110%;
    background: #8B2E15; /* Dark reddish brown from design */
    opacity: 0.9;
    z-index: -1;
    clip-path: polygon(10% 0, 100% 10%, 90% 100%, 0% 90%);
    border-radius: 4px;
}

.gal-hero-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.gal-hero-sub i {
    font-size: 0.7rem;
    margin: 0 8px;
    color: var(--gal-primary);
}

/* =========================================
   TOGGLE BUTTONS
   ========================================= */
.gal-toggle-container {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.3);
}

.gal-toggle-btn {
    background: transparent;
    border: none;
    color: var(--gal-white);
    padding: 10px 30px;
    border-radius: 40px;
    font-family: var(--gal-font-main);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.gal-toggle-btn:hover {
    background: rgba(255,255,255,0.1);
}

.gal-toggle-btn.active {
    background: var(--gal-primary);
    color: var(--gal-white);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

/* =========================================
   2. GALLERY GRID (MASONRY LOOK)
   ========================================= */
.gal-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: center; /* helps align differing heights */
}

/* Toggle States */
.gal-hidden {
    display: none;
}

/* Fade In Animation */
@keyframes galFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gal-fade-in {
    animation: galFadeIn 0.6s ease-out forwards;
}

/* Gallery Cards */
.gal-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Masonry Aspect Ratios */
.gal-card {
    aspect-ratio: 1 / 1; /* Default squareish */
}

.gal-tall {
    aspect-ratio: 3 / 4; /* Taller portrait look */
}

/* Hover Effects */
.gal-card:hover {
    transform: translateY(-5px);
}

.gal-card:hover img {
    transform: scale(1.08);
}

/* Overlay with Plus Icon */
.gal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gal-card:hover .gal-overlay {
    opacity: 1;
}

.gal-overlay i {
    color: var(--gal-white);
    font-size: 2rem;
    background: var(--gal-primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gal-card:hover .gal-overlay i {
    transform: scale(1);
}

/* =========================================
   VIDEO CARDS
   ========================================= */
.gal-video-card {
    aspect-ratio: 16 / 9; /* Standard video format */
    background: #000;
}

.gal-video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */
@media (max-width: 992px) {
    .gal-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .gal-hero-title { font-size: 3rem; }
}

@media (max-width: 600px) {
    .gal-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gal-hero-title { font-size: 2.2rem; }
    
    .gal-toggle-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    /* Reset aspect ratios on mobile for consistency */
    .gal-tall {
        aspect-ratio: 1 / 1;
    }
}

/* =========================================
   SCOPED CSS FOR CONTACT PAGE
   ========================================= */

.cnt-wrapper {
    /* Scoped Variables */
    --cnt-primary: #FF5722;       /* Vibrant Orange */
    --cnt-primary-dark: #E64A19;
    --cnt-secondary: #FFF8F0;     /* Light Cream Background */
    --cnt-text-dark: #1D1D1D;
    --cnt-text-light: #666666;
    --cnt-white: #FFFFFF;
    --cnt-black: #000000;
    --cnt-font-main: 'Manrope', sans-serif;
    --cnt-font-head: 'Playfair Display', serif;
    --cnt-font-script: 'Damion', cursive;
    
    font-family: var(--cnt-font-main);
    color: var(--cnt-text-dark);
    line-height: 1.6;
    background-color: #fdfdfd;
    width: 100%;
    overflow-x: hidden;
}

/* Local Reset */
.cnt-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Utilities */
.cnt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cnt-section {
    padding: 80px 0;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.cnt-hero {
    position: relative;
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?q=80&w=1600&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cnt-white);
    text-align: center;
}

.cnt-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cnt-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Brush Stroke Effect for Title */
.cnt-title-box {
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.cnt-hero-title {
    font-family: var(--cnt-font-head);
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

/* Simulated Brush Stroke */
.cnt-title-box::after {
    content: '';
    position: absolute;
    top: 55%; left: 50%;
    transform: translate(-50%, -50%) rotate(-1deg);
    width: 130%; height: 100%;
    background: #8B2E15; /* Dark brown-red brush color */
    opacity: 0.9;
    z-index: -1;
    clip-path: polygon(5% 10%, 100% 0%, 95% 90%, 0% 100%);
    border-radius: 4px;
}

.cnt-breadcrumbs {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.cnt-breadcrumbs i {
    font-size: 0.7rem;
    margin: 0 10px;
    color: var(--cnt-primary);
}

.cnt-active {
    color: var(--cnt-white); /* Kept white for contrast on hero */
}

/* =========================================
   2. CONTENT SECTION (INFO & FORM)
   ========================================= */
.cnt-grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column: Info */
.cnt-subtitle {
    font-family: var(--cnt-font-script);
    color: var(--cnt-primary);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.cnt-heading {
    font-family: var(--cnt-font-head);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cnt-desc {
    color: var(--cnt-text-light);
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.7;
}

.cnt-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cnt-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cnt-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--cnt-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cnt-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cnt-detail-item:hover .cnt-icon-box {
    background: var(--cnt-primary);
    color: var(--cnt-white);
    transform: scale(1.1);
}

.cnt-detail-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cnt-detail-text p {
    color: var(--cnt-text-light);
    font-size: 0.95rem;
}

/* Right Column: Form */
.cnt-form {
    background: var(--cnt-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.cnt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cnt-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.cnt-input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cnt-text-dark);
}

.cnt-input-group input,
.cnt-input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 30px; /* Rounded pill shape */
    font-family: var(--cnt-font-main);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fbfbfb;
}

.cnt-input-group textarea {
    border-radius: 20px; /* Softer radius for textarea */
    resize: vertical;
}

.cnt-input-group input:focus,
.cnt-input-group textarea:focus {
    outline: none;
    border-color: var(--cnt-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}

.cnt-submit-btn {
    width: 100%;
    background: var(--cnt-primary);
    color: var(--cnt-white);
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.cnt-submit-btn:hover {
    background: var(--cnt-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

/* =========================================
   3. MAP SECTION
   ========================================= */
.cnt-map-section {
    padding: 0;
    margin-top: 50px;
    line-height: 0; /* Remove bottom gap */
}

.cnt-map-frame {
    filter: grayscale(20%); /* Slight stylistic tweak */
    transition: filter 0.3s;
}

.cnt-map-frame:hover {
    filter: grayscale(0%);
}

/* =========================================
   4. STATS STRIP
   ========================================= */
.cnt-stats-strip {
    background: linear-gradient(135deg, var(--cnt-primary) 0%, #ff7043 100%);
    padding: 80px 0;
    color: var(--cnt-white);
}

.cnt-stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.cnt-stat-item {
    flex: 1;
    min-width: 150px;
    position: relative;
}

/* Vertical Divider Lines */
.cnt-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.cnt-counter {
    font-size: 3.5rem;
    font-weight: 800;
    display: inline-block;
    line-height: 1;
}

.cnt-stat-item span {
    font-size: 3.5rem;
    font-weight: 800;
}

.cnt-stat-item p {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* =========================================
   ANIMATIONS & RESPONSIVENESS
   ========================================= */

/* Fade Up Animation Class */
.cnt-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.cnt-fade-up.cnt-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .cnt-grid-split {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 50px;
    }
    
    .cnt-hero-title { font-size: 2.8rem; }
    
    .cnt-stat-item:not(:last-child)::after {
        display: none; /* Remove dividers on smaller screens */
    }
}

@media (max-width: 600px) {
    .cnt-hero-title { font-size: 2.2rem; }
    
    .cnt-form { padding: 25px; }
    
    .cnt-form-row { grid-template-columns: 1fr; gap: 0; }
    
    .cnt-stats-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* Video Modal Overlay */
.video-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Dark background */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Class to show the modal */
.video-overlay.show {
    display: flex;
    opacity: 1;
}

/* The Box containing the video */
.video-container {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9; /* Keeps video widescreen */
    background: black;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

/* Animation when opening */
.video-overlay.show .video-container {
    transform: scale(1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Close 'X' Button */
.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.close-video:hover {
    color: #FF5722; /* Matches your theme orange */
    transform: rotate(90deg);
}

/* =========================================
   SCOPED CSS FOR FACILITIES PAGE (ORANGE THEME)
   ========================================= */

.fac-wrapper {
    /* Scoped Variables - UPDATED TO ORANGE THEME */
    --fac-primary: #FF5722;       /* Vibrant Orange */
    --fac-primary-dark: #E64A19;  /* Darker Orange */
    --fac-accent: #FF5722;        /* Accent matches Primary in this theme */
    --fac-white: #FFFFFF;
    --fac-light: #FFF8F0;         /* Light Cream/Orange Tint (Matches other pages) */
    --fac-dark: #1D1D1D;          /* Dark Grey/Black */
    --fac-text: #333333;
    --fac-text-light: #666666;
    
    --fac-font-main: 'Manrope', sans-serif;
    --fac-font-head: 'Playfair Display', serif;
    
    font-family: var(--fac-font-main);
    color: var(--fac-text);
    line-height: 1.6;
    background-color: var(--fac-white);
    width: 100%;
    overflow-x: hidden;
}

/* Local Reset */
.fac-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Utilities */
.fac-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fac-text-center { text-align: center; }

.fac-section {
    padding: 80px 0;
}

.fac-bg-light { background-color: var(--fac-light); }
.fac-bg-dark { background-color: var(--fac-dark); color: var(--fac-white); }

/* Typography */
.fac-heading {
    font-family: var(--fac-font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--fac-dark);
    margin: 15px 0 25px;
    line-height: 1.2;
}

.fac-heading-light {
    font-family: var(--fac-font-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--fac-white);
    margin: 15px 0 25px;
}

.fac-badge {
    color: var(--fac-primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Orange Tint Background */
    background: rgba(255, 87, 34, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.fac-badge-outline {
    color: var(--fac-primary);
    border: 1px solid var(--fac-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fac-highlight { color: var(--fac-primary); }

.fac-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--fac-text-light);
}

.fac-desc-light {
    color: #ccc;
    margin-bottom: 30px;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.fac-hero {
    position: relative;
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=1600&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fac-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* UPDATED TO ORANGE GRADIENT */
    background: linear-gradient(rgba(255, 87, 34, 0.85), rgba(230, 74, 25, 0.9));
    z-index: 1;
}

.fac-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--fac-white);
}

.fac-hero-title {
    font-family: var(--fac-font-head);
    font-size: 3.5rem;
    margin-bottom: 10px;
    position: relative;
}

/* Brush stroke effect behind title */
.fac-hero-title::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120%; height: 80%;
    background: #a03010; /* Darker Red/Brown brush */
    opacity: 0.5;
    z-index: -1;
    clip-path: polygon(5% 5%, 100% 0%, 95% 90%, 0% 95%);
    border-radius: 5px;
}

.fac-breadcrumbs {
    font-size: 0.95rem;
    opacity: 0.9;
}

.fac-breadcrumbs i {
    font-size: 0.7rem;
    margin: 0 10px;
    color: var(--fac-white);
}

.fac-active { color: var(--fac-white); font-weight: 700; }

/* =========================================
   2. FACILITIES GRID (CARDS)
   ========================================= */
.fac-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fac-section-header h3 {
    font-size: 2rem;
    color: var(--fac-dark);
}

.fac-divider {
    width: 60px;
    height: 4px;
    background: var(--fac-primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.fac-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.fac-card {
    background: var(--fac-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-align: center;
}

.fac-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-bottom: 3px solid var(--fac-primary);
}

.fac-icon-box {
    width: 70px;
    height: 70px;
    /* Light Orange Background for Icons */
    background: #FFF3E0;
    color: var(--fac-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.fac-card:hover .fac-icon-box {
    background: var(--fac-primary);
    color: var(--fac-white);
}

.fac-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--fac-dark);
}

.fac-card p {
    font-size: 0.9rem;
    color: var(--fac-text-light);
    line-height: 1.5;
}

/* =========================================
   3. DIAGNOSTICS (SPLIT LAYOUT)
   ========================================= */
.fac-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.fac-tech-img img {
    width: 100%;
    border-radius: 15px;
    border: 5px solid rgba(255,255,255,0.1);
}

.fac-service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fac-service-list li {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.fac-service-list li:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--fac-primary);
    transform: translateX(5px);
}

.fac-s-icon {
    font-size: 1.5rem;
    color: var(--fac-primary);
    min-width: 40px;
    text-align: center;
}

.fac-s-text h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--fac-white);
}

.fac-s-text span {
    font-size: 0.8rem;
    color: #bbb;
    display: block;
}

/* =========================================
   4. CTA SECTION
   ========================================= */
.fac-cta {
    background: var(--fac-primary);
    color: var(--fac-white);
    padding: 60px 0;
    text-align: center;
}

.fac-cta h2 {
    font-family: var(--fac-font-head);
    margin-bottom: 10px;
}

/* =========================================
   ANIMATIONS & RESPONSIVENESS
   ========================================= */
.fac-anim-up, .fac-anim-left, .fac-anim-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fac-anim-up { transform: translateY(30px); }
.fac-anim-left { transform: translateX(30px); }
.fac-anim-right { transform: translateX(-30px); }

.fac-anim-up.fac-visible { opacity: 1; transform: translateY(0); }
.fac-anim-left.fac-visible { opacity: 1; transform: translateX(0); }
.fac-anim-right.fac-visible { opacity: 1; transform: translateX(0); }

@media (max-width: 992px) {
    .fac-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fac-service-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .fac-hero-title { font-size: 2.5rem; }
    
    .fac-service-list {
        grid-template-columns: 1fr;
    }
    
    .fac-heading { font-size: 2rem; }
}

/* =========================================
   DONATION POPUP STYLES
   ========================================= */

/* Scoped variables for this modal only */
.dnt-overlay {
    --dnt-primary: #FF5722;      /* Theme Orange */
    --dnt-primary-dark: #E64A19;
    --dnt-bg: #FFFFFF;
    --dnt-text: #333333;
    --dnt-text-light: #666666;
    --dnt-border: #E0E0E0;
    --dnt-overlay-bg: rgba(0, 0, 0, 0.75);
    --dnt-font: 'Manrope', sans-serif; /* Ensuring consistency */
}

/* 1. Modal Overlay (Background) */
.dnt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dnt-overlay-bg);
    z-index: 99999; /* Highest priority */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    font-family: var(--dnt-font);
    box-sizing: border-box;
    overflow-y: auto; /* Allow scroll if screen is too small */
}

/* State: Open */
.dnt-overlay.dnt-open {
    opacity: 1;
    visibility: visible;
}

/* 2. Modal Box */
.dnt-modal-box {
    background: var(--dnt-bg);
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    max-height: 90vh; /* Prevents it from being taller than screen */
}

.dnt-overlay.dnt-open .dnt-modal-box {
    transform: scale(1) translateY(0);
}

/* 3. Header */
.dnt-header {
    background: #FFF8F0; /* Light orange tint */
    padding: 20px 30px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--dnt-border);
}

.dnt-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dnt-icon-circle {
    width: 45px;
    height: 45px;
    background: var(--dnt-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.dnt-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--dnt-text);
    font-weight: 700;
}

.dnt-header p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--dnt-text-light);
}

.dnt-close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--dnt-text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.dnt-close-btn:hover {
    color: var(--dnt-primary);
}

/* 4. Body & Form */
.dnt-body {
    padding: 30px;
    overflow-y: auto; /* Scrollable content inside modal */
}

.dnt-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--dnt-text-light);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--dnt-primary);
    padding-left: 10px;
}

.dnt-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dnt-input-group {
    margin-bottom: 20px;
}

.dnt-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dnt-text);
}

.dnt-field-wrapper {
    position: relative;
}

.dnt-field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.dnt-field-wrapper input,
.dnt-field-wrapper select,
.dnt-input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 40px; /* Space for icon */
    border: 1px solid var(--dnt-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dnt-text);
    transition: all 0.3s ease;
    background: #FAFAFA;
}

/* Textarea doesn't have an icon */
.dnt-input-group textarea {
    padding-left: 15px;
    resize: vertical;
}

.dnt-field-wrapper input:focus,
.dnt-field-wrapper select:focus,
.dnt-input-group textarea:focus {
    outline: none;
    border-color: var(--dnt-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

/* Amount Wrapper (Currency + Input) */
.dnt-amount-wrapper {
    display: flex;
    border: 1px solid var(--dnt-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: 0.3s;
}

.dnt-amount-wrapper:focus-within {
    border-color: var(--dnt-primary);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.dnt-currency-select {
    width: 90px;
    border: none;
    background: #F0F0F0;
    padding: 12px;
    font-weight: 700;
    color: var(--dnt-text);
    cursor: pointer;
    border-right: 1px solid var(--dnt-border);
}

.dnt-amount-wrapper input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
}

/* Submit Button */
.dnt-submit-btn {
    width: 100%;
    background: var(--dnt-primary);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.dnt-submit-btn:hover {
    background: var(--dnt-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.dnt-secure-text {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* 5. Responsiveness */
@media (max-width: 600px) {
    .dnt-modal-box {
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        transform: scale(1) translateY(0);
    }
    
    .dnt-header {
        border-radius: 0;
        padding: 15px 20px;
    }

    .dnt-grid-2 {
        grid-template-columns: 1fr; /* Stack inputs */
        gap: 0;
    }
}