
        :root {
            --teal: #008080;
            --charcoal: #333333;
            --white: #FFFFFF;
            --light-gray: #F4F4F4;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--charcoal);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--charcoal);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--teal);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--teal);
            font-weight: 600;
        }
        
        .navbar-nav .btn {
            background-color: var(--charcoal);
            color: var(--white);
            border-radius: 20px;
            padding: 8px 20px;
            transition: all 0.3s;
        }
        
        .navbar-nav .btn:hover {
            background-color: var(--teal);
            color: var(--white);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .hero-content .btn {
            background-color: var(--teal);
            color: var(--white);
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .hero-content .btn:hover {
            background-color: var(--charcoal);
            color: var(--white);
        }
        
        .hero-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--charcoal);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--teal);
        }
        
        /* About Section */
        .about-section {
            
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 20px;
        }
        
        .about-content p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .about-content .btn {
            background-color: var(--teal);
            color: var(--white);
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .about-content .btn:hover {
            background-color: var(--charcoal);
            color: var(--white);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--teal);
            color: var(--white);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-box p {
            font-size: 1.1rem;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            background-color: var(--white);
        }
        
        .why-choose-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .why-choose-box:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .why-choose-box i {
            font-size: 2.5rem;
            color: var(--teal);
            margin-bottom: 20px;
        }
        
        .why-choose-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--charcoal);
        }
        
        /* Services Section */
        .services-section {
            background-color: var(--light-gray);
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 15px;
        }
        
        .service-card-body p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-card-body .btn {
            background-color: var(--teal);
            color: var(--white);
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .service-card-body .btn:hover {
            background-color: var(--charcoal);
            color: var(--white);
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--charcoal);
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-section .btn {
            background-color: var(--teal);
            color: var(--white);
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .cta-section .btn:hover {
            background-color: var(--white);
            color: var(--charcoal);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--white);
        }
        
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--teal);
            color: var(--white);
        }
        
        .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='%23333333'%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");
        }
        
        /* Reviews Section */
        .reviews-section {
            background-color: var(--light-gray);
        }
        
        .review-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-card .client-info {
            display: flex;
            align-items: center;
        }
        
        .review-card .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-card .client-info h5 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .review-card .client-info p {
            margin: 0;
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--teal);
            color: var(--white);
            text-align: center;
        }
        
        .newsletter-section h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .newsletter-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            border-radius: 30px 0 0 30px;
            border: none;
            padding: 12px 20px;
        }
        
        .newsletter-form button {
            background-color: var(--charcoal);
            color: var(--white);
            border-radius: 0 30px 30px 0;
            border: none;
            padding: 0 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: var(--white);
            color: var(--charcoal);
        }
        
        /* Footer */
        footer {
            background-color: var(--charcoal);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-col h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--teal);
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--teal);
        }
        
        .footer-col .btn {
            background-color: var(--teal);
            color: var(--white);
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s;
            display: inline-block;
            margin-top: 10px;
        }
        
        .footer-col .btn:hover {
            background-color: var(--white);
            color: var(--charcoal);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--teal);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .hero-section {
                padding: 60px 0;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }


          .contact-section {
            
            padding: 60px 0;
        }
        .contact-card {
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-5px);
        }
        .contact-icon {
            font-size: 2rem;
            color: #0d6efd;
            margin-bottom: 15px;
        }
        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
        }