*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;

}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --gold: #B8975A;
  --gold-lt: #d4b47a;
  --crimson: #7B1D1D;
  --cream: #F5F0E8;
  --off-wh: #FAF8F4;
  --white: #ffffff;
  --char: #1a1a1a;
  --txt: #2c2c2c;
  --txt-mid: #555555;
  --txt-lt: #888888;
  --nav-h: 64px;
  --font-family: "PP Fragment";
}

@font-face {

  font-family: "PP Fragment";

  src: url("/assets/font/pp-fragment-text.otf") format("opentype");

}

body {
   font-family: "Poppins", sans-serif;

  color: var(--txt);
  overflow-x: hidden;
  background-color: transparent;
  /* let html bg show through */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}



/* ── Base hidden state for each team row ── */
.mahima-team {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── When JS adds .team-visible, row fades+slides up ── */
.mahima-team.team-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Image: slides in from left ── */
.mahima-team img {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.mahima-team.team-visible img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

/* ── Content block: slides in from right ── */
.mahima-team .m-2 {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.mahima-team.team-visible .m-2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.22s;
}

/* ── Name label: fades up after content ── */
.mahima-team .about-label {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-image 0s; /* don't transition border-image */
}
.mahima-team.team-visible .about-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

/* ── Role text: fades up after name ── */
.mahima-team .test-quote {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mahima-team.team-visible .test-quote {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* ── Bio paragraph: last to appear ── */
.mahima-team .team-para,
.mahima-team .m-2 > div > p:not(.test-quote) {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mahima-team.team-visible .team-para,
.mahima-team.team-visible .m-2 > div > p:not(.test-quote) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

/* ── Gold underline on name: draws in left to right ── */

.mahima-team.team-visible .about-label::after {
  width: 100%;
}

/* ── Hover lift on the whole card ── */
.mahima-team {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}
.mahima-team.team-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}

/* ── Image subtle zoom on hover ── */
.mahima-team img {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  overflow: hidden;
}
.mahima-team:hover img {
  filter: brightness(1.04);
}

/* ── Responsive: on mobile, both slide up (no left/right) ── */
@media (max-width: 768px) {
  .mahima-team img {
    transform: translateY(30px);
  }
  .mahima-team.team-visible img {
    transform: translateY(0);
  }
  .mahima-team .m-2 {
    transform: translateY(30px);
  }
  .mahima-team.team-visible .m-2 {
    transform: translateY(0);
  }
  /* No hover lift on touch */
  .mahima-team.team-visible:hover {
    transform: none;
    box-shadow: none;
  }
}


.about-section {
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 70%;
  opacity: 0.5;

  z-index: 0;
  pointer-events: none;
  background-image: url("../images/map1.webp");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  object-fit: cover;
}


/* Subtle vignette layer — darkens edges so map doesn't bleed into margins */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

}


[data-feed] {
  opacity: 1;
  transform: translateY(48px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-feed].fed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 0 clamp(90px, 5vw, 200px);
  background: rgba(20, 20, 20, 0.93);

  border-bottom: 1px solid rgba(184, 151, 90, 0.18);
  animation: navIn 0.8s 0.1s both;
  -webkit-animation: navIn 0.8s 0.1s both;
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
  }

  to {
    opacity: 0.95;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

.nav-logo {
  font-family: 'Poppine', serif;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  list-style: none;
}

.nav-links a {
  font-size: clamp(9px, 1.1vw, 10.5px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hamburger – mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 199;
  background: rgba(20, 20, 20, 0.97);
  padding: 20px clamp(20px, 5vw, 40px) 30px;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(184, 151, 90, 0.18);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.nav-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-drawer a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.nav-drawer a:hover {
  color: var(--gold);
}

/* ===== HERO ===== */
/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  justify-content: left;
  align-items: flex-end;
  padding: 0 clamp(100px, 6vw, 70px) clamp(50px, 8vh, 90px);
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}

.services-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  justify-content: left;
  align-items: flex-end;
  text-align: left;
  padding: 0 clamp(100px, 6vw, 70px) clamp(50px, 8vh, 20px);
  overflow: hidden;
  background-image: url(../images/services_banner.webp);
  background-size: cover;
  object-fit: cover;
}


.about-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  justify-content: left;
  align-items: flex-end;
  text-align: left;
  padding: 0 clamp(100px, 6vw, 70px) clamp(50px, 8vh, 20px);
  overflow: hidden;
  background-image: url(../images/contact-banner.jpg);
  background-size: cover;
  object-fit: cover;
}

@media (max-width:768px) {
  .services-hero {
    position: relative;
    height: 100vh;
    min-height: 450px;
    display: flex;
    justify-content: left;
    align-items: flex-end;
    text-align: left;
    padding: 0 clamp(20px, 6vw, 70px) clamp(50px, 8vh, 20px);
    overflow: hidden;
    background-image: url(../images/services_banner.webp);
    background-size: cover;
    object-fit: cover;
  }

  .hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    justify-content: left;
    align-items: flex-end;
    padding: 0 clamp(20px, 6vw, 70px) clamp(50px, 8vh, 90px);
    background-image: url(../images/services_banner.webp);
    overflow: hidden;
    background: #000;
  }

  .about-hero {
    position: relative;
    height: 100vh;
    min-height: 450px;
    display: flex;
    justify-content: left;
    align-items: flex-end;
    text-align: left;
    padding: 0 clamp(20px, 6vw, 70px) clamp(50px, 8vh, 20px);
    overflow: hidden;
    background-image: url(../images/about-banner.webp);
    background-size: cover;
    object-fit: cover;
  }

}



.contact-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  justify-content: left;
  align-items: flex-end;
  padding: 0 clamp(20px, 6vw, 70px) clamp(50px, 8vh, 90px);
  overflow: hidden;
  background-image: url(../images/contact-banner.jpg);
  background-size: cover;
  object-fit: cover;
}

/* Atmosphere layers */


/* Dark overlay gradient */
.hero-ovl {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 18, 0.88) 0%, rgba(8, 12, 18, 0.25) 55%, rgba(8, 12, 18, 0.05) 100%);
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 2;


}

.about-content {
  position: relative;
  z-index: 2;
  max-width: clamp(880px, 70vw, 560px);
}

.about-content h1 {
  font-family: var(--font-family);
  font-size: 45px;
  font-weight: 400;
  line-height: 60px;
  color: #fff;
  animation: heroH1 1.1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  -webkit-animation: heroH1 1.1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-content h1 em {
  font-style: italic;
  color: var(--gold);
}

@keyframes heroH1 {
  from {
    opacity: 0;
    transform: translateY(50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-content h1 {

  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  line-height: 60px;

  color: #fff;
  animation: heroH1 1.1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}


@media (max-width :768px) {
  .hero-content h1 {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;
    animation: heroH1 1.1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    -webkit-animation: heroH1 1.1s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }


}



.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

@keyframes heroH1 {
  from {
    opacity: 0;
    transform: translateY(50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: clamp(20px, 4vh, 36px);
  right: clamp(20px, 5vw, 60px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  animation: fadeUp 1.5s 1.8s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.scroll-bar {
  width: 38px;
  height: 1px;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleX(1)
  }

  50% {
    opacity: 0.35;
    transform: scaleX(0.4)
  }
}

/* ===== SHARED SECTION LAYOUT ===== */
.section {
  padding: clamp(7px, 10vh, 50px) clamp(120px, 7vw, 21px)
}

/* Tablet */
@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
}

/* Mobile */
@media (max-width: 558px) {
  .section {
    padding: 50px 16px;
  }
}


.about-team-section {
  padding: clamp(20px, 10vh, 110px) clamp(20px, 6vw, 20px);
}

.section-label {
  display: block;
  font-size: clamp(8px, 1vw, 9px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(12px, 2vh, 18px);
}

.gold-bar {
  width: 44px;
  height: 1.5px;
  background: var(--gold);
  margin: clamp(18px, 3vh, 28px) 0;
}

/* ===== WORLD MAP SECTION ===== */
.world-section {
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vh, 110px) clamp(20px, 6vw, 70px);
}

.world-bg-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.world-bg-map svg {
  width: min(900px, 95%);
  opacity: 0.055;
}

.world-inner {
  margin-top: 20%;
  position: relative;
  z-index: 1;
}

.world-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--crimson);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */

.about-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.about-section h2 {
  
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--crimson);
}


@media (max-width: 768px) {
  .about-section h2 {

    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--crimson);
  }
}

.about-section p {
  font-size: 18px;
  line-height: 1.9;
  /* color: var(--txt-mid); */
  font-family: "Poppins", sans-serif;
  text-align: justify;
}

.team-para{
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-weight: bold;
  font-size: clamp(9px, 1.1vw, 10.5px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #590B0F;
  text-decoration: none;
  transition: gap 0.3s;
}

.cta-link::after {
  content: '→';
}

.cta-link:hover {
  gap: 14px;
}

.about-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.06);
  position: relative;
}

.about-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(70px, 10vw, 130px);
  font-weight: 300;
  color: rgba(184, 151, 90, 0.07);
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 10px;
  user-select: none;
  pointer-events: none;
}

.about-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  line-height: 1.7;
  color: var(--txt);
}

/* ===== SERVICES ===== */
.services-section {

  background: var(--white);
}

.services-section h2 {

  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--crimson);
}

@media (max-width: 768px) {
  .services-section h2 {

    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--crimson);
  }
}

.services-section p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 1.3vw, 13.5px);
  line-height: 1.9;
  color: var(--txt-mid);
  text-align: justify;
}

.about-para {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  line-height: 1.9;
  color: var(--txt-mid);
  max-width: 580px;
}

.about-para-new {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--txt-mid);

}

.about-section-new {
  background: var(--white);
}

.about-section-new h2 {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--crimson);
}

.about-section-new h4 {
  font-family: var(--font-family);
  font-size: 25px;

}

.about-section-new img {
  height: 360px;

}

.about-section-new h5 {
  line-height: 9rem;
  font-size: 32px;
  font-family: var(--font-family);
}

.about-section-new h5 {
  border: 1px solid;
  width: 100%;
  height: 1px;
  font-size: 25px;
  font-family: var(--font-family);
}

.about-section-new span{
  font-family: var(--font-family);
  
}

.about-label {
  display: flex;
  font-family: var(--font-family);
  font-size: 32px;

  color: #590B0F;


  border-bottom: 1px solid;

  border-image:
    linear-gradient(to right,
      #590B0F 0%,
      rgba(89, 11, 15, 0.7) 40%,
      #ffffff 100%) 1;
  margin-bottom: clamp(16px, 6vh, 20px);
}

.about-icon {
  display: flex;
  justify-content: space-between;

}


.about-label-team {
  display: flex;
  font-family: var(--font-family);
  font-size: 32px;
  color: #590B0F;
  margin-top: 2rem;


}


.row.mt-5>div {
  padding: 10px;
}

/* Every direct child of the team row becomes a card */
.row.mt-5>div {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* ── IMAGE ── */
.row.mt-5>div img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

/* ── CONTENT OVERLAY (sits at bottom, slides up on hover) ── */
.row.mt-5>div .about-label-team,
.row.mt-5>div .about-icon-team,
.row.mt-5>div .test-quote,
.row.mt-5>div>div {
  position: relative;
  z-index: 2;
  font-family: var(--font-family);
}

/* Create a sliding overlay panel */
.row.mt-5>div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top,
      rgba(89, 11, 15, 0.88) 0%,
      rgba(89, 11, 15, 0.60) 40%,
      rgba(89, 11, 15, 0.0) 100%);
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

/* Name + role block — hidden below image by default */
.row.mt-5>div .about-label-team,
.row.mt-5>div>div,
.row.mt-5>div .test-quote {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Position name label */
.row.mt-5>div .about-label-team {
  bottom: 56px;
  font-size: clamp(16px, 2vw, 20px);
  color: #fff !important;
  border-bottom: none !important;
  border-image: none !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
}

/* Name inside a div wrapper */
.row.mt-5>div>div {
  bottom: 56px;
}

.row.mt-5>div>div .about-label-team {
  position: static;
  opacity: 1;
  transform: none;
  padding: 0;
}

/* Role / title text */
.row.mt-5>div .test-quote {
  bottom: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
  font-style: italic;
  letter-spacing: 0.06em;
  font-family: var(--font-family);
}

/* LinkedIn icon color stays on hover */
.row.mt-5>div .about-label-team i {
  color: #fff !important;
  font-size: 16px;
  transition: color 0.2s;
}

/* ── HOVER STATE ── */
.row.mt-5>div:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
}

.row.mt-5>div:hover::after {
  transform: translateY(0);
}

.row.mt-5>div:hover .about-label-team,
.row.mt-5>div:hover>div,
.row.mt-5>div:hover .test-quote {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
  font-family: var(--font-family);
}

.row.mt-5>div:hover .test-quote {
  transition-delay: 0.18s;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .row.mt-5>div img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .row.mt-5>div img {
    height: 260px;
  }

  .row.mt-5>div .about-label-team {
    font-size: 15px;
    bottom: 48px;
  }

  .row.mt-5>div .test-quote {
    font-size: 12px;
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .row.mt-5>div img {
    height: 220px;
  }

  .row.mt-5>div .about-label-team {
    font-size: 13px;
    bottom: 42px;
    padding: 0 14px;
  }

  .row.mt-5>div .test-quote {
    font-size: 11px;
    bottom: 16px;
    padding: 0 14px;
  }
}

.about-icon-team {
  display: flex;
  justify-content: space-between;

}

.contact-section {
  background: var(--white);
}

.contact-section h2 {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--crimson);
}

.contact-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-wrap {
  
  width: 50%;
  background-color: rgba(0, 0, 0, 0.40);
  border-radius: 12px;
  padding: 2rem;
  
}

.contact-form-wrap h2 {
  font-family: var(--font-family);
  color: #fff;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.contact-from {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-from input,
.contact-from select,
.contact-from textarea,
.contact-from select,
.contact-from option {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.40);
  border: 1px solid #ddd;
  border-radius: 1px;
  color: #aaa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}

.contact-from input:focus,
.contact-from select:focus,
.contact-from textarea:focus,
.contact-from select:focus,
.contact-from option:focus {
  border-color: #590B0F;
  box-shadow: 0 0 0 3px rgba(83, 74, 183, 0.1);
  background: #fff;
}

.contact-from input::placeholder,
.contact-from textarea::placeholder,
.contact-from select::placeholder,
.contact-from option::placeholder {
  color: #aaa;
  font-size: 13px;
}

.contact-from textarea {
  height: 120px;
  resize: vertical;
}

.row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  margin-top: 4px;
  padding: 11px 28px;
  background: #590B0F;
  color: #fff;
  border: none;
  border-radius: 1px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}

.submit-btn:hover {
  background: #3C3489;
}

.submit-btn:active {
  transform: scale(0.98);
}

@media (max-width: 480px) {
  .row-two {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.25rem;
  }
}

.svc-grid {
  display: grid;
  padding-top: 5rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: clamp(28px, 4vh, 46px);
}

.svc-grid-b {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 3px;
}

.luxury-line {

  position: absolute;

  margin: 105px 5px 0px 25px;

  width: 1.5px;
  height: 170px;

  background:
    #C4C7C7;

}


.svc-card {

  padding: clamp(28px, 4vw, 46px) clamp(22px, 3vw, 38px);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.35s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover {
  background: var(--white);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-num {
  font-family: 'Roman', serif;
  font-size: 160px;
  font-weight: 300;
  color: #E3D0C2;
  line-height: 1;
  display: block;
  opacity: 0.5;
  position: absolute;

}

.svc-card h3 {
  font-family: 'PP Fragment', serif;
  font-size: 36px;
  font-weight: 500;
  color: #590B0F;

  padding-top: 115px;
  margin-left: 70px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width:768px) {
  .svc-num {
    font-family: 'Roman', serif;
    font-size: 130px;
    font-weight: 300;
    color: #E3D0C2;
    line-height: 1;
    display: block;
    opacity: 0.5;
    position: absolute;

  }

  .svc-card h3 {
    font-family: 'PP Fragment', serif;
    font-size: 28px;
    font-weight: 500;
    color: #590B0F;

    padding-top: 115px;
    margin-left: 45px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
}

/* ===== TESTIMONIALS ===== */
.test-section {
  background: var(--off-wh);
}

.test-label {
  display: block;
  font-family: var(--font-family);
  font-size: 14px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--txt-lt);
  padding-bottom: 12px;

  border-bottom: 1px solid;

  border-image:
    linear-gradient(to right,
      #590B0F 0%,
      rgba(89, 11, 15, 0.7) 40%,
      #ffffff 100%) 1;
  margin-bottom: clamp(36px, 6vh, 60px);
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.test-location {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 400;
  color: var(--crimson);
}

.test-sub {
  display: block;
  font-family: var(--font-family);
  font-size: 27px;
  letter-spacing: 0.12em;
  color: var(--txt-lt);
  margin-top: 4px;
  margin-bottom: clamp(18px, 3vh, 28px);
}

.test-quote {
  font-size: 15px;
  line-height: 1.9;
  color: var(--txt-mid);
  /* font-style:italic; */
  font-family: var(--font-family);

  margin-bottom: 18px;
}

.test-author {
  font-size: clamp(9px, 1vw, 10.5px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.test-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-image: url(../images/test.webp);
  background-size: cover;
  border-radius: 1px;
}

.test-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 85%, rgba(80, 105, 55, 0.6) 0%, transparent 55%);
}

.test-img-cap {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.38);
  padding: 3px 9px;
  border-radius: 1px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--char);
  padding: clamp(40px, 7vh, 70px) clamp(20px, 6vw, 70px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(30px, 5vh, 50px);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.footer-col h4 {
  font-size: clamp(18px, 1vw, 9px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin-bottom: 14px;
  margin-top: 8px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: clamp(16px, 1.3vw, 12.5px);
  line-height: 2.3;
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col .email {
  color: #fff;
  font-size: clamp(16px, 1.2vw, 11.5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  font-size: clamp(9px, 1vw, 10px);
  letter-spacing: 0.13em;
  color: rgba(238, 223, 223, 0.753);
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-drawer {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svc-grid-b {
    grid-template-columns: 1fr;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:480px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== RESPONSIVE — ABOUT & CONTACT PAGE ===== */

@media (max-width: 768px) {

  /* About hero heading */
  .about-content h1 {
    font-size: 28px;
    line-height: 1.35;
  }

  /* About section rows stack */
  .about-section-new .row {
    flex-direction: column;
  }

  .about-section-new .col-sm-6,
  .about-section-new .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Team lead image */
  .about-section-new img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  /* Team name label */
  .about-label {
    font-size: 20px;
    margin-top: 2rem;
  }

  .about-label-team {
    font-size: 16px;
    margin-top: 1rem;
  }

  /* Team grid — 2 columns on tablet */
  .about-section-new .row.mt-5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-section-new .row.mt-5>div {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Testimonial image height on mobile */
  .test-img {
    aspect-ratio: 16/9;
  }

  /* Contact form full width */
  .contact-form-wrap {
    width: 100%;
    padding: 1.5rem;
  }

  .row-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  /* About hero */
  .about-content h1 {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.3;
  }

  /* Hero scroll hide on small mobile */
  .hero-scroll {
    display: none;
  }

  /* about-para font scale */
  .about-para {
    font-size: clamp(16px, 4.5vw, 20px);
    text-align: justify;
  }

  /* Team grid single column on very small screens */
  .about-section-new .row.mt-5 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-label {
    font-size: 18px;
  }

  .about-label-team {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  /* h4 inside about section */
  .about-section-new h4 {
    font-size: 22px;
  }

  /* Testimonials */
  .test-location {
    font-size: 22px;
  }

  .test-sub {
    font-size: 18px;
  }

  /* Footer already handled — contact form */
  .contact-from input,
  .contact-from select,
  .contact-from textarea {
    font-size: 13px;
    padding: 9px 12px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}



/* Stack columns on tablet and below */
@media (max-width: 991px) {
  .contact-section .row {
    flex-direction: column;
  }

  .contact-section .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Image reasonable height when stacked */
  .contact-section img {
    height: 320px;
    margin-top: 32px;
  }

  .contact-form-wrap {
    width: 100%;
  }
}

@media (max-width: 768px) {

  /* Heading scale */
  .contact-section h2 {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.35;
  }

  .contact-section img {
    height: 260px;
  }

  .row-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-section h2 {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .contact-section img {
    height: 200px;
  }

  .submit-btn {
    width: 100%;
  }
}