
        :root {
            --neon-green: #39FF14;
            --black: #000000;
            --white: #FFFFFF;
            --gray-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--black);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--black) !important;
        }

        .navbar-brand i {
            color: var(--neon-green);
            margin-right: 10px;
        }

        .navbar-nav .nav-link {
            color: var(--black) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--neon-green) !important;
        }

        .btn-cta {
            background: var(--neon-green);
            color: var(--black);
            padding: 10px 25px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta:hover {
            background: var(--black);
            color: var(--neon-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://www.renowow.ca/wp-content/uploads/2019/10/what-are-the-advantages-of-home-renovation-f.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }

        .hero-content h1 {
            font-size:8rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }

        .hero-btn {
            background: var(--neon-green);
            color: var(--black);
            padding: 15px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .hero-btn:hover {
            background: var(--white);
            color: var(--black);
            transform: scale(1.05);
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--black);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--neon-green);
        }

        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-content {
            padding: 30px;
        }

        .about-content h3 {
            font-size: 2rem;
            color: var(--black);
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        /* Counter Section */
        .counter-section {
            background: var(--black);
            color: var(--white);
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-box i {
            font-size: 3rem;
            color: var(--neon-green);
            margin-bottom: 20px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--neon-green);
        }

        .counter-label {
            font-size: 1.2rem;
            margin-top: 10px;
        }

        /* Vision Mission Section */
        .vision-mission-box {
            background: var(--gray-light);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .vision-mission-box h4 {
            color: var(--black);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--neon-green);
            margin-bottom: 20px;
        }

        /* Features Section */
        .feature-box {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--neon-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            background: var(--black);
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--black);
        }

        .feature-box:hover .feature-icon i {
            color: var(--neon-green);
        }

        .feature-box h4 {
            font-size: 1.5rem;
            color: var(--black);
            margin-bottom: 15px;
        }

        .feature-box p {
            color: #666;
            line-height: 1.6;
        }

        /* Services Section */
        .service-card {
            background: var(--gray-light);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 30px;
        }

        .service-card-body h5 {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--black);
            margin-bottom: 15px;
        }

        .service-card-body p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* 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;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .review-card p {
            color: #555;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 20px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: var(--neon-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            color: var(--black);
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--gray-light);
            color: var(--black);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--neon-green);
            color: var(--black);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--neon-green);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.pexels.com/photos/1642128/pexels-photo-1642128.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 20px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-info-box i {
            font-size: 2rem;
            color: var(--neon-green);
            margin-right: 20px;
        }

        .contact-info-box h4 {
            color: var(--black);
            margin-bottom: 5px;
        }

        .contact-info-box p {
            color: #666;
            margin: 0;
        }

        /* Footer */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 60px 0 20px;
        }

        footer h4 {
            color: var(--neon-green);
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--neon-green);
        }

        .copyright {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        .copyright a {
            color: var(--neon-green);
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
