
        :root {
            --sky-blue: #87CEEB;
            --soft-green: #A8E6CF;
            --dark-blue: #1E5F8B;
            --light-gray: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            color: var(--dark-blue) !important;
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            color: var(--sky-blue);
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-blue) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--sky-blue);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(168, 230, 207, 0.8)), url('https://png.pngtree.com/thumb_back/fh260/background/20230702/pngtree-3d-rendering-of-business-accounting-and-financial-concepts-image_3737898.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0;
            color: white;
            text-align: center;
        }
        
        .hero-title {
            font-size:6.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background-color: white;
            color: var(--dark-blue);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background-color: var(--dark-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-blue);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--sky-blue), var(--soft-green));
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
            max-width: 700px;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .btn-read-more {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-read-more:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
            color: white;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--sky-blue), var(--soft-green));
            color: white;
            padding: 70px 0;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .counter-label {
            font-size: 1.1rem;
        }
        
        /* Vision & Mission Section */
        .vision-mission-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .vision-mission-icon {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us Section */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            background-color: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--sky-blue);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }
        
        /* Work Process Section */
        .process-box {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .process-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }
        
        .service-desc {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .review-stars {
            color: #FFC107;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--dark-blue);
        }
        
        .review-location {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--dark-blue);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--sky-blue);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--sky-blue);
        }
        
        .accordion-button::after {
            filter: invert(1);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--sky-blue), var(--soft-green));
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .btn-cta-large {
            background-color: white;
            color: var(--dark-blue);
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .btn-cta-large:hover {
            background-color: var(--dark-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .contact-info-item {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info-icon {
            font-size: 1.5rem;
            color: var(--sky-blue);
            margin-right: 15px;
            min-width: 30px;
        }
        
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: bold;
            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(--sky-blue);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--sky-blue);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
        }
        
        .newsletter-btn {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: var(--soft-green);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--sky-blue);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--soft-green);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                margin-top: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
            }
        }
