
        :root {
            --charcoal-gray: #333333;
            --sky-blue: #87CEEB;
            --white: #ffffff;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--charcoal-gray);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--charcoal-gray);
        }
        
        .navbar-brand i {
            color: var(--sky-blue);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--charcoal-gray);
            margin: 0 10px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--sky-blue);
        }
        
        .cta-btn {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background-color: #6ab6d6;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://t3.ftcdn.net/jpg/02/78/98/56/360_F_278985629_SwYPS2BfkqYYGINcg0gB3KG7gQuRvAIE.jpg') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size:7rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--charcoal-gray);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-cta {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .hero-cta:hover {
            background-color: #6ab6d6;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            color: white;
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--charcoal-gray);
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            color: #666;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .about-content {
            padding: 20px;
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--charcoal-gray);
        }
        
        .about-content p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .read-more-btn {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .read-more-btn:hover {
            background-color: #6ab6d6;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            color: white;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--light-gray);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--charcoal-gray);
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: #666;
        }
        
        /* Vision & Mission Section */
        .vm-item {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vm-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .vm-item i {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 20px;
        }
        
        .vm-item h3 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--charcoal-gray);
        }
        
        /* Why Choose Us Section */
        .choose-item {
            text-align: center;
            margin-bottom: 30px;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .choose-item:hover {
            transform: translateY(-5px);
        }
        
        .choose-item i {
            font-size: 2.5rem;
            color: var(--sky-blue);
            margin-bottom: 15px;
        }
        
        .choose-item h4 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--charcoal-gray);
        }
        
        /* Work Process Section */
        .process-section {
            background-color: var(--light-gray);
        }
        
        .process-item {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--sky-blue);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--sky-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }
        
        .process-item h4 {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--charcoal-gray);
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px 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 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--charcoal-gray);
        }
        
        .service-content p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-btn {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
        }
        
        .service-btn:hover {
            background-color: #6ab6d6;
            color: white;
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--charcoal-gray);
        }
        
        .review-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        .review-text {
            font-style: italic;
            color: #666;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--light-gray);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            background-color: white;
            color: var(--charcoal-gray);
            font-weight: 600;
            padding: 15px 20px;
            border: none;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--sky-blue);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        
        .accordion-body {
            padding: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(135, 206, 235, 0.9), rgba(135, 206, 235, 0.9)), url('https://images.pexels.com/photos/263402/pexels-photo-263402.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            background-color: white;
            color: var(--sky-blue);
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            color: var(--sky-blue);
        }
        
        /* Contact Section */
        .contact-info {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-item:last-child {
            margin-bottom: 0;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--sky-blue);
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
        }
        
        .submit-btn {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: #6ab6d6;
        }
        
        /* Footer */
        footer {
            background-color: var(--charcoal-gray);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--sky-blue);
        }
        
        .footer-column p {
            margin-bottom: 15px;
            color: #ccc;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            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: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-btn {
            background-color: var(--sky-blue);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: #6ab6d6;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #ccc;
        }
        
        .copyright a {
            color: var(--sky-blue);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-item:not(:last-child)::after {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
