
        :root {
            --primary-color: #312E81;
            --secondary-color: #7C3AED;
            --text-light: #ffffff;
            --text-dark: #A78BFA;
            --bg-light: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .btn-cta {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background: var(--primary-color);
            color: var(--text-light);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(32, 32, 32, 0.8), rgba(0, 53, 102, 0.8)), 
                        url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--text-light);
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }
        
        .btn-hero {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background: var(--text-light);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            color: #666;
            margin-bottom: 3rem;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            color: var(--text-light);
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }
        
        /* Services Cards */
        .service-card {
            background: var(--bg-light);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-title {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Reviews */
        .review-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .review-stars {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 1rem;
        }
        
        /* FAQ */
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--text-light);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #004080);
            color: var(--text-light);
            padding: 4rem 0;
        }
        
        /* Contact Section */
        .contact-info-box {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-right: 1rem;
        }
        
        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 3rem 0 1rem;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 2rem;
            padding-top: 1rem;
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 5px;
        }
        
        .newsletter-form button {
            background: var(--secondary-color);
            color: var(--primary-color);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--text-light);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
