
        :root {
            --primary-black: #000000;
            --dark-gray: #1F2937;
            --darker-gray: #111827;
            --lime-green: #39FF14;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-black) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            color: var(--lime-green);
            font-size: 32px;
        }

        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--lime-green) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--lime-green);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .btn-cta {
            background: var(--lime-green);
            color: var(--primary-black);
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta:hover {
            background: var(--white);
            color: var(--primary-black);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size:60px;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }

        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: bold;
            color: var(--darker-gray);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--lime-green);
        }

        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-content p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        /* Counter Section */
        .counter-section {
            background: var(--darker-gray);
            color: var(--white);
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-box i {
            font-size: 48px;
            color: var(--lime-green);
            margin-bottom: 20px;
        }

        .counter-number {
            font-size: 42px;
            font-weight: bold;
            color: var(--lime-green);
        }

        .counter-label {
            font-size: 18px;
            margin-top: 10px;
        }

        /* Vision & Mission */
        .vision-card, .mission-card {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-card:hover, .mission-card:hover {
            transform: translateY(-5px);
        }

        .vision-card i, .mission-card i {
            font-size: 48px;
            color: var(--lime-green);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            width: 40px;
            height: 2px;
            background: var(--lime-green);
            transform: translateY(-50%);
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--lime-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: var(--primary-black);
        }

        /* Why Choose Us */
        .feature-box {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 36px;
            color: var(--lime-green);
            margin-bottom: 20px;
        }

        /* Services Section */
        .service-card {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            font-size: 22px;
            font-weight: bold;
            color: var(--darker-gray);
            margin-bottom: 15px;
        }

        .service-desc {
            font-size: 15px;
            line-height: 1.7;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        /* Book Service Section */
        .book-service-section {
            background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
            padding: 80px 0;
        }

        /* Reviews Section */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            position: relative;
        }

        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-author {
            font-weight: bold;
            color: var(--darker-gray);
            margin-top: 15px;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--white);
            color: var(--darker-gray);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--lime-green);
            color: var(--primary-black);
        }

        .accordion-item {
            border: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary-black);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            color: var(--white);
            font-size: 42px;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn-hero {
            background: var(--lime-green);
            color: var(--primary-black);
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-hero:hover {
            background: var(--white);
            color: var(--primary-black);
            transform: scale(1.05);
        }

        /* Contact Section */
        .contact-info {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-info h4 {
            color: var(--darker-gray);
            margin-bottom: 20px;
        }

        .contact-info div {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-info i {
            color: var(--lime-green);
            font-size: 20px;
            width: 30px;
        }

        /* Footer */
        footer {
            background: var(--darker-gray);
            color: var(--white);
            padding: 60px 0 20px;
        }

        footer h5 {
            color: var(--lime-green);
            margin-bottom: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--lime-green);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom a {
            color: var(--lime-green);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }
            
            .process-step::after {
                display: none;
            }
        }
