:root{
  --nav-black:#000;
  --gold:#d4af37;
  --nav-white:#fff;
  --gold-black:#d4b664;
  --text-muted: rgba(255,255,255,.75);
  --border-gold: rgba(212,175,55,.25);
  --black:#000;
  --gold-soft: rgba(212,175,55,.25);
    --cream:#f3efe7
}

html, body{
  margin: 0;
  padding: 0;
 
}

body{
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

/* ✅ Full width wrapper */
.about-wrap{
  margin-top: clamp(18px, 4vw, 60px);
  padding: 0;                 /* ✅ no side padding (removes white edges) */
}

/* ✅ About Hero */
.about-hero{
  width: 100%;
  background:
    radial-gradient(900px 300px at 75% 0%, rgba(212,175,55,.10), transparent 60%),
    linear-gradient(180deg, #060606, #000);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  border-left: 0;
  border-right: 0;
  border-radius: 0;          /* ✅ full banner */
  overflow: hidden;
  position: relative;
}



/* ✅ soft glow */
.about-hero::before{
  content:"";
  position:absolute;
  left: -120px;
  bottom: -140px;
  width: clamp(280px, 45vw, 460px);
  height: clamp(280px, 45vw, 460px);
  background: radial-gradient(circle, rgba(212,175,55,.18), transparent 60%);
  pointer-events:none;
  z-index: 0;
}

/* ✅ Content should be above decorations */
.hero-inner{
  position: relative;
  z-index: 2;
  padding: clamp(18px, 4vw, 52px) clamp(14px, 3vw, 60px);
}

/* ✅ Left image */
.hero-img-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 80%;
}



/* ✅ Text block */
.text-col{
  position: relative;
  z-index: 2;
}

/* ✅ Kicker */
.kicker{
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .6px;
  font-size: clamp(.75rem, 1vw, 1rem);
  margin-bottom: clamp(6px, 1vw, 12px);
}

/* ✅ Title */
.title{
  color: var(--nav-white);
  font-weight: 800;
  font-size: clamp(1.35rem, 4.2vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: clamp(8px, 1.2vw, 14px);
  overflow-wrap: anywhere;
}

/* ✅ Description */
.desc{
  color: var(--text-muted);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  max-width: 560px;
  margin-bottom: clamp(14px, 2vw, 22px);
  line-height: 1.7;
}

/* ✅ Button */
.btn-gold{
  background: linear-gradient(180deg, var(--gold), var(--gold-black));
  border: 1px solid rgba(212,175,55,.55);
  color: #111;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
  box-shadow: 0 14px 28px rgba(212,175,55,.12);
}
.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(212,175,55,.18);
  color:#000;
}


.hero-img{
  width: 100%;
  max-width: 240px;     /* desktop limit */
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 26px rgba(0,0,0,.6);
  margin-top: 50px;
}

/* ✅ Mobile: make image full width */
@media (max-width: 991.98px){
  .hero-img-wrap{
    justify-content: center;
  }

  .hero-img{
    max-width: 100% !important;  /* ✅ full width */
    width: 100% !important;
    height: 200px;               /* ✅ gives banner feel */
    object-fit: cover;
    border-radius: 12px;
  }
}

/* ✅ Small phones */
@media (max-width: 420px){
  .hero-img{
    height: 200px;
  }
}
/* ✅ Mobile alignment */
@media (max-width: 991.98px){
  .text-col{
    text-align: center;
    margin-top: 40px;
  }
  .desc{
    margin-left: auto;
    margin-right: auto;
  }
}


/* ✅ FIX: Image side full responsive (NO structure change) */
@media (max-width: 991.98px){

  /* make the left column stretch */
  .hero-img-wrap{
    width: 100%;
    height: auto !important;
    align-items: stretch;
    justify-content: center;
  }

  /* remove the desktop top gap on mobile */
  .hero-img{
    margin-top: 80px !important;   /* ✅ important */
    display: block;
  }

  /* optional: reduce inner padding so image looks bigger */
  .hero-inner{
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ✅ Small phones: little taller image for better view */
@media (max-width: 420px){
  .hero-img{
    height: 230px;              /* ✅ more visible */
  }
}




/* ✅ Section */
.whyus-section{
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  padding: clamp(22px, 5vw, 70px) 0;
}

.whyus-tabs{
  display:flex;
  gap: clamp(18px, 3vw, 42px);
  justify-content:center;
  align-items:center;
  margin-bottom: clamp(18px, 3vw, 36px);
}

.whyus-tab{
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(0,0,0,.55);
  text-decoration:none;
  padding-bottom: 10px;
  position: relative;
}

.whyus-tab.active{
  color: var(--text-dark);
}
.whyus-tab.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* ✅ Layout */
.whyus-card{
  background: transparent;
}

.whyus-img{
  width:100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
}

.whyus-content{
  padding-left: clamp(0px, 2vw, 18px);
}

.whyus-title{
  
  font-weight: 200;
  color: var(--text-dark);
  font-size: clamp(1.1rem, 1.2vw, 1rem);
  line-height: 1.2;
  margin-bottom: 14px;
}







.whyus-content{
  display:flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 991.98px){
  .whyus-content{
    margin-top: 20px;
    padding-left: 0 !important;
    text-align: left;
  }
}

.whyus-desc{
 
  color: rgba(0,0,0,.75);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 18px;
}

.whyus-sub{
  color: rgba(0,0,0,.65);
  font-size: clamp(.92rem, 1.2vw, 1rem);
  line-height: 1.8;
  margin: 0;
}

/* ✅ Gold accent pill (optional) */
.whyus-accent{
  display:inline-block;
  height: 2px;
  width: 70px;
  background: linear-gradient(90deg, var(--gold), var(--gold-black));
  border-radius: 99px;
  margin-top: 6px;
}

/* ✅ Mobile stack */
@media (max-width: 991.98px){
  .whyus-content{
    padding-left: 0;
    text-align: left;
    margin-top: 18px;
  }
  .whyus-img{
    max-height: 360px;
  }
  .whyus-tabs{
    justify-content:flex-start;
    padding: 0 12px;
  }
}

/* ✅ Extra small */
@media (max-width: 420px){
  .whyus-img{ max-height: 300px; }
}














/* ✅ Vision/Mission Section */
.vm-section{
  padding: clamp(20px, 5vw, 70px) 0;
  background: #131210;
}

.vm-wrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: clamp(260px, 34vw, 360px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  background: #f7f7f7;
}

/* Left orange gradient panel */
.vm-left{
  position: absolute;
  inset: 0;
  width: 55%;
  background: linear-gradient(135deg, #5f4603 0%, #dfc659 55%, #fcf979 100%);
  clip-path: polygon(0 0, 100% 0, 68% 100%, 0% 100%);
}

/* Right light panel */
.vm-right{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f3f6fb 0%, #ffffff 65%);
}

/* White diagonal separator band */
.vm-sep{
  position: absolute;
  inset: 0;
  width: 14%;
  left: 46%;
  background: rgba(255,255,255,.95);
  transform: skewX(-18deg);
  box-shadow: 0 0 0 1px rgba(255,255,255,.35);
}

/* Content layout */
.vm-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 30px);
  padding: clamp(18px, 4vw, 44px);
  align-items: center;
}

.vm-block{
  max-width: 420px;
}

.vm-title{
  font-weight: 900;
  letter-spacing: .5px;
  line-height: 1.05;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.vm-text{
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.65;
  margin: 0;
}

/* Left text colors */
.vm-block.vision .vm-title,
.vm-block.vision .vm-text{
  color: #fff;
}

/* Right text colors (follow your theme) */
.vm-block.mission .vm-title{
  color: var(--nav-black);
}
.vm-block.mission .vm-text{
  color: rgba(0,0,0,.65);
}

/* Icons */
.vm-icon{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  flex: 0 0 auto;
}

.vm-icon.vision{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
}
.vm-icon.mission{
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.28);
}

.vm-icon svg{
  width: 30px;
  height: 30px;
}

/* ✅ Responsive: stack panels */
@media (max-width: 991.98px){
  .vm-left{
    width: 100%;
    clip-path: none;
    height: 52%;
  }

  .vm-sep{
    left: 0;
    width: 100%;
    height: 14%;
    top: 44%;
    transform: skewY(-10deg);
    opacity: .95;
  }

  .vm-content{
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 26px;
    
  }

  .vm-block{
    max-width: 100%;
  }
}














/* ✅ Section */
.wcu-section{
  background: #fff;
  padding: clamp(22px, 5vw, 70px) 0;
}

.wcu-head{
  text-align:center;
  margin-bottom: clamp(16px, 3vw, 34px);
}
.wcu-head h2{
  font-weight: 900;
  letter-spacing: .6px;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  margin: 0;
  color: #111;
}
.wcu-head p{
  margin: 6px 0 0;
  color: rgba(0,0,0,.55);
  font-size: .95rem;
}

/* ✅ Card Layout */
.wcu-wrap{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
  background: #fff;
}

.wcu-img{
  width:100%;
  height:100%;
  min-height: 320px;
  object-fit: cover;
  display:block;
}

/* ✅ Middle index strip */
.wcu-strip{
  background: linear-gradient(180deg, rgba(212,175,55,.85), rgba(212,175,55,.55));
  padding: 22px 12px;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}

.wcu-strip::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:
    radial-gradient(circle at 50% 20%, rgba(0,0,0,.08), transparent 55%);
  pointer-events:none;
}

.wcu-nums{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 90px;
  text-align:center;
}
.wcu-num{
  color: #fff;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
}
.wcu-line{
  width: 42px;
  height: 2px;
  background: rgba(255,255,255,.8);
  margin: 12px auto;
  border-radius: 99px;
}

/* ✅ Content */
.wcu-content{
  padding: clamp(18px, 3vw, 34px);
}
.wcu-title{
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 12px;
  color:#111;
}
.wcu-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.wcu-item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}
.wcu-dot{
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}
.wcu-item b{
  display:block;
  color:#111;
  font-weight: 800;
}
.wcu-item span{
  display:block;
  color: rgba(0,0,0,.65);
  line-height: 1.65;
}

/* ✅ Responsive */
@media (max-width: 991.98px){
  .wcu-img{ min-height: 220px; }
  .wcu-strip{
    padding: 14px 10px;
  }
  .wcu-nums{
    display:flex;
    justify-content:center;
    gap: 18px;
    max-width: none;
  }
  .wcu-line{
    width: 2px;
    height: 34px;
    margin: 0;
  }
  .wcu-num{
    font-size: 1.6rem;
  }
}

@media (max-width: 575.98px){
  .wcu-content{ padding: 18px 16px; }
}
/* ✅ Responsive: hide numbers strip on mobile */
@media (max-width: 991.98px){
  /* hide the full middle strip column */
  .wcu-strip,
  .wcu-nums{
    display: none !important;
  }

  /* optional: keep image nice */
  .wcu-img{ min-height: 220px; }
}

/* ✅ keep content padding */
@media (max-width: 575.98px){
  .wcu-content{ padding: 18px 16px; }
}









.contact-banner{
  position: relative;
  background: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?q=80&w=2000&auto=format&fit=crop")
              center/cover no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

/* Dark overlay for readability */
.contact-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.20) 60%,
    rgba(0,0,0,.10) 100%
  );
  z-index: 1;
}


/* Content above overlay */
.contact-banner-content{
  position: relative;
  z-index: 2;
}

.contact-banner-title{
  color:#fff;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.contact-banner-title span{ color: var(--gold); }

.contact-banner-text{
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
}

/* Buttons */
.btn-gold{
  background: var(--gold);
  color:#000;
  font-weight: 800;
  border-radius: 14px;
  padding: 12px 20px;
  border: none;
  transition: .3s ease;
}
.btn-gold:hover{
  transform: translateY(-2px);
}

.btn-outline-gold{
  border: 1px solid rgba(212,175,55,.8);
  color: var(--gold);
  background: transparent;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
}
.btn-outline-gold:hover{
  background: rgba(212,175,55,.12);
}

/* Responsive */
@media (max-width: 768px){
  .contact-banner{
    padding: 60px 0;
  }
}
