:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #2563eb;
            --light: #f8fafc;
            --dark: #0f172a;
            --text: #334155;
            --text-light: #64748b;
        }
        
        /* About Page Specific Styles */
        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 180px 0 100px;
            text-align: center;
            color: white;
        }
        
        .about-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb a:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: -15px;
        }
        
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        
        /* Our Story Section */
        .our-story {
            padding: 100px 0;
        }
        
        .story-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .story-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .story-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .story-image .years-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background-color: var(--secondary);
            color: white;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }
        
        .years-badge h3 {
            font-size: 40px;
            line-height: 1;
        }
        
        .years-badge p {
            font-size: 16px;
            font-weight: 600;
        }
        
        .story-content {
            flex: 1;
            min-width: 300px;
        }
        
        .story-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .story-content p {
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        /* Mission Vision Section */
        .mission-vision {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .mv-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .mv-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mv-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(220, 38, 38, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary);
            font-size: 32px;
        }
        
        .mv-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Our Team Section */
        .our-team {
            padding: 100px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .team-img {
            height: 300px;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-card:hover .team-img img {
            transform: scale(1.1);
        }
        
        .team-content {
            padding: 25px;
        }
        
        .team-content h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }
        
        .team-content p {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .team-social a {
            width: 35px;
            height: 35px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: all 0.3s;
        }
        
        .team-social a:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.9)), url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat-item h3 {
            font-size: 48px;
            margin-bottom: 10px;
            color: white;
        }
        
        .stat-item p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Testimonials Section (Reused from home with slight modification) */
        .about-testimonials {
            padding: 100px 0;
        }

        .stats-heading{
            color: #ffffff !important;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .story-image .years-badge {
                width: 120px;
                height: 120px;
                right: -20px;
                bottom: -20px;
            }
            
            .years-badge h3 {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero {
                padding: 150px 0 80px;
            }
            
            .about-hero h1 {
                font-size: 36px;
            }
            
            .story-container {
                flex-direction: column;
            }
            
            .story-image {
                margin-bottom: 50px;
            }
            
            .story-image .years-badge {
                right: 0;
            }
        }
        
        @media (max-width: 576px) {
            .about-hero h1 {
                font-size: 32px;
            }
            
            .breadcrumb {
                flex-direction: column;
                align-items: center;
            }
            
            .breadcrumb a {
                margin: 5px 0;
            }
            
            .breadcrumb a:not(:last-child)::after {
                display: none;
            }
        }