
        :root {
            --light-gray: #E5E4E2;
            --black: #000000;
            --gold: #D4AF37;
            --dark-gray: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black) !important;
            font-family: 'Playfair Display', serif;
        }
        
        .navbar-brand i {
            color: var(--gold);
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--black) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background-color: var(--gold);
            color: var(--black);
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-cta:hover {
            background-color: var(--black);
            color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://homr.in/wp-content/themes/homr/images/homerenovation/5.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size:6rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        .btn-hero {
            background-color: var(--gold);
            color: var(--black);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }
        
        .btn-hero:hover {
            background-color: var(--black);
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--light-gray);
        }
        
        .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);
        }
        
        .about-content h2 {
            color: var(--black);
            margin-bottom: 25px;
            font-size: 2.5rem;
        }
        
        .about-content p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }
        
        .btn-read-more {
            background-color: var(--gold);
            color: var(--black);
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-read-more:hover {
            background-color: var(--black);
            color: var(--gold);
            transform: translateY(-2px);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--black);
            color: white;
            text-align: center;
        }
        
        .counter-box {
            padding: 40px 20px;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .counter-box h3 {
            font-size: 1.2rem;
            color: white;
        }
        
        /* Vision Mission Section */
        .vision-mission-box {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .vision-mission-box h3 {
            color: var(--black);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--black);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .feature-box p {
            color: var(--dark-gray);
            line-height: 1.6;
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card .card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h5 {
            color: var(--black);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .service-card p {
            color: var(--dark-gray);
            line-height: 1.8;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .service-card .btn-cta {
            align-self: flex-start;
        }
        
        /* Booking Section */
        .booking-section {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .booking-form {
            padding: 50px;
        }
        
        .booking-form h2 {
            color: var(--black);
            margin-bottom: 30px;
        }
        
        .form-control, .form-select {
            border: 2px solid var(--light-gray);
            border-radius: 5px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .form-label {
            color: var(--black);
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .stars {
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .stars i {
            font-size: 1.2rem;
        }
        
        .review-card p {
            font-style: italic;
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .review-card img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .review-card h6 {
            color: var(--black);
            margin-bottom: 5px;
        }
        
        .review-card small {
            color: #666;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--light-gray);
        }
        
        .accordion-button {
            background-color: white;
            color: var(--black);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--gold);
            color: var(--black);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--gold);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .accordion-body {
            background-color: white;
            color: var(--dark-gray);
            line-height: 1.8;
            padding: 20px;
        }
        
        /* 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/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            color: white;
            padding: 100px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-light {
            background-color: var(--gold);
            color: var(--black);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .btn-cta-light:hover {
            background-color: white;
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        
        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--gold);
            margin-right: 20px;
            min-width: 40px;
        }
        
        .contact-info-box h5 {
            color: var(--black);
            margin-bottom: 5px;
        }
        
        .contact-info-box p {
            color: var(--dark-gray);
            margin: 0;
        }
        
        /* Footer */
        footer {
            background-color: var(--black);
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: var(--gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        
        footer p {
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--gold);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            background-color: white;
            color: var(--black);
        }
        
        .newsletter-form button {
            background-color: var(--gold);
            color: var(--black);
            border: none;
            padding: 12px 25px;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--light-gray);
        }
        
        .social-links {
            margin-top: 25px;
        }
        
        .social-links a {
            color: var(--light-gray);
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--gold);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: var(--light-gray);
            margin: 0;
        }
        
        .footer-bottom a {
            color: var(--gold);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .about-content h2 {
                font-size: 2rem;
            }
            
            .booking-form {
                padding: 30px 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
                border-radius: 5px;
                margin-bottom: 10px;
            }
        }
