/* =============================================================
   ASHFORD ESTATES — MAIN STYLESHEET
   Premium Real Estate Website
   ============================================================= */

/* ---------- 1. ROOT VARIABLES & GLOBAL RESET ---------- */
:root {
  --primary: #0B1F3A;      /* Deep navy */
  --secondary: #D4AF37;    /* Gold */
  --accent: #C49B63;       /* Warm bronze */
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --dark-text: #222222;

  --font-heading: "EB Garamond", serif;
  --font-body: "Noto Sans", sans-serif;

  --transition-base: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-soft: 0 10px 30px rgba(11, 31, 58, 0.08);
  --shadow-hover: 0 20px 45px rgba(11, 31, 58, 0.16);
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.7;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

p {
  margin: 0 0 1rem 0;
        color: #000;
    text-align: justify;
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

.mt-0{0px;}

img {
  max-width: 100%;
  display: block;
}

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

.section-padding {
  padding: 50px 0 57px;
}

.why-us-section {
    padding: 20px 0 20px;
}

.why-us-section-2 {
    padding: 20px 0 66px;
}

.service-padding {
    padding: 15px 0 40px;
}

.bg-light-section {
  background-color: var(--light-bg);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #a7712e;
  margin-bottom: 12px;
  position: relative;
  padding-left: 34px;
}

.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: #a7712e;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 1rem;
    line-height: 43px;
}
.section-heading span {
    color: #a7712e;
}


.vision-heading {
    font-size: 41px;
    margin-bottom: 1rem;
    line-height: 43px;
position: relative;
}

.vision-heading::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    width: 80px;
    border-radius: 3px;
    background-color: #b07d3c;
    bottom: -12px;
}
.vision-heading span {
    color: #a7712e;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition-base);
}

.btn-gold {
       gap: 10px;
    border: 1px solid #fffcf4;
    color: #ffffff;
    padding: 8px 27px;
    background: linear-gradient(132deg, #e7c98d 0%, #c79552 50%, #9f6d33 100%);
}

.btn-gold:hover {
    background-color: transparent;
    border-color: var(--secondary);
    color: #142a47;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-primary-dark {
    background-color: #b07c3b;
    color: #0b1f3a;
    border: 1px solid #dbb577;
    padding: 12px 25px;
    display: inline-block;
    background: linear-gradient(132deg, #e7c98d 0%, #c79552 50%, #9f6d33 100%);
}

.btn-primary-dark:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline-dark-gold {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 600;
  padding: 10px 20px;
}

.btn-outline-dark-gold:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-mark span {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  width: 90px;
  height: 90px;
  line-height: 86px;
  text-align: center;
  border-radius: 50%;
  animation: pulseLoader 1.4s ease-in-out infinite;
}

@keyframes pulseLoader {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.6; }
}
/* Top Header */
.top-header{
    background:#c89b4d;
    color:#fff;
    padding:4px 0;
    font-size:14px;
    font-weight:500;
    text-align:center;
    transition:all .3s ease;
    z-index:1051;
}

.top-header a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.top-header i{
    margin-right:5px;
}

/* Sticky */
.top-header.sticky-top-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
}

.main-header.sticky-main-header{
    position:fixed;
    top:40px; /* top header height */
    left:0;
    width:100%;
    z-index:1050;
}

/* Mobile */
@media(max-width:767px){
    .top-header{
        font-size:12px;
        line-height:1.5;
        padding:6px 10px;
    }

    .main-header.sticky-main-header{
        top:54px;
    }
}

.highlight-text {
    color: #162a48;
    font-weight: 700;
    animation: glow 1.5s infinite alternate;
    font-size: 20px;
    
}

.highlight-text a{
    color:#162a48;
    text-decoration:none;
}

.highlight-text i{
    margin-right:5px;
    animation:ring 1s infinite;
}

@keyframes glow{
    from{
        text-shadow:0 0 5px #fff;
    }
    to{
        text-shadow:0 0 15px #fff,0 0 25px #fff;
    }
}

@keyframes ring{
    0%,100%{transform:rotate(0deg);}
    20%{transform:rotate(-15deg);}
    40%{transform:rotate(15deg);}
    60%{transform:rotate(-10deg);}
    80%{transform:rotate(10deg);}
}


/* ---------- 2. HEADER ---------- */
.main-header {
  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.08);
  transition: var(--transition-base);
  padding: 0px 0;
}

.main-header.scrolled{
    position: fixed;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 600;
     padding: 0;   
}
.brand-logo img.img-fluid {
    width: 201px;
   
}



.footer-top .brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 600;
    padding: 10px;
    background: #fff;
    border-radius: 29px;
    border: 5px solid #b9b4b4;
}
.footer-top .brand-logo img.img-fluid {
    width: 230px;
    padding: 4px;
}


.navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0;
    }

.brand-logo em {
  font-style: italic;
  color: var(--secondary);
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--secondary);
}

.main-nav-list {
  gap: 6px;
}

.main-nav-list .nav-link {
    color: #0a1746 !important;
    font-weight: 600;
    padding: 10px 16px !important;
    position: relative;
    font-size: 16px;
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}

.main-nav-list .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.main-nav-list .nav-link:hover::after,
.main-nav-list .nav-item.show .nav-link::after {
  transform: scaleX(1);
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.icon-btn:hover {
  background: rgba(11, 31, 58, 0.08);
  color: var(--secondary);
}

.navbar-toggler {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
}


/*book visit*/
/* Fixed Right Side Book Site Visit Button */
.book-site-visit {
    position: fixed;
    right: -81px;
    top: 50%;
    transform: translateY(-206%) rotate(90deg);
    transform-origin: center;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c79552;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 9px 33px;
    transition: .3s ease;
    clip-path: polygon(0px 0px, 100% 0px, 85% 100%, 15% 100%);
    background: linear-gradient(152deg, #e7c98d 0%, #bd8842 50%, #9f6d33 100%);
}



.book-site-visit-1 {
    position: fixed;
    left: -85px;
    top: 50%;
    transform: translateY(-202%) rotate(90deg);
    transform-origin: center;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c79552;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 10px 11px;
    transition: .3s ease;
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0% 100%);
    background: linear-gradient(152deg, #e7c98d 0%, #bd8842 50%, #9f6d33 100%);
}




/* Hover */
.book-site-visit:hover{
    background: #d96c00;
    color: #fff;
    
}

.book-site-visit:hover::before{
    border-right-color:#d96c00;
}

.book-site-visit:hover::after{
    border-left-color:#d96c00;
}

/* Mobile */
@media(max-width:768px){
    .book-site-visit {
        right: -86px;
        font-size: 13px;
        padding: 7px 43px;
        top: 61%;
    }

    .book-site-visit::before,
    .book-site-visit::after{
        border-top-width:21px;
        border-bottom-width:21px;
    }
}
/*book visit end*/


/* Properties Dropdown (simple) */
.property-dropdown {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    padding: 14px 10px;
    min-width: 260px;
    background: #c79552;
}

.property-dropdown .dropdown-header {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
}

.property-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.92rem;
        border-bottom: 1px dashed #333;
}

.property-dropdown .dropdown-item i {
  color: #fff;
  font-size: 1rem;
}

.property-dropdown .dropdown-item:hover,
.property-dropdown .dropdown-item:focus {
      background: #142948;
    color: #ffffff;
}

.property-dropdown .dropdown-divider {
  margin: 6px 10px;
}


/* Submenu Parent */
.dropdown-submenu {
    position: relative;
}

/* Right Side Submenu */
.dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    min-width: 230px;
    margin: 0;
    padding: 8px 0;
    background: #c79552;
}

/* Desktop Hover */
@media (min-width: 992px) {

    .dropdown-submenu:hover > .submenu {
        display: block;
    }

}

/* Arrow */
.submenu-arrow {
    float: right;
    font-size: 12px;
    margin-top: 5px;
}

/* Mega Menu (legacy, unused) */
.mega-dropdown {
  position: static;
}

.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0;
  border: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-hover);
  padding: 40px 60px;
}

.mega-title {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-bg);
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-text);
  padding: 10px 0;
  font-size: 0.95rem;
}

.mega-list li a i {
  color: var(--accent);
}

.mega-list li a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.mega-feature {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mega-feature img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.mega-feature-body {
  background: var(--light-bg);
  padding: 16px;
}

.badge-gold {
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.mega-feature-body h6 {
  margin: 10px 0 6px;
}

.mega-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Search Modal */
.search-modal-content {
  background: var(--primary);
  border-radius: var(--radius-lg);
  border: none;
}

.search-form {
  color: var(--white);
  font-size: 1.4rem;
}

.search-input {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

/* Mobile Offcanvas */
.mobile-offcanvas{
    background:#081c3a;
    width:320px;
}

.mobile-nav-list{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-nav-list li{
    list-style:none;
}




.mobile-nav-list>li>a,
.mobile-accordion-toggle{

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#fff;
    text-decoration:none;

    padding:15px 0;

    border-bottom:1px solid rgba(255,255,255,.1);

    font-size:16px;
    font-weight:500;

}

.mobile-nav-list>li>a:hover,
.mobile-accordion-toggle:hover{

    color:#d4af37;

}

.mobile-submenu{

    list-style:none;
    padding:0;
    margin:0;

}

.mobile-submenu li a{

    display:block;

    padding:10px 20px;

    color:#cfcfcf;

    text-decoration:none;

    font-size:15px;

}

.mobile-submenu li a:hover{

    color:#d4af37;

}

.mobile-accordion-toggle i{

    transition:.3s;

}



.mobile-nav-list li a{
    display:block;
    text-decoration:none;
    color:#fff;
    padding:14px 0;
    position:relative;
    z-index:9999;
    pointer-Events:auto;
}

.mobile-offcanvas{
    z-index:99999;
}

.offcanvas-body{
    overflow-y:auto;
}



.mobile-accordion-toggle[aria-expanded="true"] i{

    transform:rotate(180deg);

}
/* ---------- 3. HERO SLIDER ---------- */
.hero-slider {
  position: relative;
/*  height: calc(100vh - 88px);*/
  height: 700px;
    top: 0px;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  height: 100%;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--white);
  animation: heroFadeUp 1s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 6px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  padding: 14px 32px;
}

.hero-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition-base);
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
}

.carousel-control-prev:hover .hero-arrow,
.carousel-control-next:hover .hero-arrow {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
}

.hero-indicators {
  bottom: 40px;
}

.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  opacity: 1;
}

.hero-indicators button.active {
  background-color: var(--secondary);
  width: 30px;
  border-radius: 6px;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.6rem;
  z-index: 3;
  animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- 4. ABOUT SECTION ---------- */
.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-exp-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border: 3px solid #b27e3c;
}

.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #c79556;
  font-weight: 700;
  line-height: 1;
}

.exp-label {
    font-size: 15px;
    color: #fff;
}

.about-points i {
    font-size: 38px;
    color: #b07e40;
    display: block;
    margin-bottom: 8px;
}
.brd-lft{border-right: 1px solid #c89c61;}

.brd-lft-1 {
    border-right: 1px dashed #917652;
    margin-right: -23px;
}

.about-points p {
    font-weight: 600;
    color: #142b49;
    margin-bottom: 0;
    font-size: 17px;
    text-align: center;
}

/* ---------- 5. COUNTER SECTION ---------- */
.counter-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 0;
}

.counter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.88);
}

.counter-box i {
  font-size: 2.2rem;
  color: #c89656;
  margin-bottom: 3px;
  display: inline-block;
}

.counter-box h3 {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 700;
}

.counter-box p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
    text-align: center;
}



/***

====================================================================
    Services Section
====================================================================

***/
.services-section{
    padding:48px 0;
}

.section-title span {
    color: #a7712e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0px;
    font-size: 13px;
}

.section-title h2 {
    font-family: "EB Garamond", serif;
    font-size: 41px;
    font-weight: 700;
    color: #0d223a;
    margin-bottom: 30px;
    position: relative;
}
.section-title h2 span.servc {
    display: inline-block;
    font-size: 41px;
    text-transform: capitalize;
    font-weight: 700;
}

.section-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    width: 80px;
    border-radius: 3px;
    background-color: #b07d3c;
    bottom: -12px;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: .4s;
    position: relative;
    border: 1px solid #b17f41;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 47%);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-image{
    position: relative;
    overflow: hidden;
    margin: 12px;
    border-radius: 20px;
}

.service-image img{
    width:100%;
    height:320px;
    object-fit:cover;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 83%, 0% 0%, 0% 100%, 0 68%);
}

/*
.service-card:hover .service-image img{
    transform: scale(1.08);
}
*/

.service-icon{
    position:absolute;
    top:18px;
    left:18px;
    width:58px;
    height:58px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#0d223a;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.service-content{
    padding:10px 22px 22px;
}

.service-content h3 {
    font-family: "EB Garamond", serif;
    font-size: 23px;
    color: #132a49;
    margin-bottom: 16px;
    line-height: 22px;
    font-family: "Noto Sans", sans-serif;
    text-align: center;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.service-content p{
    color:#666;
    font-size:16px;
    line-height:30px;
    margin-bottom:28px;
}

.service-btn {
    /* height: 50px; */
    border: 1px solid #1a1919;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 4px;
    color: #132a49;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
    font-family: "Raleway", sans-serif;
    width: 170px;
    margin: 0px auto;
    gap: 13px;
}
.service-btn span {
    width: 42px;
    height: 42px;
    background: #af7c3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: .4s;
}

.service-card:hover .service-btn{
    background:#0d223a;
    color:#fff;
}

.service-card:hover .service-btn span{
    background:#af7c3b;
    transform:rotate(-45deg);
}

@media(max-width:991px){

.section-title h2{
    font-size:42px;
}

.service-image img{
    height:260px;
}

}

@media(max-width:767px){

.services-section{
    padding:38px 0;
}

.section-title h2{
    font-size:27px;
}
    .section-title h2 span.servc {
    font-size: 27px;
}

.service-content h3{
    font-size:20px;
}
    .service-btn {
    padding: 0px 0px;
    width: 132px;
    font-size: 13px;
}
    .service-btn span {
    width: 30px;
    height: 30px;
}
    
    .vm-card p {
    font-size: 14px;
}
    .feature-card p {
    font-size: 14px! important;
}

}
/***

====================================================================
    Services Section
====================================================================

***/






/* ---------- 6. VISION & MISSION ---------- */
.vm-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 37px 40px;
    height: 100%;
    transition: var(--transition-base);
    border: 1px solid transparent;
    box-shadow: inset 0px 0px 190px #dfbc7e;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
    background: #ca985a;
}

.vm-card-alt {
    background: #142b4a;
    box-shadow: inset 0px 0px 56px #dab47500;
}

.vm-card-alt h3,
.vm-card-alt p {
  color: var(--white);
}

.vm-icon {
    font-size: 2.8rem;
    color: #dfa037;
    margin-bottom: 20px;
    display: inline-block;
    border: 3px solid #bf7d30;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 62px;
    border-radius: 12px;
}

.vm-card h3 {
  margin-bottom: 16px;
}

/* ---------- 7. WHY CHOOSE US ---------- */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    box-shadow: inset 0px 0px 50px #e0bd80;
    transition: var(--transition-base);
    border-bottom: 3px solid #d4aa6a;
    /* border: 1px solid #c3914f; */
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--secondary);
}

.feature-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-base);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--secondary);
}

.feature-card:hover .feature-icon {
  background: #aa783b;
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: #132a49;
}

.feature-card p {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}

/* ---------- 8. PROJECT CARDS ---------- */
.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0px 0px 10px #817e7e;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.12);
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-ready {
  background: #1f7a4d;
  color: var(--white);
}

.status-progress {
  background: var(--secondary);
  color: var(--primary);
}

.project-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-body span {
    font-weight: 600;
    font-size: 18px;
    color: #a7712e;
    padding-bottom: 7px;
}

.project-body h5 {
    margin-bottom: 6px;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: #132a49;
}

.project-loc {
    color: #000000;
    font-size: 16px;
    margin-bottom: 12px;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: #555;
}

.project-meta li {
  margin-bottom: 6px;
}

.project-meta i {
  color: var(--secondary);
  margin-right: 6px;
}

.project-price span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.rera-no {
  font-size: 0.72rem;
  color: #999;
  margin-bottom: 14px;
}

/* ---------- 9. UPCOMING PROJECTS ---------- */
.upcoming-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
  height: 100%;
}

.upcoming-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.upcoming-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.upcoming-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.upcoming-card:hover .upcoming-img-wrap img {
  transform: scale(1.1);
}

.coming-soon-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  border: 1px solid var(--secondary);
}

.upcoming-body {
  padding: 22px;
}

.upcoming-body h5 {
  margin-bottom: 6px;
}

.upcoming-meta {
  font-size: 0.85rem;
  color: #555;
}

.upcoming-meta i {
  color: var(--secondary);
  margin-right: 4px;
}

/* ---------- 10. AWARDS SLIDER ---------- */
.award-carousel {
  padding-bottom: 10px;
}

.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.award-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.award-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.award-card:hover .award-img-wrap img {
  transform: scale(1.1);
}

.award-year {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--secondary);
}

.award-body {
  padding: 26px;
  text-align: center;
}

.award-body h5 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.award-body p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
}

.award-arrow {
  width: 46px;
  height: 46px;
  border-color: var(--primary);
  color: var(--primary);
  font-size: 1.1rem;
}

.award-arrow:hover,
.carousel-control-prev:hover .award-arrow,
.carousel-control-next:hover .award-arrow {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
}

.award-indicators {
  position: static;
  margin-top: 34px;
}

.award-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d8d8d8;
  border: none;
  opacity: 1;
}

.award-indicators button.active {
  background-color: var(--secondary);
  width: 28px;
  border-radius: 6px;
}

/* ---------- 11. CLIENTS MARQUEE ---------- */
.client-marquee {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  gap: 60px;
  align-items: center;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #9aa4b2;
    white-space: nowrap;
    transition: var(--transition-base)
all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 1px 0px 8px #666;
}

.client-logo i {
  font-size: 1.6rem;
}

.client-logo:hover {
  color: var(--primary);
  transform: scale(1.08);
}



.conatct-section-two {
    position: relative;
}
.conatct-section-two .outer-box {
    position: relative;
    background-color: #fff;
}
.conatct-section-two .outer-box .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.3;
    z-index: 0;
}

.conatct-section-two .outer-box .image-column .inner-column {
        margin-right: 0;
    }

.conatct-section-two .outer-box .image-column .inner-column {
    position: relative;
/*    margin-right: -65px;*/
    height: 100%;
}

.conatct-section-two .outer-box .image-column .inner-column .image {
    width: 100%;
    height: 100%;
}

.conatct-section-two .outer-box .image-column .inner-column .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.conatct-section-two .outer-box .image-column .inner-column .info-box {
    position: absolute;
    bottom: 37px;
    left: 233px;
    padding: 65px 25px 65px;
    border-radius: 20px;
    background-color: rgba(54, 54, 54, 0.92);
    /* font-family: "Raleway", sans-serif; */
    border: 5px solid #c9bfad;
    backdrop-filter: blur(4px);
}
/*
.conatct-section-two .outer-box .image-column .inner-column .info-box .info:first-child {
    margin-bottom: 35px;
    border-bottom: 1px dashed #ba8848;
    padding-bottom: 34px;
}
*/
.conatct-section-two .outer-box .image-column .inner-column .info-box .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
        margin-bottom: 35px;
    border-bottom: 1px dashed #ba8848;
    padding-bottom: 34px;
}
.icnadrs{width: 100px! important;}

.conatct-section-two .outer-box .image-column .inner-column .info-box .info .icon {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    /* background-color: #333; */
    line-height: 50px;
    color: #ffffff;
    font-size: 27px;
    font-weight: 400;
    text-align: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid #fff;
    border-radius: 13px;
}


.conatct-section-two .outer-box .image-column .inner-column .info-box .info .content span {
    color: #edbe84;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 19px;
}

.conatct-section-two .outer-box .image-column .inner-column .info-box .info .content .title {
    line-height: 28px;
    color: #fff;
    margin-bottom: 0;
        font-size: 17px;
}

.conatct-section-two .outer-box .image-column .inner-column .info-box .info .content .title a {
    color: #fff;
}


.conatct-section-two .outer-box .form-column .inner-column {
    padding: 110px 43px;
    padding-right: 119px;
}

.conatct-section-two .outer-box .form-column .inner-colum-form {
    padding: 51px 80px;
    padding-right: 60px;
}

.conatct-section-two .outer-box .form-column .inner-column h2 {
    font-size: 39px;
    line-height: 37px;
}


.conatct-section-two .outer-box .form-column .inner-column .sec-title {
    margin-bottom: 30px;
}

.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--sec-title-subtitle-font-family);
    letter-spacing: 1.4px;
    line-height: var(--sec-title-subtitle-line-height);
    padding-left: 0px;
    text-transform: uppercase;
    color: #ac7a3d;
    margin-bottom: 10px;
}

.conatct-section-two .outer-box .form-column .inner-column .sec-title .title {
    margin-bottom: 0;
    max-width: 355px;
}

.conatct-section-two .outer-box .form-column .inner-column .form-box .inner-box {
    max-width: 100%;
}
.conatct-section-two .outer-box .form-column .inner-column .form-box .inner-box .form-clt {
    margin-bottom: 15px;
}

.conatct-section-two .outer-box .form-column .inner-column .form-box .inner-box .form-clt input, .conatct-section-two .outer-box .form-column .inner-column .form-box .inner-box .form-clt textarea {
    border-radius: 26px;
    border: 1px solid #be8c4b;
    padding: 20px;
    height: 54.8px;
    background-color: transparent;
    width: 100%;
    color: #131314;
    font-size: 16px;
    font-weight: 400;
    background-color: #eee;
    border-bottom: 4px solid #b38142;
}


.conatct-section-two .outer-box .form-column .inner-column .form-box .inner-box .form-clt select {
        border-radius: 26px;
    border: 1px solid #be8c4b;
    padding: 11px;
    height: 54.8px;
    background-color: transparent;
    width: 100%;
    color: #757578;
    font-size: 16px;
    font-weight: 400;
    background-color: #eee;
    border-bottom: 4px solid #b38142;
}


.txtarea{height: 100px! important;}

.conatct-section-two .outer-box .form-column .inner-column .form-box .inner-box .theme-btn {
    border-radius: 50px;
    background-color: #333;
    color: #fff;
    height: 50.4px;
    width: 173px;
    font-size: 14px;
    border: 1px solid #000;
}

.btn-style-three:before {
    background-color: #333;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

/* ---------- 12. TESTIMONIALS ---------- */
.testimonial-card {
  max-width: 720px;
  text-align: center;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 26px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.testimonial-author h6 {
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--accent);
}

.testimonial-indicators {
  position: static;
  margin-top: 30px;
}

.testimonial-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
}

.testimonial-indicators button.active {
  background-color: var(--secondary);
  width: 28px;
  border-radius: 6px;
}

/* ---------- 13. CTA SECTION ---------- */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 77%);
}

.brdsect {
    border: 1px solid #fff;
    margin: 0px auto;
    padding: 43px;
    width: 948px;
    border-radius: 33px;
    background: #171c224f;
    /* background-color: rgba(0, 0, 0, 0.3); */
    backdrop-filter: blur(4px);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.6rem;
  max-width: 800px;
  margin: 0 auto 18px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
    text-align: center;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 14. BLOG ---------- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0px 0px 10px #b9b6b6;
    height: 100%;
    transition: var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-img-wrap {
  height: 220px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.1);
}

.blog-body {
  padding: 26px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}
.blog-body h5 {
    margin: 12px 0;
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: "Raleway", sans-serif;
    color: #000;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: #132a49;
}

.blog-body p {
  font-size: 0.9rem;
  color: #000;
}

.blog-readmore {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-readmore:hover {
  color: var(--secondary);
}

/* ---------- 15. CONTACT SECTION ---------- */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-info-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-card h5 {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info-card h5:first-child {
  margin-top: 0;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 50px;
}

.contact-form-card .form-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-success-msg {
  color: #1f7a4d;
  font-weight: 600;
}

/* ---------- 16. FOOTER ---------- */
.site-footer {
    background-image: url(../img/footer-bg-1.jpg);
    background-size: cover;
/*  background: #32302e;*/
  color: rgba(255, 255, 255, 0.75);
  padding-top: 80px;
        background-position: bottom;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 9px;
    margin-left: 30px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
}

.footer-heading {
    color: var(--white);
    /* font-family: var(--font-heading); */
    font-size: 21px;
    margin-bottom: 32px;
    position: relative;
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
}

.footer-heading:before {
    position: absolute;
    content: "";
    left: 0;
    top: 34px;
    width: 52px;
    height: 1px;
    background-color: #e3e5eb;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    border-bottom: 1px dashed #dfdbdb;
    padding-bottom: 3px;
}
.footer-links a {
  color: #fff;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
}

.newsletter-form input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: var(--secondary);
  border: none;
  width: 44px;
  border-radius: 50%;
  color: var(--primary);
}

.footer-bottom {
    margin-top: 0px;
    padding: 14px 0;
    background: rgb(32 31 31 / 62%);
    font-size: 15px;
        color: #fff;
}

.footer-bottom p.mb-0 {
    color: #fff;
        text-align: center;
}

/* ---------- 17. FLOATING BUTTONS ---------- */
.floating-btn {
  position: fixed;
  right: 26px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  z-index: 900;
  box-shadow: var(--shadow-hover);
  border: none;
  transition: var(--transition-base);
}

.whatsapp-btn {
  background: #25D366;
  bottom: 100px;
  left: 26px;
}

.call-btn {
  background: var(--primary);
  bottom: 170px;
  left: 26px;
}

.back-to-top-btn {
  background: #d5a160;
  color: var(--primary);
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn:hover {
  transform: scale(1.1);
}

/* ---------- 18. AOS-STYLE SIMPLE ANIMATIONS ---------- */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-left"] { transform: translateX(-40px); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}



/* about us page */
.about-hero {
    padding: 173px 0 101px 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    height: 466px;
    margin-top: 0px;
}

.visn-misn{padding: 45px 0 60px;}

/* residental page */
.residentail {
    padding: 50px 0 60px;
}

.legacy {
    font-size: 41px;
    margin-bottom: 1rem;
    line-height: 43px;
    position: relative;
    color: #fff;
}

.feature-icon-3 img.img-fluid {
    width: 67px;
    margin: 0px auto;
    padding-bottom: 19px;
}

.lifestyle ul {
    display: grid;
    gap: 15px;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(5, 1fr);
}

.lifestyle ul li img {
    margin: 0px auto;
    width: 61px;
    background: #142a48;
    border-radius: 35px;
}
.lifestyle ul li {
    margin: 0px auto;
    list-style-type: none;
    border: 1px solid #142947;
    padding: 11px;
    border-radius: 18px;
    width: 196px;
    text-align: center;
    height: 139px;
}


.lifestyle-2 ul li {
    margin: 0px auto;
    list-style-type: none;
    border: 1px solid #142947;
    padding: 11px;
    border-radius: 18px;
    width: 196px;
    text-align: center;
    height: 190px;
}

table.table {
    width: 100%;
}
.border-t-body tr td {
    border: 1px solid #000000;
    font-size: 17px;
}
.speci ul {
    padding: 0;
}

.speci ul li {
    list-style-type: none;
    color: #000;
    font-weight: 500;
}

.project-body-2 h5 {
    margin-bottom: 6px;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: #132a49;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 63px;
}

.project-body-2{padding: 22px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;}

.project-card-2 {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0px 0px 10px #817e7e;
    transition: var(--transition-base);
     height: 100%; 
    display: flex;
    flex-direction: column;
}


.down {
    margin-top: 4px;
}

/*------table css---------------*/
    table{
        width:100%;
        border-collapse:collapse;
        margin-bottom:18px;
            font-family: var(--font-heading);
    }

.section-title-table {
    background: #b4803e;
    color: #fff;
    text-align: left;
    font-weight: bold;
    font-family: var(--font-heading);
    font-size: 19px;
    text-align: center;
}
th, td {
    border: 1px solid #152a47;
    padding: 9px 8px;
    font-size: 17px;
    text-align: center;
    color: #000;
}

.sub-title{
    background:#efefef;
    font-weight:bold;
}

.left{
    text-align:left;
}

.highlight{
    font-weight:bold;
    color:#000000;
}
.payment-wrapper{
        max-width:100%;
        margin:auto;
    }

 .main-title {
    background: #b4803e;
    color: #fff;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 7px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}



.table-responsive{
    width:100%;
    overflow-x:auto;
}

.price-table{
    width:100%;
    border-collapse:collapse;
    text-align:center;
}

.price-table th {
    background: #b4803e;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 8px;
    line-height: 1.2;
    border: 1px solid #152a47;
}

.price-table td {
    padding: 10px 8px;
    font-size: 17px;
    color: #000000;
    border: 1px solid #152a47;
    vertical-align: middle;
    line-height: 1.25;
}

.price-table td:first-child{
    font-weight:600;
    white-space:nowrap;
}

.price-table .price{
    font-weight:700;
    white-space:nowrap;
}

tr.total-row {
            background-color: #e6e6e6;
            font-weight: bold;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        tr.total-row td {
            padding: 16px 24px;
        }
.left-col {
            width: 50%;
            font-weight: 600;
            text-align: left;
            vertical-align: top;
            padding: 10px 12px;
            line-height: 2.1;
        }

        .right-col {
            width: 50%;
            font-weight: 600;
            text-align: left;
            vertical-align: top;
            padding: 10px 12px;
            line-height: 2.1;
        }

@media(max-width:768px){

.price-table th,
.price-table td{
    font-size:13px;
    padding:8px 6px;
}

}

.price-section {
    width: 100%;
        font-family: var(--font-heading);
}

/* Main Heading */
.price-heading {
        background: #b4803e;
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 15px;
    margin-bottom: 14px;
}

/* Unit Options */
.unit-options {
    display: flex;
    gap: 22px;
    justify-content: space-between;
    margin-bottom: 13px;
}

.unit-box {
    flex: 1;
    border: 1px solid #142b49;
    padding: 8px 10px;
    text-align: center;
    min-height: 47px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.unit-box strong {
    font-size: 14px;
    color: #111;
}

.unit-box span {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

/* Floor Title */
.floor-title {
    width: fit-content;
    margin: 0 auto 12px;
        background: #b4803e;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    padding: 7px 24px;
    text-align: center;
}
.payment-section {
    width: 100%;
}

/* Payment Table */
.payment-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.payment-table td {
    border: 1px solid #142c49;
    padding: 6px 38px;
    height: 29px;
    color: #000000;
    font-size: 17px;
    /* font-weight: 600; */
    vertical-align: middle;
}

.payment-table td:first-child {
    width: 56%;
}

.payment-table td:last-child {
    width: 44%;
    text-align: center;
}

/* Additional Charges Heading */
.additional-title {
    margin-top: 14px;
    margin-bottom: 9px;
}

/* Charges Grid */
.charges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Charges Table */
.charges-table {
    width: 100%;
}

.charge-row {
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid #152a47;
    min-height: 29px;
    align-items: center;
}



.charge-row div {
    padding: 6px 38px;
    color: #000000;
    font-size: 13px;
}



/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    

    .payment-table {
        min-width: 650px;
    }

    .payment-table td {
        padding: 6px 15px;
        font-size: 12px;
    }

    .charges-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .charge-row div {
        padding: 6px 15px;
        font-size: 12px;
    }

}

.pre-launch-section {
    width: 100%;
    
}

/* Main Heading */
.pre-launch-title {
    background: #b4803e;
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    padding: 2px 10px;
    margin-bottom: 17px;
}

/* Table */
.pre-launch-table {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
    table-layout: fixed;
}

.pre-launch-table th,
.pre-launch-table td {
    border: 1px solid #162b48;
    text-align: center;
    vertical-align: middle;
}

/* Header */
.pre-launch-table th {
    background: #e4e7e9;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
    padding: 6px 8px;
}

.pre-launch-table th span {
    font-size: 14px;
}

.pre-launch-table th small {
    font-size: 12px;
}

/* Body */
.pre-launch-table td {
    padding: 8px 10px;
    font-size: 17px;
    color: #000;
}

/* Alternate Rows */
.pre-launch-table tbody tr:nth-child(odd) {
    background: #d3d5d6;
}

.pre-launch-table tbody tr:nth-child(even) {
    background: #f8f8f8;
}

/* Column Widths */
.pre-launch-table th:nth-child(1),
.pre-launch-table td:nth-child(1) {
    width: 31%;
}

.pre-launch-table th:nth-child(2),
.pre-launch-table td:nth-child(2) {
    width: 20%;
}

.pre-launch-table th:nth-child(3),
.pre-launch-table td:nth-child(3) {
    width: 22%;
}

.pre-launch-table th:nth-child(4),
.pre-launch-table td:nth-child(4) {
    width: 27%;
}

/* Bottom Offer */
.limited-offer {
    text-align: center;
    font-size: 20px;
    color: #0b1f3a;
    margin-top: 24px;
    font-weight: 700;
}

.costing-btn {
    display: inline-block;
    min-width: 230px;
    padding: 11px 20px;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    border: 0px solid #aaa;
    border-radius: 15px;
    font-size: 15px;
    text-align: center;
    /* box-shadow: 0 2px 0 #e9a100; */
}

  .costing-btn:hover {
    color: #fff !important;
    background: #111;
  }


/*--------table css end---------------------*/

/*-----------------------video-----*/
.vdbt {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #000;
    border: 3px solid #a7712e;
    border-radius: 23px;
}

.vdbt video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}
/*--------------------video end-------*/


/*---------------------*/
.amenities-map{
    font-family: Arial, sans-serif;
    color:#333;
}

.amenities-list{
    display:flex;
    gap:50px;
    margin-bottom:30px;
}

.amenities-list .column{
    flex:1;
}

.amenities-list ol{
    margin:0;
    padding-left:25px;
}

.amenities-list li{
    margin-bottom:8px;
    line-height:1.5;
}

.tower-legend{
    display:flex;
    gap:80px;
    flex-wrap:wrap;
}

.legend-column div{
    display:flex;
    align-items:center;
    margin-bottom:10px;
    font-size:16px;
}

.dot{
    width:18px;
    height:18px;
    border-radius:50%;
    display:inline-block;
    margin-right:10px;
}

.t1{background:#b7d800;}
.t2{background:#ff0033;}
.t3{background:#7dd3fc;}
.t4{background:#ff66b2;}
.t5{background:#ffb300;}
.t6{background:#ff3366;}
.t7{background:#f7ea00;}
.c1{background:#c85cff;}
.c2{background:#ff8c1a;}
.g{background:#33cc33;}

/*-----------------------*/


/*--------------------------rera css---------*/
.rera-section{
    padding:15px 0;
}

.rera-table{
    width:70%;              /* width kam */
    margin:0 auto;          /* center */
    border-collapse:collapse;
    border:1px solid #2c3e50;
}

.rera-table th{
    background:#b78442;
    color:#fff;
    text-align:center;
    padding:3px;
    font-size:24px;
    font-weight:600;
}

.rera-table td{
    width:50%;
    padding:10px;
    font-size:21px;
    font-weight:600;
    border:1px solid #2c3e50;
    background:#fff;
}

@media(max-width:768px){
    .rera-table{
        width:100%;
    }

    .rera-table td{
        display:block;
        width:100%;
        border-bottom:1px solid #2c3e50;
    }
}
/*------------------rera css end-------------------*/


/*--------gallery css--------------*/
/* =========================
   GALLERY
========================= */

.gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
        border: 4px solid #c89b4d;
        border-radius: 14px;
}

/* Overlay */
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    opacity:0;
    transition:.5s;
        border: 4px solid #c89b4d;
}

/* Shine */
.gallery-overlay::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );
    transform:skewX(-25deg);
}

.gallery-item:hover .gallery-overlay::before{
    animation:shine 1s linear;
}

@keyframes shine{
    100%{
        left:180%;
    }
}

.gallery-content{
    position:relative;
    z-index:2;
    transform:translateY(20px);
    transition:.4s;
}

.gallery-content h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-top:15px;
}

.gallery-content p {
    color: #ffb400;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.zoom-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#ab7c0a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:24px;
    transition:.4s;
}

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

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-content{
    transform:translateY(0);
}

.gallery-item:hover .zoom-icon{
    transform:rotate(360deg);
}

/* =========================
   FANCYBOX POPUP
========================= */

.fancybox__container{
    --fancybox-bg: rgba(0,0,0,.92);
}

/* Close Button */

.fancybox__button--close{
    background:#ffb400 !important;
    border-radius:50%;
    transition:.4s;
}

.fancybox__button--close:hover{
    transform:rotate(90deg) scale(1.1);
    box-shadow:
    0 0 10px #ffb400,
    0 0 20px #ffb400,
    0 0 40px #ffb400;
}

/* Prev Next Buttons */

.fancybox__nav .f-button{
    background:#ffb400 !important;
    border-radius:50%;
    width:60px;
    height:60px;
    transition:.4s;
}

.fancybox__nav .f-button:hover{
    transform:scale(1.1);
    box-shadow:
    0 0 10px #ffb400,
    0 0 20px #ffb400,
    0 0 40px #ffb400;
}

/* Caption */

.fancybox__caption{
    text-align:center;
    font-size:18px;
    font-weight:600;
}
/*-------------gallery css end----------------------*/

#ready-to-move
{
    scroll-margin-top: 330px;
}


#under-construction {
    scroll-margin-top: 350px;
}
