
        :root {
            --primary-color: #4e99df;
            --secondary-color: #65ace4;
            --light-color: #86caf7;
            --accent-color: #6360ff;
            --dark-color: #1b2ba3;
            --white-color: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-color) !important;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: var(--dark-color);
            color: var(--white-color);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(27, 43, 163, 0.7), rgba(27, 43, 163, 0.7)), url('https://images.unsplash.com/flagged/photo-1573168710465-7f7da9a23a15?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            color: var(--white-color);
            padding: 150px 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 6rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background-color: var(--accent-color);
            color: var(--white-color);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-hero:hover {
            background-color: var(--dark-color);
            color: var(--white-color);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-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(--primary-color);
        }
        
        .section-subtitle {
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
        }
        
        /* About Us */
        .about-img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .btn-read-more {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 10px 25px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            margin-top: 20px;
        }
        
        .btn-read-more:hover {
            background-color: var(--dark-color);
            color: var(--white-color);
        }
        
        /* Counter */
        .counter-section {
            background-color: var(--light-color);
            color: var(--white-color);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-text {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-box h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .process-box {
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .process-box:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .process-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s;
        }
        
        .process-box:hover .process-icon {
            background-color: var(--primary-color);
            color: var(--white-color);
        }
        
        .process-icon i {
            font-size: 2rem;
            color: var(--dark-color);
        }
        
        .process-box:hover .process-icon i {
            color: var(--white-color);
        }
        
        .process-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-box:hover {
            background-color: #f8f9fa;
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s;
        }
        
        .feature-box:hover .feature-icon {
            background-color: var(--primary-color);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--dark-color);
        }
        
        .feature-box:hover .feature-icon i {
            color: var(--white-color);
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* Services */
        .service-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            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;
        }
        
        .service-body {
            background-color: #f8f9fa;
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .service-desc {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* Reviews */
        .review-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .review-card:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 3rem;
            color: var(--light-color);
            opacity: 0.5;
        }
        
        .review-text {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-author-info h5 {
            margin-bottom: 0;
            color: var(--dark-color);
        }
        
        .review-author-info p {
            margin-bottom: 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: var(--white-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--light-color);
        }
        
        .accordion-button {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(to right, var(--dark-color), var(--primary-color));
            color: var(--white-color);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .btn-cta-large {
            background-color: var(--white-color);
            color: var(--dark-color);
            border: none;
            padding: 15px 40px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s;
            margin-top: 20px;
        }
        
        .btn-cta-large:hover {
            background-color: var(--accent-color);
            color: var(--white-color);
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-info-item {
            display: flex;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-form .form-control {
            border-radius: 4px;
            border: 1px solid #ddd;
            padding: 12px;
            margin-bottom: 20px;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(78, 153, 223, 0.25);
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background-color: var(--dark-color);
            color: var(--white-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white-color);
            padding: 70px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--light-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            border: none;
            padding: 12px;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: var(--accent-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: #ddd;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--light-color);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-box:not(:last-child):after {
                display: none;
            }
        }
