/* ============================================================
   NIRMAAN ARCHITECTS — ULTRA-MODERN LIGHT THEME REDESIGN
   Color Palette drawn from Logo: 
     Primary Red: #C8392A
     Gold/Amber:  #E8860A
     Warm Cream:  #FAF7F4
     Stone:       #F2EDE8
     Dark:        #1A1008
     Mid:         #5C4033
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --red: #C8392A;
  --red-light: #E04030;
  --gold: #E8860A;
  --gold-light: #F5A623;
  --cream: #FAF7F4;
  --stone: #F2EDE8;
  --stone-dark: #E8DDD5;
  --dark: #1A1008;
  --mid: #5C4033;
  --text: #2D1E14;
  --text-muted: #7A6055;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(26,16,8,0.08);
  --shadow-md: 0 8px 32px rgba(26,16,8,0.12);
  --shadow-lg: 0 20px 60px rgba(26,16,8,0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

/* ── PRELOADER ── */
.preloader {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__image {
  width: 140px !important;
  animation: pulse-logo 1.2s ease-in-out infinite;
  border-radius: 4px;
}
@keyframes pulse-logo {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.96); }
}

/* ── HEADER ── */
.main-header-three {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(250,247,244,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,57,42,0.1);
  transition: var(--transition);
  box-shadow: none;
}

.main-header-three.scrolled,
.stricky-header {
  background: rgba(250,247,244,0.98) !important;
  box-shadow: var(--shadow-sm) !important;
}

.main-menu-three__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
}

.main-menu-three__logo a {
  display: flex;
  align-items: center;
}

.custom-logo {
  width: 220px !important;
  height: auto;
  transition: var(--transition);
}

.main-menu-three__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-menu__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.main-menu__list > li > a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase !important;
  color: var(--text) !important;
  padding: 8px 18px !important;
  border-radius: 100px;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
}

.main-menu__list > li > a:hover,
.main-menu__list > li.current > a {
  background: var(--red) !important;
  color: white !important;
}

/* Sticky Header */
.stricky-header {
  top: 0 !important;
  background: rgba(250,247,244,0.98) !important;
}
.stricky-header .main-menu-three__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
}
.stricky-header .main-menu__list > li > a {
  color: var(--text) !important;
}

/* CTA Button in nav */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em;
  margin-left: 16px;
  transition: var(--transition);
  text-transform: uppercase !important;
}
.nav-cta-btn:hover {
  background: var(--dark) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,57,42,0.35);
}

/* Mobile toggle */
.mobile-nav__toggler {
  color: var(--text) !important;
  font-size: 22px;
  cursor: pointer;
}

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 80px; }

/* ── HERO / MAIN SLIDER ── */
.main-slider-three {
  position: relative;
  min-height: 92vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main-slider-three-pattern,
.main-slider-three-shape {
  display: none !important;
}

/* Hero background geometric shapes */
.main-slider-three::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,57,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.main-slider-three::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,134,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative vertical line */
.main-slider-three__left {
  position: relative;
}
.main-slider-three__left::before {
  content: '';
  position: absolute;
  top: 0; right: -30px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(200,57,42,0.3), transparent);
  z-index: 10;
}

.main-slider-three__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  width: 100%;
  gap: 80px;
}

.main-slider-three__left-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 4px 120px 4px 4px;
  display: block;
}

/* Small label over image */
.main-slider-three__left-img {
  position: relative;
}
.main-slider-three__left-img::after {
  content: 'Since 2010';
  position: absolute;
  top: 30px; left: 30px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.main-slider-three__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Tagline */
.main-slider-three__right::before {
  content: '— Architects · Interior · Consultants';
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.main-slider-three__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin: 0;
}

.main-slider-three__title span,
.typed-effect {
  color: var(--red);
  font-style: italic;
}

.main-slider-three__text {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.8;
  margin: 0;
}

.main-slider-three__right-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.main-slider-three__right-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--red);
  transition: left 0.4s ease;
  z-index: 0;
}
.main-slider-three__right-btn:hover::before { left: 0; }
.main-slider-three__right-btn span, 
.main-slider-three__right-btn { position: relative; z-index: 1; }
.main-slider-three__right-btn:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,57,42,0.3);
}

/* Owl carousel dots style */
.owl-dots {
  margin-top: 20px !important;
}
.owl-dot span {
  background: var(--stone-dark) !important;
  width: 8px !important; height: 8px !important;
  transition: var(--transition) !important;
}
.owl-dot.active span {
  background: var(--red) !important;
  width: 28px !important;
  border-radius: 4px !important;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  padding: 28px 0;
}
.stats-bar .container {
  max-width: 1280px;
}
.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.stats-item {
  text-align: center;
  color: white;
}
.stats-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stats-item .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}
.stats-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ── SECTION HEADERS ── */
.section-title {
  margin-bottom: 48px;
}
.section-title__tagline {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px !important;
}
.section-title__tagline::before {
  content: '';
  display: inline-block;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title__title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 3.5vw, 46px) !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  line-height: 1.15 !important;
  margin: 0 !important;
}

/* ── THREE BOXES (SERVICES) ── */
.three-boxes-two {
  padding: 80px 0;
  background: var(--cream);
}

.three-boxes-two .container {
  max-width: 1280px;
}

.three-boxes-two__single {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  border: 1px solid var(--stone-dark);
}
.three-boxes-two__single:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.three-boxes-two__single-pattern { display: none; }

.three-boxes-two__img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.three-boxes-two__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.three-boxes-two__single:hover .three-boxes-two__img img {
  transform: scale(1.05);
}

.three-boxes-two__content {
  padding: 28px;
}
.three-boxes-two__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.three-boxes-two__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.three-boxes-two__title a:hover { color: var(--red); }

.three-boxes-two__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.three-boxes-two__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.3s;
}
.three-boxes-two__btn::after { content: '→'; }
.three-boxes-two__btn:hover { gap: 12px; color: var(--red); text-decoration: none; }

/* ── WELCOME / ABOUT ── */
.welcome-three {
  padding: 100px 0;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.welcome-three-bg { display: none; }
.welcome-three::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(200,57,42,0.04) 100%);
  pointer-events: none;
}

.welcome-three .container { max-width: 1280px; }

.welcome-three__img {
  position: relative;
}
.welcome-three__img > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.welcome-three__small-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border: 6px solid var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.welcome-three__small-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.welcome-three__right {
  padding-left: 40px;
}

.welcome-three__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Progress bars */
.welcome-three__progress { margin-bottom: 36px; }
.welcome-three__progress-single { margin-bottom: 20px; }
.welcome-three__progress-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.bar {
  height: 4px;
  background: var(--stone-dark);
  border-radius: 4px;
  overflow: visible;
  position: relative;
}
.bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 4px;
  position: relative;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.count-text {
  position: absolute;
  right: 0;
  top: -24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}

/* Architect signature */
.welcome-one__architecure {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border-left: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.welcome-one__architecure-img img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.welcome-one__architecure-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 2px;
}
.welcome-one__architecure-text p {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

/* ── PROJECTS GRID ── */
.project-one {
  padding: 100px 0;
  background: var(--cream);
}
.project-one-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.project-one-container .section-title { text-align: center; }

.project-one__single {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
}
.project-one__img-box {
  position: relative;
  overflow: hidden;
}
.project-one__img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.project-one__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.project-one__img:hover img {
  transform: scale(1.06);
}

.project-one__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,0.85) 0%, rgba(26,16,8,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 12px;
}
.project-one__img:hover .project-one__hover { opacity: 1; }

.project-one__hover-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.project-one__img:hover .project-one__hover-content {
  transform: translateY(0);
}
.project-one__hover-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.project-one__hover-name a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.project-one__hover > a {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}
.project-one__hover > a:hover { background: var(--red); color: white; }

/* ── FAQ / QUESTION ANSWERS ── */
.question-answers {
  padding: 100px 0;
  background: var(--stone);
}
.question-answers .container { max-width: 1280px; }

.question-answers__text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Accordion */
.accrodion {
  border: 1px solid var(--stone-dark);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.accrodion.active,
.accrodion:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.accrodion-title {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accrodion-title::after {
  content: '+';
  font-size: 20px;
  color: var(--red);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accrodion.active .accrodion-title::after {
  transform: rotate(45deg);
}
.accrodion-title h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}
.accrodion-content {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.question-answers__btn-and-text {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.question-answers__btn {
  display: inline-flex;
  background: var(--red);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.question-answers__btn:hover {
  background: var(--dark);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}
.question-answers__text-box-2 {
  font-size: 14px;
  color: var(--mid);
  font-style: italic;
  margin: 0;
}

.question-answers__right-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ── HOW WE WORK ── */
.how-we-works {
  padding: 100px 0;
  background: var(--cream);
}
.how-we-works .container { max-width: 1280px; }

.how-we-works__single-list {
  display: flex;
  gap: 0;
  position: relative;
  padding: 0 !important;
  counter-reset: steps;
  list-style: none;
  margin: 0;
}

.how-we-works__single-list::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  opacity: 0.3;
}

.how-we-works__single {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  counter-increment: steps;
}

.how-we-works__icon-box {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.how-we-works__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--stone-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.how-we-works__single:hover .how-we-works__icon {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(200,57,42,0.25);
}

.how-we-works__icon::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.how-we-works__count { display: none; }

.how-we-works__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: capitalize !important;
}
.how-we-works__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-two {
  padding: 100px 0;
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.testimonials-two-bg { display: none !important; }

.testimonials-two::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 300px;
  color: rgba(200,57,42,0.06);
  position: absolute;
  top: -60px; left: 40px;
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.testimonials-two .container { max-width: 1280px; }

.testimonials-two__inner-single {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-dark);
  position: relative;
}

.testimonials-two__client-info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.testimonials-two__client-img {
  position: relative;
  flex-shrink: 0;
}
.testimonials-two__client-img img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--stone);
}
.testimonials-two__quote-icon {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 24px; height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.testimonials-two__quote-icon img { width: 12px; filter: brightness(10); }

.testimonials-two__client-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.testimonials-two__client-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.testimonials-two__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

/* Stars */
.testimonials-two__inner-single::after {
  content: '★★★★★';
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

/* ── TEAM ── */
.team-one {
  padding: 100px 0;
  background: var(--cream);
}
.team-one .container { max-width: 1280px; }

.team-one__single {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--stone-dark);
}
.team-one__single:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-one__img {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.team-one__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
  display: block;
}
.team-one__single:hover .team-one__img img { transform: scale(1.04); }

.team-one__social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,16,8,0.9), transparent);
  padding: 20px 20px 20px;
  display: flex;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  justify-content: center;
}
.team-one__single:hover .team-one__social { transform: translateY(0); }
.team-one__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
  backdrop-filter: blur(4px);
}
.team-one__social a:hover { background: var(--red); }

.team-one__content {
  padding: 24px;
  border-top: 1px solid var(--stone);
}
.team-one__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  text-transform: capitalize !important;
}
.team-one__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}

/* ── INSURING / COUNTER ── */
.insuring {
  padding: 100px 0;
  background: var(--stone);
}
.insuring .container { max-width: 1280px; }

.insuring__img {
  position: relative;
}
.insuring__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.insuring__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}

.insuring__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.insuring__counter-list {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.insuring__counter-list li {
  position: relative;
}
.insuring__counter-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px; top: 10%;
  height: 80%;
  width: 1px;
  background: var(--stone-dark);
}

.odometer {
  font-family: 'Playfair Display', serif !important;
  font-size: 54px !important;
  font-weight: 800 !important;
  color: var(--red) !important;
  line-height: 1 !important;
  display: block;
}

.insuring__counter-list-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── BRAND LOGOS ── */
.brand-three {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--stone-dark);
  border-bottom: 1px solid var(--stone-dark);
}
.brand-three .container { max-width: 1280px; }
.brand-three img {
  max-height: 50px;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: var(--transition);
}
.brand-three img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: white;
}

.site-footer__top {
  background: var(--red);
  padding: 0;
}
.site-footer__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__top-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-footer__top-logo-box a { display: flex; }
.footer-logo {
  width: 80px !important;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  padding: 4px;
}
.site-footer__top-text p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin: 0;
  font-style: italic;
}
.site-footer_top-btn {
  display: inline-flex;
  background: white;
  color: var(--red) !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.site-footer_top-btn:hover {
  background: var(--dark);
  color: white !important;
  text-decoration: none;
}

.site-footer__main {
  padding: 80px 0 60px;
}
.site-footer__main-pattern-bg1 { display: none; }

.footer-widget__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-widget__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--red);
}

.footer-widget__text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-widget__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-widget__contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-widget__contact-list .icon {
  color: var(--gold-light);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-widget__contact-list .text p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}
.footer-widget__contact-list .text a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-widget__contact-list .text a:hover { color: var(--gold-light); }

.footer-widget__links-list,
.footer-widget__explore-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-widget__links-list a,
.footer-widget__explore-list a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-widget__links-list a::before,
.footer-widget__explore-list a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
  color: var(--red);
  font-size: 12px;
}
.footer-widget__links-list a:hover,
.footer-widget__explore-list a:hover {
  color: white;
  padding-left: 4px;
}
.footer-widget__links-list a:hover::before,
.footer-widget__explore-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Newsletter */
.footer-widget__newsletter-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-widget__newsletter-input-box {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.footer-widget__newsletter-input-box input {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 13px;
  outline: none;
}
.footer-widget__newsletter-input-box input::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer-widget__newsletter-btn {
  width: 44px; height: 44px;
  background: var(--red);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  border-radius: 100px;
  margin: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}
.footer-widget__newsletter-btn:hover { background: var(--gold); }

/* Social icons */
.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.site-footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.site-footer__social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-3px);
}

/* Footer bottom */
.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.site-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer-bottom__left p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.site-footer-bottom__left a {
  color: var(--gold-light);
  text-decoration: none;
}
.site-footer-bottom__menu {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer-bottom__menu a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}
.site-footer-bottom__menu a:hover { color: white; }

/* ── PAGE HEADER ── */
.page-header {
  position: relative;
  padding: 120px 0 80px;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,8,0.75) 0%, rgba(200,57,42,0.4) 100%);
}
.page-header-border,
.page-header-border-two,
.page-header-border-three,
.page-header-border-four,
.page-header-border-five,
.page-header-border-six {
  display: none !important;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header__inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  text-transform: capitalize;
}
.thm-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thm-breadcrumb li,
.thm-breadcrumb a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.thm-breadcrumb a:hover { color: var(--gold-light); }
.thm-breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── SCROLL TO TOP ── */
.scroll-to-top {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(200,57,42,0.4);
  transition: var(--transition);
  font-size: 16px;
  text-decoration: none;
}
.scroll-to-top:hover {
  background: var(--dark);
  transform: translateY(-4px);
}

/* ── MOBILE NAV ── */
.mobile-nav__content {
  background: var(--cream);
}
.mobile-nav__container .main-menu__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px;
}
.mobile-nav__container .main-menu__list > li > a {
  color: var(--dark) !important;
  font-size: 14px !important;
  padding: 10px 16px !important;
  width: 100%;
}
.mobile-nav__contact a { color: var(--mid) !important; }

/* ── SEARCH POPUP ── */
.search-popup {
  background: rgba(26,16,8,0.95);
  backdrop-filter: blur(20px);
}
.search-popup__content input {
  border-bottom: 2px solid rgba(255,255,255,0.2);
  color: white;
}
.search-popup__content input::placeholder { color: rgba(255,255,255,0.4); }

/* ── THM BTN GLOBAL ── */
.thm-btn {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: white !important;
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.thm-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,57,42,0.3);
  color: white !important;
  text-decoration: none;
}

/* ── WATERMARK ── */
.watermark { position: relative; display: inline-block; }
.watermark::after {
  content: "";
  background-image: url('assets/images/watermark/nirmaan.png');
  background-repeat: repeat-x;
  width: 100%; height: 40px;
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  opacity: 0.8;
  pointer-events: none;
}

/* ── ABOUT PAGE SPECIFICS ── */
.about-company { padding: 100px 0; background: var(--cream); }
.about-company .container { max-width: 1280px; }
.about-company__img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Counter One */
.counter-one { padding: 80px 0; background: var(--stone); }
.counter-one .container { max-width: 1280px; }
.counter-one__single {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--stone-dark);
  transition: var(--transition);
}
.counter-one__single:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.counter-one__count {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-one__text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

/* Portfolio grid */
.portfolio-filter-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.portfolio-filter-btns button {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--stone-dark);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid);
}
.portfolio-filter-btns button:hover,
.portfolio-filter-btns button.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* Contact form */
.contact-form-wrap { padding: 100px 0; background: var(--cream); }
.contact-form-wrap .container { max-width: 1280px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--stone-dark);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,57,42,0.08);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .main-slider-three__container {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
  }
  .main-slider-three__left::before { display: none; }
  .main-slider-three__left-img img { height: 420px; border-radius: 4px; }
  .welcome-three__right { padding-left: 0; }
  .insuring__right { padding-left: 0; margin-top: 40px; }
  .how-we-works__single-list { flex-direction: column; }
  .how-we-works__single-list::before { display: none; }
  .stats-bar-inner { gap: 12px; }
  .stats-divider { display: none; }
}

@media (max-width: 768px) {
  .main-menu-three__container { padding: 0 20px; }
  .main-menu-three__inner ul { display: none; }
  .custom-logo { width: 160px !important; }
  .project-one-container { padding: 0 20px; }
  .main-slider-three__title { font-size: 36px; }
  .insuring__counter-list { gap: 24px; }
  .odometer { font-size: 36px !important; }
  .testimonials-two__inner-single { padding: 28px 20px; }
  .welcome-three__small-img { display: none; }
  .site-footer__top-inner { flex-direction: column; text-align: center; }
  .site-footer__top-left { flex-direction: column; }
  .site-footer-bottom__inner { flex-direction: column; text-align: center; }
  .insuring__counter-list { flex-direction: column; }
  .insuring__counter-list li::after { display: none; }
}

/* ── PUBLICATION PAGE ── */
.publication-one { padding: 100px 0; background: var(--cream); }
.publication-one .container { max-width: 1280px; }
.news-one__single, .publication-one__single {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stone-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.news-one__single:hover, .publication-one__single:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.news-one__img img, .publication-one__img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.news-one__single:hover img, .publication-one__single:hover img { transform: scale(1.04); }
.news-one__content, .publication-one__content { padding: 28px; }
.news-one__title a, .publication-one__title a {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 10px;
}
.news-one__title a:hover, .publication-one__title a:hover { color: var(--red); }

/* Services */
.services-details__content { max-width: 1280px; }

/* ── Animation helpers ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.wow.fadeInUp { animation: fadeInUp 0.7s ease forwards; }

/* Modal styling */
.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  background: var(--red);
  color: white;
  border-radius: 16px 16px 0 0;
  border: none;
  padding: 20px 28px;
}
.modal-title { 
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.modal-body { padding: 28px; color: var(--text); }
.modal-footer { border-top: 1px solid var(--stone); padding: 16px 28px; }

