
        :root {
            --charcoal: #2c3e50;
            --neon-blue: #00d4ff;
            --silver: #c0c0c0;
            --light-silver: #f5f5f5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--charcoal) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--neon-blue);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-link {
            color: var(--charcoal) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--neon-blue) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .cta-btn {
            background: var(--neon-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid var(--neon-blue);
        }
        
        .cta-btn:hover {
            background: transparent;
            color: var(--neon-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(0, 212, 255, 0.1)), url('https://static.vecteezy.com/system/resources/thumbnails/037/993/730/small/ai-generated-home-renovation-interior-construction-and-remodeling-project-photo.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content h1 {
            font-size:6rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            color: var(--silver);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--charcoal);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--neon-blue);
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--charcoal);
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--neon-blue);
            margin-bottom: 20px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--neon-blue);
        }
        
        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--neon-blue);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--neon-blue);
            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(--charcoal);
            transform: rotate(360deg);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: white;
        }
        
        /* Work Process */
        .process-box {
            text-align: center;
            position: relative;
            padding: 30px;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--neon-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .process-box::after {
            content: '';
            position: absolute;
            top: 60px;
            left: 50%;
            width: 2px;
            height: calc(100% - 60px);
            background: var(--silver);
            z-index: 1;
        }
        
        .process-box:last-child::after {
            display: none;
        }
        
        /* Services Cards */
        .service-card {
            background: var(--light-silver);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .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-weight: bold;
            color: var(--charcoal);
            margin-bottom: 15px;
        }
        
        .service-card-body p {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateX(10px);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--neon-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
        }
        
        /* FAQ */
        .accordion-button {
            background: var(--light-silver);
            color: var(--charcoal);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--neon-blue);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--neon-blue);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--charcoal), var(--neon-blue));
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: var(--silver);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Contact Section */
        .contact-info-box {
            background: var(--light-silver);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--neon-blue);
            margin-right: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--charcoal);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: var(--silver);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--neon-blue);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--neon-blue);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--charcoal);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--silver);
            color: var(--silver);
        }
        
        .copyright a {
            color: var(--neon-blue);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .process-box::after {
                display: none;
            }
        }
