:root {
            --primary: #1251d7;
            --primary-dark: #1d4ed8;
            --primary-light: #93c5fd;
            --secondary: #10b981;
            --accent: #f59e0b;
            --dark: #1f2937;
            --dark-gray: #6b7280;
            --medium-gray: #9ca3af;
            --light-gray: #f3f4f6;
            --white: #ffffff;
            --black: #111827;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }

        body {
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--white);
            font-size: 1.5rem;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.5;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 2rem; }
        h4 { font-size: 1.5rem; }
        h5 { font-size: 1.25rem; }
        h6 { font-size: 1rem; }

        .text-lead {
            font-size: 1.25rem;
            color: var(--dark-gray);
        }

        .btn {
            font-weight: 600;
            padding: 0.75rem 1.75rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .section {
            padding: 6rem 0;
        }

        .section-title {
            position: relative;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-subtitle {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        /* Header */
        .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: var(--white);
        box-shadow: var(--shadow-sm);
        padding: 1rem 0;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo-img {
        height: 50px;
        width: auto;
        transition: transform 0.3s ease;
    }
    
    .logo-img:hover {
        transform: scale(1.05);
    }
    
    .main-nav {
        flex: 1 1 auto;
        display: flex;
        justify-content: flex-end;
    }
    
    .nav-list {
        display: flex;
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        font-weight: 500;
        color: var(--dark);
        transition: var(--transition);
        padding: 0.5rem 0;
        position: relative;
    }
    
    .nav-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: var(--transition);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
    }
    
    .nav-link:hover:after,
    .nav-link.active:after {
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .main-nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: var(--shadow-md);
            padding: 1rem;
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }
        
        .main-nav.active {
            transform: translateY(0);
        }
        
        .nav-list {
            flex-direction: column;
            gap: 1rem;
        }
        
        .mobile-menu-toggle {
            display: block;
        }
    }
    
    @media (max-width: 992px) {
        .navbar-nav {
            padding-top: 1rem;
            gap: 0.5rem;
        }
        
        .nav-link {
            padding: 0.5rem 0;
        }
        
        .nav-link:after {
            left: 0;
            width: 100%;
        }
    }


/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.about-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-visual:hover img {
    transform: scale(1.05);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.strengths-section {
    background-color: var(--light-gray);
    padding: 80px 0;
    margin: 80px 0;
}

.strengths-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.strength-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.strength-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.mission-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

blockquote {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    padding: 0 40px;
}

blockquote:before, blockquote:after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.5;
    position: absolute;
}

blockquote:before {
    top: -20px;
    left: 0;
}

blockquote:after {
    bottom: -50px;
    right: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section, .about-section.reverse {
        flex-direction: column;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 2.3rem;
    }
    
    .about-content h2, .strengths-section h2, .mission-content h2 {
        font-size: 2rem;
    }
    
    blockquote {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
            background-color: var(--dark);
            color: var(--white);
            padding-top: 5rem;
        }

        .footer-title {
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }

        .footer-link {
            color: var(--medium-gray);
            transition: var(--transition);
            display: block;
            margin-bottom: 0.75rem;
        }

        .footer-link:hover {
            color: var(--white);
            padding-left: 0.5rem;
        }

        .contact-info {
            color: var(--medium-gray);
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .contact-icon {
            color: var(--primary);
            margin-top: 0.25rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            margin-right: 0.75rem;
        }

        .social-link i {
            transition: var(--transition);
        }

        .social-link span {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            font-size: 0;
            transition: var(--transition);
            font-weight: 500;
        }

        .social-link:hover {
            width: 120px;
            border-radius: 2rem;
        }

        .social-link:hover i {
            transform: translateX(-20px);
        }

        .social-link:hover span {
            opacity: 1;
            font-size: 0.875rem;
            transform: translate(10px, -50%);
        }

        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .linkedin { background-color: #0077b5; }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            margin-top: 3rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.75rem;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
            }
            
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.75rem; }
        }

        @media (max-width: 768px) {
            .section {
                padding: 4rem 0;
            }
            
            .hero-section {
                padding: 6rem 0;
            }
            
            .hero-title {
                font-size: 2.25rem;
            }
            
            .search-input {
                padding: 1rem 1.5rem;
            }
            
            .search-btn {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.5rem; }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }

        