
    
        /* Global Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #000000;
        }

        /* FAQ Section Wrapper */
        .faq-section {
            padding: 40px 6%;
            max-width: 1100px;
            margin: 0 auto;
        }

        .faq-header {
            margin-bottom: 50px;
        }

        .faq-tagline {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #8e8e8e;
            display: block;
            margin-bottom: 8px;
        }
.footer-address {
    font-size: 14px;
    color: rgb(255, 255, 255);
    line-height: 28px;
}

        .faq-main-title {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            color: #111111;
        }

        /* Accordion Container */
        .faq-container {
            border-top: 1px solid #e0e0e0;
        }

        .faq-item {
            border-bottom: 1px solid #e0e0e0;
            background-color: #ffffff;
        }

        /* Question Button Style */
        .faq-question {
            width: 100%;
            padding: 26px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            border: none;
            outline: none;
            cursor: pointer;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: #111111;
            letter-spacing: 0.3px;
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: #8e8e8e;
        }

        /* Plus/Minus Icon Configuration */
        .faq-icon {
            font-size: 16px;
            color: #111111;
            transition: transform 0.4s ease;
        }

        /* Answer Styling - Hidden by default !! */
        .faq-answer {
            max-height: 0; /* Isse answer chupa rahega */
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 10px;
        }

        .faq-answer p {
            font-size: 15px;
            color: #555555;
            line-height: 1.7;
            padding-bottom: 26px;
            max-width: 95%;
        }

        /* Active classes through JavaScript */
        .faq-item.active .faq-icon {
            transform: rotate(45deg); /* Plus smoothly ban jayega close icon */
        }

        .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 4% 15px 4%;
    background-color: transparent; /* Piche ka white background hataya */
    position: absolute; /* Isse banner upar tak chala jayega */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10; /* Taaki buttons aur links banner ke upar click ho sakein */
}
.hero-banner {
    position: relative;
    width: 100%;
    height: 400px; /* Banner ki height aap yahan se choti-badi kar sakte hain */
    
    margin-bottom: 40px; /* Niche ke content se gap */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* 👇 BANNER IMAGE LINK YAHAN LAGANI HAI 👇 */
    background-image: url('../image/FAQ-Banner.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
}

/* Dark overlay taaki text white color me saaf dikhe */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 12%);/* 0.5 ko badha kar dark ya kam karke light kar sakte hain */
    z-index: 1;
}

/* Banner ka text content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

/* Mobile responsive karne ke liye */
@media (max-width: 768px) {
    .hero-banner {
        height: 300px; /* Mobile par height thodi kam ho jayegi */
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
}
/* Mobile responsive layout controls */
@media (max-width: 1024px) {
    .container.all-active .property-grid.active-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000000;
}
.logo img { width: 130px;;
   
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
        text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-family: 'Switzer', Arial, sans-serif;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.3px;
    transition: color .2s;
}

.nav-links a.active {
    color: #ffffff;
   
}
.phone-link {
    font-weight: 600 !important;
    color: #ffffff !important;
}

.request-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.request-btn:hover{
    background: #ffffff;
    color: #000000;
}


/* =========================================
   FOOTER STYLES
   ========================================= */
.footer {
    border-top: 1px solid #e2e2e2;
    padding: 40px 4% 30px 4%;
    background-color: beige;
    margin-top: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}
