       
/* ====================================
   1. CSS Variables and Base Styles
   ==================================== */

:root {
    /* Light Theme */
    /* --primary-color: #6a11cb;
    --accent-color: #2575fc; */
    --primary-color: orange; /* Main accent color (Purple/Indigo) */
    --accent-color: red; /* Secondary accent color (Blue) */
    --accent-gradient: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    --text-color: #1a1a2e;
    --background-color: #f4f7f6;
    --card-bg: #ffffff;
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.17);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.08);
    /**/
    --about-primary: #FF4500;
    --about-secondary: #DC143C;
    --about-accent: #FF6347;
    --about-light: #f8f9fa;
    --about-dark: #1a1a2e;
    --about-gradient: linear-gradient(135deg, #FF4500 0%, #DC143C 100%);
    --about-gradient-subtle: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
}

.dark-theme {
    /* Dark Theme */
    --text-color: #f4f7f6;
    --background-color: #1a1a2e;
    --card-bg: #222b45;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--background-color);
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

p{
    text-align: justify;
}

.section-spacing {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 5px;
}

.section-title p {
    color: #6c757d; /* Slightly muted text for description */
    margin-top: 10px;
}

.dark-theme .section-title p {
    color: #a0a0a0;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dark-theme .glass-card {
    background: rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-gradient);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.6);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color) !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white !important;
}


/* ====================================
   2. Header and Navigation
   ==================================== */

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--background-color);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    background: var(--card-bg);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.dark-theme header.scrolled {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0px;
    color: #6c757d;
}

.dark-theme .logo-text p {
    color: #a0a0a0;
}

/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Header Actions (Theme Toggle & CTA) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s;
}

.theme-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu {
    font-size: 1.5rem;
    cursor: pointer;
    display: none; /* Hidden on desktop */
}

/* ====================================
   3. Mobile Navigation (The Fix!)
   ==================================== */

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--card-bg);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding: 50px 30px;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mobile-nav.active {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    flex-grow: 1; /* Pushes action section to the bottom */
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(106, 17, 203, 0.1);
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(108, 117, 125, 0.2);
}

.mobile-theme-toggle {
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

/* ====================================
   4. Hero Section
   ==================================== */

.hero {
    position: relative;
    padding: 150px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.floating-shapes .shape {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.floating-shapes .shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    background: var(--primary-color);
    opacity: 0.6;
}

.floating-shapes .shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 5%;
    right: 15%;
    background: var(--accent-color);
    opacity: 0.5;
    animation-delay: 2s;
}

.floating-shapes .shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    background: var(--primary-color);
    opacity: 0.4;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .quote {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* ====================================
   5. Services Preview Section
   ==================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    animation-duration: 1s; /* Animate.css duration */
    animation-fill-mode: both;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(106, 17, 203, 0.1);
    transition: all 0.3s;
}

.dark-theme .service-icon {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-features {
    text-align: left;
    margin-top: 15px;
    padding-left: 0;
}

.service-features li {
    font-size: 0.95rem;
    padding: 3px 0;
    color: #6c757d;
}

.dark-theme .service-features li {
    color: #a0a0a0;
}


/* ====================================
   6. Projects Preview Section
   ==================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    min-height: 350px;
    background: var(--card-bg);
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px 30px;
    transition: transform 0.3s ease;
}

.project-tags {
    margin-bottom: 10px;
}

.project-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 5px;
    text-transform: uppercase;
}

.project-overlay h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ====================================
   7. About Preview Section
   ==================================== */

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    min-height: 400px;
    padding: 0; /* Remove padding for the image container */
    overflow: hidden;
    position: relative;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ====================================
   8. Footer
   ==================================== */

footer {
    background: var(--card-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(108, 117, 125, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.9rem;
    color: #6c757d;
}

.dark-theme .footer-column p {
    color: #a0aaae;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-color);
    font-size: 0.85rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(106, 17, 203, 0.1);
    color: var(--primary-color);
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(108, 117, 125, 0.1);
}

.copyright p {
    font-size: 0.85rem;
    color: #6c757d;
}

.dark-theme .copyright p {
    color: #8892b0;
}

/* ====================================
   9. Page Transition
   ==================================== */

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--accent-gradient);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.loader {
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================================
   10. Media Queries (Responsiveness)
   ==================================== */

@media (max-width: 992px) {
    /* Hide desktop navigation and show mobile menu button */
    .desktop-nav {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .cta-button {
        display: none; /* Hide desktop CTA for cleaner mobile header */
    }
    
    .header-container {
        height: 70px;
    }

    /* Hero Section Adjustments */
    .hero {
        padding-top: 120px;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .cta-button,
    .hero-buttons .btn-secondary {
        display: block;
        text-align: center;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        min-height: 300px;
        width: 100%;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }
}

/* ************************************************* About Page Css *****************************************/
.about-hero {
            padding: 135px 0 10px;
            background: var(--about-gradient);
            color: white;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
        }

        .about-hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #ffffff, #ffe5d9);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .about-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* --- Mission & Vision --- */
        .mission-vision-section {
            padding: 100px 0;
            background: white;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mission-card, .vision-card {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .mission-card::before, .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--about-gradient);
        }

        .mission-card h3, .vision-card h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--about-dark);
        }

        .mission-card h3 i, .vision-card h3 i {
            margin-right: 15px;
            background: var(--about-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* --- Our Story --- */
        .our-story-section {
            padding: 100px 0;
            background: var(--about-light);
            position: relative;
        }

        .our-story-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--about-primary), transparent);
        }

        .story-timeline {
            max-width: 800px;
            margin: 60px auto 0;
            position: relative;
        }

        .story-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--about-gradient);
            transform: translateX(-50%);
            border-radius: 4px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--about-gradient);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            right: -50px;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            left: -50px;
        }

        .timeline-year {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--about-primary);
            margin-bottom: 10px;
        }

        /* --- Core Values --- */
        .values-section {
            padding: 100px 0;
            background: white;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 60px auto 0;
        }

        .value-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--about-gradient-subtle);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--about-primary);
            font-size: 2rem;
        }

        /* --- Team Section --- */
        .team-section {
            padding: 100px 0;
            background: var(--about-light);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 60px auto 0;
        }

        .team-member-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .team-member-card:hover {
            transform: translateY(-10px);
        }

        .member-image {
            height: 250px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            position: relative;
            overflow: hidden;
        }

        .member-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--about-gradient);
            opacity: 0.2;
            mix-blend-mode: multiply;
        }

        .member-info {
            padding: 30px;
            text-align: center;
        }

        .member-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--about-dark);
        }

        .member-role {
            color: var(--about-primary);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: var(--about-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--about-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--about-gradient);
            color: white;
            transform: scale(1.1);
        }

        /* --- Stats Section --- */
        .about-stats-section {
            padding: 80px 0;
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stat-card {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            background: var(--about-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--about-dark);
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* --- CTA Section --- */
        .about-cta-section {
            padding: 100px 0;
            background: var(--about-gradient);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
        }

        .about-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .about-cta-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .about-hero h1 {
                font-size: 3rem;
            }
            
            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }
            
            .story-timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                flex-direction: row !important;
                margin-left: 40px;
            }
            
            .timeline-item .timeline-content::before {
                left: -40px !important;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                padding: 150px 0 80px;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-hero p {
                font-size: 1.1rem;
            }
            
            .mission-card, .vision-card {
                padding: 30px 25px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 20px;
            }
        }

        @media (max-width: 576px) {
            .about-hero h1 {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .about-cta-content h2 {
                font-size: 2.2rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- Dark Theme Support --- */
        .dark-theme .mission-card,
        .dark-theme .vision-card,
        .dark-theme .value-card,
        .dark-theme .team-member-card,
        .dark-theme .timeline-content,
        .dark-theme .stat-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dark-theme .mission-card h3,
        .dark-theme .vision-card h3,
        .dark-theme .value-card h4,
        .dark-theme .member-name, .dark-theme .stat-label {
            color: #ffffff;
        }
        
        .dark-theme .values-section {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .dark-theme .mission-vision-section {
            background: rgba(0, 0, 0, 0.1);
        }

        .dark-theme .our-story-section {
            background: rgba(0, 0, 0, 0.2);
        }
        
        .dark-theme .about-stats-section {
            background: rgba(0, 0, 0, 0.2);
            color:white;
        }

        .dark-theme .team-section {
            background: rgba(0, 0, 0, 0.1);
        }

        .dark-theme .social-link {
            background: rgba(255, 255, 255, 0.05);
        }
/* ************************************************* End */


/* ************************************************* Service Page Css *****************************************/
/* ************************************************* End */


/* ************************************************* Project Page Css *****************************************/
/* ************************************************* End */


/* ************************************************* Contact Page Css *****************************************/
/* ************************************************* End */



