 
        /* CSS STYLES */
        :root {
            --primary-color: #02c1cc;
            --secondary-color: #03849a;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --body-color: #ffffff;
            --text-color: #555;
            --border-color: #dee2e6;
            --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* --- General & Reset --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--body-color);
            line-height: 1.7;
        }

        h1, h2, h3, h4 {
            color: var(--dark-color);
            font-weight: 600;
            line-height: 1.3;
        }
        
        h1 { font-size: 3rem; }
        h2 { font-size: 2.2rem; margin-bottom: 2rem; text-align: center; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.2rem; }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        ul { list-style: none; }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1140px;
            margin: auto;
            padding: 0 1rem;
        }

        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--light-color);
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 50px;
            font-weight: 500;
            border: 2px solid var(--primary-color);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: #fff;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background-color: var(--primary-color);
            color: #fff;
        }

        /* --- Header --- */
        /* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Container */
.h-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2d2e32;
    text-decoration: none;
}

.logo span {
    color: #02c1cc;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}



.nav-link {
    text-decoration: none;
    color: #2d2e32;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #02c1cc;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #2d2e32;
    cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem;
        display: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }

    .hamburger {
        display: block;
    }
}


        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/hero.jpg) no-repeat center center/cover;
            height: 100vh;
            color: #fff;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: auto;
        }

        .hero-content h1 {
            color: #fff;
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.9);
        }
        
        /* --- About Preview --- */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
        }
        
        .about-content img {
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }
        
        .about-text h3 {
            margin-bottom: 1rem;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
        }
        
        /* --- Why Choose Us --- */
        .choose-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .choose-us-item {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
        }
        
        .choose-us-item:hover {
            transform: translateY(-10px);
        }
        
        .choose-us-item i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .choose-us-item h4 {
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        /* --- Services Section --- */
        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .tab-btn {
            background: none;
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active, .tab-btn:hover {
            background-color: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .service-item {
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--box-shadow);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .service-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            width: 40px;
            text-align: center;
        }
        
        .service-item h5 {
            font-weight: 500;
            color: var(--dark-color);
        }

        /* --- Testimonials --- */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            position: relative;
        }
        
        .testimonial-card i.fa-quote-left {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 2rem;
            color: var(--primary-color);
            opacity: 0.2;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-info h5 {
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .author-info span {
            font-size: 0.9rem;
            color: var(--text-color);
        }
        
        /* --- FAQ Section --- */
        .faq-container {
            max-width: 800px;
            margin: auto;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 1rem;
        }
        
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 1rem 0;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            color: var(--dark-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer p {
            padding-bottom: 1rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px; /* Adjust as needed */
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* --- Contact Section --- */
        .contact-form {
            max-width: 700px;
            margin: 3rem auto 0;
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .form-confirmation {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 5px;
            margin-top: 1rem;
            text-align: center;
        }

        /* --- Footer --- */
        .footer {
            background-color: var(--dark-color);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 2rem;
        }
        
        .footer-col h4 {
            color: #fff;
            margin-bottom: 1.5rem;
        }
        
        .footer-col .logo { color: #fff; margin-bottom: 1rem; }
        .footer-col .logo span { color: var(--primary-color); }
        
        .footer-col p { margin-bottom: 1.5rem; }
        
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul a { color: rgba(255,255,255,0.7); transition: all 0.3s ease; }
        .footer-col ul a:hover { color: #fff; padding-left: 5px; }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: rgba(255,255,255,0.1);
            color: #fff;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* --- Modals --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 1050;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: #fff;
            margin: auto;
            padding: 30px;
            border: 1px solid #888;
            width: 80%;
            max-width: 600px;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            animation: slide-down 0.3s ease-out;
        }

        @keyframes slide-down {
            from { transform: translateY(-30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        .modal-close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal-close:hover, .modal-close:focus {
            color: black;
        }

        .modal-body p { margin-bottom: 1rem; }
        
        .form-group-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- Responsive Design --- */
        @media screen and (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero-content h1 { font-size: 3rem; }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: var(--body-color);
                flex-direction: column;
                justify-content: center;
                gap: 2.5rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.4s ease;
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-item { width: 100%; text-align: center; }
            .hamburger { display: block; }
            .about-content { grid-template-columns: 1fr; text-align: center; }
            .about-content img { order: -1; margin-bottom: 2rem; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            
        }

        @media screen and (max-width: 768px) {
            section { padding: 60px 0; }
            .hero { height: 80vh; }
            .hero-content h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1rem; }
            .tabs { gap: 0.5rem; }
            .tab-btn { padding: 8px 15px; font-size: 0.9rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-col { text-align: center; }
            .social-links { margin-bottom: 1rem; }
        }

  