: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;
}





/* =========================
   VIDEO BANNER
========================= */
.whyus-video-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.whyus-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Overlay */
.whyus-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

/* Center Content */
.whyus-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 20px;
}

.whyus-banner-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.whyus-banner-content p {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
}

/* =========================
   CONTENT SECTION
========================= */
.whyus-content-section {
  padding: 80px 0;
  background: #fff;
}

.whyus-title {
  font-size: 32px;
  font-weight: 700;
}

.whyus-accent {
  display: block;
  width: 60px;
  height: 3px;
  background: #caa45c;
  margin: 10px auto;
}

.whyus-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .whyus-video-banner {
    height: 70vh;
  }

  .whyus-banner-content h1 {
    font-size: 28px;
  }

  .whyus-banner-content p {
    font-size: 14px;
  }

  .whyus-title {
    font-size: 24px;
  }
}







.ceo-section{
  padding: 90px 0;
  background: #111;
  overflow: hidden;
}

.ceo-img-wrap{
  position: relative;
 
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(212,175,55,.18);
}

.ceo-img-wrap img{
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.ceo-content{
  max-width: 680px;
}

.ceo-tag,
.award-tag{
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 14px;
}

.ceo-title,
.award-title{
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.ceo-subtitle{
  color: #d4af37;
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.ceo-text,
.award-text{
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.ceo-stats{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.ceo-stat-box{
  flex: 1 1 180px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.22);
 
  padding: 18px 16px;
  text-align: center;
}

.ceo-stat-box h4{
  margin: 0 0 6px;
  color: #d4af37;
  font-size: 1.5rem;
  font-weight: 800;
}

.ceo-stat-box p{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.6;
}





.award-title{
  color: #fff;
  font-weight: 800;
  text-align: center;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 6px;
}


/* Award Section */
.award-section{
  padding: 90px 0;
  background: linear-gradient(135deg, #171717 0%, #0f0f0f 100%);
  overflow: hidden;
}

.award-content{
  max-width: 700px;
}

.award-img-wrap{
 
  overflow: hidden;
 
}

.award-img-wrap img{
  width: 100%;
  height: auto;        /* important */
  object-fit: contain; /* shows full image */
  display: block;
}

.award-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 28px;
 
  background: #d4af37;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #d4af37;
  transition: all .3s ease;
}

.award-btn:hover{
  background: transparent;
  color: #d4af37;
}

/* Tablet */
@media (max-width: 991.98px){
  .ceo-section,
  .award-section{
    padding: 70px 0;
  }

  .ceo-content,
  .award-content{
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .ceo-stats{
    justify-content: center;
  }

  .ceo-img-wrap img{
    height: 500px;
  }

  .award-img-wrap img{
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 767.98px){
  .ceo-section,
  .award-section{
    padding: 55px 0;
  }

  .ceo-title,
  .award-title{
    font-size: 1.85rem;
  }

  .ceo-subtitle{
    font-size: 1rem;
  }

  .ceo-text,
  .award-text{
    font-size: .95rem;
    line-height: 1.8;
  }

 
  .ceo-img-wrap img{
    height: 340px;
  }

  .award-img-wrap img{
    height: 280px;
  }

  .ceo-stat-box{
    flex: 1 1 100%;
  }
}

@media (max-width: 480px){
  .ceo-img-wrap img{
    height: 280px;
  }

  .award-img-wrap img{
    height: 240px;
  }
}



/* ✅ 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);
 
}

/* ✅ Layout */
.whyus-card{
  background: transparent;
}

.whyus-img{
  width:100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
 
  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));
 
  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: #fff;
}

.vm-wrap{
  position: relative;
 
  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;

  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;
  
  }

  .vm-sep{
    left: 0;
    width: 100%;
  
    top: 44%;
    transform: skewY(-10deg);
    opacity: .95;
  }

  .vm-content{
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 26px;
    
  }

  .vm-block{
    max-width: 100%;
  }
}





@media (max-width: 768px){

  .vision-section,
  .vision-content,
  .vision-card,
  .whyus-content{
    height: auto !important;
    min-height: auto !important;
  }

}

@media (max-width: 768px){

  .vision-content{
    padding: 25px 15px;
  }

  .vision-content p{
    line-height: 1.7;
  }

}






/* ✅ 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{
 
  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;
 
}

/* ✅ 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;
 
  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; }
}


.wcu-modern{
  background: #f8f6f1;
  padding: 90px 0;
}

/* Heading */
.wcu-modern-head h2{
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #3b2a7a;
  margin-bottom: 10px;
}

.wcu-modern-head p{
  color: #6b5c8f;
  font-size: 1.05rem;
}

/* Image */
.wcu-modern-img-wrap{
 
  overflow: hidden;
}

.wcu-modern-img{
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Feature list */
.wcu-modern-features{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.wcu-modern-item{
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.wcu-modern-icon{
  min-width: 48px;
  height: 48px;
 
  background: #d4af37;
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcu-modern-item h5{
  font-weight: 800;
  margin-bottom: 4px;
  color: #111;
}

.wcu-modern-item p{
  margin: 0;
  color: #555;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px){
  .wcu-modern-img{
    height: 340px;
  }
}

@media (max-width: 576px){
  .wcu-modern{
    padding: 70px 0;
  }

  .wcu-modern-img{
    height: 260px;
  }

  .wcu-modern-item{
    gap: 14px;
  }
}






.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;
 
  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;
  }
}
