/* HERO SECTION */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  background:black;
  z-index:1;
}

.hero-video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  top:0;
  left:0;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
    filter: brightness(1.05) contrast(1.05);
 will-change: opacity;
  backface-visibility: hidden;
}

.hero-video.active{
  opacity:1;
}


.hero::after{
  background:rgba(0,0,0,0.1); /* lighter */
}

/* ================= ABOUT SECTION ================= */

.about{
  padding:100px 8%;
  background:#fff;
}

.about-container{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:30px;
  align-items:stretch;
}

/* FORCE SAME HEIGHT */
.about-left,
.about-right{
  height:790px;   /* adjust if needed */
}

/* LEFT IMAGE */
.about-left img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

/* RIGHT SIDE = 2 EQUAL ROWS */
.about-right{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap:20px;
  height:650px;  /* SAME as left */
}

.about-right img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
  display:block;
}


/* ---------- TEXT AREA ---------- */
.about-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-text h2{
  font-size:32px;
  margin-bottom:20px;
  font-weight:600;
}

.about-text p{
  font-size:21px;
  line-height:1.8;
  color:#444;
  margin-bottom:15px;
}

/* ================= MOBILE RESPONSIVE ================= */

@media(max-width:768px){

  .about-container{
    grid-template-columns:1fr;
  }

  .about-left,
  .about-right{
    height:auto;
  }

  .about-right{
    grid-template-rows:auto;
  }

  .about-right img{
    height:350px;
  }

  .about-text{
    text-align:center;
  }
}

  






.vm-section{
  padding:100px 8%;
  background:#fff;
}

.vm-container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
  width:100%;
}

/* IMAGE */
.vm-image{
  height:500px;
}

.vm-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
}

/* TEXT */
.vm-title{
  font-size:34px;
  margin-bottom:25px;
}

.vm-content h3{
  font-size:24px;
  margin-bottom:10px;
}

.vm-content p{
  font-size:19px;
  line-height:1.8;
  color:#555;
  margin-bottom:25px;
}

.vm-content ul{
  padding-left:20px;
}

.vm-content li{
   font-size:19px;
  margin-bottom:12px;
  line-height:1.7;
  color:#555;
}

/* MOBILE */
@media(max-width:900px){
  .vm-container{
    grid-template-columns:1fr;
  }

  .vm-image{
    height:380px;
    order:-1; /* image on top in mobile */
  }
}


.why-section{
  padding:100px 8%;
  background:#fafafa;
  text-align:center;
}

.why-title{
  font-size:36px;
  margin-bottom:50px;
}

/* GRID */
.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-bottom:50px;
}

/* CARDS */
.why-card{
  background:white;
  padding:35px;
  border-radius:14px;
  box-shadow:0 5px 20px rgba(0,0,0,0.06);
  transition:0.3s;
}

.why-card:hover{
  transform:translateY(-8px);
}

/* TEXT */
.why-card p{
  font-size:16px;
  line-height:1.7;
  color:#555;
}

/* BOTTOM TEXT */
.why-bottom-text p{
  max-width:800px;
  margin:auto;
  line-height:1.8;
  color:#555;
  margin-bottom:25px;
}

.why-bottom-text h3{
  font-size:22px;
  font-weight:500;
}

/* MOBILE */
@media(max-width:900px){
  .why-grid{
    grid-template-columns:1fr;
  }
}









.announce-section{
  padding:110px 8%;
  background:#f9f9f9;
  font-family:Montserrat, sans-serif;
}

.announce-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center; /* ✅ CENTER BOTH SIDES */
}

/* LEFT SIDE */
.announce-left{
  text-align:left;
}

/* TITLE */
.img-title{
  font-size:30px;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#111;

  border-left:4px solid rgba(10,15,40,0.95);
  padding-left:15px;
  margin-bottom:20px;
}


/* IMAGE CARD */
.announce-img{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);

  display:flex;             /* ✅ center image */
  justify-content:center;
  align-items:center;
}

.announce-img img{
  max-width:260px;
  width:100%;
  height:auto;
  object-fit:contain;
}

/* RIGHT TEXT */
.announce-text{
  display:flex;             /* ✅ vertical center text */
  flex-direction:column;
  justify-content:center;
}

.announce-text h2{
  font-size:32px;
  margin-bottom:20px; /* ✅ remove big gap */
}

.announce-text p{
  font-size:19px;
  line-height:1.8;
  color:#444;
}

/* GOLD TEXT */
.highlight{
  color:rgba(10,15,40,0.95);
  font-weight:600;
}

/* MOBILE */
@media(max-width:900px){
  .announce-container{
    grid-template-columns:1fr;
  }

  .announce-text{
    text-align:center;
  }
}