/* ══════════════════════════════════════
   THE BUILDING PAGE — FULL CSS
   Theme: #181818 | #e30613 | #fff7f7
   Font: Poppins + Poppins
══════════════════════════════════════ */

/* ══════════════════════════════════════
   SECTION 1 — HERO
══════════════════════════════════════ */
.bld-hero {
  position: relative;
  width: 100%;
  height: 220px;
  background-image: url('../img/sectionsbgimage.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}
.bld-hero-overlay {
  position: absolute; inset: 0;
  /* background: rgba(20,17,12,0.65); */
}
.bld-hero-content {
  position: relative; z-index: 2; text-align: center;
}
.bld-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px; font-weight: 400; color: #fff;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 14px;
}
.bld-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
.bld-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.bld-breadcrumb a:hover { color: #e30613; }
.bld-breadcrumb span    { color: #e30613; }
.bld-breadcrumb-dot     { color: #e30613; font-size: 16px; }


/* ══════════════════════════════════════
   SECTION 2 — INTRO TEXT
══════════════════════════════════════ */
.bld-intro {
  background: #fff;
  padding: 80px 48px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.bld-intro-inner { max-width: 860px; margin: 0 auto; }

.bld-intro-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: #e30613; margin-bottom: 16px;
}
.bld-intro-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 48px; font-weight: 400; color: #181818;
  line-height: 1.1; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 24px;
}
.bld-intro-heading span { color: #e30613; font-style: italic; text-transform: none; }

.bld-intro-divider {
  width: 48px; height: 2px; background: #e30613; margin: 0 auto 28px;
}
.bld-intro-bold {
  font-size: 14px; font-weight: 600; color: #181818;
  line-height: 1.85; letter-spacing: 0.3px; margin-bottom: 20px;
}
.bld-intro-light {
  font-size: 13px; color: #888; line-height: 1.9; letter-spacing: 0.3px;
}


/* ══════════════════════════════════════
   SECTION 3 — STATS
══════════════════════════════════════ */
.bld-stats {
  background: #fff7f7;
  padding: 56px 48px;
  font-family: 'Poppins', sans-serif;
}
.bld-stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.bld-stat-item {
  text-align: center; padding: 16px 20px; position: relative;
}
.bld-stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: #ffe2e4;
}
.bld-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 52px; font-weight: 400; color: #181818;
  line-height: 1; margin-bottom: 10px; letter-spacing: 2px;
  transition: color 0.3s;
}
.bld-stat-item:hover .bld-stat-number { color: #e30613; }
.bld-stat-line {
  width: 40px; height: 1px; background: #e30613; margin: 0 auto 10px;
}
.bld-stat-label {
  font-size: 9px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: #999;
}








/* ══════════════════════════════════════
   SECTION 4 — FULL WIDTH SLIDER
   Left: dark panel (text + vertical dots)
   Right: image
══════════════════════════════════════ */
    /* ── SECTION WRAPPER ── */
    .bld-slider-section {
      background: #2a2a2a;
      font-family: 'Poppins', sans-serif;
    }
 
    .bld-slider-inner {
      display: grid;
      grid-template-columns: 45% 55%;
      min-height: 460px;
      overflow: hidden;
    }
 
    /* ── LEFT PANEL ── */
    .bld-slider-left {
      background: #2a2a2a;
      display: flex;
      align-items: center;
      padding: 60px 50px 60px 56px;
    }
 
    .bld-slider-content {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      width: 100%;
    }
 
    /* Vertical dots */
    .bld-vdots {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 4px;
      flex-shrink: 0;
    }
 
    .bld-vdot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
 
    .bld-vdot.active {
      background: #c9a96e;
      transform: scale(1.4);
    }
 
    /* Text slides container */
    .bld-text-slides {
      flex: 1;
      position: relative;
      min-height: 300px;
    }
 
    .bld-text-slide {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      pointer-events: none;
    }
 
    /* ── SLIDE-IN ANIMATIONS (left to right) ── */
    .bld-slide-eyebrow {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 4.5px;
      text-transform: uppercase;
      color: #c9a96e;
      margin-bottom: 14px;
 
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
    }
 
    .bld-slide-title {
      font-family: 'Poppins', sans-serif;
      font-size: 30px;
      font-weight: 400;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 22px;
      line-height: 1.15;
 
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.5s ease 0.08s, transform 0.5s ease 0.08s;
    }
 
    .bld-slide-desc {
      font-size: 12.5px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.95;
      letter-spacing: 0.3px;
      margin-bottom: 30px;
 
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.5s ease 0.16s, transform 0.5s ease 0.16s;
    }
 
    .bld-slide-link {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: #c9a96e;
      text-decoration: none;
      border-bottom: 1px solid rgba(201, 169, 110, 0.35);
      padding-bottom: 3px;
      display: inline-block;
 
      opacity: 0;
      transform: translateX(-30px);
      transition: opacity 0.4s ease 0.24s, transform 0.4s ease 0.24s, color 0.2s, border-color 0.2s;
    }
 
    .bld-slide-link:hover {
      color: #dfc090;
      border-color: #dfc090;
    }
 
    /* When slide is active — animate in */
    .bld-text-slide.visible .bld-slide-eyebrow,
    .bld-text-slide.visible .bld-slide-title,
    .bld-text-slide.visible .bld-slide-desc,
    .bld-text-slide.visible .bld-slide-link {
      opacity: 1;
      transform: translateX(0);
      pointer-events: all;
    }
 
    /* ── RIGHT PANEL ── */
    .bld-slider-right {
      position: relative;
      overflow: hidden;
    }
 
    .bld-img-slides {
      width: 100%;
      height: 100%;
      position: relative;
    }
 
    /* Image slides: zoom from center on enter */
    .bld-img-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
 
    .bld-img-slide.active {
      opacity: 1;
      transform: scale(1);
    }
 
    .bld-img-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }






/* ══════════════════════════════════════
   SECTION 5 — AMENITIES & SERVICES
══════════════════════════════════════ */
.bld-amenities {
  background: #fff;
  padding: 80px 48px;
  font-family: 'Poppins', sans-serif;
}

.bld-amenities-tagline {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.bld-amenities-tagline p {
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 400; color: #181818;
  line-height: 1.6; letter-spacing: 1px; text-transform: uppercase;
}

.bld-amenities-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
}

.bld-amen-divider { background: #ffd6d9; width: 1px; }

.bld-amen-col { text-align: center; }

.bld-amen-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px; font-weight: 400; color: #181818;
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ffd6d9;
}

.bld-amen-list {
  list-style: none; padding: 0; margin: 0;
}
.bld-amen-list li {
  font-size: 13px; color: #888; letter-spacing: 1px;
  padding: 10px 0; border-bottom: 1px solid #f5f2ed;
  transition: color 0.2s;
}
.bld-amen-list li:hover { color: #e30613; }
.bld-amen-list li:last-child { border-bottom: none; }


/* ══════════════════════════════════════
   SECTION 6 — GALLERY GRID
   2 rows x 4 cols + lightbox
══════════════════════════════════════ */
    .bld-gallery {
      background: #fff7f7;
      font-family: 'Poppins', sans-serif;
          padding-bottom: 50px;
    }
 
    .bld-gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 260px;
      gap: 4px;
    }
 
    /* ★ Second item spans 2 rows — tall card like reference image ★ */
    .bld-gal-item:nth-child(2) {
      grid-row: span 2;
    }
 
    .bld-gal-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: #aaa;
    }
 
    .bld-gal-item img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center; display: block;
      transition: transform 0.55s ease, filter 0.4s ease;
    }
 
    .bld-gal-item:hover img {
      transform: scale(1.08);
      filter: brightness(0.55);
    }
 
    .bld-gal-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.35s ease;
    }
 
    .bld-gal-item:hover .bld-gal-overlay {
      background: rgba(15, 12, 8, 0.22);
    }
 
    .bld-gal-icon {
      width: 52px; height: 52px;
      /* border: 1.5px solid rgba(255,255,255,0.9); */
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.1);
      opacity: 0;
      transform: scale(0.4) rotate(-10deg);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
 
    .bld-gal-item:hover .bld-gal-icon {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
 
    .bld-gal-icon svg {
      width: 22px; height: 22px;
      fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round;
    }
 
    /* ══ LIGHTBOX ══ */
    .bld-lightbox {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.93);
      z-index: 9999;
      display: flex; align-items: center; justify-content: center;
      visibility: hidden; opacity: 0;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
 
    .bld-lightbox.active { visibility: visible; opacity: 1; }
 
    .bld-lightbox img {
      max-width: 88vw; max-height: 85vh;
      object-fit: contain; display: block;
      border: 1.5px solid #c9a96e;
    }
 
    .bld-lightbox-close {
      position: absolute; top: 22px; right: 28px;
      width: 40px; height: 40px;
      background: none; border: 1px solid rgba(201,169,110,0.5);
      color: #c9a96e; font-size: 22px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s;
    }
    .bld-lightbox-close:hover { background: #c9a96e; color: #ffffff; }
 
    .bld-lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px;
      background: none; border: 1px solid rgba(201,169,110,0.4);
      color: #c9a96e; font-size: 20px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, color 0.2s;
    }
    .bld-lb-nav:hover { background: #c9a96e; color: #ffffff; }
    .bld-lb-prev { left: 20px; }
    .bld-lb-next { right: 20px; }
 
    .bld-lb-counter {
      position: absolute; bottom: 20px;
      left: 50%; transform: translateX(-50%);
      color: rgba(201,169,110,0.7);
      font-size: 11px; letter-spacing: 3px;
      font-family: 'Poppins', sans-serif;
    }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1000px) {
  .bld-slider-inner      { grid-template-columns: 1fr; }
  .bld-slider-right      { height: 360px; }
  .bld-slider-content    { padding: 48px 28px; }
  .bld-gallery-grid      { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 220px); }
  .bld-amenities-grid    { grid-template-columns: 1fr; gap: 0; }
  .bld-amen-divider      { display: none; }
  .bld-amen-col          { margin-bottom: 40px; }
  .bld-stats             { padding: 48px 28px; }
  .bld-intro, .bld-amenities { padding: 60px 28px; }
}

@media (max-width: 600px) {
  .bld-hero              { height: 160px; }
  .bld-hero-title        { font-size: 28px; }
  .bld-intro-heading     { font-size: 32px; }
  .bld-stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .bld-stat-item:nth-child(2)::after { display: none; }
  .bld-gallery-grid      { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
  .bld-amenities-tagline p { font-size: 17px; }
  .bld-intro, .bld-amenities { padding: 44px 18px; }
  .bld-stats             { padding: 36px 18px; }
}

/* Viaan Infra red brand theme update */
:root{
  --viaan-red:#e30613;
  --viaan-red-dark:#b8000a;
  --viaan-red-soft:#fff2f3;
  --viaan-dark:#181818;
  --viaan-text:#222222;
}
html, body{font-family:'Poppins', Arial, sans-serif !important;background:#ffffff;color:var(--viaan-text);}
h1,h2,h3,h4,h5,h6,.bld-hero-title,.hero-title,.section-title,.about-title{font-family:'Poppins', Arial, sans-serif !important;font-weight:800;letter-spacing:-0.03em;}
p,li,a,span,button,input,textarea,select{font-family:'Poppins', Arial, sans-serif !important;}
.nav-logo img,.footer-logo img{max-height:82px;object-fit:contain;}
.navbar,.nav-header,.header,.main-header{background:#ffffff !important;border-color:#ffd6d9 !important;box-shadow:0 8px 28px rgba(227,6,19,.08) !important;}
.nav-menu a,.nav-link,.mobile-menu a{color:var(--viaan-dark) !important;font-weight:600;}
.nav-menu a:hover,.nav-link:hover,.nav-menu .active,.nav-link.active{color:var(--viaan-red) !important;}
.bld-hero,.hero,.main-hero,.page-banner,.banner,.inner-banner{background-color:var(--viaan-dark) !important;}
.bld-hero::before,.hero::before,.main-hero::before,.page-banner::before,.banner::before{background:linear-gradient(90deg,rgba(24,24,24,.88),rgba(227,6,19,.55),rgba(24,24,24,.25)) !important;}
.bld-hero-overlay,.hero-overlay,.banner-overlay{background:linear-gradient(90deg,rgba(24,24,24,.86),rgba(227,6,19,.52)) !important;}
.bld-hero-title,.hero-title,.banner-title{color:#ffffff !important;text-shadow:0 4px 18px rgba(0,0,0,.35);}
.bld-hero-subtitle,.hero-subtitle,.banner-subtitle{color:#ffe2e4 !important;}
.btn,.button,.theme-btn,.primary-btn,.read-more,.cta-btn,button[type='submit'],input[type='submit']{background:var(--viaan-red) !important;color:#ffffff !important;border-color:var(--viaan-red) !important;border-radius:6px !important;font-weight:700 !important;box-shadow:0 10px 24px rgba(227,6,19,.22) !important;}
.btn:hover,.button:hover,.theme-btn:hover,.primary-btn:hover,.read-more:hover,.cta-btn:hover,button[type='submit']:hover,input[type='submit']:hover{background:var(--viaan-red-dark) !important;border-color:var(--viaan-red-dark) !important;color:#ffffff !important;}
a{color:var(--viaan-red);} a:hover{color:var(--viaan-red-dark);}
.section-label,.eyebrow,.about-hero-eyebrow,.subtitle,.tagline,.logo-tagline{color:var(--viaan-red) !important;font-weight:700 !important;}
.title-underline,.section-title:after,.heading-line,.divider,.bld-hero-divider{background:var(--viaan-red) !important;border-color:var(--viaan-red) !important;}
.card,.project-card,.service-card,.feature-card,.faq-item,.amenity-card,.blog-card,.contact-card,.team-card{border-color:#ffd6d9 !important;box-shadow:0 12px 32px rgba(227,6,19,.08) !important;}
.card:hover,.project-card:hover,.service-card:hover,.feature-card:hover,.blog-card:hover{box-shadow:0 18px 44px rgba(227,6,19,.16) !important;transform:translateY(-3px);}
.icon,.service-icon,.feature-icon,.contact-icon,i{color:var(--viaan-red) !important;}
footer,.footer{background:#181818 !important;color:#ffffff !important;}
footer a,.footer a{color:#ffe2e4 !important;} footer a:hover,.footer a:hover{color:#ffffff !important;}
footer h1,footer h2,footer h3,footer h4,.footer h1,.footer h2,.footer h3,.footer h4{color:#ffffff !important;}
.footer-bottom,.copyright{border-color:rgba(227,6,19,.35) !important;}
.social-icon, .social a{background:rgba(227,6,19,.12) !important;color:#ffffff !important;border-color:rgba(227,6,19,.35) !important;}
.social-icon:hover,.social a:hover{background:var(--viaan-red) !important;}
input:focus,textarea:focus,select:focus{border-color:var(--viaan-red) !important;box-shadow:0 0 0 3px rgba(227,6,19,.12) !important;outline:none;}
.badge,.counter,.count,.project-status,.highlight{background:var(--viaan-red-soft) !important;color:var(--viaan-red) !important;border-color:#ffd6d9 !important;}
::selection{background:var(--viaan-red);color:#ffffff;}
