/* ===========================
   Nilgiri Construction & Renovations
   Design system: Deep Navy + Warm Gold + Ivory
   Fonts: Fraunces (display) + Manrope (body)
   =========================== */

:root {
  --nc-navy: #0b1d3a;
  --nc-navy-2: #122a52;
  --nc-navy-3: #1a3a6e;
  --nc-gold: #c8a45c;
  --nc-gold-2: #e2c078;
  --nc-ivory: #f5f1ea;
  --nc-ivory-2: #ece5d8;
  --nc-charcoal: #1e1e1e;
  --nc-muted: #000000;
  --nc-line: rgba(11, 29, 58, 0.08);
  --nc-shadow: 0 20px 60px -20px rgba(11, 29, 58, 0.25);
  --nc-shadow-sm: 0 8px 24px -12px rgba(11, 29, 58, 0.18);
  --nc-radius: 16px;
  --nc-radius-lg: 22px;
  --primary-font-family:font-family: 'Libre Baskerville', serif;
}

* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  color:black;
  background: var(--nc-ivory);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
  font-family:'Libre Baskerville', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--nc-navy);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  text-transform: capitalize;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.15; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.25;  }

p { color: #000000; }
a { color: var(--nc-navy); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--nc-gold); }

.container-nc { max-width: 1240px; padding-left: 24px; padding-right: 24px; margin: 0 auto; }

.section {
  padding: clamp(50px, 10vw, 50px) 0;
  position: relative;
}
.section-dark {
  background: var(--nc-navy);
  color: var(--nc-ivory);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p { color: rgba(245,241,234,0.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nc-gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--nc-gold);
  display: inline-block;
}

.lead-lg {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #000000;
  max-width: 640px;
}

.logo {
    height:auto;
    width:120px;
    max-width: 100%;
    display: block;
    object-fit: contain;
    /* transition: transform 0.35s ease, opacity 0.35s ease; */
}

/* .logo:hover {
    transform: scale(1.05);
    opacity: 0.95;
} */

.navbar-brand:hover .logo{
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo {
        height: 70px;
        margin-left: -13px;
    }
}

/* ===== BUTTONS ===== */
.btn-nc {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-nc i { transition: transform .35s ease; }
.btn-nc:hover i { transform: translateX(4px); }

.btn-gold {
  background: var(--nc-gold);
  color: var(--nc-navy);
  box-shadow: 0 12px 30px -12px rgba(200,164,92,0.55);
}
.btn-gold:hover {
  background: var(--nc-gold-2);
  color: var(--nc-navy);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(200,164,92,0.7);
}

.btn-outline-nc {
  background: var(--nc-navy);
  color: var(--nc-ivory-2);
  border: 1px solid var(--nc-navy);
}
.btn-outline-nc:hover {
  background: var(--nc-navy);
  color: #fff;
}

.btn-outline-ivory {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(245,241,234,0.35);
}
.btn-outline-ivory:hover {
  background: rgba(245,241,234,0.08);
  border-color: var(--nc-gold);
  color: var(--nc-gold);
}

/* ===== NAVBAR ===== */
.nc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 5px 0;
  transition: all .35s ease;
  background: rgba(255, 255, 255, 0);
}
.nc-nav.scrolled {
  background: rgba(11, 29, 58, 0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -14px rgba(0,0,0,0.3);
}
body.subpage .nc-nav {
  background: rgba(11, 29, 58, 0.96);
  backdrop-filter: blur(16px);
}
.nc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff !important;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nc-brand-mark {
  width: 40px; height: 40px;
  border: 1px solid var(--nc-gold);
  color: var(--nc-gold);
  display: grid; place-items: center;
  border-radius: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  transition: all .3s ease;
}
.nc-brand:hover .nc-brand-mark { background: var(--nc-gold); color: var(--nc-navy); }
.nc-brand small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nc-gold);
  font-weight: 500;
  margin-top: 2px;
}
.nc-nav .navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 14px !important;
  position: relative;
  transition: color .25s ease;
}
.nc-nav .navbar-nav .nav-link:hover,
.nc-nav .navbar-nav .nav-link.active { color: var(--nc-gold) !important; }
.nc-nav .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px; right: 14px;
  height: 1px;
  background: var(--nc-gold);
}
.nc-nav .dropdown-menu {
  background: #0f2547;
  border: 1px solid rgba(200,164,92,0.15);
  border-radius: 14px;
  padding:5px;
  /*min-width: 100%;*/
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.4);
  margin-top: 12px !important;
}
.nc-nav .dropdown-item {
  color: rgba(255,255,255,0.82);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all .25s ease;
}
.nc-nav .dropdown-item:hover,
.nc-nav .dropdown-item:focus {
  background: rgba(200,164,92,0.1);
  color: var(--nc-gold);
  padding-left: 20px;
}
.navbar-toggler { border: 1px solid rgba(255,255,255,0.25); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }
.nc-cta-nav {
  margin-left: 14px;
  padding: 10px 22px !important;
  border: 1px solid var(--nc-gold) !important;
  color: var(--nc-gold) !important;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nc-cta-nav:hover {
  background: var(--nc-gold);
  color: var(--nc-navy) !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--nc-navy);
  color: #fff;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,164,92,0.14), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(26,58,110,0.6), transparent 55%);
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,164,92,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,92,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  z-index: 0;
}
.hero > .container-nc { position: relative; z-index: 2; }

.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--nc-gold); font-style: italic; font-weight: 400; }
.hero p.lead-lg { color: rgba(245,241,234,0.8); max-width: 560px; font-size: 1.1rem; }
.hero .hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-meta .stat span {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: var(--nc-gold);
  line-height: 1;
}
.hero-meta .stat small {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,29,58,0.6));
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(11,29,58,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,164,92,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  z-index: 2;
  max-width: 300px;
}
.hero-badge.badge-2 {
  top: 24px;
  right: 24px;
  bottom: auto;
  left: auto;
}
.hero-badge strong {
  color: var(--nc-gold);
  font-family: 'Fraunces', serif;
  font-size: 20px;
  display: block;
}
.hero-badge span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Marquee */
.marquee {
  background: var(--nc-navy-2);
  color:var(--nc-gold);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family:var(--primary-font-family);
  font-size:20px;
}
.marquee-track span::before {
  content: "◆";
  color: var(--nc-gold);
  margin-right: 60px;
  font-size:20px;
  vertical-align: middle;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== CARDS ===== */
.svc-card {
  background:#dcc69b;
  border-radius: var(--nc-radius);
  padding: 32px;
  border: 1px solid var(--nc-line);
  transition: all .45s cubic-bezier(.2,.8,.2,1);
  height: 100%;
  position: relative;
  overflow: hidden;
}


.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--nc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nc-shadow);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--nc-ivory-2), var(--nc-ivory));
  color: var(--nc-navy);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all .35s ease;
}
.svc-card:hover .svc-icon {
  background: var(--nc-navy);
  color: var(--nc-gold);
}
.svc-card h3 { font-size: 1.3rem; margin-bottom: 10px;  font-family:var(--primary-font-family); color:var(--nc-navy-2)}
.svc-card p { color: #000000; font-size: 0.95rem; margin: 0 0 18px; }
.svc-card a.svc-link {
  color: var(--nc-navy);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-card a.svc-link i { transition: transform .3s ease; }
.svc-card:hover a.svc-link { color: var(--nc-gold); }
.svc-card:hover a.svc-link i { transform: translateX(5px); }

/* Feature grid image */
.story-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(170px, 0.75fr);
  gap: 16px;
  position: relative;
  padding: 12px 0 30px;
}

.story-collage::before {
  content: "";
  position: absolute;
  inset: 0 34px 18px auto;
  width: 54%;
  border: 1px solid rgba(200, 164, 92, 0.38);
  border-radius: calc(var(--nc-radius-lg) + 12px);
  transform: translate(14px, 18px);
  pointer-events: none;
}

.story-photo {
  min-height: 100%;
}

.story-photo-main {
  align-self: stretch;
}

.story-stack {
  display: grid;
  gap: 16px;
}

.story-logo-card {
  aspect-ratio: 4 / 3;
  min-height: 190px;
  border-radius: var(--nc-radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(245,241,234,0.95)),
    radial-gradient(circle at top right, rgba(200,164,92,0.22), transparent 42%);
  border: 1px solid rgba(200, 164, 92, 0.28);
  box-shadow: var(--nc-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(18px, 3vw, 30px);
  position: relative;
  overflow: hidden;
}

.story-logo-card::before,
.story-logo-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.story-logo-card::before {
  width: 90px;
  height: 90px;
  border: 1px solid rgba(200, 164, 92, 0.28);
  top: -36px;
  right: -24px;
}

.story-logo-card::after {
  width: 52px;
  height: 52px;
  background: rgba(11, 29, 58, 0.06);
  bottom: -18px;
  left: -14px;
}

.story-logo-kicker {
  color: var(--nc-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.story-logo-card img {
  width: min(168px, 82%);
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.story-logo-line {
  width: 46px;
  height: 1px;
  background: var(--nc-gold);
  margin: 16px 0 10px;
}

.story-logo-card p {
  color: var(--nc-navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.story-proof {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  bottom: 0;
  max-width: 230px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--nc-radius);
  background: var(--nc-navy);
  color: #fff;
  box-shadow: var(--nc-shadow-sm);
}

.story-proof strong {
  color: var(--nc-gold-2);
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.story-proof span {
  color: rgba(245, 241, 234, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}
.feature-img {
    border-radius: var(--nc-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--nc-shadow);
    transition: all .4s ease;
}

.feature-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.feature-img:hover img{
    transform:scale(1.06);
}

.feature-img.tall{
    aspect-ratio: 3 / 4;
    min-height: 460px;
    width: 100%;
}

.feature-img.tall img{
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Agar pura container fill karna hai */
}
.feature-img.wide{
    aspect-ratio:4/3;
    min-height:220px;
}
.feature-img.p-4{
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(145deg,#fff,#f8f4eb);
    border:2px solid rgba(201,164,92,.45);
    box-shadow:
        0 15px 35px rgba(0,0,0,.08),
        0 0 0 8px rgba(201,164,92,.08);
    position:relative;
}

/* .feature-img.p-4::before{
    content:"";
    position:absolute;
    inset:12px;
    border:1px dashed rgba(201,164,92,.45);
    border-radius:18px;
} */

.feature-img.p-4 img{
    width:78%;
    height:auto;
    object-fit:contain;
    z-index:2;
}

/* .feature-img.p-4::after{
    content:"Official Company Logo";
    position:absolute;
    bottom:18px;
    left:50%;
    transform:translateX(-50%);
    background:#0b1d3a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    letter-spacing:1px;
    font-weight:600;
} */

@media (max-width: 575.98px) {
  .story-collage {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .story-collage::before {
    display: none;
  }

  .story-stack {
    grid-template-columns: 1fr;
  }

  .story-logo-card {
    min-height: 180px;
  }

  .story-proof {
    position: static;
    margin-top: 16px;
    max-width: none;
  }
}

@media (max-width: 767.98px) {

    /* First image full width */
    .feature-img.tall{
        aspect-ratio:16/10;
        min-height:auto;
        width:100%;
        margin-bottom:15px;
    }

    /* Second row images */
    /*.feature-img.wide{*/
    /*    aspect-ratio:1/1;*/
    /*    min-height:170px;*/
    /*}*/

    /*.feature-img.p-4{*/
    /*    padding:15px;*/
    /*}*/

    /*.feature-img.p-4 img{*/
    /*    width:75%;*/
    /*    max-width:140px;*/
    /*}*/
    
    
}
/*=========================
TESTIMONIALS
==========================*/

.testimonialSwiper{
    padding:15px 5px 70px;
    overflow:hidden;
}

.testimonialSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.testi-card{
    background:#fff;
    border-radius:20px;
    border:1px solid var(--nc-line);
    padding:35px;
    height:100%;
    transition:.4s ease;
}

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

.testi-stars{
    color:var(--nc-gold);
    margin-bottom:15px;
    font-size:18px;
    letter-spacing:3px;
}

.testi-quote{
    font-family:'Manrope' serif;;
    font-size:17px;
    line-height:1.8;
    color:black;
    margin-bottom:25px;
}

.testi-author{
    display:flex;
    align-items:center;
    gap:15px;
    border-top:1px solid var(--nc-line);
    padding-top:20px;
}

.testi-author img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.testi-author strong{
    display:block;
    color:var(--nc-navy);
}

.testi-author span{
    color:var(--nc-muted);
    font-size:14px;
}

/* Arrows */

.swiper-button-next,
.swiper-button-prev{

width:40px;
height:40px;
border-radius:50%;
background:#0b1d3a;
color:#fff;
transition:.35s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

background:#c8a45c;
transform:scale(1.1);

}

.swiper-button-next::after,
.swiper-button-prev::after{

font-size:18px;
font-weight:bold;

}

/* Dots */

.swiper-pagination{
margin-top:20px;
}

.swiper-pagination-bullet{

width:12px;
height:12px;
opacity:1;
background:#ccc;

}

.swiper-pagination-bullet-active{

width:30px;
border-radius:20px;
background:var(--nc-gold);

}

@media(max-width:991px){

.swiper-button-next,
.swiper-button-prev{

display:none;

}

.testimonialSwiper{

padding-bottom:60px;

}

}

/* Process steps */
.step {
  padding: 32px;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: all .3s ease;
  height: 100%;
}
.step:hover { border-left-color: var(--nc-gold); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  color: var(--nc-gold);
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}
.step h3 { color: #fff; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; }

/* Stats strip */
.stats-strip {
    background: #c8a45c8f;
    border-top: 1px solid var(--nc-line);
    border-bottom: 1px solid var(--nc-line);
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--nc-line);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--nc-navy);
  line-height: 1;
}
.stat-item .num .plus { color: var(--nc-navy); }
.stat-item .lbl {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nc-muted);
  margin-top: 12px;
  display: block;
}

/* CTA Banner */
.cta-banner {
  background: var(--nc-navy);
  border-radius: var(--nc-radius-lg);
  padding: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,92,0.2), transparent 70%);
}
.cta-banner h2 { color: #fff; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--nc-navy);
  padding: 180px 0 90px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(200,164,92,0.12), transparent 55%);
}
.page-hero h1 { color: #fff; }
.page-hero .breadcrumb-nc {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero .breadcrumb-nc a { color: var(--nc-gold); }
.page-hero .breadcrumb-nc span { margin: 0 12px; opacity: 0.4; }

/* Contact */
.contact-card {
  background: #fff;
  border-radius: var(--nc-radius);
  padding: 40px;
  border: 1px solid var(--nc-line);
  /* height: 100%; */
}
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--nc-line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icn {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--nc-navy);
  color: var(--nc-gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nc-muted);
  margin-bottom: 4px;
}

.form-control-nc {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--nc-line);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--nc-charcoal);
  background: #fff;
  transition: all .3s ease;
}
.form-control-nc:focus {
  outline: none;
  border-color: var(--nc-navy);
  box-shadow: 0 0 0 4px rgba(11,29,58,0.06);
}
.form-label-nc {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nc-navy);
  margin-bottom: 8px;
  display: block;
}
textarea.form-control-nc { min-height: 140px; resize: vertical; }

.form-success {
  background: rgba(200,164,92,0.12);
  border: 1px solid var(--nc-gold);
  color: var(--nc-navy);
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: none;
}
.form-success.show { display: block; animation: fadeIn .5s ease; }

/* Footer */
.nc-footer {
  background: var(--nc-navy);
  color: rgba(255,255,255,0.7);
  padding: 90px 0 30px;
  position: relative;
}
.nc-footer h5 {
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.nc-footer a { color: rgba(255,255,255,0.7); font-size: 0.92rem; display: inline-block; padding: 4px 0; }
.nc-footer a:hover { color: var(--nc-gold); padding-left: 4px; }
.nc-footer ul { list-style: none; padding: 0; margin: 0; }
.footer-brand {
  font-family: 'Fraunces', serif;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--nc-gold); }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: grid; place-items: center;
  transition: all .3s ease;
}
.socials a:hover {
  background: var(--nc-gold);
  color: var(--nc-navy);
  border-color: var(--nc-gold);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding-top: 26px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration:none!important;}

/* Service detail sections */
.service-anchor {
  scroll-margin-top: 110px;
  padding: 48px 0;
  border-bottom: 1px solid var(--nc-line);
}
.service-anchor:last-child { border-bottom: none; }
.service-anchor h2 { font-size: 2rem; }
.service-check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.service-check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #000000;
}

.service-check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #000000;
}
.service-check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--nc-gold);
  color: var(--nc-navy);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Selection & focus */
::selection { background: var(--nc-gold); color: var(--nc-navy); }

/* Responsive tweaks */
@media (max-width: 991px) {
  .nc-nav .navbar-collapse {
    background: rgba(11, 29, 58, 0.98);
    /* margin-top: 14px; */
    padding: 20px;
    /* border-radius: 16px; */
    border: 1px solid rgba(200,164,92,0.12);
  }
  .nc-cta-nav { margin: 12px 0 0; display: inline-flex; }
  .hero { padding-top: 140px; }
  .hero-meta { gap: 22px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--nc-line); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 575px) {
  .hero-visual { aspect-ratio: 5/6; }
  .svc-card { padding: 26px; }
}

/* ===== MOBILE SLIDE-IN NAV (append to your existing stylesheet) ===== */

/* hamburger hamesha overlay/menu ke upar clickable rahe */
.navbar-toggler {
  position: relative;
  z-index: 1050;
}

/* backdrop */
.nc-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 28, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 1040;
}
.nc-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* menu open hone par background scroll lock */
body.nc-menu-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  #ncNav {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(400px, 100vw);
    background: rgba(11, 29, 58, 0.98);
    backdrop-filter: blur(16px);
    padding: 80px 28px 32px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    z-index: 1045;
    box-shadow: 24px 0 60px -16px rgba(0, 0, 0, 0.45);
  }
  #ncNav.show {
    transform: translateX(0);
  }

  #ncNav .navbar-nav {
    width: 100%;
  }
  #ncNav .nav-item {
    width: 100%;
  }
  #ncNav .nav-link {
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  #ncNav .dropdown {
    position: static;
  }
  #ncNav .dropdown-menu {
    position: static !important;
    float: none !important;
    inset: auto !important;
    transform: none !important;
    min-width: 100%;
    width: 100%;
    margin: 6px 0 10px !important;
    border-radius: 10px;
    box-shadow: none;
  }
  #ncNav .dropdown-menu[data-bs-popper] {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }
  #ncNav .dropdown-item {
    white-space: normal;
  }

  .nc-nav-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
  }
}

/*navbar */
@media (prefers-reduced-motion: reduce) {
  #ncNav,
  .nc-nav-overlay {
    transition-duration: .01ms !important;
  }
}

.footer-credit{
    color: var(--nc-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-credit:hover{
    color: #fff;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 767.98px){

    /* Footer Bottom Mobile */
@media (max-width: 767.98px){

    .footer-bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        gap: 2px !important;      /* Space between both lines */
        padding-top: 15px;
        padding-bottom: 5px;
    }

    .footer-bottom span{
        width: 100%;
        margin: 0;
        line-height: 1.5;
        font-size: 13px;          /* Smaller text */
        color: #b6bcc4;
    }

    .footer-bottom .footer-credit{
        font-size: 13px;
        font-weight: 600;
    }
}
    .justify-content-end {
    justify-content:flex-start!important;
}

}

/*@media (max-width:767.98px){*/

/*    .feature-img.tall{*/
/*        min-height:250px;*/
/*        aspect-ratio:16/10;*/
/*    }*/

/*    .feature-img.wide{*/
/*        min-height:150px;*/
/*        aspect-ratio:1/1;*/
/*    }*/

/*    .feature-img.p-4 img{*/
/*        width:70%;*/
/*    }*/
/*}*/

/* ===========================
   Mobile Only
=========================== */
/* ===========================
   Mobile Only
=========================== */
@media (max-width: 767.98px){

    /* Hide big image */
    .story-images .big-img-col{
        display: none;
    }

    /* Make row full width */
    .story-images .small-images{
        flex: 0 0 100%;
        max-width: 100%;
        flex-direction: row !important;
        gap: 12px !important;
    }

    /* Both cards same size */
    .story-images .small-images .feature-img{
        flex: 1;
        height: 180px;       /* Same Height */
        min-height: 180px;
        aspect-ratio: unset;
    }

    /* Images fill equally */
    .story-images .small-images .feature-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Logo image */
    .story-images .feature-img.p-4{
        padding: 15px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .story-images .feature-img.p-4 img{
        width: 55%;
        height: auto;
        object-fit: contain;
    }
}

/*  -------------------------------------------------------------------------- */*/
/*.portfolio-section {*/
/*  --pf-bg: #FAF7F2;*/
/*  --pf-navy: #102544;*/
/*  --pf-navy-soft: #24406b;*/
/*  --pf-gold: #C8A45C;*/
/*  --pf-gold-light: #E4C98B;*/
/*  --pf-white: #FFFFFF;*/
/*  --pf-ink: #4A5164;*/
/*  --pf-line: rgba(16, 37, 68, 0.10);*/
/*  --pf-radius-lg: 20px;*/
/*  --pf-radius-md: 14px;*/
/*  --pf-radius-sm: 8px;*/
/*  --pf-shadow-soft: 0 10px 28px rgba(16, 37, 68, 0.08);*/
/*  --pf-shadow-mid: 0 18px 40px rgba(16, 37, 68, 0.12);*/
/*  --pf-shadow-strong: 0 26px 60px rgba(16, 37, 68, 0.18);*/
/*  --pf-ease: cubic-bezier(0.22, 1, 0.36, 1);*/
 
/*  position: relative;*/
/*  isolation: isolate;*/
/*  overflow: hidden;*/
/*  background: var(--pf-bg);*/
/*  padding: 130px 0;*/
/*  font-family: 'Jost', 'Segoe UI', sans-serif;*/
/*  color: var(--pf-ink);*/
/*}*/
 
/*.portfolio-section,*/
/*.portfolio-section *,*/
/*.portfolio-section *::before,*/
/*.portfolio-section *::after {*/
/*  box-sizing: border-box;*/
/*}*/
 
/*.portfolio-section .container {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*}*/
 
/*.portfolio-section h2,*/
/*.portfolio-section h3 {*/
/*  font-family: 'Fraunces', 'Georgia', serif;*/
/*  color: var(--pf-navy);*/
/*  letter-spacing: -0.01em;*/
/*}*/
 
/* --------------------------------------------------------------------------
   2. Decorative Background — soft ambient blobs + a quiet blueprint motif
   -------------------------------------------------------------------------- */
/*.portfolio-shapes {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  z-index: 1;*/
/*  pointer-events: none;*/
/*  overflow: hidden;*/
/*}*/
 
/*.pf-shape {*/
/*  position: absolute;*/
/*  will-change: transform;*/
/*}*/
 
/*.pf-blob {*/
/*  border-radius: 58% 42% 65% 35% / 45% 55% 45% 55%;*/
/*  filter: blur(50px);*/
/*  opacity: 0.35;*/
/*  animation: pfDrift 22s var(--pf-ease) infinite alternate;*/
/*}*/
 
/*.pf-blob--gold {*/
/*  width: 380px;*/
/*  height: 380px;*/
/*  top: -140px;*/
/*  right: -120px;*/
/*  background: radial-gradient(circle at 30% 30%, var(--pf-gold-light), transparent 70%);*/
/*}*/
 
/*.pf-blob--navy {*/
/*  width: 420px;*/
/*  height: 420px;*/
/*  bottom: -180px;*/
/*  left: -140px;*/
/*  background: radial-gradient(circle at 60% 40%, var(--pf-navy-soft), transparent 70%);*/
/*  opacity: 0.14;*/
/*  animation-duration: 26s;*/
/*  animation-delay: -6s;*/
/*}*/
 
/*.pf-ring {*/
/*  width: 130px;*/
/*  height: 130px;*/
/*  border-radius: 50%;*/
/*  border: 1.5px solid rgba(200, 164, 92, 0.35);*/
/*  top: 12%;*/
/*  left: 5%;*/
/*  animation: pfSpin 40s linear infinite;*/
/*}*/
 
/*.pf-ring::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 22px;*/
/*  border-radius: 50%;*/
/*  border: 1px solid rgba(200, 164, 92, 0.25);*/
/*}*/
 
/*.pf-dot {*/
/*  width: 10px;*/
/*  height: 10px;*/
/*  border-radius: 50%;*/
/*  background: var(--pf-gold);*/
/*  opacity: 0.5;*/
/*  bottom: 18%;*/
/*  right: 8%;*/
/*  animation: pfDrift 10s var(--pf-ease) infinite alternate;*/
/*}*/
 
/* Quiet blueprint grid watermark — nods to construction drawings without
   competing with the content. Kept very faint. */
/*.pf-blueprint {*/
/*  width: 46%;*/
/*  max-width: 520px;*/
/*  aspect-ratio: 1 / 1;*/
/*  top: 4%;*/
/*  right: 2%;*/
/*  opacity: 0.05;*/
/*  background-image:*/
/*    linear-gradient(var(--pf-navy) 1px, transparent 1px),*/
/*    linear-gradient(90deg, var(--pf-navy) 1px, transparent 1px);*/
/*  background-size: 34px 34px;*/
/*  -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 75%);*/
/*  mask-image: radial-gradient(circle, #000 40%, transparent 75%);*/
/*}*/
 
/*@keyframes pfDrift {*/
/*  0%   { transform: translate(0, 0) scale(1); }*/
/*  100% { transform: translate(24px, -30px) scale(1.06); }*/
/*}*/
 
/*@keyframes pfSpin {*/
/*  from { transform: rotate(0deg); }*/
/*  to   { transform: rotate(360deg); }*/
/*}*/
 
/* --------------------------------------------------------------------------
   3. Section Header
   -------------------------------------------------------------------------- */
/*.portfolio-header {*/
/*  max-width: 700px;*/
/*  margin: 0 auto 64px;*/
/*  text-align: center;*/
/*}*/
 
/*.pf-eyebrow {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  font-size: 13px;*/
/*  font-weight: 600;*/
/*  letter-spacing: 0.32em;*/
/*  text-transform: uppercase;*/
/*  color: var(--pf-gold);*/
/*  margin-bottom: 18px;*/
/*}*/
 
/* Dimension-line ticks either side of the eyebrow — a small architectural
   drafting reference, in keeping with the construction subject matter. */
/*.pf-eyebrow::before,*/
/*.pf-eyebrow::after {*/
/*  content: '';*/
/*  width: 34px;*/
/*  height: 1px;*/
/*  background: var(--pf-gold);*/
/*  position: relative;*/
/*}*/
 
/*.pf-eyebrow::before {*/
/*  border-left: 1px solid var(--pf-gold);*/
/*}*/
 
/*.pf-eyebrow::after {*/
/*  border-right: 1px solid var(--pf-gold);*/
/*}*/
 
/*.portfolio-header h2 {*/
/*  font-size: clamp(2.1rem, 3.6vw, 3.1rem);*/
/*  font-weight: 600;*/
/*  line-height: 1.18;*/
/*  margin-bottom: 20px;*/
/*}*/
 
/*.portfolio-header h2 em {*/
/*  font-style: italic;*/
/*  font-weight: 500;*/
/*  color: var(--pf-gold);*/
/*}*/
 
/*.portfolio-header p {*/
/*  font-size: 1.05rem;*/
/*  line-height: 1.75;*/
/*  color: var(--pf-ink);*/
/*  margin: 0 auto;*/
/*}*/
 
/* --------------------------------------------------------------------------
   4. Tabs Navigation (Bootstrap 5 nav-pills, restyled)
   -------------------------------------------------------------------------- */
/*.portfolio-tabs-wrap {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  margin-bottom: 56px;*/
/*}*/
 
/*.portfolio-tabs {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  justify-content: center;*/
/*  gap: 14px;*/
/*  padding: 10px;*/
/*  background: var(--pf-white);*/
/*  border-radius: 60px;*/
/*  box-shadow: var(--pf-shadow-soft);*/
/*  border: 1px solid var(--pf-line);*/
/*}*/
 
/*.portfolio-tabs .nav-item {*/
/*  display: flex;*/
/*}*/
 
/*.portfolio-tabs .nav-link {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  padding: 13px 28px;*/
/*  border-radius: 50px;*/
/*  font-family: 'Jost', sans-serif;*/
/*  font-size: 15px;*/
/*  font-weight: 600;*/
/*  letter-spacing: 0.02em;*/
/*  color: var(--pf-navy);*/
/*  background: transparent;*/
/*  border: 2px solid transparent;*/
/*  transition: transform 0.35s var(--pf-ease), box-shadow 0.35s var(--pf-ease),*/
/*    background 0.35s var(--pf-ease), color 0.35s var(--pf-ease), border-color 0.35s var(--pf-ease);*/
/*}*/
 
/*.portfolio-tabs .nav-link svg {*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  stroke: currentColor;*/
/*  flex-shrink: 0;*/
/*  transition: transform 0.35s var(--pf-ease);*/
/*}*/
 
/*.portfolio-tabs .nav-link:hover {*/
/*  transform: translateY(-3px);*/
/*  box-shadow: 0 12px 24px rgba(200, 164, 92, 0.28);*/
/*  color: var(--pf-navy);*/
/*  background: rgba(200, 164, 92, 0.08);*/
/*}*/
 
/*.portfolio-tabs .nav-link:hover svg {*/
/*  transform: scale(1.1) rotate(-6deg);*/
/*}*/
 
/*.portfolio-tabs .nav-link.active {*/
/*  background: var(--pf-navy);*/
/*  border-color: var(--pf-gold);*/
/*  color: var(--pf-white);*/
/*  box-shadow: 0 14px 30px rgba(16, 37, 68, 0.28);*/
/*}*/
 
/*.portfolio-tabs .nav-link.active svg {*/
/*  stroke: var(--pf-gold);*/
/*}*/
 
/* Gold "dimension tick" indicator beneath the active pill */
/*.portfolio-tabs .nav-link {*/
/*  position: relative;*/
/*}*/
 
/*.portfolio-tabs .nav-link.active::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  left: 50%;*/
/*  bottom: -9px;*/
/*  width: 6px;*/
/*  height: 6px;*/
/*  background: var(--pf-gold);*/
/*  border-radius: 50%;*/
/*  transform: translateX(-50%) scale(0);*/
/*  animation: pfPop 0.4s var(--pf-ease) 0.1s forwards;*/
/*}*/
 
/*@keyframes pfPop {*/
/*  to { transform: translateX(-50%) scale(1); }*/
/*}*/
 
/* --------------------------------------------------------------------------
   5. Tab Content / Smooth Switching
   -------------------------------------------------------------------------- */
/*.portfolio-tab-content .tab-pane.fade {*/
/*  transition: opacity 0.5s ease;*/
/*}*/
 
/* --------------------------------------------------------------------------
   6. Gallery — Masonry / Bento Grid
   -------------------------------------------------------------------------- */
/*.portfolio-gallery-wrap {*/
/*  position: relative;*/
/*  padding: 18px;*/
/*}*/
 
/* Corner brackets — a quiet nod to blueprint reference marks, framing the
   gallery like a technical drawing detail crop. */
/*.portfolio-gallery-wrap::before,*/
/*.portfolio-gallery-wrap::after,*/
/*.portfolio-gallery-wrap .pf-corner {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 26px;*/
/*  height: 26px;*/
/*  border-color: var(--pf-gold);*/
/*  border-style: solid;*/
/*  border-width: 0;*/
/*  opacity: 0.85;*/
/*}*/
 
/*.portfolio-gallery-wrap::before {*/
/*  top: 0;*/
/*  left: 0;*/
/*  border-top-width: 2px;*/
/*  border-left-width: 2px;*/
/*}*/
 
/*.portfolio-gallery-wrap::after {*/
/*  bottom: 0;*/
/*  right: 0;*/
/*  border-bottom-width: 2px;*/
/*  border-right-width: 2px;*/
/*}*/
 
/*.portfolio-gallery {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(4, 1fr);*/
/*  grid-template-rows: repeat(4, 100px);*/
/*  grid-template-areas:*/
/*    'a a b c'*/
/*    'a a b c'*/
/*    'd e e c'*/
/*    'd f f c';*/
/*  gap: 16px;*/
/*}*/
 
/*.gallery-item:nth-child(1) { grid-area: a; }*/
/*.gallery-item:nth-child(2) { grid-area: b; }*/
/*.gallery-item:nth-child(3) { grid-area: c; }*/
/*.gallery-item:nth-child(4) { grid-area: d; }*/
/*.gallery-item:nth-child(5) { grid-area: e; }*/
/*.gallery-item:nth-child(6) { grid-area: f; }*/
 
/*.gallery-item {*/
/*  position: relative;*/
/*  display: block;*/
/*  overflow: hidden;*/
/*  border-radius: var(--pf-radius-md);*/
/*  box-shadow: var(--pf-shadow-soft);*/
/*  transition: box-shadow 0.4s var(--pf-ease), transform 0.4s var(--pf-ease);*/
/*}*/
 
/*.gallery-item:hover {*/
/*  box-shadow: var(--pf-shadow-mid);*/
/*  transform: translateY(-4px);*/
/*}*/
 
/*.gallery-item img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  display: block;*/
/*  object-fit: cover;*/
/*  transition: transform 0.7s var(--pf-ease), filter 0.5s ease;*/
/*}*/
 
/*.gallery-item:hover img {*/
/*  transform: scale(1.14);*/
/*}*/
 
/* Dark overlay on hover */
/*.gallery-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  background: linear-gradient(190deg, rgba(16, 37, 68, 0.12) 0%, rgba(16, 37, 68, 0.78) 100%);*/
/*  opacity: 0;*/
/*  transition: opacity 0.4s ease;*/
/*}*/
 
/*.gallery-item:hover .gallery-overlay {*/
/*  opacity: 1;*/
/*}*/
 
/*.gallery-icon {*/
/*  width: 54px;*/
/*  height: 54px;*/
/*  border-radius: 50%;*/
/*  background: var(--pf-gold);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transform: scale(0.35) rotate(-40deg);*/
/*  opacity: 0;*/
/*  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;*/
/*}*/
 
/*.gallery-item:hover .gallery-icon {*/
/*  transform: scale(1) rotate(0deg);*/
/*  opacity: 1;*/
/*}*/
 
/*.gallery-icon svg {*/
/*  width: 22px;*/
/*  height: 22px;*/
/*  stroke: var(--pf-navy);*/
/*}*/
 
/*.gallery-caption {*/
/*  position: absolute;*/
/*  left: 18px;*/
/*  bottom: 14px;*/
/*  right: 18px;*/
/*  color: var(--pf-white);*/
/*  font-size: 13px;*/
/*  font-weight: 500;*/
/*  letter-spacing: 0.02em;*/
/*  opacity: 0;*/
/*  transform: translateY(10px);*/
/*  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;*/
/*}*/
 
/*.gallery-item:hover .gallery-caption {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/
 
/* --------------------------------------------------------------------------
   7. Info Card (glassmorphism)
   -------------------------------------------------------------------------- */
/*.portfolio-info-card {*/
/*  position: relative;*/
/*  height: 100%;*/
/*  background: rgba(255, 255, 255, 0.72);*/
/*  backdrop-filter: blur(18px);*/
/*  -webkit-backdrop-filter: blur(18px);*/
/*  border: 1px solid rgba(200, 164, 92, 0.28);*/
/*  border-radius: var(--pf-radius-lg);*/
/*  box-shadow: var(--pf-shadow-mid);*/
/*  padding: 46px 42px;*/
/*  transition: transform 0.45s var(--pf-ease), box-shadow 0.45s var(--pf-ease);*/
/*}*/
 
/*.portfolio-info-card:hover {*/
/*  transform: translateY(-6px);*/
/*  box-shadow: var(--pf-shadow-strong);*/
/*}*/
 
/*.portfolio-info-card h3 {*/
/*  font-size: 1.7rem;*/
/*  font-weight: 600;*/
/*  margin-bottom: 8px;*/
/*}*/
 
/*.pf-card-underline {*/
/*  width: 46px;*/
/*  height: 3px;*/
/*  background: var(--pf-gold);*/
/*  border-radius: 2px;*/
/*  margin-bottom: 20px;*/
/*  transition: width 0.6s var(--pf-ease);*/
/*}*/
 
/*.portfolio-info-card:hover .pf-card-underline {*/
/*  width: 84px;*/
/*}*/
 
/*.portfolio-info-card > p {*/
/*  font-size: 15.5px;*/
/*  line-height: 1.8;*/
/*  color: var(--pf-ink);*/
/*  margin-bottom: 28px;*/
/*}*/
 
/* --------------------------------------------------------------------------
   8. Feature List (animated check icons)
   -------------------------------------------------------------------------- */
/*.feature-list {*/
/*  list-style: none;*/
/*  margin: 0 0 34px;*/
/*  padding: 0;*/
/*  display: grid;*/
/*  grid-template-columns: repeat(2, 1fr);*/
/*  gap: 14px 18px;*/
/*}*/
 
/*.feature-list li {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 12px;*/
/*  font-size: 14.5px;*/
/*  font-weight: 500;*/
/*  color: var(--pf-navy);*/
/*  opacity: 0;*/
/*  transform: translateX(-14px);*/
/*}*/
 
/*.feature-list.animate-in li {*/
/*  animation: pfFeatureIn 0.55s var(--pf-ease) forwards;*/
/*}*/
 
/*.feature-list.animate-in li:nth-child(1) { animation-delay: 0.05s; }*/
/*.feature-list.animate-in li:nth-child(2) { animation-delay: 0.12s; }*/
/*.feature-list.animate-in li:nth-child(3) { animation-delay: 0.19s; }*/
/*.feature-list.animate-in li:nth-child(4) { animation-delay: 0.26s; }*/
/*.feature-list.animate-in li:nth-child(5) { animation-delay: 0.33s; }*/
/*.feature-list.animate-in li:nth-child(6) { animation-delay: 0.40s; }*/
 
/*@keyframes pfFeatureIn {*/
/*  to { opacity: 1; transform: translateX(0); }*/
/*}*/
 
/*.check-icon {*/
/*  width: 25px;*/
/*  height: 25px;*/
/*  border-radius: 50%;*/
/*  background: rgba(200, 164, 92, 0.15);*/
/*  color: var(--pf-gold);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  flex-shrink: 0;*/
/*  transition: background 0.35s ease, transform 0.45s var(--pf-ease), color 0.35s ease;*/
/*}*/
 
/*.check-icon svg {*/
/*  width: 13px;*/
/*  height: 13px;*/
/*  stroke: currentColor;*/
/*}*/
 
/*.feature-list li:hover .check-icon {*/
/*  background: var(--pf-gold);*/
/*  color: var(--pf-white);*/
/*  transform: rotate(360deg);*/
/*}*/
 
/*==============================
PORTFOLIO
==============================*/

.portfolio-section{
    padding:100px 0;
    background:#fff;
    /*padding: clamp(50px, 10vw, 50px) 0;*/
}

.portfolio-header {
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-bottom: 45px;
    padding-top: 48px;
}
.subtitle{
    display:inline-block;
    color:#C8A45C;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.portfolio-header h2 {
    font-size: 48px;
    font-weight: 500;
    color: #0c1e3b;
    margin-bottom: 15px;
    font-family: 'Libre Baskerville', serif;
}

.highlight{
    color:#C8A45C;
}

.portfolio-header p{
    color:#000;
    max-width:620px;
    margin:auto;
    line-height:1.8;
}


/*==============================
FILTER BUTTONS
==============================*/

.portfolio-filters{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.filter-btn{

    border:none;
    background:#fff;

    padding:13px 30px;

    border-radius:50px;

    border:1px solid #ddd;

    font-size:13px;

    font-weight:700;

    color:#102544;

    transition:.35s;

    cursor:pointer;

}

.filter-btn:hover{

    background:#C8A45C;

    color:#fff;

    border-color:#C8A45C;

}

.filter-btn.active{

    background:#C8A45C;

    color:#fff;

    border-color:#C8A45C;

}


/*==============================
GALLERY
==============================*/

.gallery{

    display:none;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

    animation:fade .5s;

}

.active-gallery{

    display:grid;

}

.gallery a{

    display:block;

    overflow:hidden;

    border-radius:18px;

    position:relative;

    background:#f7f7f7;

}

.gallery img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.45s;

    display:block;

}

.gallery a:hover img{

    transform:scale(1.08);

}


/* overlay */

.gallery a::after{

    content:"+";

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:55px;

    color:#fff;

    background:rgba(16,37,68,.55);

    opacity:0;

    transition:.35s;

}

.gallery a:hover::after{

    opacity:1;

}


/*==============================
Animation
==============================*/

@keyframes fade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*==============================
Responsive
==============================*/

@media(max-width:1200px){

.gallery{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.gallery{

grid-template-columns:repeat(2,1fr);

}

.portfolio-header h2{

font-size:38px;

}

}

@media(max-width:576px){

.gallery{

grid-template-columns:1fr;

}

.gallery img{

height:230px;

}

.filter-btn{

width:100%;

}

.portfolio-header h2{

font-size:30px;

}

}

@media (max-width:767px){

    .testimonialSwiper .swiper-slide{
        height:auto;
    }

    .testi-card{
        min-height:340px; /* apne content ke hisab se 340-400px kar sakti ho */
    }
    .phone-details-header {
        display: none;
    }

}
 


/*---------changes--------*/

.header.contact-info-item .icn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: var(--nc-navy);
    background-color: var(--nc-gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-left: 30px;
}

section.areas-serve {
    background: var(--nc-navy); 
    .areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 15px;
                h4 {
            text-align: center;
            color: #fff;
            background: #ffffff3d;
            padding: 25px 10px;
            font-size: 20px;
            border-radius: 20px;
        }
    }
}






.before-after-section {
    padding: 80px 20px 0 20px;
}

.compare {
    --position: 50%;
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
}

.compare img {
    display: block;
    width: 100%;
    user-select: none;
    pointer-events: none;
}

.after-wrapper {
    position: absolute;
    inset: 0;
    width: var(--position);
    overflow: hidden;
}

.after-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Divider */
.divider {
    position: absolute;
    left: var(--position);
    top: 0;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #fff;
    z-index: 5;
}

/* Circle Handle */
.handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    cursor: ew-resize;
}

/* Invisible Range Slider */
.slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

/* Optional Labels */
.compare::before {
    content: "Before";
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    z-index: 20;
}

.compare::after {
    content: "After";
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    z-index: 20;
}

.before-after-section h4 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}


/*---Floating CTA Buttons------*/

.floating-buttons {
    position: fixed;
    bottom: 150px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px !important;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(0.9);
}

.phone {
    background: #122a52;
}

.whatsapp {
    background: #25D366;
}





/*-----Sticky Bottom Buttons-------*/

#vr-chat-btn{
  position:fixed;bottom:67px;right:30px;z-index:9999;
  width:58px;height:58px;border-radius:50%;
  background:#122a52;
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(91,29,138,0.45);
  transition:transform 0.2s,background 0.2s;
}
#vr-chat-btn:hover{background:#dcc69b;transform:scale(1.07);}
#vr-chat-btn svg{transition:opacity 0.2s,transform 0.2s;}
#vr-chat-btn .icon-open{opacity:1;}
#vr-chat-btn .icon-close{opacity:0;position:absolute;}
#vr-chat-btn.open .icon-open{opacity:0;}
#vr-chat-btn.open .icon-close{opacity:1;}
/* Pulse ring */
#vr-chat-btn::after{
  content:"";position:absolute;inset:-4px;border-radius:50%;
  border:2px solid rgba(196,160,224,0.4);
  animation:vr-pulse 2.5s ease-out infinite;
}
@keyframes vr-pulse{0%{transform:scale(1);opacity:0.7}70%{transform:scale(1.22);opacity:0}100%{transform:scale(1.22);opacity:0}}
/* Tooltip */
#vr-chat-tooltip{
  position:fixed;bottom:32px;right:92px;z-index:9998;
  background:var(--dark);color:#fff;
  font-family:var(--bf);font-size:12px;font-weight:400;
  padding:8px 14px;border-radius:2px;white-space:nowrap;
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  opacity:1;transition:opacity 0.3s;pointer-events:none;
}
#vr-chat-tooltip::after{
  content:"";position:absolute;right:-6px;top:50%;transform:translateY(-50%);
  border:6px solid transparent;border-right:none;
  border-left-color:var(--dark);
}
#vr-chat-tooltip.hidden{opacity:0;}
/* Panel */
#vr-chat-panel{
  position:fixed;bottom:96px;right:24px;z-index:99999;
  width:340px;max-width:calc(100vw - 32px);
  background:#11284f;
  border-radius:4px;
  box-shadow:0 8px 40px rgba(28,20,34,0.22);
  overflow:hidden;
  transform:scale(0.92) translateY(12px);transform-origin:bottom right;
  opacity:0;pointer-events:none;
  transition:transform 0.25s ease,opacity 0.25s ease;
}
#vr-chat-panel.open{transform:scale(1) translateY(0);opacity:1;pointer-events:all;}
.vrc-header{
  background:var(--plum);padding:18px 20px;
  display:flex;align-items:center;gap:12px;
}
.vrc-header-avatar{
  width:38px;height:38px;border-radius:50%;
  border:2px solid rgba(255,255,255,0.3);
  overflow:hidden;flex-shrink:0;
  background:rgba(255,255,255,0.1);
  display:flex;align-items:center;justify-content:center;
}
.vrc-header-avatar img{width:100%;height:100%;object-fit:cover;object-position:center 10%;}
.vrc-header-name{font-family:var(--hf);font-size:17px;font-weight:500;color:#fff;line-height:1.1;}
.vrc-header-status{font-family:var(--bf);font-size:10.5px;font-weight:300;color:rgba(255,255,255,0.55);display:flex;align-items:center;gap:5px;}
.vrc-header-status::before{content:"";width:6px;height:6px;border-radius:50%;background:#4ade80;flex-shrink:0;}
.vrc-bubble{
  background:var(--off-white);padding:16px 18px;
  margin:16px 16px 8px;border-radius:2px;
  border-left:3px solid var(--lilac);
  font-family:var(--bf);font-size:13px;font-weight:300;
  color:var(--charcoal);line-height:1.6;
}
.vrc-body{padding:0 16px 16px;}
.vrc-field{margin-bottom:12px;}
.vrc-label{
  display:block;font-family:var(--bf);
  font-size:9px;font-weight:500;letter-spacing:0.14em;
  text-transform:uppercase;color:var(--mid);margin-bottom:5px;
}
.vrc-input{
  width:100%;
  /*background:#a9a7a4;*/
  background: #25416d;
  border:1px solid var(--rule);border-radius:2px;
  padding:10px 12px;font-family:var(--bf);
  font-size:13.5px;font-weight:300;color:var(--dark);
  outline:none;transition:border-color 0.2s;
  -webkit-appearance:none;
}
.vrc-input:focus{border-color:var(--violet);}
.vrc-input::placeholder{color:var(--mid);}
.vrc-textarea{
  width:100%;
  /*background:#a9a7a4;*/
  background: #25416d;
  border:1px solid var(--rule);border-radius:2px;
  padding:10px 12px;font-family:var(--bf);
  font-size:13.5px;font-weight:300;color:var(--dark);
  outline:none;transition:border-color 0.2s;
  resize:none;min-height:72px;
}
.vrc-textarea:focus{border-color:var(--violet);}
.vrc-textarea::placeholder{color:var(--mid);}
.vrc-send{
  width:100%;padding:13px;
  background:#25D366;color:#fff;
  font-family:var(--bf);font-size:11px;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;
  border:none;border-radius:2px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:background 0.2s;margin-top:4px;
}
.vrc-send:hover{background:#1ebe5d;}
.vrc-trust{
  font-family:var(--bf);font-size:10px;font-weight:300;
  color:var(--mid);text-align:center;margin-top:10px;
  line-height:1.5;
}
@media(max-width:400px){
  #vr-chat-panel{right:12px;bottom:88px;}
  #vr-chat-btn{right:12px;bottom:16px;}
  #vr-chat-tooltip{right:80px;}
}




.kit-before-after-section img {
    height: 400px !important;
    object-fit: cover !important;
}

.int-videoss {
    margin-top: 70px;
}

.int-videoss video {
    border-radius: 15px;
}