
        :root {
            --primary-blue: #1E88E5;
            --light-blue: #90CAF9;
            --success-green: #43A047;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            font-size: 2rem;
            margin-right: 10px;
            color: var(--success-green);
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
            color: var(--white) !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(67, 160, 71, 0.1));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            font-weight: bold;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--success-green);
            border-radius: 2px;
        }
        
        /* About Section */
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .about-content {
            padding: 20px;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--white);
        }
        
        /* Services Cards */
        .service-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h5 {
            color: var(--primary-blue);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--light-blue);
            transform: translateY(-50%);
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-icon {
            width: 100px;
            height: 100px;
            background: var(--white);
            border: 3px solid var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* Reviews */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--light-blue);
            color: var(--primary-blue);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-blue);
            margin-right: 15px;
            width: 40px;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-widget h5 {
            color: var(--light-blue);
            margin-bottom: 20px;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--light-blue);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
