
        :root {
            --primary-color: #0288D1;
            --primary-light: #B3E5FC;
            --primary-dark: #00ACC1;
            --white-color: #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;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: var(--white-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            font-size: 2rem;
            margin-right: 0.5rem;
            color: var(--primary-dark);
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            border: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .btn-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(2, 136, 209, 0.3);
            color: var(--white-color);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--white-color) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 60%;
            height: 200%;
            background: var(--primary-color);
            opacity: 0.05;
            transform: rotate(35deg);
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 2rem;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            text-align: justify;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            padding: 60px 0;
            color: var(--white-color);
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-item i {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--primary-light);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 80px 0;
        }
        
        .vm-card {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover .feature-icon {
            background: var(--primary-color);
            color: var(--white-color);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--primary-dark);
        }
        
        .feature-box:hover .feature-icon i {
            color: var(--white-color);
        }
        
        /* Work Process */
        .process-section {
            padding: 80px 0;
            background: var(--primary-light);
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 2rem;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--primary-color);
            opacity: 0.3;
            z-index: -1;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .service-card {
            background: #f5f5f5;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .service-card-text {
            color: #555;
            flex-grow: 1;
            margin-bottom: 1rem;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--primary-light);
        }
        
        .review-card {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--primary-dark);
            margin-top: 1rem;
        }
        
        .review-location {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .accordion-button {
            background: var(--primary-light);
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            color: var(--white-color);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .btn-cta-white {
            background: var(--white-color);
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
            width: 40px;
        }
        
        .contact-form {
            background: var(--white-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--white-color);
            padding: 60px 0 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--white-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-light);
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 5px;
        }
        
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }
        
        .copyright a {
            color: var(--primary-light);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-step::after {
                display: none;
            }
            
            .navbar-nav {
                text-align: center;
            }
        }
