/* --- 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;
    width: 100%;
    
}
.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: 85vh; 
    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: 1rem;
    font-weight: 300;
    margin-bottom: 0px;
}
.main-text {
        font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0px;

}
.city-name {
   font-size: 4.5rem;
    font-weight: 700;
    color: #8bc34a;
    display: block;
    margin: 0px 0;
}
.coming-soon {
    
    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: 20px 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: 2rem !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-image: url('./image/second.jpg'); <-- अपनी BLURRED बैकग्राउंड इमेज का पाथ यहाँ बदलें
    /* background-size: cover; */
    background-position: center;
    background-attachment: fixed; 
}


.property-highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    background-color: rgba(30, 30, 30, 0.7); 
    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: rgba(25, 25, 25, 0.85); 
    color: #fff; 
    padding: 50px !important;
    display: flex;
    align-items: center;
}

/* Title Styling */
.title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.text-content-wrapper,p{
    font-size: 16px;
}

/* Green Divider/Accent Line Styling */
.green-divider {
    width: 60px; 
    height: 4px;
    background-color: #9acd32; 
}

/* 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: #9acd32; 
    border: none;
    color: #333; 
    padding: 10px 30px;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #aadb56; 
    color: #333;
}

/* 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; /
    }
}




/* our belife */



/* --- General Styling --- */
.beliefs-section {
    background-color: #ffffff;
    font-family: Arial, sans-serif; 
    padding-top: 4rem;
    
}

/* --- Header Styling --- */
.section-title {
    font-size: 2rem;
    font-weight: 700; /* Bold */
    color: #333333;
   
    margin-bottom: 0.rem;
}

.section-description {
    font-size: 1rem;
    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 --- */
body {
    background-color: #ffffff; /* White background */
    font-family: Arial, sans-serif; /* Use your website's actual font */
}

/* --- Top Description Text --- */
.top-description {
    
    font-size: 1rem;
    color: #6c757d;
    max-width: 650px;
    line-height: 1.6;
    margin-top: 2rem;
}

/* --- Filter Buttons Styling --- */
.filter-buttons {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 10px; 
    margin-bottom: 1rem;
}

.filter-btn {
    
    background-color: transparent;
    color: #333333;
    border: 1px solid #ff5722;
    border-radius: 50px; 
        padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: #f8f9fa;
    color: #000;
}

.filter-btn.active {
    background-color: #ff5722; /* Active button background is black */
    color: #fff; /* Active button text is white */
    border-color: #ff5722;
}

/* --- 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: 2rem;
    font-weight: 700;
    color: #333333;
    
    text-transform: uppercase;
}

.section-description-up {
    font-size: 1rem;
    color: #6c757d;
    max-width: 700px;
    line-height: 1.6;
   
}

/* --- 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-size: 3rem;
    font-weight: 400;
    color: #fffff; /* 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;
    }
}






/* discover */

.property-card {
            border: none;
            overflow: hidden;
            position: relative;
            border-radius: 8px; /* Slightly more rounded corners */
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Clearer shadow */
        }
        
        /* Optional: Hover effect for better UX */
        .property-card:hover {
            transform: translateY(-5px); 
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .card-image {
            width: 100%;
            height: 380px; /* Adjusted height to match the image ratio better */
            object-fit: cover;
            display: block;
        }
       .container img{
        width: 100%;
       }

        .card-content-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px; /* Increased padding for space */
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            z-index: 10;
        }

        /* City Name Tag Style */
        .city-badge {
            color: #fff;
            padding: 7px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            
            background-color: #007bff; 
        }

        /* Properties Count Box Style - This is the crucial part */
        .count-box {
            background-color: #fff;
            padding: 8px 12px;
            border-radius: 5px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            line-height: 1.1;
            min-width: 90px;
        }

        .count-number {
            font-size: 1.6rem;
            font-weight: 700;
            color: #333;
        }

        .count-label {
            font-size: 0.75rem;
            color: #6c757d;
        }

       
        @media (max-width: 768px) {
            .card-image {
                height: 300px;
            }
        }








/* testimonials */


/* --- 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%;
    
    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;
    margin-top: 1rem;
}
.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: 1rem;
    color: #6c757d; /* Lighter text color */
}

.contact-info i {
    font-size: 1rem;
    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%;

} */