
        :root {
            --deep-brown: #3E2723;
            --copper: #B87333;
            --cream: #FFF8E1;
            --gradient-primary: linear-gradient(135deg, var(--deep-brown), var(--copper));
            --gradient-secondary: linear-gradient(135deg, var(--copper), #D4A574);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
            background: transparent !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--deep-brown) !important;
            display: flex;
            align-items: center;
            font-family: 'Playfair Display', serif;
        }
        
        .navbar-brand i {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 12px;
            font-size: 2.2rem;
        }

        .nav-item{
            margin-left:25px !important
        }
        
        .navbar-nav .nav-link {
            color: var(--deep-brown) !important;
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--copper) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--copper);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-cta {
            background: var(--gradient-primary);
            color: white !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            border: none;
            box-shadow: 0 4px 15px rgba(184, 115, 51, 0.3);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(62, 39, 35, 0.85), rgba(251, 250, 249, 0.85)),
                        url('https://www.renovationhyderabad.com/images/910.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        
        .hero-content h1 {
            font-size:5rem;
            font-weight: 700;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease;
            font-family: 'Playfair Display', serif;
        }
        
        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 35px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
            line-height: 1.6;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 90px 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--deep-brown);
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--gradient-primary);
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(62, 39, 35, 0.15);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--gradient-primary);
            color: white;
            padding: 70px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 25px;
        }
        
        .counter-box i {
            font-size: 3.2rem;
            margin-bottom: 18px;
            color: var(--cream);
        }
        
        .counter-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(62, 39, 35, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(62, 39, 35, 0.15);
        }
        
        .vision-mission-box i {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .vision-mission-box.vision i {
            color: var(--deep-brown);
        }
        
        .vision-mission-box.mission i {
            color: var(--copper);
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 35px;
            border-radius: 15px;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 10px 30px rgba(62, 39, 35, 0.1);
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(184, 115, 51, 0.25);
        }
        
        .feature-box i {
            font-size: 3.2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 22px;
        }
        
        /* Services Cards */
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 8px 20px rgba(62, 39, 35, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(184, 115, 51, 0.25);
        }
        
        .service-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 28px;
            background: var(--cream);
        }
        
        .service-card h5 {
            color: var(--deep-brown);
            font-weight: 700;
            margin-bottom: 18px;
            font-size: 1.3rem;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
            padding: 35px 25px;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            z-index: -1;
        }
        
        .process-step:last-child::before {
            display: none;
        }
        
        .process-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.2rem;
            box-shadow: 0 10px 25px rgba(184, 115, 51, 0.3);
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(62, 39, 35, 0.1);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(62, 39, 35, 0.15);
        }
        
        .stars {
            color: #FFB300;
            margin-bottom: 18px;
            font-size: 1.2rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 25px;
        }
        
        .reviewer-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            margin-right: 18px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        /* FAQ */
        .accordion-button {
            background: var(--gradient-primary);
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--gradient-secondary);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient-secondary);
            padding: 90px 0;
            color: white;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-info-box {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(62, 39, 35, 0.1);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(62, 39, 35, 0.15);
        }
        
        .contact-info-box i {
            font-size: 2.5rem;
            color: var(--copper);
            margin-bottom: 18px;
        }
        
        .contact-info-box a {
            color: var(--deep-brown);
            text-decoration: none;
            font-weight: 500;
        }
        
        .contact-info-box a:hover {
            color: var(--copper);
        }
        
        /* Footer */
        footer {
            background: var(--deep-brown);
            color: white;
            padding: 70px 0 25px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--copper);
            transform: translateX(5px);
        }
        
        .newsletter-form {
            position: relative;
        }
        
        .newsletter-form input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 14px;
            border-radius: 50px;
            width: 100%;
            font-size: 0.95rem;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gradient-primary);
            border: none;
            padding: 10px 22px;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-50%) scale(1.05);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 45px;
            padding-top: 25px;
            text-align: center;
        }
        
        .copyright a {
            color: var(--copper);
            text-decoration: none;
            margin: 0 12px;
            transition: color 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--cream);
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step::before {
                display: none;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }
