
        :root {
            --primary: #2563EB;
            --secondary: #7C3AED;
            --accent: #F97316;
            --neutral: #F9FAFB;
            --dark: #1F2937;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
        }
        
        /* Section padding */
        section {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        /* Navbar styling */
        .navbar {
            padding-top: 20px;
            padding-bottom: 20px;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            margin: 0 auto;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 16px !important;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary);
            background-color: rgba(37, 99, 235, 0.1);
        }
        
        .nav-cta-btn {
            background-color: var(--dark);
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .nav-cta-btn:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero section */
        .hero-section {
            padding-top: 100px;
            padding-bottom: 100px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.5) 0%, rgba(255,255,255,1) 100%);
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #4B5563;
        }
        
        .hero-cta-btn {
            background-color: var(--primary);
            color: white;
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
        }
        
        .hero-cta-btn:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .hero-image {
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Alternate section background */
        .alternate-bg {
            background-color: var(--neutral);
        }
        
        /* Section headings */
        .section-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .section-subheading {
            font-size: 1.1rem;
            color: #6B7280;
            margin-bottom: 3rem;
        }
        
        /* About section */
        .about-image {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .read-more-btn {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        /* Counter section */
        .counter-section {
            background-color: var(--primary);
            color: white;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .counter-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Why choose us */
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        /* Services cards */
        .service-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-title {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        /* FAQ */
        .accordion-button {
            font-weight: 600;
            padding: 1.2rem 1.25rem;
            color: var(--dark);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(37, 99, 235, 0.1);
            color: var(--primary);
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
        }
        
        /* Testimonials */
        .testimonial-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 2rem;
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .testimonial-text:before {
            content: "";
            font-size: 4rem;
            color: rgba(37, 99, 235, 0.2);
            position: absolute;
            top: -30px;
            left: -10px;
            line-height: 1;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }
        
        .testimonial-location {
            color: #6B7280;
            font-size: 0.9rem;
        }
        
        /* Newsletter */
        .newsletter-form .form-control {
            padding: 12px 15px;
            border: 1px solid #D1D5DB;
            border-radius: 6px 0 0 6px;
        }
        
        .newsletter-form .btn {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 12px 24px;
            font-weight: 600;
        }
        
        .newsletter-form .btn:hover {
            background-color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #D1D5DB;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .copyright {
            border-top: 1px solid #374151;
            padding-top: 1.5rem;
            margin-top: 3rem;
            color: #9CA3AF;
            font-size: 0.9rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 1rem;
            }
            
            .nav-cta-btn {
                margin-top: 1rem;
                display: inline-block;
            }
            
            section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
        }


        .blog-content img{
            width: 100%;
        }

        .blog-content {
            text-align: justify;
        }


        .subscribe-form {
        width: 100%;
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        margin: 0 auto;
    }

    .form-box h3 {
        text-align: center;
        margin-bottom: 15px;
    }

    input, label {
        width: 100%;
        display: block;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"] {
        padding: 10px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .checkbox-wrap {
        display: flex;
        align-items: center;
        margin: 10px 0;
    }

    .checkbox-wrap input {
        width: auto;
        margin-right: 8px;
    }

    button {
        width: 100%;
        padding: 10px;
        border: none;
        background: #007bff;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

    button:hover {
        background: #0056b3;
    }

    .message {
        margin-top: 15px;
        font-size: 14px;
        text-align: center;
        color: green;
        display: none;
    }

    .navbar-brand  img{
        width: 50%;
    }