/* --- Global Styles & Colors --- */
:root {
    --primary-green: #8bc34a; /* Navigation Link Background */
    --form-dark: #333;       /* Form Background */
    --form-header: #444;     /* Form Header Background */
    --accent-orange: #ff5722;/* Submit Button */
    --accent-red: #d32f2f;   /* Varanasi Text Color */
    overflow-x: hidden;
}

body {
    font-family: sans-serif;
}
.container img{
    width:100px ;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #f8f8f8;
    color: #666;
    font-size: 0.85rem;
}
.top-bar i {
    color: var(--primary-green);
    margin-right: 5px;
}

/* --- Navigation --- */
.custom-navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
/* New Logo Styling for Turban Group */
.turban-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
   
    
}
.builders-text {
    font-size:1.60rem;
    font-weight: 700;
    color: black;
    display: block;
    line-height: 1;
    margin: 14px 5px;
     text-shadow: 3px 3px 2px var(--primary-green);

}
.builders-text > span   {
    font-size: 1rem;
    font-weight: 400 !important;
}
.tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: #999;
    margin-top: -5px;
}
div.navbar-navs {
    width: 50%;
    padding: 0 8vw;
    display: flex;
    align-items: center;
    }

a.navbar-brand.logo-text img {
    display: block;
    height: 80px;
    width: min-content;
    
}
.navbar-brand{
    display: flex;
}



/* Navigation Links (Matching Image 1's link style) */
ul.navbar-nav{
    background-color: var(--primary-green); 
    gap:12px;
} 
.navbar-nav .nav-link {
        color: white;
    padding: 10px 15px;
    font-size: 13px;
    /* border-radius: 4px; */
    /* margin-left: 8px; */
    /* font-weight: 600; */
    transition: background-color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #000;
    font-weight:600 ;
    }

/* --- Hero Section & Slider --- */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Slider Image Sizing */
.hero-img {
    height: 90vh; 
    object-fit: cover;
    filter: brightness(0.9); 
}

/* Project Text Overlay (Varanasi/Turban Group Theme) */
.project-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 10;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.project-heading {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
}
.project-sub-heading {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 20px;
}
.main-text {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 5px;
    color:#8bc34a ;
   
}
.main-text p{
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    color:#f9f9f8 ;
}

.city-name {
    font-size: 4.5rem; /* Varanasi size */
    font-weight: 700;
    color: var(--accent-red); /* Red/Orange gradient effect */
    display: block;
    margin: 10px 0;
}
.coming-soon {
    font-family: cursive; /* Handwriting style effect */
    font-size: 2.5rem;
    font-weight: 300;
    margin-top: -20px;
}

/* Secondary Content for other slides */
.secondary-content h3 {
    font-size: 3rem;
    font-weight: 700;
}

/* Custom Controls (Matching Image 2 Arrows) */
.custom-slider-controls {
    position: absolute;
    bottom: 20px; /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}
.btn-control-arrow {
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: 1.2rem;
    padding: 10px 15px;
    transition: background-color 0.3s;
}
.btn-control-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* --- Inquiry Form (Quick Sale style) --- */
.consultation-form-wrapper {
    background-color: #333333cc;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    width: 20vw;
    right: 10%;
    top: 10%;
}
.form-header {
    /* background-color: var(--form-header); */
    padding: 10px;
    font-size: 1.2rem;
    text-align: center;
}
.form-header strong {
    color: var(--accent-orange);
}
input[type="text"], input[type="password"], textarea {
    font-family: inherit;
    font-size: 15px;
    outline: none;
    margin: 0;
    background-color: #f5f5f5;
    border: none;
    border-left: 2px solid transparent;
    color: #979797;
    font-weight: 400;
    border-right: none;
    border-bottom: none;
}
input[type="text"]::placeholder, input[type="email"]::placeholder{
    color: #000;
}
/* .form-control {
    border-radius: 0;
    padding: 12px;
    border: 1px solid #555;
    background-color: #fff;
    color: rgb(0, 0, 0);
} */
.btn-submit {
    background-color: var(--accent-orange);
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}
.btn-submit:hover {
    background-color: #e64a19;
}
span.me-3.icons {
    height: 40px;
    color:#ff5722;
    width: 40px;
    display: flex;
    border-radius: 50%;
    background: #f7f7f7;
    justify-content: center;
    align-items: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-img {
        height: 60vh;
    }
    .consultation-form-wrapper {
        min-height: auto;
    }
    .main-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    .city-name {
        font-size: 3rem;
    }
    .coming-soon {
        font-size: 1.8rem;
    }
    .project-overlay-content {
        /* Mobile पर थोड़ी कम opacity */
        background-color: rgba(0, 0, 0, 0.2);
        padding: 10px;
        width: 90%;
    }

    .consultation-form-wrapper {
    width: 90%;
    z-index: 999;
    transform: translate(5%, 0px);
}
#navbarNav > div{
    flex-direction: column;
    align-items:center ;
}

button.navbar-toggler + div ul.navbar-nav{
    display: none;
}
button.navbar-toggler.collapsed + div ul.navbar-nav{
    display: block;
}
}



.mb-3 ::placeholder{
    color: #f8f8f8;
}





/* Custom CSS for the Numbers Section */

/* ----------------------------------- */
/* General Styles for the Section */
/* ----------------------------------- */
.stats-section {
    /* Set the background image and effects */
    background-image: url('your-camel-background-image.jpg'); /* REPLACE with your image path or a light, textured background */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Use 'fixed' for a parallax effect */
    background-color: #f8f6f2; /* Light fallback color */
    padding: 80px 0; /* Add top/bottom padding */
    color: #444; /* Default text color */
    position: relative; /* Needed for any overlays or effects */
}

/* Optional: Add a subtle overlay to match the image's light tone */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.4); /* Light semi-transparent white/tan overlay */
    z-index: 1;
}

/* Ensure content is above the overlay */
.stats-section > .container {
    position: relative;
    z-index: 2;
}

/* ----------------------------------- */
/* Title Style */
/* ----------------------------------- */
.section-title {
   
    font-weight: 300;
    font-size: 1.5rem; /* Larger font size for title */
    color: #333;
    margin-bottom: 4rem !important; /* Spacing below the title */
}

/* ----------------------------------- */
/* Statistic Item Styles */
/* ----------------------------------- */
.stat-item {
    padding: 0 15px; /* Adjust inner spacing */
    position: relative;
    margin-bottom: 30px; /* Space for mobile layout */
}

/* Statistic Value (The Number) */
.stat-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem; /* Large number size */
    color:#8bc34a; /* Darker brown color */
    line-height: 1.2;
}

/* Statistic Label (The Description) */
.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #7a7a7a;
    margin-top: 5px;
    font-weight: 400;
}

/* ----------------------------------- */
/* Vertical Divider Style */
/* ----------------------------------- */

/* Create the vertical line using a pseudo-element after the first three items */
/* The line is positioned to the right of the stat-item and hidden on mobile */
@media (min-width: 768px) { /* Apply only on screens larger than mobile (md and up) */
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0; /* Position the line to the right edge */
        height: 100%; /* Full height of the parent */
        width: 1px;
        background-color: #b7a599; /* Light, elegant line color */
        z-index: 3; /* Above other elements if necessary */
    }
}





/* Full-Screen Section and Background */
.property-highlight-section {
    position: relative;
    /* सेक्शन को कम से कम पूरे स्क्रीन की ऊँचाई दें */
    /* min-height: 100vh;  */
    display: flex;
    align-items: center; /* कंटेंट को वर्टिकली सेंटर करें */
    padding: 20px 0; 
    
    /* Full-screen Background Image */
    
    /* background-size: cover; */
    background-position: center;
    background-attachment: fixed; /* Optional: Parallax effect के लिए */
}

/* Dark, Semi-Transparent Overlay (जैसा कि इमेज में है) */
.property-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* डार्क ओवरले (लगभग 70% ओपेसिटी) */
    /* background-color: rgb(30, 30, 30);  */
    z-index: 1;
}

/* कंटेंट को ओवरले के ऊपर लाने के लिए */
.content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px; /* कंटेंट बॉक्स की अधिकतम चौड़ाई */
    margin: 0 auto;
}

/* Image Column Styling */
.image-column img {
    /* सुनिश्चित करें कि इमेज की ऊँचाई सही हो */
    height: 100%; 
    object-fit: cover;
    min-height: 500px; /* डेस्कटॉप के लिए न्यूनतम ऊँचाई */
}

/* Text Column Styling (Right Side) */
.text-column {
    /* टेक्स्ट पैनल के लिए थोड़ा अधिक ओपेक बैकग्राउंड */
    background-color: #8bc34a; 
    color: #ffffff; /* टेक्स्ट रंग */
    padding: 48px !important; /* पैडिंग सुनिश्चित करें */
    display: flex;
    align-items: center;
}

/* Title Styling */
.title {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.text-content-wrapper,p{
    font-size: 19px;
}

/* Green Divider/Accent Line Styling */
.green-divider {
    width: 60px; 
    height: 4px;
    background-color: #080808; /* लाइम ग्रीन रंग */
}

/* Feature Item Styling */
.feature-item {
    line-height: 1.4;
    color: #ccc;
    margin-bottom: 0;
}

/* Number Styling (1., 2., 3., 4.) */
.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9acd32; /* ग्रीन नंबर */
    margin-right: 5px;
}

/* Feature Heading Styling (Quiet Neighbourhood, etc.) */
.feature-heading {
    font-weight: 700;
    color: #fff; 
    display: inline;
}

/* Feature Detail Text Styling */
.feature-detail {
    font-size: 0.9rem;
    display: block; /* नई लाइन पर लाएं */
    margin-left: 25px; /* हेडिंग के नीचे इंडेंट करें */
}

/* Learn More Button Styling */
.btn-learn-more {
    background-color: #fdfefb; /* लाइम ग्रीन */
    border: none;
    color: #333; /* बटन पर डार्क टेक्स्ट */
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #010101; 
    color: #78c743;
}
img.cardImages{
    width: 100%;
    height: 27 0px;
    object-fit: cover;
}

div.plot-text > p {
    line-height: 1.5;
}
/* Responsive Adjustments for Mobile */
@media (max-width: 991.98px) {
    .property-highlight-section {
        min-height: auto; /* मोबाइल पर हाइट को कंटेंट के हिसाब से एडजस्ट करें */
    }
    
    .text-column {
        padding: 30px !important; 
    }
    
    .image-column img {
        min-height: 300px; /* मोबाइल पर छोटी हाइट */
    }
}






:root {
            --primary-green: #38761d;
            --background-color: #f8f8f8;
            --text-color: #333;
        }

        .key-features-section {
              background-color: var(--background-color);
              margin-top: 30px;
        }

        .key-features-heading {
           
               font-size: 2.5rem; 
               color: #000;
               letter-spacing: 1px;
               margin: 55px 0px;
        }

        .feature-list {
             padding-left: 0;
             font-size: 1.1rem;
             color: var(--text-color);
             line-height: 2.2;
        }

        .feature-list li {
            margin-bottom: 1px;
            display: flex;
            align-items: flex-start; /* Aligned to start for better visual spacing */
        }
        

        .feature-icon {
            color: var(--primary-green);
            font-weight: 900;
            font-size: 1.25rem;
            margin-right: 12px;
            min-width: 20px;
        }

        /* Image Styling */
        .img-fluid {
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        /* 📱 Responsiveness Adjustments */
        @media (max-width: 991.98px) {
            .key-features-heading {
                font-size: 2.5rem;
            }
            .key-features-section {
                padding: 60px 0;
            }
        }









/* our belife */

/* style.css */

/* --- General Styling --- */
.beliefs-section {
    background-color: #ffffff;
    font-family: Arial, sans-serif; /* You may need to use a specific font like 'Lato' or 'Roboto' for exact match */
    padding-top: 4rem;
    padding-bottom: 2rem;
}

/* --- Header Styling --- */
.section-title {
    font-size: 3rem;
    font-weight: 700; /* Bold */
    color: #333333;
   
    margin-bottom: 0.rem;
}

.section-description {
    font-size: 0.8rem;
    color: #6c757d; /* Text-muted like color */
    max-width: 800px;
    line-height: 1.6;
}

/* --- Card Styling --- */
.belief-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the icon, title, and text */
    text-align: center;
    padding: 5px 5px; /* Add some horizontal padding inside the column */
}

.belief-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #9acd32;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-transform: none; /* Titles are in Title Case in the image */
}

.belief-text {
    font-size: 0.65rem;
    color: #555555;
    line-height: 1.6;
}
.belief-card{
    border: 1px solid #9acd32;
    border-radius: 20px;
}
/* --- Icon (SVG) Styling --- */
.icon-wrapper {
    width: 6rem; /* Fixed width for icon container */
    height: 6rem; /* Fixed height for icon container */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.line-art-icon {
    width: 100%;
    height: 100%;
    /* The SVG paths use stroke="#333" and stroke-width="2" to define the line art */
}

/* --- Responsiveness adjustments (Optional but good practice) --- */
@media (max-width: 991.98px) { /* Medium devices */
    .icon-wrapper {
        width: 5rem;
        height: 5rem;
    }
}

@media (max-width: 767.98px) { /* Small devices */
    .beliefs-section {
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
}





/* our projects */




/* style.css */

/* --- General Styling --- */




.map-col img{
    width: 600px;
    height: 400px;
    margin:40px 124px 100px 130px;
    
}



/* --- Gallery Image Grid Styling --- */
.gallery-grid {
    padding: 0 15px;
}

.image-wrapper {
    /* Optional: Add a subtle shadow or transition if needed */
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow like in the image */
    transition: transform 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
}

/* For JavaScript filtering (initial state) */
.gallery-item {
    transition: all 0.5s ease-in-out;
}
/* You will need JS to handle the 'hidden' class based on filter */
.gallery-item.hidden {
    display: none;
    opacity: 0;
}


/* --- Sticky Icons (Settings/Scroll) Styling --- */
.sticky-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

 .scroll-btn {
    background-color: #6c757d; /* Dark grey background */
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}







/* upcoming projects */




/* style.css */

/* --- General Header Styling --- */
.section-title-up {
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-description-up {
    font-size: 0.8rem;
    color: #6c757d;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* --- Carousel Banner Styling --- */
.banner-slide {
    height: 60vh; /* Banner height, adjust as needed for screen size */
    min-height: 400px; /* Minimum height for better visibility */
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay to achieve the faded pink/yellow look (Approximation) */
    background: linear-gradient(to right, rgba(255, 192, 203, 0.5), rgba(255, 255, 0, 0) 50%, rgba(255, 165, 0, 0.3) 100%);
    
    /* Using Flexbox to manage logo and text alignment */
    display: flex;
    justify-content: space-between; /* Puts logo left and text right */
    align-items: center;
}

/* --- Logo Styling --- */
.logo-box {
    /* For the Turban logo on the left pink side */
    width: 30%; /* Occupies the left side */
}
.logo-img {
    max-width: 100%;
    height: auto;
}


/* --- Text Content Styling --- */
.text-content {
    /* Occupies the right side of the banner */
    width: 65%;
    color: #333; /* Default text color */
    line-height: 1.2;
}

.expansion-text {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.project-location {
    /* Large, bold, uppercase text */
    font-family: 'Cormorant Garamond', serif; /* Or any serif font for the elegant look */
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 0;
}

.coming-soon {
    /* Script-like font style (You need a custom font for the exact look) */
    font-family: cursive; 
    font-size: 3rem;
    font-weight: 400;
    color: #cc5500; /* Darker orange/brown color */
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    /* Tablet adjustments */
    .project-location {
        font-size: 3rem;
    }
    .coming-soon {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    /* Mobile adjustments */
    .banner-slide {
        height: 50vh;
        min-height: 300px;
    }
    .banner-overlay {
        flex-direction: column; /* Stack logo and text vertically on small screens */
        justify-content: space-around;
        align-items: flex-start;
        padding: 20px;
    }
    .logo-box, .text-content {
        width: 100%;
        text-align: center !important;
    }
    .project-location {
        font-size: 2rem;
    }
    .coming-soon {
        font-size: 1.8rem;
    }
    .expansion-text {
        font-size: 1rem;
    }
}




/* testimonials */


/* style.css */

/* --- Slide Background Image and Height --- */
.testimonial-slide {
    height: 50vh; 
    min-height: 300px;
    background-size: cover; /* इमेज को पूरे स्लाइड पर फैलाता है */
    background-position: center; /* इमेज को केंद्र में रखता है */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Dark Overlay to make text readable --- */
.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 50% अपारदर्शिता (Opacity) वाला काला ओवरले */
    background-color: rgba(0, 0, 0, 0.5); 
    
    /* Centering the content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10%;
}

/* --- Header & Divider Styling --- */
.testimonial-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.divider-line {
    width: 50px;
    height: 3px;
    background-color: #ff6347; /* Orange color */
    margin-top: 0;
}

/* --- Quote Text Styling --- */
.testimonial-quote {
    font-size: o.8rem;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.7;
    font-weight: 300;
}

/* --- Client Photo and Info --- */
.client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%; /* Makes the photo round */
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8); /* White border */
}
.client-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 0;
}
.client-title {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0;
}

/* --- Carousel Controls Styling --- */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    height: 100%;
    opacity: 1; 
    
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1); /* Makes the icon white */
    width: 1.5rem;
    height: 1.5rem;
}

/* --- Sticky Settings Icon --- */
/* .sticky-settings-icon {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
} */
/* .setting-btn { */
    /* background-color: #6c757d;
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
} */

/* --- Responsive Adjustments --- */
@media (max-width: 767.98px) {
    .testimonial-slide {
        height: 60vh;
        min-height: 350px;
    }
    .testimonial-title {
        font-size: 1.8rem;
    }
    .testimonial-quote {
        font-size: 1rem;
        padding: 0 5%;
    }
}







/* our contact */




/* Custom Green Color */
:root {
    --custom-green: #8DC63F; /* The primary green color from the image */
    --text-color: #555;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
}

/* Header Styling (to match the image) */
h1 {
    color: #333; /* Darker text for the heading */
}

/* Green Line Styling (Below the "Contacts" heading) */
.green-line {
    width: 60px; /* Small width */
    height: 3px;
    background-color: var(--custom-green);
    margin-bottom: 3rem !important; /* Spacing below the line */
}

/* Contact Info List Styling */
.contact-info li {
    font-size: 0.8rem;
    color: #6c757d; /* Lighter text color */
}

.contact-info i {
    font-size: 0.8rem;
    color: var(--custom-green); /* Example: making icons green (or use specific colors like the image) */
}

/* To replicate the specific icon colors in the image, we can override */
.fa-location-dot { color:#ff6347 !important; } /* Reddish icon */
.fa-clock { color:#ff6347 !important; } /* Orange/Yellowish icon */
.fa-calendar-day { color: #ff6347 !important; } /* Green icon */
.fa-phone { color:#ff6347 !important; } /* Blueish icon */


/* Newsletter Section Styling */
.newsletter-section {
    background-color: var(--custom-green);
    color: white;
    min-height: 100px; /* To make it look tall like in the image */
    padding: 2rem;
}

.newsletter-form {
    max-width: 400px;
    background-color: transparent; /* Remove input group background */
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.subscribe-button {
    background-color: white;
    color: #333;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0.375rem 0.375rem 0; 
}

/* Map Container for 100% width/height */
.map-container {
    overflow: hidden;
    position: relative;
    height: 450px; 
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive adjustment for small screens */
@media (max-width: 991.98px) {
    .map-container {
        height: 300px; 
    }
}






/* footer */




/* Custom Colors */
:root {
    --dark-bg: #222222;
    --light-text: #AAAAAA; 
    --primary-color: #007bff; 
}

/* Footer Container Styling */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: Arial, sans-serif;
}

/* Heading Styling */
.footer-heading {
    font-size: 1.25rem;
    padding-bottom: 0.5rem;
   
}

/* Column 1: Quick Sale Specific Styles */
.logo-icon {
    font-size: 1.5rem;
}
.footer-text {
    line-height: 1.8;
}

/* Social Icons Styling */
.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
}

/* Specific Social Media Background Colors (matching the image) */
.social-icon.facebook { background-color: #9acd32; }
.social-icon.twitter { background-color: #9acd32; }
.social-icon.google { background-color: #9acd32; }
.social-icon.pinterest { background-color: #9acd32;; }

.social-icon:hover {
    opacity: 0.8;
}

/* Column 2: Recent Comments Divider */
.footer-divider {
    border-bottom: 1px solid #333333;
}
.comment-author {
    color: #999999;
    font-style: italic;
}
.comment-link:hover {
    color: #9acd32 !important;
}

/* Column 3: Twitter Feed */
.twitter-feed a.twitter-link, .tweet-link {
    color: #9acd32 !important; 
}

/* Column 4: Recent Posts */
.post-thumb {
    width: 70px; 
    height: 70px;
    overflow: hidden; 
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.post-title {
    line-height: 1.3;
}
.post-meta i {
    color: #999999;
}



.datepicker-container {
  position: relative;
  /* width: 250px; */
  font-family: Arial, sans-serif;
}

#datepicker {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  height: 40px;
}

.calendar {
  position: absolute;
  top: 45px;
  color: #000;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.calendar.hidden {
  display: none;
}

.calendar table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.calendar th {
  background: #f0f0f0;
  padding: 5px;
}

.calendar td {
  padding: 8px;
  cursor: pointer;
}

.calendar td:hover {
  background-color: #e0e0e0;
}







.time-picker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  padding: 10px;
  border: 2px solid #007bff;
  border-radius: 8px;
  background-color: #f0f8ff;
}

select {
  padding: 5px;
  font-size: 16px;
}

#ampm-toggle {
  cursor: pointer;
  padding: 5px 10px;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  user-select: none;
}






.time-picker-wrapper {
  position: relative;
  /* width: 200px; */
  font-family: sans-serif;
}

#time-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #007bff;
  border-radius: 6px;
  cursor: pointer;
  height: 40px;
}

.time-dropdown {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  z-index: 10;
}

.time-dropdown select,
.time-dropdown button {
  /* margin-right: 5px; */
  padding: 5px;
  font-size: 14px;
  height: 30px;
  width: 48%;
}

/* button#apply-time{
    width: 50%;

} */




.location-img{
    background: url(./image/location.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    height: 500px;
    margin-bottom: 35px ;
}
.content{
    padding-top: 30px;
}
.location-img li{
     list-style: none;
     font-size: 21px;
}
.project{
    
    text-transform: uppercase;
    margin: 16px;
    font-weight: 700;

}


/* prjoect heighlight */
/* Container for the image to maintain aspect ratio and control the border/roundness */
.image-wrapper {
    /* We'll use aspect ratio or fixed height/width to make them square/circular */
    width: 100%;
    /* Optional: To make images square, uncomment the next two lines */
    /* padding-top: 100%; 
    position: relative; */
    overflow: hidden;
}

/* Style for the image itself */
.rounded-image {
    /* Makes the image corners very rounded, almost a squircle shape */
    border-radius: 20%; 
    border: 5px solid white; /* White border as seen in the image */
    /* Optional: If using padding-top on image-wrapper, use this: */
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the wrapper */
}

/* Adjust font size and weight for the titles */
.feature-title {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
}



/* our price /////////////////////////////////////// */


        .property-card {
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .property-card img {
            width: 100%;
            height: 230px;
            object-fit: cover;
        }

        .agent-info img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .icon-box i {
            margin-right: 4px;
        }

        .price {
            color: #00a651;
            font-size: 22px;
            font-weight: 700;
        }

        .fav-icon {
            font-size: 20px;
            cursor: pointer;
            color: #777;
        }

        .pagination .page-link {
            border-radius: 6px !important;
        }
        .property-card {
         border-radius: 12px;
         background: #fff;
         overflow: hidden;
         box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .property-card img {
         width: 100%;
         height: 230px;
         object-fit: cover;
    }


    .contact-btn {
    border-radius: 999px;
    padding: .55rem 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(34,34,34,0.08);
    transition: transform .12s ease, box-shadow .12s ease;
  }
  .contact-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(34,34,34,0.12); }
  /* Floating button */
  .floating-contact {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 1055;
  }

   .agency-section {
         padding: 80px 14px;
    }

    .agency-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
    }

    .read-more-btn {
      padding: 10px 25px;
      font-weight: 600;
      border-radius: 6px;
      border: 2px solid #38b384;
      color: #38b384;
      transition: 0.3s;
      display: inline-block;
    }

    .read-more-btn:hover {
      background: #38b384;
      color: #fff;
    }

    .img-grid img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
      object-fit: cover;
    }



    body{
        font-family: 'poppins',sans-serif;
    }

/* dsddddddddddddddddddddd */


  .hero-section {
            background: url("https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg") no-repeat center center/cover;
            height: 90vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-overlay {
            background: rgb(14, 233, 69,0.24);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .btn-custom-blue {
            background-color: #0ee945;
            color: white;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
        }


     /* form */

     {
            background: #f8f9fa;
        }
        .section-title h2{
            font-size: 32px;
            font-weight: 700;
        }
        .underline{
            width: 60px;
            height: 3px;
            background: #0f8f4b;
            margin: 10px auto;
            border-radius: 20px;
        }

        .property-card{
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            padding: 20px;
            margin: 20px 0;
        }

        .property-img{
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
        }

        .price{
            color: #18a64a;
            font-size: 22px;
            font-weight: 600;
        }

        .status{
            font-weight: 600;
        }

        /* .icon-box img{
            width: 25px;
            opacity: 0.7;
        } */


        .card{
            border: 1px solid black;
            padding: 100px;
        }