@font-face {
  font-family: Montserrat-Regular; /* set name */
  src: url(../fonts/Montserrat-Regular.ttf); /* url of the font */
}

@font-face {
  font-family: montserratsemiBoldItalic; /* set name */
  src: url('../fonts/Montserrat-SemiBoldItalic.ttf'); /* url of the font */
}

/* General Reset */ 
* { margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat-Regular';
  }
.logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.logo img{
        width: 10%;
}

/* The base state (hidden and moved down slightly) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* The active state (visible and in position) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: Different directions */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10% 15px 3%;
    background: #ffffff;
    /* Sticky Magic */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays above the hero and boxes */
    
    /* Adds a subtle shadow so it pops when scrolling over content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}
.navbar ul { 
    display: flex;
    list-style: none;
    }
.navbar ul li { 
    margin: 0 15px;
    }
.navbar ul li a { 
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
    }
.navbar ul li a:Hover{
    color: #f08627;
    text-decoration: underline;
}
/* This class will be added by JavaScript */
.nav-list li a.active, 
.desktop-nav ul li a.active {
    color: #f08627; /* Your highlight color */
    font-weight: bold;
    border-bottom: 2px solid #f08627; /* Optional: adds an underline */
}
/* Hero Section with Background Image */
.hero {
    position: relative;
    z-index: 1;
    height: 60vh; /* Full screen height looks more professional */
    width: 100%;
    overflow: hidden;
    background-color: #000; /* Black background prevents white flashes */
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
    /* Improves performance on high-res screens */
    will-change: transform; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* The dark tint */
    z-index: 2; /* Still lower than 10 */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 { font-size: 48px; margin-bottom: 20px; }
.hero h1 span { font-weight: normal; }
.hero p { font-size: 20px; margin-bottom: 30px; line-height: 1.5; }

/* Buttons stays the same as your code */
.btn-primary {
    background: #c97327;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-right: 20px;
}

.view-listing {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}
/*services secction*/
/* Ensure the body doesn't cut off the overlap */
body {
    background-color: #f9f9f9;
}

.services-overlap {
    position: relative;
    z-index: 10;        /* This pulls it above the hero's dark overlay */
    margin-top: -80px;  /* Adjust this value to control the overlap height */
    padding: 0 5%;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    background: #ffffff;
    padding: 40px 30px;
    flex: 1;
    border-radius: 8px;
    text-align: left;
    box-shadow: 4px 4px 7px 3px rgb(0 0 0 / 36%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for a premium feel */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-box .icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #c97327;
    font-family: 'Playfair Display', serif;
}

.service-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
/* About Section */
.about-home {
    padding: 100px 10%;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side Styling */
.about-text-side {
    flex: 1.2;
}

.sub-heading {
    color: #c97327;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.about-description p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-know-more {
    background-color: #c97327;
    color: white;
    padding: 15px 35px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-know-more:hover {
    background-color: #f08b31;
    transform: translateY(-3px);
}

/* Contact Row below button */
.about-contact-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon {
    color: #c97327;
    font-size: 20px;
}

.contact-item p {
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Right Side Image Styling */
.about-image-side {
    flex: 0.8;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-name-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.image-name-tag h5 {
    margin: 0;
    font-size: 18px;
    color: #222;
}

.image-name-tag p {
    margin: 0;
    font-size: 13px;
    color: #c97327;
    font-weight: bold;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .about-contact-row {
        justify-content: center;
    }
}
/* Container for the counters */
.counter-parallax-section {
    background-image: linear-gradient(rgb(0 0 0 / 83%), rgba(0, 0, 0, 0.6)),
                      url('../images/house.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-house {
    flex: 1;
    display: flex; 
    justify-content: center;
    max-width: 320px; 
    min-width: 280px; 
}

.house-shape {
   background: #ffffff;
    padding: 76px 20px 12px 20px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-top: 56px;
    width: 100%;
    height: 227px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.house-shape::before {
    content: '';
    position: absolute;
    top: -66px; 
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 140px;
    height: 140px;
    background-color: #c97327;
    border-radius: 25px;
    z-index: 1;
}

.house-content {
    position: relative;
    z-index: 5;
    /*margin-bottom: 20px;*/
}

.house-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    /*margin: -6%;*/
    transform: translateY(-110px); 
    font-family: 'Playfair Display', serif;
}

.house-content p {
    font-size: 17px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    /*margin-top: -25px; */
}

/*.house-shape {*/
/*    background: #ffffff;*/
/*    padding: 60px 20px 40px 20px;*/
/*    border-radius: 20px;*/
/*    position: relative;*/
/*    text-align: center;*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
/*    margin-top: 80px;*/
/*}*/
.door-accent {
    width: 45px;
    height: 6px;
    background: #c97327;
    margin: 25px auto 0 auto;
    border-radius: 10px;
}
/* Container for the bottom elements */
.card-footer-row {
    display: flex;
    justify-content: space-between; /* Pushes items to far left and far right */
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.view-link {
    padding: 5px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    background-color: #f08b31;
}

.view-link:hover {
    text-decoration: underline;
}

.price-tag {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

/* Ensure the description doesn't break the layout */
.project-desc {
    min-height: 60px; /* Keeps cards uniform in height */
    font-size: 14px;
    line-height: 1.5;
}

/**********************************Gallery page*****************************************************/
/* --- GALLERY HERO SECTION --- */
/* --- GALLERY HERO SECTION --- */
.gallery-hero-wrapper {
    position: relative;
    height: 40vh; 
    width: 100%;
    display: flex;
    align-items: center; /* Vertically centers the content bar */
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.gallery-hero-bg {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    /* Ensure this path is correct based on your folder structure */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                      url('../../assets/images/living-room.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-attachment: fixed;
}

/* New Container to split Title and Breadcrumb */
.gallery-hero-content-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between; /* Pushes H1 to left, Breadcrumb to right */
    align-items: center;            /* Keeps them perfectly level */
    width: 100%;
    max-width: 1200px;              /* Aligns with your gallery grid width */
    margin: 0 auto;
    padding: 0 40px;                /* Side padding for breathing room */
    color: white;
}

.gallery-hero-content-container h1 {
    font-size: clamp(32px, 6vw, 56px);
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- SAGE GREEN GALLERY SECTION --- */
/* --- Gallery Section --- */
    .ph-gallery-section {
        /*background-color: #d9bb9b73;*/
        padding: 100px 0;
        overflow-x: hidden;
    }

    .ph-gallery-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Row & Animation Setup */
    #ph-gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    .ph-gallery-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .ph-reveal-left { transform: translateX(-100px); }
    .ph-reveal-right { transform: translateX(100px); }

    .ph-gallery-row.ph-active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Individual Gallery Item */
    .ph-gallery-item {
        position: relative;
        height: 320px;
        border-radius: 35px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .ph-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .ph-gallery-item:hover img {
        transform: scale(1.1);
    }

    .ph-image-label {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 25px;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
        color: white;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
    }

    /* --- Hero Section --- */
    .ph-gallery-hero-wrapper {
        position: relative;
        padding: 60px 20px;
        background: #f4f4f4;
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../assets/images/living-room.jpg);
        background-size: cover;
        background-position: center;
        z-index: 1;
        /* position: absolute; */
        top: 0;
        left: 0;
        width: 100%;
        height: 43vh;
    }

    .ph-gallery-hero-content-container {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        color: white;
    }
    .ph-gallery-hero-content-container h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
    }
    /* --- Lightbox --- */
    .ph-lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .ph-lightbox-content {
        max-width: 85%;
        max-height: 85%;
        border-radius: 20px;
        transform: scale(0.8);
        transition: transform 0.3s ease;
        pointer-events: auto;
    }

    .ph-lightbox.ph-active .ph-lightbox-content {
        transform: scale(1);
    }

    .ph-close-lightbox {
        position: absolute;
        top: 30px;
        right: 40px;
        font-size: 50px;
        color: white;
        cursor: pointer;
        line-height: 1;
        z-index: 10000;
    }

    
/*******************************************************Contact page*********************************************************************/
/* --- HERO ADJUSTMENTS --- */
.contact-hero-wrapper {
    position: relative;
    height: 70vh; /* Increased height to accommodate the floating box */
    width: 100%;
    display: flex;
    align-items: flex-start; /* Aligned to top so box can float below */
    padding-top: 100px;
    overflow: visible; /* Required so box can overlap the next section */
    background: #1a1a1a;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Join Our Team Button */
.btn-recruitment {
    background-color: #c97327;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.btn-recruitment:hover {
    background-color: transparent;
    border-color: #c97327;
    color: #c97327;
}

/* --- THE FLOATING WHITE BOX (Resideo Style) --- */
.floating-contact-card {
    position: absolute;
    bottom: -100px; /* Overlaps the next section */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: #fff;
    display: flex;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 10;
}

.card-map {
    flex: 1.2;
    height: 350px;
    background: #eee;
}

.card-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-info h2 {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: #2c3e50;
}
.card-info p{
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.info-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: #c97327;
}

.info-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .floating-contact-card {
        flex-direction: column;
        position: relative;
        bottom: 0;
        margin-top: 50px;
        transform: none;
        left: 0;
        width: 100%;
    }
    .contact-hero-wrapper { height: auto; padding-bottom: 50px; }
}

.form-header h2{
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 50px;
    color: #222;
}
.contact-form-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light grey to make white form pop */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
}

.form-container {
    background: #ffffff;
    width: 90%;
    max-width: 800px;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-header { text-align: center; margin-bottom: 40px; }

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#contactForm input, #contactForm textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

#contactForm input:focus { border-color: #b5c19d; }

/* OTP Button Styling */
#sendOTPBtn, #verifyOTPBtn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#sendOTPBtn:hover { background: #b5c19d; }

#message { grid-column: span 2; width: 100% !important; margin-top: 20px;}

@media (max-width: 600px) {
    .input-grid { grid-template-columns: 1fr; }
}

/*New projject details***********************************/

/* The section must have a height for the sticky to work */
.stacking-section {
    display: flex;
    max-width: 1260px;
    margin: 0 auto;
    padding: 100px 20px;
    gap: 50px;
    position: relative;
}

.header-left {
    flex: 1;
    position: sticky;
    top: 100px;
    height: fit-content;
    padding-right: 20px;
}

.tag {
    color: var(--primary-red);
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.header-left h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.view-all-btn {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.cards-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 0; 
}

.project-card {
    position: sticky;
    top: 100px;
    padding-bottom: 50px;
}

.card-inner {
    display: flex;
    background: #fff;
    /*border-radius: 25px;*/
    overflow: hidden;
    box-shadow: 5px 10px 10px 4px rgb(0 0 0 / 14%);
    border: 1px solid #e0e0e0;
    height: 300px;
}

.card-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.location p{
    font-size: 15px;
    color: #c97327;
    font-weight: 600;
}
.location img {
    width: 16px!important;
    margin-right: 5px;
}

.project-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #222;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.card-image {
    flex: 1;
    /* overflow: hidden; */
    /* background: #f0f0f0; */
    padding: 10px;
}

.card-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    background-color: #f08b31;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-red:hover {
    background-color: #c97327;
}
.project-card:nth-child(1) { z-index: 1; }
.project-card:nth-child(2) { z-index: 2; }
.project-card:nth-child(3) { z-index: 3; }
.project-card:nth-child(4) { z-index: 4; }
.footer-spacer {
    height: 80vh;
    background-color: #f4f4f4;
}


/*******************completed projects scroller******************************/
.renvia-pro-wrapper {
  padding: 80px 5%;
  background: #fff;
}

.renvia-pro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.renvia-pro-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 5px; /* Extra padding so shadows don't clip */
}

.renvia-pro-container::-webkit-scrollbar { display: none; }

/* STRICT DIMENSIONS */
.renvia-pro-card {
  flex: 0 0 400px; /* Forces every card to be 400px wide */
  width: 400px;
}

.renvia-pro-img-wrapper {
  position: relative;
  width: 100%;
  height: 480px; /* Fixed height for all images */
  border-radius: 30px;
  overflow: hidden;
}

.renvia-pro-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes different sized images fit the 480px height perfectly */
}

/* UNIFORM INFO BOX */
.renvia-pro-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 90px; /* Fixed height for the white box so they all match */
  background: white;
  padding: 0 25px; /* Vertical padding removed to rely on height + flex */
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.renvia-pro-text small {
  display: block;
  color: #ff4d30;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.renvia-pro-text h3 {
  margin: 0;
  font-size: 19px;
  color: #1a1a1a;
  white-space: nowrap; /* Prevents text from breaking into two lines */
}

.renvia-pro-btn {
  width: 45px;
  height: 45px;
  background: #c97327;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.renvia-pro-btn:hover {
  background: #f08b31;
  transform: translateY(-3px);
  color: white;
}

/* Navigation Buttons Styling */
.renvia-pro-nav {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.renvia-pro-nav:hover {
  background: #ff4d30;
  color: #fff;
  border-color: #ff4d30;
}


/***************** need to talk section ***************/
.expert-help-section {
  padding: 80px 5%;
  background-color: #d7d7d7;
  display: flex;
  justify-content: center;
}

.expert-help-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.expert-help-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.expert-help-text p {
  color: #666;
  font-size: 16px;
}

.expert-help-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-contact-outline {
  padding: 15px 30px;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contact-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.contact-number-wrapper {
  position: relative;
  background: #c97327;
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s;
}

.contact-number-wrapper:active {
  transform: scale(0.95);
}

.phone-display {
  font-weight: 600;
}

/* Copy Confirmation Toast */
.copy-toast {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4d30;
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  top: -55px;
}

@media (max-width: 768px) {
  .expert-help-container {
    flex-direction: column;
    text-align: center;
  }
  .expert-help-actions {
    flex-direction: column;
    width: 100%;
  }
  .contact-number-wrapper, .btn-contact-outline {
    width: 100%;
    justify-content: center;
  }
}

/*********************** why to choose us  ***********************/
.ar-why-choose-us {
  padding: 100px 20px;
  background-color: #fcfcfc;
  font-family: 'Inter', sans-serif;
}

.ar-choose-container {
  max-width: 1260px; /* As requested */
  margin: 0 auto;
}

.ar-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.ar-choose-tag {
  color: #c97327;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  display: block;
  /*margin-bottom: 20px;*/
}

.ar-choose-heading {
  font-size: 48px;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.ar-choose-heading .highlight {
  color: #c97327;
}

.ar-choose-sub {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
}

/* Right Side List */
.ar-choose-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ar-choose-item {
  display: flex;
    gap: 17px;
    align-items: flex-start;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    transition: 0.3s ease;
}

.ar-choose-item:last-child {
  border-bottom: none;
}
.ar-image-holder img{
    width:100%;
}
.ar-choose-number {
  font-size: 24px;
  font-weight: 900;
  color: #e0e0e0; /* Subtle number style */
  margin-top: 5px;
  transition: 0.3s ease;
}

.ar-choose-item:hover .ar-choose-number {
  color: #ff4d30;
  transform: translateY(-5px);
}

.ar-choose-text h3 {
      font-size: 22px;
    margin: 0 0 5px 0;
    color: #c97327;
}

.ar-choose-text p {
  margin: 0;
  color: #777;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive Fix */
@media (max-width: 992px) {
  .ar-choose-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .ar-choose-heading {
    font-size: 38px;
  }
}

/********************************************properties page css ****************************************/
/* Ensure the Hero section remains visible */
.pro-section-header {
    text-align: center;
    padding: 0px 0 30px;
}

.pro-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.pro-sub-title {
    color: #777;
    font-size: 1.1rem;
}

.pro-section-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 40px 10%;
}

.pro-no-data {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
}
.pro-hero {
    position: relative;
    height: 400px;
    background: url('../../assets/images/modern-house.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
    background-position: center center;
     background-repeat: no-repeat; 
    background-size: cover;
    background-color: #0e1217;
}

.pro-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.pro-hero-content { position: relative; z-index: 2; }
.pro-hero-title { 
    font-size: 52px; 
    font-family: 'Playfair Display', serif;
    font-weight: 700; 
    margin-bottom: 10px; 
}
.pro-hero-subtitle { font-size: 18px; opacity: 0.9; }

/* --- 3. Intro & Stats Section --- */
.pro-intro-container {
    padding: 80px 7%;
    background: #fff;
    max-width: 1300px;
    margin: 0 auto;
}

.pro-intro-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.pro-intro-text { flex: 1.5; }
.pro-intro-heading { 
    font-size: 38px; 
    font-family: 'Playfair Display', serif;
    color: #1a1a1a; 
    margin-bottom: 20px; 
    line-height: 1.2;
}
.pro-intro-description {
    color: #898989;
    font-size: 15px;
    line-height: 1.5; 
    
}

.pro-stats-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pro-stat-box {
    padding: 40px 20px;
    background: #ffffff;
    border: 1px solid #cdcccc;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.pro-stat-box:hover { transform: translateY(-5px); border-color: #b58d3d; }
.pro-stat-number { display: block; font-size: 32px; font-weight: 700; color: #c97327; }
.pro-stat-label { font-size: 13px; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* --- 4. Search & Filter Bar --- */
.pro-filter-section {
    background: #f9f9f9;
    padding: 0 10%;
}

.pro-filter-container {
    max-width: 1100px;
    margin: -40px auto 30px; /* Pulls it up slightly over the intro */
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pro-filter-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

.pro-filter-group {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 5px;
}

.pro-filter-group input, .pro-filter-group select {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 10px;
    font-size: 14px;
}

.pro-filter-btn {
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
.pro-filter-btn:hover { background: #b58d3d; }

/* --- 5. Properties Grid --- */
.pro-grid-section {
    background-color: #f9f9f9;
    padding: 20px 10% 0;
}

.pro-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

/* --- 6. Property Card Styling --- */
.pro-card {
    background: #fff;
    /* border: 1px solid #dbd8d8; */
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 4px 5px 19px 2px #cfc5c5;
}

.pro-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }

.pro-card-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pro-card-img { width: 100%; height: 100%; object-fit: cover; }

.pro-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    width: 140px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    transform: rotate(-45deg);
    padding: 6px 0;
    text-transform: uppercase;
}
.pro-ribbon-sale { background-color: #2c3e50; }
.pro-ribbon-rent { background-color: #7a8a63; }

.pro-card-body {
    padding: 20px;
}
.pro-card-location {
    font-size: 11px;
    color: #c97327;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.pro-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.pro-card-features {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin: 15px 0;
}

.pro-feature-item {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pro-feature-item i { color: #ccc; }

.pro-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pro-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #c97327;
}

.pro-card-link {
        font-size: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    background-color: #c97327;
    padding: 5px;
}
.pro-card-link:hover { border-bottom: 1px solid #b58d3d; }

.pro-no-data {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 0;
    color: #888;
}

/* --- 7. Responsive --- */
@media (max-width: 992px) {
    .pro-intro-flex, .pro-filter-form { flex-direction: column; grid-template-columns: 1fr; }
    .pro-filter-container { margin-top: 20px; }
    .pro-intro-container { padding: 60px 5%; }
}


/**********************Property details page ************************************/
/* 1. Sticky Hero Parallax */
    .property-hero {
        height: 70vh;
        background-attachment: fixed; /* Creates the sticky/parallax effect */
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: flex-end;
        color: white;
    }

    .property-hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: linear-gradient(180deg, #ffffff00 52%, #0e1217 72%);
        opacity: 0.8;
        z-index: 1;
    }

    .hero-content { 
        position: relative;
        z-index: 2; 
        padding-bottom: 60px;
        width: 90%;
        margin: 0 auto;
    }

    /* 2. Content Structure: Main Info (Left) + Sidebar (Right) */
    .details-content-section{
        max-width: 1280px;
        margin: 0 auto;
    }
    .details-wrapper {
        display: flex;
        gap: 40px;
        padding: 60px 0;
        background: white; /* Important to cover the sticky image on scroll */
        position: relative;
        z-index: 10;
    }

    .main-column { flex: 2; }
    .sidebar-column { flex: 1; }

    /* 3. Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 30px 0;
        border: 1px solid #c7c6c6;
        border-radius: 17px;
        background-color: #8080800d;
    }

    .feature-box {
        /*border: 1px solid #eee;*/
        padding: 20px;
        text-align: left;
        border-radius: 4px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }
    .desc-points {
        display: flex;
        flex-direction: column;
    }
    .feature-box i {
        color: #c97327;
        font-size: 20px;
        margin-bottom: 10px;
        border: 1px solid #bebebe;
        background-color: #f9faff;
        border-radius: 12px;
        padding: 12px 15px;
    }
    .feature-box span { display: block; font-size: 12px; color: #888; text-transform: uppercase; }
    .feature-box strong { display: block; font-size: 16px; margin-top: 5px; }
    .desc-points{
        display: flex;
    }
    /* 4. Contact Sidebar */
    .agent-card {
        border: 1px solid #eee;
        padding: 30px;
        /*position: sticky;*/
        top: 100px;
    }

    .contact-form input, .contact-form textarea {
        width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd;
    }

    .btn-submit {
        background: var(--primary-gold);
        color: white; border: none; width: 100%; padding: 15px; font-weight: bold; cursor: pointer;
    }

    /* 5. Gallery Grid */
    .gallery-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
    .gallery-section img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; cursor: pointer; }
    
    /*schedule a tour*/
    .tour-form-container {
        background: #ffffff;
        padding: 30px;
        border: 1px solid #c7c6c6;
        border-radius: 17px;
        background-color: #8080800d;
    }
    
    .tour-form-container h3 {
        font-size: 23px;
        margin-bottom: 5px;
        color: #c97327 !Important;
        text-align: center;
    }
    
    .form-subtitle {
        font-size: 14px;
        color: #6f7182;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .tour-type-toggle {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .tour-type-toggle input[type="radio"] {
        display: none;
    }
    
    .tour-type-toggle label {
        flex: 1;
        padding: 12px;
        text-align: center;
        border: 1px solid #ebebeb;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        background: #f7f7f7;
    }
    
    .tour-type-toggle input[type="radio"]:checked + label {
        background: #ffffff;
        border-color: #1d293f;
        font-weight: 600;
    }
    
    /* Input Styling */
    .tour-form .form-group {
        margin-bottom: 15px;
    }
    
    .tour-form input, 
    .tour-form textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #ebebeb;
        border-radius: 8px;
        font-size: 14px;
        outline: none;
        box-sizing: border-box;
        border: 1px solid #bebebe;
        background-color: #f9faff;
        border-radius: 12px;
    }
    
    .btn-submit-tour {
        width: 100%;
        background: #c97327; 
        color: white;
        padding: 16px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transition: background 0.3s;
    }
    
    .btn-submit-tour:hover {
        background: #aa7f51;
    }
    .alert-success {
        background-color: #d4edda;
        color: #155724;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid #c3e6cb;
        transition: opacity 0.5s ease;
    }
    
    /* Ensure the sticky sidebar stays at the top while scrolling */
    .sidebar-column {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
    .information-card {
    text-align: center;
    border-top: 4px solid var(--primary-gold); /* Match previous styles/headers */
}

.information-card h3 {
    color: #1a1a1a;
    font-size: 20px;
    margin-bottom: 25px;
}

.company-details-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #ddd;
    padding: 2px;
}

.info-text-group {
    text-align: left;
}

.info-company-name {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin: 0 0 5px 0;
}

.info-phone, .info-email {
    font-size: 14px;
    color: #666;
    margin: 3px 0;
    /*display: flex;*/
    /*align-items: center;*/
    /*gap: 8px;*/
}

.info-phone i, .info-email i {
    color: var(--primary-gold);
    width: 15px;
}

/* --- Call Now Button (Desktop Copy / Mobile Dial) --- */
.btn-call-now {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    background-color: #c97327;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-call-now:hover {
    background-color: #aa7f51;
    border-color: #ddd;
    color: #fff;
}

.btn-call-now i {
    font-size: 16px;
}

.property-details-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.property-details-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1d293f;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 60px; /* Vertical and horizontal spacing */
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.detail-label {
    font-weight: 600;
    color: #1d293f;
    font-size: 14px;
}

.detail-value {
    color: #6f7182;
    font-size: 14px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

.features-amenities-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid #c7c6c6;
}

.features-amenities-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1d293f;
}

.features-ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    column-count: 3; /* Matches image_e77bc2.jpg layout */
    column-gap: 40px;
}

.features-ul li {
    font-size: 14px;
    color: #6f7182;
    padding-bottom: 12px;
    line-height: 1.6;
    break-inside: avoid;
}

.property-specific-img{
    margin-top: 10%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .features-ul { column-count: 2; }
}
@media (max-width: 480px) {
    .features-ul { column-count: 1; }
}


/*job application page*/
.job-application{
    margin: 5% 0;
}

/* header menu */
.main-nav .nav-toggle { display: none; }
.main-nav .nav-list { display: flex;    /* horizontal menu */ }
.mobile-nav{
    display: none;
}

/*footer section*/
.footer-light{
    background: -webkit-linear-gradient(#ffc490, #fff);
}
.row.footer-theme.partition-f {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 30px 10px;
    align-items: center;
    justify-content: space-around;
}
.footer-about-sec {
    width: 30%;
}
.footer-quick-link{
    width: 20%;
    padding-left: 30px;
}
.footer-sub-titla{
    width: 20%;
    padding-left: 30px;
}
.footer-sub-title{
    width: 30%;
}
.footer-title h2{
  color: #000;
    font-size: 25px;
}
.footer-contant ul li a{
    color: #000;
    font-size: 17px;
}
footer .footer-theme .footer-mobile-title
 {
    display: none;
}
.footer-theme .footer-logo
 {
    margin-bottom: 18px;
}
.footer-logo img {
    width: 20%;
}
footer p {
       line-height: 32px;
    letter-spacing: 0.03em;
    margin-bottom: 0;
    color: #000000 ! Important;
    font-weight: 600;
    font-size: 16px;
}
.footer-social {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer-social li {
    display: inline-block !important;
    padding-right: 45px;
}
.footer-social li a {
    color: #000;
}
.footer-theme .sub-title li {
    position: relative;
    display: inherit;
    padding-top: 13px;
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
}
.mob-ceo-info{
    display: none;
}


