
        :root {
            --bg-color: #ffffff;
            --card-bg: #1E293B;
            --accent-color: #22D3EE;
            --highlight-color: #A855F7;
            --text-color: #E5E7EB;
            --dark-text: #1E293B;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-color);
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--card-bg) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--card-bg) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(34, 211, 238, 0.3);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(168, 85, 247, 0.9)), 
                        url('https://img.freepik.com/premium-photo/room-renovation-elegant-old-apartment-relocation-with-paint-bucket-flattened-drywall-walls_157125-6674.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        
        .hero-content h1 {
            font-size:7rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            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 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--card-bg);
            margin-bottom: 20px;
        }
        
        .bg-dark {
            background-color: var(--card-bg) !important;
            color: var(--text-color);
        }
        
        .bg-dark .section-title {
            color: var(--text-color);
        }
        
        /* About Section */
        .about-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Counter Section */
        .counter-box {
            background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
            padding: 60px 0;
            color: white;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Process Steps */
        .process-step {
            background: var(--card-bg);
            color: var(--text-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            color: white;
        }
        
        /* Service Cards */
        .service-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .service-card h4 {
            color: var(--card-bg);
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        /* Why Choose Us */
        .feature-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .feature-item:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background: var(--card-bg);
            color: var(--text-color);
            padding: 30px;
            border-radius: 15px;
            height: 100%;
        }
        
        .testimonial-card img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        /* FAQ Styles */
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid #e0e0e0;
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            color:black;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color:black;
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .card-custom {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            border-radius: 10px;
            border: 1px solid #e0e0e0;
            padding: 12px 15px;
        }
        
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.25);
        }
        
        /* Footer */
        .footer {
            background-color: var(--card-bg);
            color: var(--text-color);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--accent-color);
        }
        
        .footer i {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .footer i:hover {
            color: var(--highlight-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
