
        :root {
            --primary-dark: #03045e;
            --primary-blue: #0077b6;
            --primary-light: #00b4d8;
            --white: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: bold;
            color: var(--primary-dark) !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
        }
        
        .btn-cta {
            background: var(--primary-blue);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        
        .btn-cta:hover {
            background: var(--primary-dark);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,119,182,0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            opacity: 0.2;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            color: var(--primary-dark);
            font-weight: bold;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-light);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-blue);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
        }
        
        /* Vision Mission */
        .vision-mission-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .vm-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--white);
            transition: all 0.3s;
        }
        
        .feature-box:hover .feature-icon {
            background: var(--primary-blue);
            transform: scale(1.1);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-title {
            color: var(--primary-dark);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* Work Process */
        .process-section {
            padding: 80px 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .reviewer-name {
            font-weight: bold;
            color: var(--primary-dark);
            margin-top: 15px;
        }
        
        .reviewer-location {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .accordion-button {
            background: var(--primary-blue);
            color: var(--white);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-dark);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--white);
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-light);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }
        
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }
        
        .copyright a {
            color: var(--primary-light);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                background: var(--white);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
        }
