
        :root {
            --primary-color: #1E88E5;
            --light-primary: #90CAF9;
            --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;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .nav-item{
            margin-left:20px !important;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 8px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .cta-btn {
            background-color: var(--primary-color);
            color: var(--white-color) !important;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
        }
        
        .cta-btn:hover {
            background-color: #1565C0;
            color: var(--white-color) !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white-color);
        }
        
        .hero-content h1 {
            font-size:6rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .hero-cta {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
            text-decoration: none;
        }
        
        .hero-cta:hover {
            background-color: #1565C0;
            color: var(--white-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 136, 229, 0.3);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .read-more-btn {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
            text-decoration: none;
            margin-top: 1rem;
        }
        
        .read-more-btn:hover {
            background-color: #1565C0;
            color: var(--white-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            padding: 60px 0;
            color: var(--white-color);
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--light-primary);
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision & Mission Section */
        .vision-mission-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .vision-mission-card {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
        }
        
        .why-choose-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .why-choose-card:hover {
            background-color: #f8f9fa;
            transform: translateY(-5px);
        }
        
        .why-choose-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        /* Work Process Section */
        .process-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--light-primary);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
        }
        
        .service-card {
            background-color: var(--white-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            height: 300px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .service-content p {
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }
        
        .service-btn {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
            text-decoration: none;
            align-self: flex-start;
        }
        
        .service-btn:hover {
            background-color: #1565C0;
            color: var(--white-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .review-card {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .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 h5 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .review-author p {
            margin: 0;
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-primary);
            color: var(--white-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231E88E5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(30, 136, 229, 0.9), rgba(30, 136, 229, 0.9)), url('https://images.pexels.com/photos/1642125/pexels-photo-1642125.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: var(--white-color);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        
        .cta-button {
            background-color: var(--white-color);
            color: var(--primary-color);
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
            text-decoration: none;
        }
        
        .cta-button:hover {
            background-color: #f8f9fa;
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .contact-info {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        .contact-form {
            background-color: var(--white-color);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ced4da;
            padding: 12px 15px;
            margin-bottom: 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(30, 136, 229, 0.25);
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #1565C0;
            color: var(--white-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: #212529;
            color: var(--white-color);
            padding: 60px 0 20px;
        }
        
        .footer-logo {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--light-primary);
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            margin-right: 8px;
            font-size: 1.8rem;
        }
        
        .footer-links h5 {
            color: var(--light-primary);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--light-primary);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 50px 0 0 50px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 10px 20px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #1565C0;
        }
        
        .copyright {
            border-top: 1px solid #495057;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #adb5bd;
        }
        
        .copyright a {
            color: var(--light-primary);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--white-color);
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .process-step {
                margin-bottom: 30px;
            }
        }
