* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f4f4;
}

.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f39c12;
}
/* Toggle Button Style - Default Hidden */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-login { display: none; } /* Desktop par chhupao */

/* Mobile Responsive Logic */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* Mobile par dikhao */
        order: 2;
    }

    .logo { order: 1; }
    .nav-right { display: none; } /* Desktop phone/login chhupao mobile par */

    .nav-links {
        display: none; /* Default hidden */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Jab toggle active ho */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px;
        width: 100%;
        border-bottom: 1px solid #f4f4f4;
    }

    .mobile-login {
        display: block;
        color: #e67e22 !important;
        font-weight: bold;
    }
}



/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown Content (The White Box) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: -20px;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.15);
    border-radius: 15px; /* Rounded corners like image 2 */
    padding: 10px 0;
    z-index: 1000;
}

/* The Triangle Arrow on top of box */
.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -10px;
    left: 30px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    display: block;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f8f8f8;
    border-radius: 10px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Right Section Styling */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone i {
    color: #e67e22;
}

.login-btn {
    border: 1.5px solid #e67e22;
    padding: 8px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #e67e22;
    font-weight: bold;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #e67e22;
    color: #fff;
}

/* hero serction */
.hero-section {
    position: relative;
    height: 100vh; /* Full screen height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* Replace 'your-image.jpg' with your actual image path */
    background: url('images/page-title-2.jpg') no-repeat center center/cover;
    overflow: hidden;
}

/* Dark Overlay to make text pop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 60, 60, 0.7); /* Adjust darkness here */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* about section */
.custom-section {
    padding: 100px 8%;
    background-color: #fff;
}

.main-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.text-side {
    flex: 1;
    min-width: 300px;
}

.text-side h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.text-side p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.meet-btn {
    display: inline-block; /* Anchor tag ke liye zaroori hai */
    text-decoration: none; /* Underline hatane ke liye */
    background: #f39c12;
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease-in-out; /* Smooth effect ke liye */
}

/* Hover Effect */
.meet-btn:hover {
    background: #e67e22; /* Thoda dark shade */
    transform: translateY(-5px) scale(1.05); /* Upar uthega aur thoda bada hoga */
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5); /* Shadow gehri ho jayegi */
    color: #fff;
    filter: brightness(1.1); /* Thoda chamak jayega */
}

/* Active Click Effect */
.meet-btn:active {
    transform: translateY(-2px);
}

/* Image Stack Logic */
.image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    height: 450px;
}

.stack-container {
    position: relative;
    width: 350px;
    height: 450px;
    cursor: pointer;
}

.stack-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s ease, z-index 0s;
    border: 5px solid white;
margin-left: -150px;}

/* Overlapping effect - Image offsets */
.stack-img:nth-child(1) { transform: translate(0, 0); z-index: 3; }
.stack-img:nth-child(2) { transform: translate(30px, 20px); z-index: 2; opacity: 0.9; }
.stack-img:nth-child(3) { transform: translate(60px, 40px); z-index: 1; opacity: 0.7; }

/* Responsive */
@media (max-width: 768px) {
    .main-container { flex-direction: column; text-align: center; }
    .image-side { height: 350px; margin-top: 50px; }
    .stack-container { width: 280px; height: 350px; }
}

/*  services-section  */
.services-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* 1. Heading Animation (Up to Down Effect) */
.header-container h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-50px);
    animation: dropIn 0.8s ease-out forwards;
}

@keyframes dropIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-container p {
    color: #666;
    margin-bottom: 50px;
}

/* 2. Responsive Card Grid */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

/* 1. Card Hover - Heading aur Icon dono par asar padega */
.card:hover {
    transform: translateY(-10px);
    border: 1px solid #f2994a; /* Card par halke border ka effect */
}

/* 2. Icon Rotation (Jab card par hover ho) */
.card:hover .icon-box {
    transform: rotate(360deg);
    color: #f2994a; /* Hover hone par icon ka color change */
}

/* 3. Button Effect (Jab card par hover ho) */
/* Outline button ko fill kar dega hover par */
.card:hover .btn-outline {
    background: #f2994a;
    color: white;
}

/* Filled button ko thoda dark ya shadow de dega */
.card:hover .btn-filled {
    background: #e08938; 
    box-shadow: 0 5px 15px rgba(242, 153, 74, 0.4);
}

/* 4. Text Color change (Optional) */
.card:hover h3 {
    color: #f2994a;
    transition: 0.3s;
}

/* 3. Icon Rotation Effect */
.icon-box {
    font-size: 50px;
    margin-bottom: 20px;
    color: #333;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .icon-box {
    transform: rotate(360deg); /* Rounding effect */
}

/* 4. Button Styles */
h3 { font-size: 1.4rem; margin: 15px 0; }
.card p { font-size: 0.95rem; color: #555; line-height: 1.6; flex-grow: 1; }

.btn-outline {
    margin-top: 20px;
    padding: 10px 40px;
    border: 1px solid #f2994a;
    color: #f2994a;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-filled {
    margin-top: 20px;
    padding: 10px 40px;
    background: #f2994a;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}

.featured h3 { color: #f2994a; }

/* 5. Footer Text */
.footer-text { margin-top: 40px; font-size: 0.9rem;margin-bottom: 20px; }
.footer-text a { color: #f2994a; font-weight: bold; text-decoration: none; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card { min-width: 100%; }
}

/* search-section */
.search-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.header-container h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.header-container p {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1rem;
}

/* Card Container Grid */
.search-cards-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 cards in one row */
    gap: 20px;
    justify-content: center;
}

/* Base Card Style */
.search-card {
    background: white;
    padding: 30px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-icon {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: 0.3s;
}

.search-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.search-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- HOVER EFFECTS --- */

/* 1. Upar-Neeche Effect (Floating) */
.search-card:hover {
    transform: translateY(-12px); /* Card upar jayega */
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(242, 153, 74, 0.3);
}

/* 2. Text aur Icon color change on hover */
.search-card:hover .search-icon,
.search-card:hover h3,
.search-card:hover span {
    color: #606060;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .search-cards-container { grid-template-columns: repeat(3, 1fr); } /* 3 cards on tablets */
}

@media (max-width: 600px) {
    .search-cards-container { grid-template-columns: repeat(2, 1fr); } /* 2 cards on mobile */
    .header-container h2 { font-size: 1.8rem; }
}

/* property-categories */
        .property-categories {
            padding: 80px 5%;
            background-color: #fdf5e6;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .category-header h2 { font-size: 2.5rem; color: #333; margin-bottom: 15px; }
        .category-header p { color: #666; max-width: 600px; margin: 0 auto 50px; line-height: 1.6; }

        .category-container {
            display: flex;
            overflow-x: auto; 
            scroll-behavior: smooth;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 10px;
            scrollbar-width: none; /* Firefox ke liye */
        }

        .category-container::-webkit-scrollbar { display: none; } /* Chrome ke liye */

        .property-card {
            min-width: 350px; /* Width bilkul nahi badli */
            height: 450px;
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            cursor: pointer;
            flex-shrink: 0;
        }

        .img-wrapper { width: 100%; height: 100%; }
        .img-wrapper img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease-in-out;
        }

        .property-card:hover .img-wrapper img { transform: scale(1.15); }

        .card-overlay {
            position: absolute; bottom: 0; width: 100%; padding: 25px;
            display: flex; justify-content: space-between; align-items: center;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
        }

        .brand-name { color: white; font-weight: 600; font-size: 1.2rem; }

        .prop-btn {
            background: rgba(255, 255, 255, 0.25); color: white; text-decoration: none;
            padding: 10px 20px; border-radius: 30px; font-size: 0.9rem;
            backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.4); transition: 0.3s;
        }

        .prop-btn:hover { background: #fff; color: #000; }

        .slider-controls { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 20px; }

        .ctrl-btn {
            width: 50px; height: 50px; border: none; background: white;
            border-radius: 50%; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s;
        }

        .ctrl-btn:hover { background: #f2994a; color: white; }

        .dot { width: 10px; height: 10px; background: #ccc; border-radius: 50%; display: inline-block; margin: 0 5px; transition: 0.3s; }
        .dot.active { background: #f2994a; transform: scale(1.3); }

        @media (max-width: 768px) { .property-card { min-width: 280px; height: 380px; } }

        /* team-section */
.team-section {
    text-align: center;
    padding: 50px 20px;
}

.header p{
    margin-bottom: 30px;
}
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card Styling */
.team-card {
    width: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
    cursor: pointer;
}

.image-box {
    position: relative;
    height: 380px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Slide-up Social Bar Styling */
.social-slide-up {
    position: absolute;
    bottom: -100px; /* Shuruat mein kaafi niche rahega */
    left: 50%;
    transform: translateX(-50%);
    background: #000000; /* Solid dark black jaisa aapne pucha tha */
    width: 85%;
    padding: 12px 10px;
    border-radius: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5; /* Isse naam ke niche rakha gaya hai */
}

.social-slide-up a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}

.line {
    color: #333; /* Darker divider lines */
    font-weight: 100;
}

/* Hover Effect: Icons ko naam se thoda upar set karne ke liye */
.team-card:hover .social-slide-up,
.team-card.active .social-slide-up {
    /* Is value ko aap adjust kar sakte hain */
    /* Agar icons abhi bhi naam par aa rahe hain, to isse '100px' ya '110px' kar dein */
    bottom: 90px; 
}

/* Image zoom on hover */
.team-card:hover img {
    transform: scale(1.05);
}

/* Contact Icons (Top Right) */
.contact-float {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
}

/* Info Box (Naam aur Director) */
.info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px 10px;
    background: linear-gradient(transparent, #000);
    color: white;
    text-align: center;
    z-index: 10; /* Naam hamesha icons ke upar ya alag rahega */
}
.info h3 { margin: 0; font-size: 1.1rem; }
.info p { margin: 5px 0 0; font-size: 0.9rem; opacity: 0.7; }


/* testimonial-section */
.testimonial-section {
    font-family: 'Poppins', sans-serif;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.swiper {
    padding: 20px 10px 60px 10px !important;
}

.testimonial-card {
    background: #FFF9F3;
    padding: 40px 25px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.profile-img img {
    width: 90px;
    height: 90px;
    background: #ccc;
    border-radius: 50%;
    margin-bottom: 20px;
}

.stars {
    color: #FFB800;
    margin-bottom: 10px;
}

/* Custom Navigation Styling */
.navigation-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
    position: relative;
}

.nav-btn {
    position: static !important; /* Arrows ko center mein lane ke liye */
    width: 45px !important;
    height: 45px !important;
    border: 1px solid #ddd !important;
    border-radius: 50% !important;
    color: #333 !important;
}

.nav-btn::after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-pagination {
    position: static !important;
    width: auto !important;
}

.swiper-pagination-bullet-active {
    background: #FFB800 !important;
}

/* --- Global Responsive Adjustments --- */
@media (max-width: 1200px) {
    .container, .main-container, .services-section, .search-section, .property-categories, .team-section, .testimonial-section {
        padding-left: 5%;
        padding-right: 5%;
    }
}

/* --- Navigation Responsive --- */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Mobile menu logic depends on your JS, usually a hamburger is used */
    }
    .nav-right {
        gap: 10px;
    }
    .login-btn {
        padding: 5px 15px;
        font-size: 14px;
    }
}

/* --- Hero Section Responsive --- */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh; /* Mobile par height thodi kam */
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* --- About Section (Image Stack) --- */
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
        text-align: center;
    }
    .image-side {
        height: 400px;
        width: 100%;
        margin-top: 30px;
    }
    .stack-container {
        width: 280px;
        height: 380px;
        margin: 0 auto;
    }
}

/* --- Services & Search Cards --- */
@media (max-width: 992px) {
    .search-cards-container {
        grid-template-columns: repeat(3, 1fr); /* Tablet par 3 cards */
    }
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    .card {
        max-width: 100%;
        width: 100%;
    }
    .search-cards-container {
        grid-template-columns: repeat(2, 1fr); /* Mobile par 2 cards */
    }
}

@media (max-width: 480px) {
    .search-cards-container {
        grid-template-columns: 1fr; /* Chote mobile par 1 card */
    }
    .header-container h2 {
        font-size: 1.5rem;
    }
}

/* --- Team Section Responsive --- */
@media (max-width: 768px) {
    .team-container {
        gap: 15px;
    }
    .team-card {
        width: 100%; /* Mobile par card full width */
        max-width: 320px;
    }
    .image-box {
        height: 320px;
    }
    /* Mobile touch ke liye social bar ko hamesha thoda upar dikhana behtar hota hai */
    .social-slide-up {
        bottom: 80px; 
    }
}

/* --- Property Slider --- */
@media (max-width: 768px) {
    .property-card {
        min-width: 85vw; /* Mobile par card screen ki width ke hisaab se */
        height: 350px;
    }
    .category-header h2 {
        font-size: 1.8rem;
    }
}