
        :root {
            --primary-dark: #0F172A;
            --secondary-dark: #1E293B;
            --accent-gold: #D4AF37;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-dark);
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-dark) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            margin: 0 0.5rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-gold) !important;
        }
        
        .btn-cta {
            background-color: var(--accent-gold);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--primary-dark);
            color: var(--white);
            transform: translateY(-2px);
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('https://img.freepik.com/premium-photo/man-renovating-house-diy-remix_53876-1091218.jpg?semt=ais_hybrid&w=740&q=80') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }
        
        .hero-content h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .btn-hero {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 30px;
            border: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background-color: var(--white);
            color: var(--primary-dark);
            transform: scale(1.05);
        }
        
        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-dark);
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        /* About Section */
        .about-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .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 {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--secondary-dark);
        }
        
        .btn-read-more {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            padding: 0.75rem 2rem;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-read-more:hover {
            background-color: var(--primary-dark);
            color: var(--white);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            color: var(--white);
            padding: 4rem 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
        }
        
        .counter-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 5rem 0;
        }
        
        .vm-card {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
        }
        
        .vm-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        
        /* Work Process */
        .process-section {
            background-color: #f8f9fa;
            padding: 5rem 0;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem;
        }
        
        .process-icon {
            width: 100px;
            height: 100px;
            background-color: var(--accent-gold);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 5rem 0;
        }
        
        .feature-box {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            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: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .services-section {
            background-color: #f8f9fa;
            padding: 5rem 0;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 1.5rem;
        }
        
        .service-title {
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .service-desc {
            color: var(--secondary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        /* Book Service Section */
        .book-service-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
            padding: 5rem 0;
            color: var(--white);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 5rem 0;
        }
        
        .review-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--primary-dark);
            margin-top: 1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #f8f9fa;
            padding: 5rem 0;
        }
        
        .accordion-button {
            background-color: var(--white);
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-gold);
            color: var(--white);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent-gold), var(--primary-dark));
            padding: 5rem 0;
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
        }
        
        .contact-info {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .contact-info h4 {
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
        }
        
        .contact-info div {
            margin-bottom: 1rem;
            color: var(--secondary-dark);
        }
        
        .contact-info i {
            color: var(--accent-gold);
            margin-right: 1rem;
            width: 20px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-bottom a {
            color: var(--accent-gold);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
