
        :root {
            --primary-color: #020e3d;
            --secondary-color: #0b2178;
            --accent-color-1: #072392;
            --accent-color-2: #011b83;
            --light-bg: #f5f5f5;
            --text-dark: #333;
            --text-light: #666;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Navigation Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .navbar-nav {
            text-align: center;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background:#f5f5f5;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 30px;
        }
        
        .btn-hero {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
            margin-right: 15px;
        }
        
        .btn-hero:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-outline-hero {
            background-color: transparent;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
        }
        
        .btn-outline-hero:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Section Styles */
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--accent-color-2);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: var(--text-light);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        
        .light-bg {
            background-color: var(--light-bg);
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .btn-read-more {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn-read-more:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Counter Section */
        .counter-box {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
        }
        
        .counter-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .counter-title {
            color: var(--text-dark);
            font-weight: 600;
        }
        
        /* Why Choose Us Section */
        .choose-us-item {
            padding: 25px;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .choose-us-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .choose-us-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .choose-us-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        
        /* Services Section */
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-desc {
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color-2) 100%);
            color: white;
            border-radius: 10px;
            padding: 60px 40px;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-cta-white {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta-white:hover {
            background-color: var(--light-bg);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* FAQ Section */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-header {
            border-radius: 10px !important;
        }
        
        .accordion-button {
            background-color: white;
            font-weight: 600;
            color: var(--text-dark);
            box-shadow: none !important;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-bg);
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            filter: brightness(0) saturate(100%) invert(29%) sepia(89%) saturate(1974%) hue-rotate(335deg) brightness(96%) contrast(88%);
        }
        
        .accordion-body {
            color: var(--text-light);
        }
        
        /* Testimonials Section */
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: var(--accent-color-1);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .testimonial-location {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .testimonial-rating {
            color: var(--accent-color-1);
            margin-bottom: 15px;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 40px;
        }
        
        .newsletter-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .newsletter-subtitle {
            color: var(--text-light);
            margin-bottom: 25px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 30px 0 0 30px;
            outline: none;
        }
        
        .newsletter-input:focus {
            border-color: var(--primary-color);
        }
        
        .newsletter-btn {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 0 25px;
            border: none;
            border-radius: 0 30px 30px 0;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: var(--secondary-color);
        }
        
        /* Contact Section */
        .contact-info-item {
            margin-bottom: 25px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        .contact-text {
            color: var(--text-light);
        }
        
        .contact-form .form-control {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(249, 65, 68, 0.25);
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-submit:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            background-color: #222;
            color: #ddd;
            padding: 70px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color:white;
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-subscribe {
            background-color: #333;
            border-radius: 10px;
            padding: 20px;
        }
        
        .footer-subscribe-form {
            display: flex;
            margin-top: 15px;
        }
        
        .footer-subscribe-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            outline: none;
        }
        
        .footer-subscribe-btn {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 0 20px;
            border: none;
            border-radius: 0 5px 5px 0;
            transition: all 0.3s ease;
        }
        
        .footer-subscribe-btn:hover {
            background-color: var(--secondary-color);
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: #ddd;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            color: var(--primary-color);
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }
