html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin: 0 5px;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #888;
    font-weight: 300;
    font-size: 16px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 15px;
}

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1618219908412-a29a1bb7b86e?auto=format&fit=crop&w=1500');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.btn {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Sections */
section {
    padding: 80px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Grid (Frumos Style) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    padding-bottom: 30px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px 0 10px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    filter: brightness(70%);
}

/* Reviews */
.reviews {
    background: #f4f4f4;
    text-align: center;
}

.review-box {
    max-width: 20px;
    margin: 0 auto;
    background: #2e0606;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #f5b301;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 60px 10%;
}

footer h3 {
    margin-bottom: 20px;
}

.footer-content p {
    color: #aaa;
    margin-bottom: 20px;
}

.credit {
    margin-top: 40px;
    font-size: 12px;
    color: #555;
}

/* Floating WhatsApp Style */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Review Section Styling */
.review-section {
    padding: 60px 10%;
    background: #fdfdfd;
}

.review-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stars-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.stars-input input {
    display: none;
}

.stars-input label {
    color: #ddd;
    cursor: pointer;
}

.stars-input input:checked~label,
.stars-input label:hover,
.stars-input label:hover~label {
    color: #f5b301;
}

.review-form input,
.review-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.submit-rev-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* Footer & Social Icons */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin-right: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #888;
}

.footer-info i {
    margin-right: 10px;
    color: #888;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

/* 9. Image Slider Section (New) */
.slider-section {
    padding: 0;
    /* Slider ko full width dene ke liye padding hata di */
    background: #000;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    /* Bahar ki images ko chupane ke liye */
    position: relative;
    /* Buttons positioning ke liye */
}

.slider-wrapper {
    display: flex;
    /* Images ko ek line mein laane ke liye */
    transition: transform 0.5s ease-in-out;
    /* Smooth moving effect */
}

.slider-wrapper img {
    width: 50%;
    /* Har image slider container ki full width legi */
    height: 50vh;
    /* Ek standard height set kar di hai */
    object-fit: cover;
    /* Image ko bina stretch kiye crop karne ke liye */
}

/* Optional Button Styling */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black background */
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: 0.3s;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Mobile Optimization (Phone ke liye) */
@media (max-width: 768px) {

    /* 1. Hero Text: Mobile pe bade font ache nahi lagte */
    .hero h1 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }

    .hero p {
        font-size: 1rem;
    }

    /* 2. Navigation: Mobile pe menu ek ke niche ek aana chahiye */
    nav {
        flex-direction: column;
        padding: 15px;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        /* Agar links zyada hain toh line change kar lenge */
        justify-content: center;
        gap: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    /* 3. Services & Slider: Cards ek ke niche ek (Single Column) */
    .services-grid {
        grid-template-columns: 1fr;
        /* 3 ki jagah 1 card dikhega mobile pe */
        gap: 20px;
    }

    .slider-wrapper img {
        height: 40vh;
        /* Mobile pe slider ki height kam kar di */
    }

    /* 4. WhatsApp & Buttons: Inhe touch-friendly banaya */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    section {
        padding: 40px 5%;
        /* Side spacing kam kar di mobile ke liye */
    }
}

/* Map Section Styling */
.map-section {
    padding: 60px 8%;
    text-align: center;
    background-color: #fff;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Mobile pe map ki height thodi kam karne ke liye */
@media (max-width: 768px) {
    iframe {
        height: 250px;
    }
}

/* Hero Section Styling */
.hero-container {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('work1.jpg.jpeg');
    /* Apni ek acchi image ka path dein */
    background-size: cover;
    background-position: center;
    padding: 80px 5%;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text span {
    color: #ffc107;
    /* Gold color like luxury */
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.hero-features li {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Form Box */
.hero-form-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-form-box h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.hero-form-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.btn-estimate {
    width: 100%;
    padding: 15px;
    background: #e31e24;
    /* Red color like Livspace */
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-estimate:hover {
    background: #c1171d;
}

.form-note {
    font-size: 10px;
    text-align: center;
    margin-top: 10px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-form-box {
        width: 100%;
        margin-top: 30px;
    }
}

/* Pricing Section Styling */
.budget-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: left;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.budget-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.budget-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.budget-card:hover img {
    transform: scale(1.1);
    /* Hover karne par image zoom hogi */
}

/* Starting at Badge */
.price-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(50, 40, 60, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* BHK Label */
.bhk-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .budget-grid {
        grid-template-columns: 1fr;
    }

    .budget-card {
        height: 300px;
    }
}

/* Offers Section Styling */
.offers-section {
    padding: 550px 0;
    background-color: #fcfcfc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.offers-main-title {
    font-size: 36px;
    font-weight: 65;
    color: #333;
}

.btn-quote-red {
    background-color: #f05f5f;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-quote-red:hover {
    background-color: #d44d4d;
}

/* Grid System */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Card Styling */
.offer-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.offer-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.offer-icon-box {
    font-size: 30px;
    background: #fdf2f2;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #444;
}

/* List Styling */
.offer-card ul {
    list-style: none;
    padding: 0;
}

.offer-card ul li {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.offer-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .offers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Styling */
.faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faq-main-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #444;
}

.faq-icon {
    font-size: 24px;
    color: #888;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    /* Shuruat mein band rahega */
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fcfcfc;
    color: #666;
    line-height: 1.6;
}

/* Jab FAQ khula ho tab ke liye */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-item.active .faq-question {
    color: #333;
}

.faq-price-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.faq-price-list li {
    margin-bottom: 5px;
}

.faq-section {
    padding: 50px 0;
    background: #fdfdfd;
}

.faq-title {
    font-size: 30px;
    margin-bottom: 30px;
    color: #222;
}

.faq-card {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
}

.faq-content {
    max-height: 0;
    /* Shuruat mein band */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    /* Smoothly khulne ke liye */
    padding: 0 20px;
    color: #666;
    line-height: 1.6;
}

/* Jab box khulega tab ye class kaam karegi */
.faq-card.active .faq-content {
    max-height: 300px;
    /* Ise itna rakhein ki content dikh jaye */
    padding-bottom: 20px;
}

.faq-card.active .icon {
    transform: rotate(45deg);
    color: #f05f5f;
}

<script>document.querySelectorAll('.faq-btn').forEach(button=> {
        button.addEventListener('click', ()=> {
                const faqCard=button.parentElement;

                // Agar dusra koi khula hai toh band karne ke liye (Optional)
                document.querySelectorAll('.faq-card').forEach(card=> {
                        if (card !==faqCard) card.classList.remove('active');
                    });

                // Current box ko toggle karne ke liye
                faqCard.classList.toggle('active');

                // Icon badalne ka logic
                const icon=button.querySelector('.icon');

                if (faqCard.classList.contains('active')) {
                    icon.textContent='×'; // Close icon
                }

                else {
                    icon.textContent='+';
                }
            });
    });
</script>

/* 1. Shuruat mein answer chhupa rahega */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    padding: 0 20px;
    opacity: 0;
}

/* 2. Jab button click hoga, tab ye class add hogi aur answer dikhega */
.faq-card.active .faq-content {
    max-height: 500px;
    /* Ise itna rakhein ki content pura aa jaye */
    padding: 15px 20px;
    opacity: 1;
}

/* 3. Icon ko rotate karne ke liye (Optional) */
.faq-card.active .icon {
    transform: rotate(45deg);
    color: #f05f5f;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Fixed from box-box-sizing */
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* Nav & Hero[cite: 10] */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    align-items: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1618219908412-a29a1bb7b86e?auto=format&fit=crop&w=1500');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* Slider Section[cite: 10] */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-wrapper img {
    min-width: 50%;
    height: 50vh;
    object-fit: cover;
}

/* FAQ Styling[cite: 10] */
.faq-card {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-card.active .faq-content {
    max-height: 200px;
    padding: 15px 20px;
}

/* WhatsApp Float[cite: 10] */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
}

.estimate-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fcfcfc;
}

.estimate-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

.estimate-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.estimate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.estimate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 50px;
    color: #e35a5a;
    margin-bottom: 20px;
}

.estimate-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.estimate-card p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.calc-btn {
    background-color: #e35a5a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-btn:hover {
    background-color: #d14949;
}

.estimate-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fcfcfc;
}

.estimate-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

.estimate-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.estimate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.estimate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 50px;
    color: #e35a5a;
    margin-bottom: 20px;
}

.estimate-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.estimate-card p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.calc-btn {
    background-color: #e35a5a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-btn:hover {
    background-color: #d14949;
}

.calc-btn {
    text-decoration: none;
    /* Link ka underline hatane ke liye */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e35a5a;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

.faq-card {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-btn {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease-out;
    color: #555;
    line-height: 1.6;
}

/* Jab 'active' class add hogi tab answer dikhega */
.faq-card.active .faq-content {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-card.active .icon {
    transform: rotate(45deg);
    /* Plus ko X ya cross banane ke liye */
}

/* Slider Section */
.slider-section {
    text-align: center;
    padding: 20px;
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Optional: For mobile devices */
@media (max-width: 768px) {
    .slider img {
        width: 80%;
        height: auto;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    /* Isse logo left aur menu right ho jayega */
    align-items: center;
    padding: 10px 2%;
}

.logo img {
    height: 40px;
    /* Ab ye height kaam karegi */
    width: auto;
}

/* Sections ke beech ka gap kam karne ke liye */
section {
    padding: 40px 10% !important;
    /* 80px ko kam karke 40px kiya */
}

/* "What we offer" section ka gap kam karne ke liye */
.offers-section {
    padding: 30px 0 !important;
    /* 60px ko kam karke 30px kiya */
}

/* Gallery aur baki sections ke margins reset karne ke liye */
.gallery,
.budget-section,
.services {
    margin: 0;
    padding-top: 50px;
    padding-bottom: 50px;
}