

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
:root {
            --color1: #896f46;
            --color2: #1c1c1c;
    --color3: #baa26f;
     --alt-bg: #d7f8f1; /* subtle alternate wide background */
      --accent: #d4b370;
            --font1:"Cinzel", serif;
            --font2:"Spectral", serif;
            
        }
        html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-thumb {
  background: var(--color1);
  border-radius: 4px;
}
   html {
    scroll-behavior: auto !important;
  }
body {
            font-family: var(--font1); 
            color: #333;
            font-size: 15px;
            text-align: justify;
            
        }

        @media(max-width:769px)
        {
          body{text-align: center;}
        }


a{text-decoration: none;}
        img { display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font1); 
  font-weight:500;
 
  margin: 0;
}
ul { margin: 0; padding: 0; list-style: none; }
.container { width: 75%; max-width: 100%; }
@media (max-width: 1401px) {
   .container {
        width: 80%;
    }
}
@media (max-width: 1204px) {
   .container {
        width: 95%;
    }
}

figcaption, figure{margin: 0; padding: 0;}


.cr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.top-div1{padding-top: 10px; padding-bottom: 10px;   width: 100%;
  background: #fff;
; /* or your original background */
  position: relative;
  z-index: 2001;
  transform: translateY(0); /* start in view */
  transition: transform 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;}

/* When header becomes fixed */
.top-div1.fixed {
  position: fixed;
  top: 0;
  left: 0;
  padding: 5px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform-origin: top;
  backface-visibility: hidden;
  animation: flipDown 1.6s ease forwards;
}

@keyframes flipDown {
  0% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}


/* Optional: shrink logo and text */
.top-div1.fixed .logo-left img {
  height: 60px; /* smaller logo on scroll */
  transition: height 0.5s ease;
  
}

.top-div1.fixed .top-link a,
.top-div1.fixed .enq-no a {
  font-size: 16px; /* smaller text on scroll */
  transition: font-size 0.5s ease;
}

.top-right{column-gap: 20px;}

.top-link {
  list-style: none;
  padding: 0;
  margin: 0;
}



.top-link li:not(:last-child)::after {
  content: "+";
  margin: 0 10px;
  color: var(--color2); /* #1c1c1c */
  font-weight: 500;
}

.top-link a {
  color: var(--color2); /* normal */
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-link a:hover,
.top-link a.active {
  color: var(--color1); /* hover & active */
}

.enq-now{border-left: 1px solid #e5e5e5; padding-left: 20px; padding-top: 10px; padding-bottom: 10px;}
.enq-tit{font-size: 15px; color:var(--color1);}
.enq-no a{color:var(--color2); font-size: 18px;}

/* Initial header */
.top-div1 {
  

}





.banner-slide {
  position: relative;
  height: 100vh; /* full screen */
  overflow: hidden;
}
.banner-figure{height: 100%;}
.banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  color: #ffffff;
}

.banner-hd {
  font-size: 3.2rem;
  font-weight: 500;
}

.banner-content p {
  font-size: 1.4rem;
  margin-top: 10px;
}

/* Round white arrow buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

/* Position */
.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

/* Arrow icon color = --color2 */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: none;
  background-image: none;
  width: 20px;
  height: 20px;
}

/* Custom arrow using CSS */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color2);   /* #1c1c1c */
  border-right: 2px solid var(--color2);
}

.carousel-control-prev-icon::after {
  transform: rotate(-135deg);
}

.carousel-control-next-icon::after {
  transform: rotate(45deg);
}

/* Hover polish */
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #f2f2f2;
}

/* Responsive text */
/* Tablet */
@media (max-width: 991px) {

.banner-slide{
height:100vh;
}

.banner-figure{height: 100%; }
.banner-img{height: 100vh;}

.banner-hd{
font-size:2.2rem;
}

.banner-content p{
font-size:1.1rem;
}

}

/* Mobile */
@media (max-width: 768px) {

.banner-slide{
height:100vh;
}

.banner-content{
left:6%;
right:6%;
}

.banner-hd{
font-size:1.7rem;
}
.banner-content {background: rgba(0,0,0,.5);  padding: 5px; width: auto; display: inline-block; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); right: unset;  }
.banner-content p{margin-top: -2px; margin-bottom: 0;}
  /* .carousel-control-prev, .carousel-control-next{top: 2%; transform: translateY(-0%);} */

.banner-content p{
font-size:1rem;
}

.carousel-control-prev,
.carousel-control-next{
width:42px;
height:42px;
z-index: 1000;
}

}

/* Small Mobile */
@media (max-width: 480px) {

/* .banner-slide{
height:auto;
}
.banner-figure{height: auto;}
.banner-img{height: auto;} */

.banner-hd{
font-size:1.4rem;
}

.banner-content p{
font-size:.9rem;
}

.carousel-control-prev,
.carousel-control-next{
width:36px;
height:36px;
}

}


.wel-div1{padding-top: 90px; padding-bottom: 90px; min-height: 100vh; position: relative;
  z-index: 1000;
  background-color: #ffffff; will-change: transform, opacity; /* improve rendering */ }

.wel-div1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  z-index: -1; /* behind the content */
}

  
.wel-div1 .container-fluid{padding-left: 5%; padding-right: 5%;}
.wel-div1 h1{font-size: 22px; font-weight: 500; color:var(--color1); margin-bottom: 10px;}
.wel-div1 h2{font-size: 33px; font-weight: 500; color:var(--color2); margin-bottom: 10px;}
.wel-div1 h3{font-size: 14px; font-weight: 500; color:var(--color1)}
.img-det{margin-top: 10px;}
.wel-right1{column-gap: 80px;}
.fe-hd{color:var(--color1); font-weight: 500; margin-top: 30px; font-size: 20px; margin-bottom: 10px;}
.inf-logo{margin-top: 10px;}
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: clamp(0.75rem, 2.5vw, 1.15rem); /* BIG but responsive */
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #1f1f1f;
}

.floor-det {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;
  padding: 5px 20px;
}

/* Top Floor Info */
.floor-det1 {
  text-align: center;
}

.floor-det1 .floor-count {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color1);
  display: block;
  position: relative;
    transition: transform 0.3s, color 0.3s;
}

.floor-det1 .floor-count::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--color1), var(--accent));
  margin: 15px auto 0;
  border-radius: 2px;
}


/* .floor-det1:hover .floor-count {
  color: var(--accent);
  transform: scale(1.1);
} */

.floor-det1 .floor-name {
  font-size: 1.3rem;
  color: var(--color2);
  letter-spacing: 2px;
  margin-top: 5px;
}

/* Bottom Numbers */
.floor-det2 {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: center;
}

.floor-det2 > div {
  text-align: center;
  transition: all 0.3s ease;
}

.floor-det2 .floor-count {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color1);
  transition: transform 0.3s, color 0.3s;
}

.floor-det2 .floor-name {
  font-size: 1.1rem;
  color: var(--color2);
  letter-spacing: 1.5px;
  margin-top: 5px;
}

.floor-det2 > div:hover .floor-count {
  color: var(--accent);
  transform: scale(1.1);
}
.wel-figure {
  position: relative;
  overflow: hidden; /* necessary for masking */
}

.wel-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: inset(0 0 100% 0); /* hide bottom initially */
}

.wel-box1{text-align: center; margin-bottom: 20px; padding:30px 20px; border: 1px solid; 
border-image-source: conic-gradient(
  from 0deg,
  #e0e0e0 0deg, 
  #e0e0e0 70deg,   /* Start fading to white much earlier */
  #fff 90deg,   /* Soft Top Middle */
  #e0e0e0 110deg,  /* End white fade much later */
  
  #e0e0e0 160deg, 
  #fff 180deg,  /* Soft Right Middle */
  #e0e0e0 200deg, 
  
  #e0e0e0 250deg, 
  #fff 270deg,  /* Soft Bottom Middle */
  #e0e0e0 290deg, 
  
  #e0e0e0 340deg, 
  #fff 360deg   /* Soft Left Middle */
);
  border-image-slice: 1;
}


@media(max-width:769px)
{
  .wel-div1 h2 {
  font-size: 25px;}
  .floor-det1 .floor-count, .floor-det2 .floor-count {
  font-size: 1.2rem;}
  .floor-det1 .floor-name, .floor-det2 .floor-name {
  font-size: 1.0rem;}
}

/* SECTION */
.wel-div2 {
  background: url(../images/vajra-infinity-mangalore-bg.jpg) center center no-repeat;
  background-size: cover;
  min-height: auto;           /* IMPORTANT: space for hero + images */
  position: relative;
  background-attachment: fixed;
}

/* background fixed AFTER 100vh */
.wel-div2.fixed {
  background-attachment: fixed;
}

/* Overlay sits ABOVE background, BELOW images */
.wel-div2 .overlay {
  position: absolute;
  inset: 0;
  background-color: #d4b370;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* bottom text */
.wel-bottom2 {
  position: sticky;
  bottom: 40px;
  left: 40px;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 10;
  color: #fff;
  padding-left: 40px;
  padding-bottom: 40px;

}

/* visible */
/* .wel-bottom2.show {
  opacity: 1;
} */

/* when section ends */
/* .wel-bottom2.absolute {
  position: absolute;
  bottom: 40px;
} */

/* images start AFTER hero + text */
.wel-moving2 {
  padding-top: 100vh;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
   
}

.wel-moving2 figure {
  max-width: 70%;
  margin: 0 auto 40px;   /* reduced gap */
}

.wel-moving2 figure img{margin-left: auto; margin-right: auto; width: 100%;}

.wel-bottom2 h2{margin-bottom: 10px;}

.view-project a {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;

  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;

  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease;
}

/* soft glow layer */
.view-project a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

/* animated underline */
.view-project a::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 8px;
  width: 60%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

/* hover magic ✨ */
.view-project a:hover {
  color: #ffcd7f;
  border-color: #fff;
}

.view-project a:hover::before {
  transform: scaleX(1);
}

.view-project a:hover::after {
  transform: scaleX(1);
}


.amenities{min-height: 100vh;}
.amenities-title {
 
  font-size: 34px;
  letter-spacing: 1px;
  color: #b89a57;
  text-transform: uppercase;
  font-weight: 500;
}

.amenities-subtitle {
  color: #666;
  font-size: 15px;
}

/* icon wrapper */
.amenity-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(184, 154, 87, 0.15);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* icon */
.amenity-icon i {
  font-size: 30px;
  color: #b89a57;
}

/* label */
.amenity h6 {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #1d2340;
  letter-spacing: 0.3px;
}

/* hover effect */
.amenity:hover .amenity-icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 0 18px rgba(184, 154, 87, 0.08);
}


/* Mobile carousel customisation */
@media (max-width: 767.98px) {
  .amenities{min-height: auto;}
  /* Carousel container */
  #amenityCarousel {
    padding: 10px 0;  /* space for arrows */
  }

  /* Each slide: ensure consistent height */
  #amenityCarousel .carousel-item {
    min-height: 280px; /* adjust based on content */
  }

  /* Inner row spacing */
  #amenityCarousel .row {
    margin: 0px 50px;
  }

  /* Style the custom arrows */
  #amenityCarousel .custom-arrow i {
    font-size: 3rem;           /* larger, more prominent */
    color: #b89a57;             /* your gold */
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    transition: transform 0.2s ease, color 0.2s ease;
  }

  #amenityCarousel .custom-arrow i:hover {
    transform: scale(1.1);
    color: #a08040;             /* darker gold on hover */
  }

  /* Remove default Bootstrap arrow backgrounds */
  #amenityCarousel .carousel-control-prev,
  #amenityCarousel .carousel-control-next {
    background: none;
    opacity: 1;
    width: auto;                /* let the icon define the click area */
    top: 50%;
    transform: translateY(-50%);
  }

  #amenityCarousel .carousel-control-prev {
    left: 0;
  }
  #amenityCarousel .carousel-control-next {
    right: 0;
  }

  /* Hide default Bootstrap icons */
  #amenityCarousel .carousel-control-prev-icon,
  #amenityCarousel .carousel-control-next-icon {
    display: none;
  }

  /* Style indicators to match your theme */
  #amenityCarousel .carousel-indicators [data-bs-target] {
    background-color: #b89a57;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
  }

  #amenityCarousel .carousel-indicators .active {
    background-color: #1d2340;  /* dark accent */
  }

  /* Optional: adjust icon size on very small screens */
  @media (max-width: 400px) {
    #amenityCarousel .custom-arrow i {
      font-size: 2.5rem;
    }
  }
}




/* SECTION */
.wel-div4 {
  background: url(../images/vajra-infinity-mangalore-bg1.jpg) center center no-repeat;
  background-size: cover;
  min-height: auto;           /* IMPORTANT: space for hero + images */
  position: relative;
  background-attachment: fixed;
}

/* background fixed AFTER 100vh */
.wel-div4.fixed {
  background-attachment: fixed;
}

/* Overlay sits ABOVE background, BELOW images */
.wel-div4 .overlay1 {
  position: absolute;
  inset: 0;
  background-color: #d4b370;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
/* bottom text */
.wel-bottom4 {
  position: sticky;
  bottom: 40px;
  left: 40px;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 10;
  color: #fff;
  padding-left: 40px;
  padding-bottom: 40px;
}

/* visible */
/* .wel-bottom2.show {
  opacity: 1;
} */

/* when section ends */
/* .wel-bottom2.absolute {
  position: absolute;
  bottom: 40px;
} */

/* images start AFTER hero + text */
.wel-moving4 {
  padding-top: 100vh;
  padding-bottom: 100px;
   position: relative;
  z-index: 2;
   
}

.wel-moving4 figure {
  max-width: 70%;
  margin: 0 auto 40px;   /* reduced gap */
}

.wel-moving4 figure img{margin-left: auto; margin-right: auto; width: 100%;}

.wel-bottom4 h2{margin-bottom: 10px;}


/* SECTION */
.wel-div5 {
  background: url(../images/vajra-infinity-mangalore-bg2.jpg) center center no-repeat;
  background-size: cover;
  min-height: auto;           /* IMPORTANT: space for hero + images */
  position: relative;
  background-attachment: fixed;
}

/* background fixed AFTER 100vh */
.wel-div5.fixed {
  background-attachment: fixed;
}
/* Overlay sits ABOVE background, BELOW images */
.wel-div5 .overlay2 {
  position: absolute;
  inset: 0;
  background-color: #d4b370;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* bottom text */
.wel-bottom5 {
  position: sticky;
  bottom: 40px;
  left: 40px;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 10;
  color: #fff;
  padding-left: 40px;
  padding-bottom: 40px;
}

/* visible */
/* .wel-bottom2.show {
  opacity: 1;
} */

/* when section ends */
/* .wel-bottom2.absolute {
  position: absolute;
  bottom: 40px;
} */

/* images start AFTER hero + text */
.wel-moving5 {
  padding-top: 100vh;
  padding-bottom: 100px;
   position: relative;
  z-index: 2;
   
}

.wel-moving5 figure {
  max-width: 70%;
  margin: 0 auto 40px;   /* reduced gap */
}

.wel-moving5 figure img{margin-left: auto; margin-right: auto; width: 100%;}

.wel-bottom5 h2{margin-bottom: 10px;}




.wel-div6{padding-top: 90px; padding-bottom: 90px; min-height: 100vh;}
.wel-div6 .container-fluid{padding-left: 10%; padding-right: 10%;}
.wel-div6 img{width: 100%;}

/* Headings */
.tit-hd,
.brand-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color2);
  margin-bottom: 0.5rem;
  position: relative;
}

.tit-hd::after,
.brand-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: var(--color3);
  display: block;
  margin-top: 10px;
}

/* Subheading */
.tit-subhd,
.brand-tagline {
  color: var(--color3);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}

/* Paragraph */
.wel-div6 p,
.brand-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}
/* Button */
.brand-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color3);
  color: #fff;
  padding: 14px 34px;
  border-radius: 0; /* sharp corners */
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Arrow */
.brand-btn a::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Hover background slide */
.brand-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #a48758;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: 0;
}

/* Keep text above */
.brand-btn a span,
.brand-btn a {
  position: relative;
  z-index: 1;
}

/* Hover state */
.brand-btn a:hover::before {
  transform: translateX(0);
}

.brand-btn a:hover::after {
  transform: translateX(6px);
}




/* ================================
   WEL-DIV7 : Managing Directors
   Open Silver Editorial Design
================================ */

.wel-div7 {
  padding: 120px 12%;
  background:
    linear-gradient(135deg, #fafafa 0%, #ffffff 40%, #ededed 60%, #fafafa 100%),
    linear-gradient(225deg, #fafafa 0%, #ffffff 40%, #ededed 60%, #fafafa 100%);
}

/* Section heading */
.wel-div7 .section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color2);
  margin-bottom: 10px;
}

.wel-div7 .section-subtitle {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--color3);
  text-transform: uppercase;
  margin-bottom: 60px;
}

/* Row spacing = ownership clarity */
.wel-div7 .row.align-items-center {
  padding: 50px 0;
}

/* Image column */
.wel-div7 .col-md-4 {
  display: flex;
  justify-content: center;
}

/* Image styling */
.wel-div7 img {
  width: 85%;
  max-width: 280px;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.wel-div7 img:hover {
  filter: grayscale(0%);
  transform: translateY(-6px);
}

/* Text column */
.wel-div7 .col-md-8 {
  position: relative;
}

/* Vertical connector line */
.wel-div7 .col-md-8::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    #cfcfcf,
    transparent
  );
}

/* Reverse layout line fix */
.wel-div7 .flex-md-row-reverse .col-md-8::before {
  left: auto;
  right: -30px;
}

/* Name */
.wel-div7 .md-name {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color2);
  margin-bottom: 8px;
  position: relative;
}

/* Elegant underline */
.wel-div7 .md-name::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #ccc, transparent);
  margin-top: 12px;
}

/* Role */
.wel-div7 span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--color3);
  text-transform: uppercase;
  margin-top: 14px;
}

/* Message */
.wel-div7 p {
  margin-top: 30px;
  font-size: 1.15rem;
  line-height: 2;
  color: #333;
  max-width: 680px;
  position: relative;
}

/* Quote mark */
.wel-div7 p::before {
  content: "“";
  font-size: 4.5rem;
  color: #d5d5d5;
  position: absolute;
  left: -28px;
  top: -18px;
  
}

/* ================================
   Mobile Refinement
================================ */
@media (max-width: 768px) {

  .wel-div7 {
    padding: 90px 8%;
  }

  .wel-div7 .row.align-items-center {
    text-align: center;
  }

  .wel-div7 .col-md-8::before {
    display: none;
  }

  .wel-div7 img {
    margin-bottom: 30px;
  }

  .wel-div7 p::before {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }
}


/* ================================
   WEL-DIV8 : Contact Section
================================ */

.wel-div8 {
  position: relative;
  padding: 120px 10%;
  padding-bottom: 0;
  border-top: 1px solid #d9d9d9;
  
}

/* LEFT COLUMN */
.contact-left {
  position: relative;
  padding-left: 140px; /* space for background image */
}

/* Background contact image */
.contact-left::before {
  content: "";
  position: absolute;
  left: -120px;

  /* Adjust bottom so image touches the bottom of the section */
  bottom: -0px; /* equal to wel-div8 padding-bottom */

  width: 360px;
  height: 420px;
  background: url("../images/vajra-builders-contact-details.png") no-repeat left bottom;
  background-size: contain;
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

/* Keep text above background image */
.contact-left * {
  position: relative;
  z-index: 2;
}

/* Titles */
.contact-title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #b08d57;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* Social icons */
.social-icons {
  margin-bottom: 30px;
}

.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.social-icons a:nth-child(1) { background: #3b5998; }
.social-icons a:nth-child(2) { background: #1da1f2; }
.social-icons a:nth-child(3) { background: #e1306c; }

/* Contact info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
  text-align: left;
}

.contact-info i {
  margin-right: 15px;
  color: #b08d57;
  font-size: 1.1rem;
}

/* Links */
.contact-info a {
  color: #444;
  text-decoration: none;
}

.contact-info a:hover {
  color: #b08d57;
}

.contact-info li:nth-child(2){font-family: var(--font2);}

/* RIGHT FORM */
.contact-form {
  background: #fff;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
  margin-bottom: 30px;
  font-size: 1rem;
  background: transparent;
  outline: none;
}

.contact-form textarea {
  height: 90px;
  resize: none;
}

/* Button */
.contact-form button {
  background: #d1b189;
  border: none;
  padding: 14px 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #b08d57;
}

/* ================================
   Mobile
================================ */

@media(max-width:992px)
{
  .contact-left::before{display: none;}
  
  
}
@media (max-width: 768px) {

  .wel-div8 {
    padding: 80px 6%;
  }

  .contact-left {
    padding-left: 0;
  }

  .contact-left::before {
    display: none; /* hide image on mobile */
  }

  .contact-form {
    margin-top: 0px;
    padding: 40px;
  }
  .contact-title{font-size: 1.5rem;}
  .contact-info li{display: block;}
}


.wel-div9{ position: relative; z-index: 2;
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 6px;
  overflow: hidden;

  /* premium soft shadow */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.08);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.wel-div9 iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) brightness(0.95);
  transition: filter 0.6s ease;
}

.wel-div9:hover iframe {
  filter: grayscale(0%) brightness(1);
}

.footer-div {
  padding: 90px 10%;
 /* background: linear-gradient(to right, #c4c2c2 0%, #f5f5f5 100%);  */
 background:#000;
  border-bottom: 10px solid #b08d57;
}
/* Links */
.footer-div a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-div a:hover {
  color: var(--color1);
}

.footer-mid1{column-gap: 50px; }
.footer-hd{writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: 2px; color:var(--color3); border-left: 1px solid var(--color1); display: inline-block;}


/* Quick Links vertical text */
.quick-links a {
  color: #8e8e8e;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding-bottom: 10px;
  display: inline-block;
}


.footer-right1{color:#8e8e8e;}
.footer-right1 a{color:#8e8e8e;}


/* =====================
   NAV TOGGLE BUTTON
===================== */
.nav-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  width: 50px;
  height: 50px;
  background: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lines {
  position: relative;
  width: 26px;
  height: 20px;
}

.lines span {
  position: absolute;
  width: 26px;
  height: 3px;
  background: #fff;
  left: 0;
  transition: 0.35s ease;
}
.lines span:nth-child(1) { top: 0; }
.lines span:nth-child(2) { top: 8px; }
.lines span:nth-child(3) { top: 16px; }


.nav-open .lines span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-open .lines span:nth-child(2) { opacity: 0; }
.nav-open .lines span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* =====================
   OFFCANVAS FULLSCREEN
===================== */
.offcanvas-fullscreen { width: 100vw !important; z-index: 2003;}

.offcanvas {
  background-image: url("../images/vajra-infinity-mangalore-bg.jpg");
}

.offcanvas-body {
  position: relative;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}

.offcanvas-body::-webkit-scrollbar { width: 6px; }
.offcanvas-body::-webkit-scrollbar-thumb { background-color: rgba(255,255,255,0.3); border-radius: 3px; }
.offcanvas-body::-webkit-scrollbar {
  width: 6px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.3);
  border-radius: 3px;
}

/* =====================
   BACKGROUND LAYER
===================== */
.nav-bg { position: absolute; inset:0; z-index:0; }

.nav-bg::before {
  content:""; position:absolute; inset:0;
  background-image: url("../images/vajra-infinity-mangalore-bg.jpg");
  background-size: cover; background-position: center;
  opacity:1; transition:0.8s ease;
}

.nav-bg .bg-hover {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:0.8s ease;
}

/* =====================
   NAV MENU
===================== */
.nav-menu {
  display:flex; flex-direction:column; align-items:flex-start;
  padding-left:80px; padding-top:100px; padding-bottom:100px;
}

.nav-item { position:relative; width:100%; }

.nav-link {
  font-size:48px; color:#fff; text-decoration:none; padding:12px 0;
  display:inline-flex; align-items:center; gap:10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover { transform:translateX(10px); opacity:0.85; }

/* =====================
   DROPDOWN HOVER/CLICK
===================== */
.arrow { font-size:24px; transition: transform 0.3s ease; }

.nav-item.dropdown .dropdown-menu {
  position: relative; /* stacking inside nav-menu */
  background: none; border: none; padding-left:0;
  margin-left: 40px;
  max-height:0; overflow:hidden;
  transition: max-height 0.4s ease;
  display: block; /* ensure it's always in DOM */
}

.nav-item.dropdown.show > .dropdown-menu {
  max-height: 500px; /* adjust based on number of items */
}

.nav-item.dropdown.show > .nav-link .arrow { transform: rotate(180deg); }

.dropdown-item {
  font-size:28px; color:#fff; padding:8px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown-item:hover { opacity:0.85; }



.nav-link:hover,
.dropdown-item:hover, .nav-link.active,
.dropdown-item.active {
  color: var(--color3); /* golden/yellow hover color */
  transform: translateX(10px); /* optional slide */
  background: none;
}

/* =====================
   BODY LOCK
===================== */
.nav-open { overflow:hidden; }



/* =================================
   HEADER & TOP BAR
================================= */
@media (max-width: 991px) {

  .top-div1 {
    padding: 10px 15px;
  }

  .top-right {
    display: none !important; /* hide desktop menu */
  }

  .logo-left img {
    max-height: 55px;
  }

}

/* =================================
   BANNER / CAROUSEL
================================= */
/* @media (max-width: 991px) {

  .banner-slide {
    height: 80vh;
  }

  .banner-content {
    left: 5%;
    right: 5%;
    text-align: left;
  }

  .banner-hd {
    font-size: 2.2rem;
  }

  .banner-content p {
    font-size: 1.1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

} */

/* =================================
   WELCOME SECTION (VAJRA INFINITY)
================================= */
@media (max-width: 991px) {

  .wel-div1 {
    padding: 60px 0;
    min-height: auto;
    text-align: center;
  }

.features-list li{display: block;}

  .floor-det2 {
    gap: 40px;
  }

  .wel-box1 {
    padding: 20px 15px;
    margin-top: 20px;
  }
.wel-figure {margin-top: 30px;}
}


@media(max-width:993px)
{
.wel-moving2 figure,
  .wel-moving4 figure,
  .wel-moving5 figure {
    max-width: 90%;
  }
  .wel-bottom2, .wel-bottom4, .wel-bottom5{text-align: center; padding-left: 0;}
  .wel-bottom2 .d-flex, .wel-bottom4  .d-flex, .wel-bottom5  .d-flex{justify-content: center;}
}
/* =================================
   PARALLAX SECTIONS FIX (MOBILE)
================================= */
/* @media (max-width: 769px) {

  .wel-div2,
  .wel-div4,
  .wel-div5 {
    background-attachment: scroll; 
  }

  .wel-moving2,
  .wel-moving4,
  .wel-moving5 {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .wel-moving2 figure,
  .wel-moving4 figure,
  .wel-moving5 figure {
    max-width: 90%;
  }

  .wel-bottom2,
  .wel-bottom4,
  .wel-bottom5 {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 20px;
    text-align: center;
  }

} */

/* =================================
   AMENITIES GRID
================================= */
@media (max-width: 768px) {

  .amenities-title {
    font-size: 23px;
  }

  .amenity h6 {
    font-size: 14px;
  }

}

/* =================================
   BRAND / ABOUT SECTION
================================= */
@media (max-width: 991px) {

  .wel-div6 {
    padding: 60px 0;
    text-align: center;
  }
  .tit-hd::after, .brand-title::after{left: 50%; position: absolute; transform: translateX(-50%);}
  .tit-subhd, .brand-tagline{margin-top: 30px;}

  .wel-div6 .container-fluid {
    padding-left: 5%;
    padding-right: 5%;
  }

  .tit-hd {
    font-size: 1.5rem;
   
  }
  .wel-div6 img{margin-top: 30px;}

}

/* =================================
   MANAGING DIRECTORS
================================= */
@media (max-width: 768px) {

  .wel-div7 {
    padding: 80px 6%;
  }

  .wel-div7 img {
    width: 70%;
  }

  .wel-div7 p {
    font-size: 1rem;
    line-height: 1.7;
  }

}

/* =================================
   CONTACT SECTION
================================= */
@media (max-width: 992px) {
  .wel-div8{padding: 20px;}
  .contact-left{padding-left: 0; text-align: center;}
  .contact-form {
    padding: 20px;
  }
  .contact-info li{text-align: center; justify-content: center;}
}


/* =================================
   MAP
================================= */
@media (max-width: 768px) {

  .wel-div9 {
    height: 320px;
    border-radius: 0;
  }

}

/* =================================
   FOOTER
================================= */

@media(max-width:1280px)
{
  .footer-div{padding: 90px 2%;}
  .footer-mid1 .quick-links{margin-left: -20px;}
}
@media (max-width: 991px) {
  .footer-left1 img{margin-left: auto; margin-right: auto; display: block;}
 .footer-mid1 .quick-links{margin-left: 0px;}
  .footer-div {
    padding: 60px 0%;
  }

  .footer-mid1 {
    text-align: center;
    margin-top: 30px;
    
  }
  .quick-links{display: flex; justify-content: center;}
   .quick-links li{padding:0 10px;}

  .footer-hd {
    writing-mode: horizontal-tb;
    transform: none;
    border-left: none;
    margin-bottom: 10px;
    border-bottom: 1px solid #8d6962;
    margin-bottom: 20px;
  }

.footer-right1{text-align: center; margin-top: 20px;}
.power-div{margin-top: 10px;}
}

/* =================================
   OFFCANVAS NAV (MOBILE MENU)
================================= */
@media (max-width: 991px) {

  .nav-link {
    font-size: 26px;
  }

  .dropdown-item {
    font-size: 22px;
  }

  .nav-menu {
    padding-left: 0px;
    padding-top: 80px;
  }

}






/*About Us Page */
/* hero */
    .hero {
      height: 100vh;
      background-image: url('../images/vajra-builders-img.jpg');
      background-size: cover;
      background-position: center 30%;
      display: flex;
      align-items: center;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(95deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26,0.4) 60%, transparent 90%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin-left: 8%;
      color: #fff;
    }

    .hero-eyebrow {
      font-size: 1rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #e0c9a6;
      margin-bottom: 1rem;
    }

    .hero-title {
      font-size: clamp(1.5rem, 6vw, 5.5rem);
      font-weight:400;
      line-height: 1.1;
      margin-bottom: 1.8rem;
    }

    .hero-title span {
      color: #b48b5a;
    }

    .hero-text {
      font-size: 1.2rem;
      font-weight: 300;
      line-height: 1.6;
      max-width: 580px;
      text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    .hero-text span {
      
      color: #f0e0c4;
    }


    @media(max-width:769px)
    {
      .hero-text {
  font-size: 0.8rem;}
    }
    /* split story */
    /* control overall height */
    
.split-row {
  min-height: 90vh;
}

/* image column */
.split-image {
  padding: 0;
  overflow: hidden;
  display: flex;
}

/* actual img */
.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
}

/* text column (unchanged) */
.split-text {
  background-color: #ffffff;
  padding: 6% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

    .section-marker {
      font-size: 0.8rem;
      letter-spacing: 0.5em;
      color: #a67c4e;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .split-text h2 {
      font-size: clamp(1.4rem, 4vw, 3.5rem);
      font-weight: 400;
      color: #1e2b2f;
      margin-bottom: 1.8rem;
      line-height: 1.2;
    }

    .split-text p {
      font-size: 1.2rem;
      font-weight: 300;
      line-height: 1.8;
      color: #2c3a40;
      max-width: 600px;
    }

    .split-text p strong {
      font-weight: 400;
      color: #1e2b2f;
    }

    @media(max-width:769px)
    {
.split-text p {
  font-size: 0.7rem;}
    }

    /* legacy full bleed */
    .legacy-full {
      height: 100vh;
      background-image: url('../images/vajra-buiders-vajra-infinity-img.jpg');
      background-size: cover;
      background-position: 50% 40%;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .legacy-full::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    .legacy-quote {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: 0 5%;
      color: white;
      text-align: center;
    }

    .quote-primary {
      font-size: clamp(1.5rem, 6vw, 4.5rem);
      font-weight: 500;
      line-height: 1.2;
      margin-bottom: 2rem;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .quote-primary span {
      color: #e0c9a6;
      font-weight: 400;
    }

    .quote-secondary {
      font-size: 1.4rem;
      font-weight: 300;
      line-height: 1.5;
      max-width: 800px;
      margin: 0 auto;
      border-left: 4px solid #b48b5a;
      padding-left: 2rem;
      text-align: justify;
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(2px);
      padding: 2rem 3rem;
    }

    /* vision mission duo */
.vision-mission-duo .row {
  min-height: 90vh;
}



    .vision-side {
      background: linear-gradient(105deg, #ece7e0 0%, #faf7f2 100%);
      padding: 8% 6%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .vision-side::before {
      content: '';
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background: url('../images/vajra-buiders-vajra-infinity-balcony.jpg') no-repeat 30% 50%/cover;
      opacity: 0.07;
      pointer-events: none;
    }

    .mission-side {
      background-color: #1e1e1e;
      color: #f0eae1;
      padding: 8% 6%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .mission-side::after {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: url('../images/vajra-buiders-vajra-infinity-mission.jpg') no-repeat 70% 50%/cover;
      opacity: 0.1;
      mix-blend-mode: lighten;
    }

    .vm-label {
      font-size: 0.8rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .vision-side .vm-label {
      color: #a67c4e;
    }

    .mission-side .vm-label {
      color: #e0c9a6;
    }

    .vm-title {
      font-size: clamp(1.8rem, 5vw, 4rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 2rem;
    }

    .vision-side .vm-title {
      color: #1e2b2f;
    }

    .mission-side .vm-title {
      color: #ffffff;
    }

    .vm-desc {
      font-size: 1.3rem;
      font-weight: 300;
      line-height: 1.6;
      max-width: 500px;
    }

    .vision-side .vm-desc {
      color: #2c3a40;
    }

    .mission-side .vm-desc {
      color: #e0dbd2;
    }

    @media(max-width:769px)
    {
      .vm-desc {
  font-size: 0.9rem;}
    }

    /* image strip */
.strip-col {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
.strip-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay with 30% opacity */
  pointer-events: none; /* so clicks pass through to image if needed */
  z-index: 1; /* above image but below any text */
  transition: background 0.5s ease; /* optional transition */
}
.strip-col:hover::after {
  background: rgba(0, 0, 0, 0.2); /* lighter on hover, or remove */
}
.strip-img {
  position: relative; /* ensure it's above overlay? No, overlay is above because of z-index. But we want overlay above image. If we want image to be above overlay, then overlay would be behind. Actually we want overlay on top of image to dull it. So overlay should have higher z-index. */
  z-index: 0;
  width: 100%;
  height: 50vh;
  /* ... existing styles ... */
}

    /* final creed */
    .final-creed {
      background-color: #f2eee9;
      padding: 15vh 10vw;
      text-align: center;
    }

    .creed-statement {
      font-size: 2.4rem;
      font-weight: 300;
      line-height: 1.4;
      max-width: 1100px;
      margin: 0 auto 2rem;
      color: #1e2b2f;
      border-bottom: 2px solid #b48b5a;
      padding-bottom: 2.5rem;
    }

    .creed-stamp {
      font-size: 1rem;
      letter-spacing: 0.6em;
      text-transform: uppercase;
      color: #a67c4e;
    }

    /* responsiveness */

    @media(max-width:993px)
    {
      .hero{text-align: center; height: auto; padding: 20px;}
      .hero-content {max-width: 100%; margin-left: 0;}
      .hero-text{max-width: 90%; margin-left: auto; margin-right: auto;}
      .split-story{text-align: center; margin-bottom: 30px;}
      .split-text p{max-width: 100%; }
      .quote-secondary{text-align: center;}
      .vision-mission-duo{text-align: center;}
      .vm-desc{max-width: 100%;}
    }
    @media (max-width: 768px) {
      
      .quote-secondary {
        padding: 1.5rem;
        font-size: 1rem;
      }
      .vision-side, .mission-side {
        padding: 15% 8%;
      }
      .creed-statement {
        font-size: 0.9rem;
      }
      .final-creed{padding: 6vh 10vw;}
    }
/*About Us Page */




/*Project Page */
/* enquiry button */
    .btn-enq {
      display: inline-block;
      padding: 0.8rem 2.5rem;
      border: 2px solid #b48b5a;
      background: transparent;
      color: #b48b5a;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-decoration: none;
      transition: 0.3s;
      cursor: pointer;
    }
    .btn-enq:hover {
      background: #b48b5a;
      color: #141414;
    }
    .btn-enq-light {
      border-color: #fff;
      color: #fff;
    }
    .btn-enq-light:hover {
      background: #fff;
      color: #141414;
    }

    /* download brochure button */
    .btn-brochure {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: #b48b5a;
      color: #fff;
      padding: 0.8rem 2rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      transition: 0.3s;
    }
    .btn-brochure:hover {
      background: #8f6a3f;
      color: #fff;
    }


    /* project-hero */
    .project-hero {
      min-height: 90vh;
      background: linear-gradient(135deg, #141414 0%, #141414 50%, #b48b5a 50%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .project-hero-container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 5%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
    }
.project-logo{margin-bottom: 10px;}
    
    .project-hero-text {
      flex: 1 1 450px;
      color: #fff;
      padding-right: 3rem;
    }
    .project-hero-sup {
      font-size: 1.2rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #e0c9a6;
      margin-bottom: 1rem;
    }
    .project-hero-title {
      
      font-size: clamp(1.5rem, 4vw, 3.5rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .project-hero-title span {
      display: block;
      font-size: 0.5em;
      font-weight: 400;
      letter-spacing: 0.2em;
      color: #e0c9a6;
    }
    .project-hero-location {
      font-size: 1.6rem;
      font-weight: 300;
      margin-bottom: 2.5rem;
      border-left: 6px solid #b48b5a;
      padding-left: 1.5rem;
    }
    .project-hero-rera {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #e0c9a6;
 
  padding-left: 1.5rem;
}
    .project-hero-image {
  flex: 1 1 450px;
  height: 70vh;
  /* border-radius: 20px 0 0 20px; */
  box-shadow: -20px 20px 30px rgba(0,0,0,0.3);
  overflow: hidden; /* important for rounded corners */
}
.project-hero-image  figure{height: 100%;}
.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* replaces background-size: cover */
  object-position: center;
  display: block;
}


    @media (max-width: 992px) {
      .project-hero { background: #141414; padding: 20px; text-align: center;}
      .project-hero-image { border-radius:0px; margin-top: 2rem; }
      .project-hero-location{display: inline; padding-left: 20px;}
      .project-hero-image{height: auto;}
      .project-hero-image figure{height: auto;}
      .project-hero-text{padding-right: 0;}
      
    }

    @media(max-width:769px)
    {
    .project-hero-location {
  font-size: 1.2rem;}
    }


/* BRAND STORY */
    .brand-story {
      padding: 6rem 10%;
      background: #fff;
    }
    .brand-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    .brand-block {
      font-size: 1.2rem;
      font-weight: 300;
      line-height: 1.8;
      color: #141414;
    }
    .brand-block span {
      color: #b48b5a;
      font-weight: 500;
      font-size: 40px;
    }
    .brand-block:first-child {
      border-right: 1px solid #b48b5a;
      padding-right: 2rem;
    }
    @media (max-width: 993px) {
      .brand-story{text-align: center; padding: 3rem 10%;}
      .brand-grid { grid-template-columns: 1fr; gap: 1rem;}
      .brand-block:first-child { border-right: none; padding-right: 0; }
    }

    @media(max-width:769px)
    {
      .brand-block span{font-size: 26px;}
      .brand-block{font-size: 13px;}
    }

/* STATS (unique features) */
    .stats {
      background: #141414;
      padding: 5rem 5%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 4rem;
    }
    .stat-item {
      text-align: center;
      color: #fff;
    }
    .stat-num {
      font-size: 3rem;
      font-weight: 500;
      line-height: 1;
      color: #b48b5a;
      
    }
    .stat-label {
      font-size: 1.3rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .stat-label small {
      display: block;
      font-size: 0.9rem;
      color: #e0d6c5;
    }


    @media(max-width:555px)
    {
      .stats{padding: 2rem 2%; gap: 2rem;}
      .stat-num {
  font-size: 1.1rem; gap: 1rem;}
    }

    /* UNIQUE FEATURES – LABEL ON RIGHT */
.unique-features.alt-design {
  padding: 7rem 8%;
  background: #fff;
}

.unique-container {
  max-width: 1200px;
  margin: 0 auto;
}

.unique-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* LEFT */
.unique-headline {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #141414;
  line-height: 1.2;
  text-align: left;
}

.unique-headline span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #b48b5a;
  margin-top: 0.8rem;
}

/* RIGHT */
.unique-features-right {
  position: relative;
}

.unique-subhead {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #b48b5a;
  margin-bottom: 2rem;
  text-align: left;
}

.unique-list-wrap {
  position: relative;
  padding-left: 2.2rem;
}

.unique-list-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(180,139,90,0.4);
}

.unique-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #b48b5a;
  margin-bottom: 0.5rem;
}

.unique-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-list li {
  padding: 1.4rem 0;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  position: relative;
  /* transition: transform 0.2s ease; */
  cursor: default;
 
}

.unique-list li:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.unique-list li:hover {
  transform: translateX(6px);
  color:var(--color1)
}

.unique-list li::before {
  content: "";
  position: absolute;
  left: -1.2rem;        /* aligns with your left border line */
  top: 50%;
  width: 0;
  height: 1px;
  background: #b48b5a;
  transition: width 0.2s ease;
  transform: translateY(-50%);
}

.unique-list li:hover::before {
  width: 12px;          /* line extends from the left border */
}
/* MOBILE */
@media (max-width:993px) {

  .unique-list-wrap{padding-left: 0;}
  .unique-features.alt-design {
  padding: 3rem 3%;}
  .unique-features{text-align: center;}
  .unique-headline{text-align: center;}
  .unique-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .unique-subhead {
    text-align: left;
  }
  
.unique-list-wrap::before{content: none;}

  .unique-list {
    border-left: none;
    border-top: 2px solid rgba(180,139,90,0.3);
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .unique-list li {
    padding-left: 0;
  }
  
}

@media(max-width:769px)
{
  .unique-headline {
  font-size: clamp(1.5rem, 4vw, 3.2rem);}
  .unique-headline span{font-size: 1.1rem;}
  .unique-list li{font-size: 0.9rem;}
}

/* WINDOW VIEW */
.window-view.alt-3 {
  min-height: 90vh;
  background: url('../images/vajra-infinity1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window-frame {
  border: 2px solid rgba(224,201,166,0.7);
  padding: 4rem 6rem;
  max-width: 900px;
  text-align: center;
  background: rgba(0,0,0,0.7);
}

.window-text {
  font-size: clamp(1.5rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: #fff;
}

.window-text strong {
  color: #e0c9a6;
  font-weight: 400;
}

 /* ==============================
   ELEVATED STANDARD – CREATIVE
   ============================== */

.elevated-composition {
  padding: 8rem 10%;
  background: #ffffff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: elevateIn 1s ease forwards;
}

@keyframes elevateIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:990px)
{
  .window-frame{max-width: auto; margin-left: 30px; margin-right: 30px;}
}
@media(max-width:769px)
{
.window-frame{padding: 4rem 3rem;}
}

/* WRAP */
.elevated-composition-wrap {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 5rem;
  align-items: center;
}

/* IMAGE STRIP */
.elevated-image-strip {
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* GOLD FRAME OFFSET */
.elevated-image-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(180,139,90,0.5);
  transform: translate(14px, 14px);
  pointer-events: none;
}

/* IMAGE */
.elevated-image-strip figure{height: 100%;}
.elevated-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* HOVER LIFE */
.elevated-composition:hover .elevated-image-strip img {
  transform: scale(1.05);
}

/* TEXT BLOCK */
.elevated-text-block {
  position: relative;
  padding: 2rem 0;
}

/* SOFT BACKGROUND TINT */
.elevated-text-block::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  width: 180px;
  height: 100%;
  background: rgba(180,139,90,0.08);
  z-index: -1;
}

/* TITLE */
.elevated-text-block .elevated-title {
  
  font-size: clamp(1.4rem, 4.8vw, 3.4rem);
  font-weight: 500;
  color: #141414;
  margin-bottom: 2rem;
  position: relative;
  text-align: left;
}

/* TITLE ACCENT */
.elevated-text-block h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #b48b5a;
  margin-top: 1.2rem;
}

/* PARAGRAPH */
.elevated-text-block p {
  
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.9;
  color: #2b2b2b;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 992px) {
  .elevated-composition{padding: 3rem 10%; text-align: center;}
  .elevated-composition-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .elevated-image-strip {
    height: auto;
  }

  .elevated-text-block::before {
    left: -20px;
    width: 120px;
  }
  .elevated-text-block{padding: 0;}
  .elevated-text-block .elevated-title{text-align: center; margin-bottom: 10px;}
}

@media (max-width: 768px) {
  .elevated-composition {
    padding: 6rem 8%;
  }



  .elevated-text-block h2 {
    font-size: 2.8rem;
  }

  .elevated-text-block p {
    font-size: 1.0rem;
  }
}


 /* MASTER PLAN - overlapping */
    .master-plan {
      padding: 8rem 8%;
      background: #f9f6f0;
    }
.section-title {
   
      font-size: 3.2rem;
      font-weight: 400;
      margin-bottom: 2.5rem;
      text-align: center;
      color: #141414;
    }
    .section-title span {
      color: #b48b5a;
      display: block;
      font-size: 1.1rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-top: 0.5rem;
    }
    
    .master-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }
  .master-image {
  flex: 1 1 500px;
  height: 100%;
  position: relative;
  border-radius: 0px 30px 0 30px;
  overflow: hidden;              /* important */
  box-shadow: -20px -20px 0 #b48b5a;
  filter: grayscale(0.2);
}
.master-image figure{height: 100%;}
.master-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* replaces background-size: cover */
  object-position: center;
  display: block;
}
    .master-list {
      flex: 1 1 300px;
    }
    .master-list h3 {
      font-size: 1.6rem;
      font-weight: 500;
      margin-bottom: 2rem;
     
    }
@media(max-width:1280px)
{
  .master-list h3 {
  font-size: 1.4rem;}
}

    .master-items {
      list-style: none;
      padding: 0;
    }
    .master-items li {
      font-size: 1.2rem;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      border-bottom: 1px dashed #b48b5a;
      padding-bottom: 0.8rem;
       position: relative;
  cursor: default;
      
    }
    .master-num {
      display: inline-flex;
      width: 40px;
      height: 40px;
      background: #b48b5a;
      color: #fff;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      margin-right: 1.5rem;
      transition: background-color 0.2s ease;
    }



.master-items li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;                     /* starts after the number */
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b48b5a, transparent);
  transition: width 0.3s ease;
}

.master-items li:hover::after {
  width: calc(100% - 40px);       /* extends to the end of the text */
}



.master-items li:hover .master-num {
  background-color: #a07b4a;
}

@media(max-width:993px)
{
  .master-plan{padding: 3rem 8%;}
  .master-grid{justify-content: center; align-items: center; flex-direction: column;}
}



    /* FLOOR PLANS (typical + unit 1,2,3) */
    .floorplans {
      padding: 6rem 8%;
      
    }
    .floor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .floor-card {
      background: #fff;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .floor-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .floor-link {
      display: block;
      overflow: hidden;
    }

    .floor-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      filter: grayscale(0.2);
      transition: transform 0.4s ease;
      margin-bottom: 1.5rem;
    }

    .floor-card:hover .floor-img {
      transform: scale(1.05);
    }

    .floor-title {
      font-size: 1.6rem;
      font-weight: 500;
      color: #141414;
    }

    .floor-desc {
      font-size: 0.95rem;
      color: #b48b5a;
      letter-spacing: 0.15em;
      margin: 0.5rem 0;
    }

    .floor-area {
      font-size: 1.1rem;
      font-weight: 500;
      border-top: 2px solid #b48b5a;
      padding-top: 1rem;
      color: #141414;
    }

       .fancybox__container{z-index: 3000 !important;}
    /* Allow vertical scrolling for tall images */
.floorplans-fancybox .fancybox__content {
   max-width: 100%;        /* keep width responsive */
  height: auto !important;  /* keep natural height */
  max-height: none !important; /* do not force fit */
  
  
}

.floorplans-fancybox .fancybox__image {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin-top: 10px;
}

/* Fancybox caption overlay at top */
.floorplans-fancybox .fancybox__caption {
  position: absolute !important;   /* make overlay */
  top: 0 !important;               /* top of image */
  left: 0;
  width: 100%;
 
  color: #fff;
  text-align: center;
 
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  z-index: 9999;
  font-size: 1.6rem !important;
}
    .floorplans .btn-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 4rem;
    }

    .fancybox__caption {display: none;}

    @media(max-width:993px)
    {
      .floorplans {
  padding: 3rem 8%;
}
    }


/* GALLERY with titles (expanded) */
    .gallery {
      padding: 6rem 5%;
      background: #fff;
      border-top: 1px solid #e9d4b9;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
     .gallery-item  figure{height: 100%;}
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s;
      filter: grayscale(0.3);
      aspect-ratio: 4/3;
    }
    .gallery-item:hover img {
      transform: scale(1.05);
      filter: grayscale(0);
    }
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(30,43,47,0.7);
      color: #fff;
      padding: 0.5rem;
      font-size: 0.9rem;
      text-align: center;
      backdrop-filter: blur(4px);
      display: none;
    }
    .gallery-item:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }

    
    .gallery-item:nth-child(4) {
      grid-column: span 2;
      grid-row: span 2;
    }

  .gallery-item:nth-child(5) {
  
      grid-row: span 2;
    }

    
    /*

    /* Image 5 – tall feature */


/* Image 8 – wide cinematic */
.gallery-item:nth-child(8) {
  grid-row: span 2;
}

.gallery-grid .fancybox__caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  display: none;
}
    
  @media(max-width:993px)
    {
      .gallery {
  padding: 3rem 5%;
}
    
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
    }



   /* WALKTHROUGH VIDEO – CREATIVE */
.video-section {
  padding: 8rem 5%;
  background: radial-gradient(circle at top, #1f1f1f, #0b0b0b);
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.video-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a46a;
  margin-bottom: 0.75rem;
}

.video-section  .section-title {
  
 
  color: #fff;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.5s ease;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55), transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle hover lift */
.video-wrapper:hover {
  transform: translateY(-6px);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}



/* AMENITIES - creative icons with background */
    .amenities-creative {
      padding: 8rem 8%;
      background: #faf9f7;
    }
     /* SECTION */
    .amenities-luxury {
      padding: 8rem 6%;
      /* max-width: 1400px; */
      margin: auto;
    }

    .amenities-luxury h2 {
      
      font-size: 3rem;
      font-weight: 500;
      text-align: center;
      margin-bottom: 5rem;
      letter-spacing: 0.02em;
    }

    /* GRID */
    .luxury-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2.8rem;
    }

    /* TILE */
    .luxury-tile {
      background: #fff;
      padding: 3.2rem 2.4rem;
      border: 1px solid #eee6db;
      position: relative;
      transition: 0.5s ease;
      overflow: hidden;
      border-radius: 30px 0 30px 0;
    }

    .luxury-tile::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, #b48b5a, #d7b78b);
      opacity: 0;
      transition: 0.5s ease;
      z-index: 0;
    }

    .luxury-tile:hover::before {
      opacity: 1;
    }

    .luxury-content {
      position: relative;
      z-index: 2;
      transition: 0.5s ease;
    }

    .luxury-icon {
      font-size: 2.2rem;
      color: #b48b5a;
      margin-bottom: 1.4rem;
      transition: 0.5s ease;
    }

    .luxury-title {
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      line-height: 1.7;
      text-transform: uppercase;
      text-align: left;
    }

    .luxury-tile:hover .luxury-title,
    .luxury-tile:hover .luxury-icon {
      color: #fff;
    }

    .luxury-tile:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 45px rgba(0,0,0,0.12);
    }

      @media(max-width:993px)
    {
      .amenities-luxury {
  padding: 3rem 5%;
}
.section-title {
  font-size: 2.0rem;}
  .luxury-content{margin-left: auto; margin-right: auto; text-align: center;}
  .luxury-title{text-align: center;}
    }
    @media (max-width: 768px) {
      .amenities-luxury h2 {
        font-size: 2.3rem;
      }
      .section-title {
  font-size: 1.4rem;}
  .master-items li {
  font-size: 0.8rem;}
  .floor-title {
  font-size: 1.2rem;}
      
    }

    /* SECTION */
    .location-section {
      padding: 9rem 6%;
    
      margin: auto;
      background: #f6f4f1;
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }

    /* LEFT CONTENT */
    .location-content h5 {
      font-size: 0.8rem;
      letter-spacing: 0.3em;
      color: #9a7b4f;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .location-head {
 
      font-size: 2.9rem;
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 1.8rem;
      text-transform: uppercase;
      text-align: left;
    }

    .location-content h1 span {
      display: block;
    }

    .location-content p {
      font-size: 0.95rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #555;
      margin-bottom: 3.5rem;
    }

    /* LOCATION LIST */
    .location-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem 3rem;
    }

    .point {
      border-bottom: 1px solid #e2dbc9;
      padding-bottom: 0.8rem;
    }

    .point span {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #93570f;
    }

    .point strong {
      display: block;
      font-size: 1.05rem;
      font-weight: 600;
      margin-top: 0.4rem;
      letter-spacing: 0.06em;
    }

    @media(max-width:993px)
    {
      .location-section {
  padding: 3rem 6%;}
  .location-content, .location-head{text-align: center;}
  .location-head {
  font-size: 2.2rem;}
    }

    /* MAP */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 6px;
  overflow: hidden;

  /* premium soft shadow */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.12),
    0 8px 20px rgba(0,0,0,0.08);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.map-wrapper:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.14),
    0 12px 30px rgba(0,0,0,0.1);
}

/* gold outline */
.map-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(180,139,90,0.35);
  pointer-events: none;
}

/* MAP IFRAME */
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) brightness(0.95);
  transition: filter 0.6s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%) brightness(1);
}

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .location-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
      }

      .location-content h1 {
        font-size: 2.6rem;
      }

      .location-points {
        grid-template-columns: 1fr;
      }

      .map-wrapper {
        height: 400px;
      }
    }

    @media(max-width:769px)
    {
      
  .location-head {
    font-size: 1.5rem;
 
}
    }

    /* FINAL CTA BANNER */
    
.editorial-cta{
  padding:8rem 12%;
   background:#0f0f0f;
   margin-left: auto;
}

/* GRID */
.editorial-grid{
max-width: 1200px;
  margin:auto;
  display:flex;
  /* grid-template-columns:1fr 1fr; */
  gap:5rem;
  justify-content: space-between;
  
}

/* LEFT */
.editorial-title small{
  display:block;
  letter-spacing:0.35em;
  font-size:0.7rem;
  color:#b48b5a;
  margin-bottom:1.5rem;
}

.editorial-title .cta-head{
  
  font-size:3.5rem;
  font-weight:500;
  line-height:1.05;
  margin-bottom:2.5rem;
  color:#fff;
    max-width:520px;
    text-align: left;
}

.editorial-title .cta-head span{
  color:#b48b5a;
}

.editorial-title p{
  max-width:520px;
  font-size:1.2rem;
  line-height:1.8;
  color:#cfcfcf;
}

/* ACTIONS */
.editorial-actions{
  margin-top:3.5rem;
  display:flex;
  gap:2rem;
}

.editorial-btn{
  padding:1.1rem 2.6rem;
  font-size:0.75rem;
  letter-spacing:0.25em;
  text-transform:uppercase;
  text-decoration:none;
  transition:0.35s ease;
}

.editorial-btn.primary{
  background:#b48b5a;
  color:#000;
}

.editorial-btn.primary:hover{
  background:#fff;
}

.editorial-btn.secondary{
  border-bottom:1px solid #b48b5a;
  color:#fff;
}

.editorial-btn.secondary:hover{
  color:#b48b5a;
}

/* RIGHT INFO */
.editorial-info{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.editorial-block{
  border-left:2px solid #b48b5a;
  padding-left:2rem;
}

.editorial-block span{
  font-size:0.65rem;
  letter-spacing:0.3em;
  color:#999;
  display:block;
  margin-bottom:0.6rem;
}

.editorial-block a{
  font-size:1.4rem;
  color:#fff;
  text-decoration:none;
  font-weight:300;
  transition:0.3s ease;
  font-family: var(--font2);
}

.editorial-block a:hover{
  color:#b48b5a;
}
  .cta-banner-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: start;
      gap: 2rem;
      margin-top: 3rem;
    }

/* RESPONSIVE */
@media(max-width:990px){
  .editorial-cta{padding: 3rem 6%; text-align: center;}
 .editorial-grid{display: block; max-width: 100%;}
 .editorial-title .cta-head{text-align: center; max-width: unset; font-size:2.5rem;}
 .editorial-title p {max-width: unset;}
.cta-banner-buttons{justify-content: center;}
.editorial-block{margin-top: 30px; padding-top: 20px; border-left: none; border-top: .5px solid #b48b5a; }

}

  @media(max-width:769px)
    {
 .editorial-title .cta-head{font-size: 1.6rem;}
 .editorial-title p{font-size:0.9rem;}
 .editorial-block a {
  font-size: 1.1rem;}
    }

/*Project Page */

/* Modal wrapper z-index */
.enquiry-modal {
  z-index: 2500;
}

/* Modal content */
.enquiry-modal-content {
  border-radius: 1rem; 
}

/* Modal header */
.enquiry-modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.enquiry-modal-title {
  font-weight:500;
  font-size: 1.25rem;
  color: #141414;
}

/* Modal body text */
.enquiry-modal-text {
  font-size: 0.95rem;
  color: #555;
}

/* Input fields */
.enquiry-input::placeholder {
  color: #aaa;       /* light gray placeholder */
  opacity: 1;
}

.enquiry-input:focus {
  border-color: #b48b5a;
  box-shadow: 0 0 0 0.2rem rgba(180, 139, 90, 0.25);
}

/* Submit button */
.btn-submit {
  background-color: #b48b5a;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #a67c4d;
}



/*MD message Page */
/* md-hero section */
    .md-hero {
  min-height: 60vh;
  background: linear-gradient(
    135deg,
    #0b0b0b 0%,
    #141414 55%,
    #1a1a1a 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle texture image */
.md-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/vajra-builders-md-bg.jpg') no-repeat center / cover;
  opacity: 0.06;
  mix-blend-mode: luminosity;
}

/* golden glow accent */
.md-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(180, 139, 90, 0.35) 0%,
      rgba(180, 139, 90, 0.15) 25%,
      transparent 60%
    );
}
    .md-hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 0 5%;
    }
    .md-hero-content h1 {
     
      font-size: clamp(3rem, 8vw, 4.1rem);
      font-weight: 500;
      line-height: 1.1;
    }
    .md-hero-content h1 span {
      color: #b48b5a;
      display: block;
      font-size: 0.45em;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 0.5rem;
    }
    .md-hero-content p {
      font-size: 1.2rem;
      font-weight: 300;
      max-width: 600px;
      margin: 1.5rem auto 0;
      opacity: 0.9;
    }
    .hero-divider {
      width: 120px;
      height: 4px;
      background: #b48b5a;
      margin: 2.5rem auto 0;
    }

    /* director sections */
    .director-section {
      width: 100%;
    }
    .director-row {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
    }
   .director-image-wrapper {
  flex: 1 1 40%;
  position: relative;
  min-height: 500px;
  overflow: hidden; /* ensures gradient stays inside */
}
  .director-image-wrapper figure{height: 100%;}
.director-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* same as background-size: cover */
  display: block;
}

.gradient-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(30,43,47,0.7) 0%, transparent 100%);
}
    .director-text {
      flex: 1 1 60%;
      padding: 6% 7%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #ffffff;
      position: relative;
    }
    .director-text h2 {
  
      font-size: 3.1rem;
      font-weight: 500;
      margin-bottom: 0.2rem;
      color: #000;
    }
    .director-title {
      font-size: 1rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: #b48b5a;
      margin-bottom: 2rem;
    }
    .director-quote {
      font-size: 1.5rem;
      font-weight: 300;
      line-height: 1.8;
      color: #2c3a40;
      margin-bottom: 1.5rem;
      position: relative;
      padding-left: 3rem;
    }
    .director-quote::before {
      content: '“';
      
      font-size: 6rem;
      color: #b48b5a;
      position: absolute;
      left: -1rem;
      top: -2rem;
      opacity: 0.4;
    }
    .director-continuation {
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.7;
      color: #5a6c73;
      margin-bottom: 2rem;
      column-count: 2;
      column-gap: 2rem;
      column-rule: 1px solid #e0d6c5;
    }
    .director-signature {
      
      font-size: 1.8rem;
      font-weight: 500;
      color: #b48b5a;
      border-top: 2px solid #b48b5a;
      padding-top: 1rem;
      display: inline-block;
    }
    .director-signature small {
      font-size: 0.9rem;
      color: #6d7e85;
      font-weight: 300;
      display: block;
      margin-top: 0.3rem;
    }

    /* alternate layout (image on right) */
    .director-row-alt .director-image-wrapper {
      order: 2;
    }
    .director-row-alt .director-text {
      order: 1;
    }
    .director-row-alt .director-image::before {
      background: linear-gradient(270deg, rgba(30,43,47,0.7) 0%, transparent 100%);
    }

    /* responsive */
    @media (max-width: 992px) {
      .director-row, .director-row-alt {
        flex-direction: column;
      }
      .director-image, .director-text {
        flex: 1 1 auto;
      }
      .director-image {
        min-height: 400px;
      }
      .director-row-alt .director-image {
        order: 1;
      }
      .director-row-alt .director-text {
        order: 2;
      }
      .director-text h2 {
        font-size: 3rem;
      }
      .director-quote {
        padding-left: 2rem;
      }
      .director-quote::before {
        font-size: 4rem;
        left: -0.5rem;
        top: -1rem;
      }
      .director-continuation {
        column-count: 1;
      }
    }

    /* closing note */
    .closing-note {
      background: #272727;
      color: #e0d6c5;
      padding: 5rem 5%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .closing-note::before {
      content: '';
      position: absolute;
      top: -30%; left: -10%; width: 60%; height: 200%;
      background: radial-gradient(circle, #b48b5a20 0%, transparent 70%);
      border-radius: 50%;
    }
    .closing-note p {
      font-size: 2.5rem;
      font-weight: 300;
      max-width: 800px;
      margin: 0 auto;
      
      position: relative;
      z-index: 2;
      border-top: 2px solid #b48b5a;
      border-bottom: 2px solid #b48b5a;
      padding: 1.5rem 0;
      display: inline-block;
    }


 /*MD message Page */


 /* Contact page */

 /* redesigned contact-hero – full-width image with overlay, using black */
    .contact-hero {
      min-height: 50vh;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/vajra-builders-contact-bg.jpg') no-repeat center/cover;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 3rem 5%;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      top: -20%; right: -10%;
      width: 60%; height: 200%;
      background: #b48b5a;
      opacity: 0.15;
      transform: rotate(15deg);
      border-radius: 50%;
      z-index: 1;
    }
    .contact-hero::after {
      content: '';
      position: absolute;
      bottom: -30%; left: -10%;
      width: 50%; height: 150%;
      background: #b48b5a;
      opacity: 0.15;
      transform: rotate(-10deg);
      border-radius: 50%;
      z-index: 1;
    }
    .contact-hero-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
      color: #fff;
      animation: fadeInUp 1s ease;
    }
    .contact-hero-content h1 {
     
      font-size: clamp(1.7rem,6vw, 4.1rem);
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 1rem;
      text-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .contact-hero-content h1 span {
      color: #b48b5a;
      display: block;
      font-size: 0.4em;
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      margin-top: 0.5rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .contact-hero-content p {
      font-size: 1.2rem;
      font-weight: 300;
      max-width: 800px;
      margin: 1.5rem auto 0;
      opacity: 0.95;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* main contact section – creative split layout (map removed from here) */
    .contact-main {
      padding: 5rem 5% 3rem;
      background: #ffffff;
    }
    .contact-split {
      display: flex;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }
    /* left side – contact info */
    .contact-info-side {
      flex: 1 1 45%;
      padding-right: 3rem;
      position: relative;
    }
    .contact-info-side::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 2px;
      height: 100%;
      background: linear-gradient(to bottom, #b48b5a 30%, transparent 100%);
    }
    /* right side – form */
    .contact-form-side {
      flex: 1 1 45%;
      padding-left: 3rem;
    }
    .contact-section-eyebrow {
      font-size: 0.9rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: #b48b5a;
      margin-bottom: 1rem;
    }
    .contact-section-heading {
    
      font-size: 3rem;
      font-weight: 500;
      color: #000000; /* black */
      margin-bottom: 3rem;
      line-height: 1.2;
    }
    .contact-section-heading span {
      color: #b48b5a;
    }

    /* info blocks – artistic vertical rhythm */
    .info-block {
      margin-bottom: 3rem;
    }
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 1.8rem;
      margin-bottom: 2.5rem;
      border-bottom: 1px dashed rgba(180,139,90,0.3);
      padding-bottom: 1.5rem;
      transition: transform 0.3s ease, border-color 0.3s;
    }
    .info-item:last-child {
      border-bottom: none;
    }
    .info-item:hover {
      transform: translateX(8px);
      border-bottom-color: #b48b5a;
    }
       .info-item span{color:var(--color1); font-size: 1.5rem;}
    .info-icon {
      width: 56px;
      height: 56px;
      background: transparent;
      border: 2px solid #b48b5a;
      border-radius: 20px 0 20px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #b48b5a;
      flex-shrink: 0;
      transition: 0.3s;
    }
    .info-item:hover .info-icon {
      background: #b48b5a;
      color: #fff;
      box-shadow: 0 10px 20px -5px rgba(180,139,90,0.4);
    }
    .info-content {
      font-size: 1.1rem;
      font-weight: 300;
      color: #2c3a40;
      line-height: 1.7;
      
      
    }
    .info-content strong {
      display: block;
      font-weight: 500;
      color: #000000; /* black */
      margin-bottom: 0.3rem;
      font-size: 1.3rem;
      
    }
    .info-content a {
      color: #2c3a40;
      text-decoration: none;
      font-family:var(--font2);
      font-size: 1.2rem;
    
      transition: color 0.3s;
    }
    .info-content a:hover {
      color: #b48b5a;
    }

    /* form – floating label style with subtle hover */
    .form-creative {
      background: #faf8f4;
      padding: 3rem;
      border-radius: 60px 0 60px 0;
      box-shadow: 0 20px 30px -15px rgba(0,0,0,0.15);
      position: relative;
      z-index: 2;
      transition: box-shadow 0.3s ease;
    }
    .form-creative:hover {
      box-shadow: 0 25px 35px -15px rgba(180,139,90,0.25); /* subtle, no large spread */
    }
    .form-creative::before {
      content: '';
      position: absolute;
      top: -15px; left: -15px;
      width: 80px; height: 80px;
      background: #b48b5a;
      opacity: 0.1;
      border-radius: 50%;
      z-index: -1;
    }
    .form-creative::after {
      content: '';
      position: absolute;
      bottom: -20px; right: -20px;
      width: 120px; height: 120px;
      background: #b48b5a;
      opacity: 0.08;
      border-radius: 50%;
      z-index: -1;
    }
    .contact-form-side .form-group {
      margin-bottom: 2.2rem;
      position: relative;
    }
    .contact-form-side .form-label {
      font-weight: 500;
      color: #000000;
      margin-bottom: 0.2rem;
      display: block;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .contact-form-side .form-control {
      border: none;
      border-bottom: 2px solid #d9cfc0;
      background: transparent;
      padding: 0.6rem 0;
      border-radius: 0;
      font-weight: 300;
      font-size: 1.1rem;
      transition: border-color 0.3s, padding-left 0.3s;
    }
    .contact-form-side .form-control:focus {
      outline: none;
      border-bottom-color: #b48b5a;
      box-shadow: 0 5px 10px rgba(180,139,90,0.05);
      padding-left: 8px;
    }
    .contact-form-side textarea.form-control {
      min-height: 90px;
      resize: vertical;
    }
    /* improved button hover effect */
    .contact-form-side .btn-submit {
      background: #000000; /* black */
      color: #fff;
      border: 2px solid #000000;
      padding: 1rem 2.5rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      border-radius: 40px 0 40px 0;
      transition: all 0.3s ease;
      width: 100%;
      font-size: 1.1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .contact-form-side .btn-submit:hover {
      background: #b48b5a;
      border-color: #b48b5a;
      color: #000000;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px -8px #b48b5a;
    }
    .contact-form-side .btn-submit i {
      transition: transform 0.3s;
    }
    .contact-form-side .btn-submit:hover i {
      transform: translateX(5px);
    }

    @media(max-width:993px)
    {
      .contact-main{text-align: center;}
      .info-item{display: block;}
      .info-icon{margin-left: auto; margin-right: auto; margin-bottom: 20px;}
      .contact-form-side .form-label{text-align: left;}
    }

    /* full-width map section */
    .map-fullwidth {
      width: 100%;
       /* black background for contrast */
      padding: 0;
      

      padding: 3rem 8%;
    }
    .map-container {
      width: 100%;
      height: 450px;
      position: relative;
      overflow: hidden;
      border: 6px solid #fff;
      outline: 2px solid #b48b5a;
      outline-offset: 4px;
      border-radius: 40px 0 40px 0;
      overflow: hidden;
      box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
      transition: 0.3s;
    }
    .map-container:hover {
      outline-width: 4px;
       transform:  translateY(-30px);
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(.5) contrast(1.1);
      transition: filter 0.5s;
    }
    .map-container iframe:hover {
      filter: grayscale(0) contrast(1);
    }
  
    

    /* responsive */
    @media (max-width: 992px) {
      .contact-info-side, .contact-form-side {
        flex: 1 1 100%;
        padding: 0;
      }
      .contact-info-side::after {
        display: none;
      }
      .contact-info-side {
        margin-bottom: 0rem;
      }
      .contact-section-heading {
        font-size: 1.5rem;
      }
      .map-container {
        height: 350px;
      }
      .contact-form-side .btn-submit{font-size: 0.9rem;}
    }
 /*Contact Page */ 


 /*Work Progress Page */
/* work-hero – bold and modern */
    .work-hero {
      min-height: 40vh;
      background: #191919;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 3rem 1.5rem;
      position: relative;
      overflow: hidden;
    }
    .work-hero::before {
      content: '';
      position: absolute;
      top: -30%; right: -20%;
      width: 80%; height: 200%;
      background: radial-gradient(circle, #b48b5a20 0%, transparent 70%);
      border-radius: 50%;
    }
    .work-hero::after {
      content: '';
      position: absolute;
      bottom: -30%; left: -20%;
      width: 70%; height: 150%;
      background: radial-gradient(circle, #b48b5a15 0%, transparent 70%);
      border-radius: 50%;
    }
    .work-hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      color: #fff;
    }
    .work-hero-content h1 {
      
      font-size: clamp(1.7rem, 7vw, 3.5rem);
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .work-hero-content h1 span {
      color: #b48b5a;
      display: block;
      font-size: 0.4em;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 0.5rem;
    }
    .work-hero-content p {
      font-size: 1.1rem;
      font-weight: 300;
      max-width: 550px;
      margin: 1.5rem auto 0;
      opacity: 0.9;
    }

    /* gallery container */
    .work-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 5rem 1.5rem;
    }

    /* date group – with decorative elements */
    .date-group {
      margin-bottom: 5rem;
      position: relative;
    }
    .date-group:last-child {
      margin-bottom: 0;
    }
    .date-group::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 4px;
      height: 80%;
      background: linear-gradient(to bottom, #b48b5a, transparent);
      opacity: 0.4;
      transform: translateX(-2rem);
    }

  
    .date-heading {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 2.5rem;
    }
    .date-heading h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 500;
      color: #1e1e1e;
      margin: 0;
      position: relative;
      padding-bottom: 10px;
    }

    .date-heading h2:after{content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: #b48b5a;}
    .date-heading .month-tag {
      color: #93570f;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: clamp(1.1rem, 4vw, 1.3rem);
    }

    /* image grid – uniform columns */
    .work-image-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
    }
    .work-image-grid-item {
      flex: 1 1 calc(25% - 1.35rem); /* 4 columns with gap */
      min-width: 240px;
    }
    @media (max-width: 992px) {
      .work-image-grid-item {
        flex: 1 1 calc(33.333% - 1.2rem); 
      }
      .date-heading{display: block;}
      .date-heading h2{margin-bottom: 20px;}
      .date-heading h2::after{left: 50%; transform: translateX(-50%);}
      
    }
    @media (max-width: 768px) {
      .work-image-grid-item {
        flex: 1 1 calc(50% - 0.9rem);
      }
      .date-heading h2 {
        font-size:1.5rem;
      }
    }
    @media (max-width: 576px) {
      .work-image-grid-item {
        flex: 1 1 100%;
      }
      .date-group::before {
        display: none;
      }
    }

    /* gallery item – modern card with overlay on hover */
    .work-gallery-item {
      display: block;
      text-decoration: none;
      border-radius: 12px;
      overflow: hidden;
      background: #f0eeea;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      height: 100%;
      position: relative;
    }
    .work-gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, transparent 60%, rgba(180,139,90,0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    .work-gallery-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -8px rgba(180,139,90,0.3);
    }
    .work-gallery-item:hover::after {
      opacity: 1;
    }
    .work-gallery-item img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }
    .work-gallery-item:hover img {
      transform: scale(1.02);
    }

    /* optional subtle background pattern */
    .work-container {
      background-image: radial-gradient(circle at 20% 30%, #b48b5a08 0%, transparent 30%);
    }

 /*Work Progress Page */

.form-control, .form-control::placeholder, input, input::placeholder, textarea, textarea::placeholder{font-family: var(--font2); font-weight: 300;}



@media(max-width:769px)
{
  .wel-div6 p,
.brand-text, .contact-info li {font-size: 0.8rem;}
.master-list h3 {
    font-size: 1.1rem;
  }
  .luxury-title {
  font-size: 0.9rem;}
}