
        :root {
            --primary-color: #006D6F;
            --secondary-color: #00BFA6;
            --light-bg: #ECEFF1;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
            background: transparent !important;
        }

        .navbar-brand {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            font-size: 32px;
            color: var(--secondary-color);
        }

        .nav-item{
            margin-left:25px;
        }

        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .cta-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 191, 166, 0.3);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 109, 111, 0.7), rgba(0, 191, 166, 0.7)),
                        url('https://images.pexels.com/photos/3822622/pexels-photo-3822622.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero-title {
            font-size:80px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        .hero-btn {
            padding: 15px 40px;
            font-size: 18px;
            background: rgb(7, 7, 7);
            color: var(--primary-color);
        }

        .hero-btn:hover {
            background: rgb(30, 30, 30);
            color: var(--primary-color);
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }

        .lead {
            color: var(--text-light);
            font-size: 18px;
        }

        /* About Section */
        .about-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 109, 111, 0.2);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
        }

        .read-more-btn {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-icon {
            font-size: 40px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .counter-number {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Vision Mission Section */
        .vision-mission-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 109, 111, 0.2);
        }

        .vision-mission-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .vision-mission-icon i {
            font-size: 30px;
            color: white;
        }

        /* Feature Box */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 109, 111, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 35px;
            color: white;
        }

        .feature-box h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Service Cards */
        .service-card {
            background: var(--light-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 109, 111, 0.2);
        }

        .service-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-body {
            padding: 30px;
        }

        .service-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 22px;
        }

        .service-desc {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Review Cards */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 109, 111, 0.2);
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-text {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .review-location {
            color: var(--text-light);
            font-size: 14px;
        }

        /* FAQ Accordion */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .accordion-button {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-weight: 600;
            padding: 20px;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            box-shadow: none;
        }

        .accordion-button::after {
            filter: brightness(0) invert(1);
        }

        .accordion-body {
            padding: 20px;
            background: white;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 36px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        .cta-btn-large {
            padding: 15px 40px;
            font-size: 18px;
            background: white;
            color: var(--primary-color);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .cta-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
            color: var(--primary-color);
        }

        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 109, 111, 0.2);
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .contact-info-icon i {
            font-size: 20px;
            color: white;
        }

        .contact-info-item h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-info-item p {
            color: var(--text-light);
            margin: 0;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-link {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .subscribe-form {
            display: flex;
            margin-top: 15px;
        }

        .subscribe-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .subscribe-form button {
            padding: 12px 20px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subscribe-form button:hover {
            background: white;
            color: var(--primary-color);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
        }
