
    /* HERO VIDEO */

    .hero {
      position: relative;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
    }

    /* TRUE FULL WIDTH VIDEO */

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Dark overlay */

    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.35);
    }

    /* Text */

    .hero-text {
      position: absolute;
      top: 45%;
      left: 8%;
      z-index: 2;
    }

    .hero-text h1 {
      font-size: 70px;
      color: silver;
      letter-spacing: 8px;
      font-weight: lighter;
    }

    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 25px;
      border: 1px solid silver;
      color: silver;
      text-decoration: none;
    }

    .btn:hover {
      background: silver;
      color: black;
    }
@media(max-width:600px){
  .hero-text h1{
    font-size:32px;
  }

  .hero-text{
    top:40%;
  }
}
.hero video{
  min-width:100%;
  min-height:100%;
}

    /* CONTENT SECTION */

  section{
  padding:70px 10%;
}

.about-section{
  padding:80px 8% 40px;
}

.vision-section{
  padding:40px 8% 80px;
}


    h2 {
      color: silver;
      margin-bottom: 20px;
    }




    /* ===== ABOUT SECTION ===== */


    /* LAYOUT */

    .about-container {
      display: flex;
      gap: 50px;
      align-items: flex-start;
    }

    /* LEFT TEXT */

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text h2,
    .about-text h3 {
      color: silver;
      margin-bottom: 15px;
      font-size: 40px;

    }

    .about-text p,
    .about-text li {
      line-height: 1.8;
      font-size: 19px;
    }

    .about-text ul {
      margin-left: 20px;
    }

    .about-highlight {
      color: silver;
      font-size: 18px;
      margin-top: 20px;
    }

    /* RIGHT IMAGES */

    .about-images {
      flex: 1;
      position: relative;
      min-height: 750px;
    }

    /* COMMON IMAGE STYLE */

    .about-images img {
      width: 100%;
      max-width: 600px;
      height: 340px;
      object-fit: cover;
      border-radius: 5px;
      position: absolute;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      transition: 0.4s;
    }

    .about-images img:hover {
      transform: scale(1.08);
      z-index: 5;
    }

    /* DESKTOP POSITIONS */

    .img1 {
      top: 0;
      left: 0;
    }

    .img2 {
      top: 280px;
      left: 200px;
    }

 

    /* ===== TABLET ===== */

    @media(max-width:1024px) {

      .about-container {
        flex-direction: column;
      }

      .about-images {
        position: static;
        min-height: auto;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px;
      }

      .about-images img {
        position: static;
        width: 100%;
        max-width: none;
      }
    }

    /* ===== MOBILE ===== */

    @media(max-width:600px) {

      .about-section {
        padding: 70px 5%;
      }

      .about-text h2 {
        font-size: 26px;
      }

      .about-text p,
      .about-text li {
        font-size: 14px;
      }

      .about-images {
        flex-direction: column;
        align-items: center;
      }

      .about-images img {
        width: 100%;
        height: 220px;
      }
    }






/* ===== VISION SECTION ===== */



.vision-container{
  display:flex;
  align-items:center;
  gap:60px;
    flex-direction: row-reverse; /* 👈 add this */

}

/* LEFT TEXT */

.vision-text{
  flex:1;
}

.vision-text h2{
  color:silver;
  margin-bottom:25px;
  font-size: 40px;
}

.vision-text h3{
  color:silver;
  margin-top:20px;
  margin-bottom:10px;
}

.vision-text p,
.vision-text li{
  color:#ccc;
  line-height:1.8;
}

.vision-text ul{
  margin-left:20px;
}

/* RIGHT IMAGE */

.vision-image{
  flex:1;
}

.vision-image img{
  width:100%;
  height:100%;
  min-height: 700px;
  object-fit:cover;
  border-radius:5px;
  box-shadow:0 15px 40px rgba(0,0,0,0.6);
  transition:0.4s;
}

.vision-image img:hover{
  transform:scale(1.05);
}

/* ===== MOBILE ===== */

@media(max-width:900px){
  .vision-container{
    flex-direction:column;
  }

  .vision-image img{
    height:350px;
  }
}








    /* ===== WHY ===== */

/* ===== WHY PREMIUM LAYOUT ===== */

.why-section{
  padding:100px 8%;
}

.why-container{
  display:flex;
  gap:60px;
  align-items:center;
}

/* LEFT TEXT */

.why-text{
  flex:1;
}

.why-text h2{
  color:silver;
  font-size:38px;
  margin-bottom:25px;
}

.why-text ul{
  margin-left:20px;
  color:#ccc;
  line-height:1.9;
  margin-bottom:25px;
}

.why-text li{
  margin-bottom:10px;
}

.why-desc{
  color:#bbb;
  line-height:1.8;
  margin-bottom:20px;
}

.why-highlight{
  color:silver;
  font-size:18px;
}

/* RIGHT IMAGES GRID */

.why-images{
  flex:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

/* Fashion style layout */

.why-images img:nth-child(1){
  grid-column:span 2;
  height:90%;
}

.why-images img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:5px;
  transition:0.5s;
  filter:brightness(0.85);
}

.why-images img:hover{
  transform:scale(1.05);
  filter:brightness(1);
  box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

/* MOBILE */

@media(max-width:900px){

  .why-container{
    flex-direction:column;
  }

  .why-images{
    grid-template-columns:1fr;
  }

  .why-images img:nth-child(1){
    grid-column:span 1;
  }
}









  /* ===== PROGRAMS SECTION ===== */

.programSwiper{
  position:relative;
  width:100%;
  overflow:hidden;
}

/* SLIDE LAYOUT */
.program-slide{
  display:flex;
  align-items:flex-start;
  gap:40px;
  width:100%;
  min-height:668px;
}

/* FLEX FIX (prevents cut) */
.program-slide > *{
  flex:1;
  min-width:0;
}

/* IMAGE SLIDE 999x668*/
.program-slide img{
  width:100%;
  height:auto;
  max-height:668px;
  border-radius:5px;
}

/* TEXT SIDE */
.program-info{
  width:100%;
  color:#fff;
}

.program-info h3{
  font-size:28px;
  margin-bottom:15px;
}

.program-info p{
  margin-bottom:10px;
  line-height:1.6;
  font-size:15px;
}

/* ROW LAYOUT */
.info-row{
  display:flex;
  gap:40px;
  margin-top:15px;
}

.info-row div{
  flex:1;
}

.winner-title{
  margin-top:25px;
  font-size:20px;
  font-weight:600;
}

/* ===== NAV BUTTONS ===== */

.program-nav{
  position:absolute;
  bottom:10px;
  right:10px;
  display:flex;
  gap:15px;
  z-index:10;
}

.swiper-button-next,
.swiper-button-prev{
  position:static;
  width:45px;
  height:45px;
  background:#fff;
  border-radius:50%;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after{
  font-size:18px;
  color:#000;
}


/* ===== INNER SLIDER (SLIDE 1 IMAGES) ===== */

.inner-slider{
  width:100%;
  max-width:100%;
  height: 100%;
  position:relative;
}

.inner-wrapper img{
  width:100%;
  display:none;
  border-radius:5px;
}

.inner-wrapper img.active{
  display:block;
}

/* DOTS */
.inner-dots{
  text-align:center;
  margin-top:8px;
}

.dot{
  height:10px;
  width:10px;
  background:#ccc;
  display:inline-block;
  border-radius:50%;
  margin:0 4px;
  cursor:pointer;
  transition:0.3s;
}

.dot.active{
  background:#fff;
}





/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:992px){

  .program-slide{
    flex-direction:column;
  }

  .program-slide img{
    max-height:600px;
  }

  .info-row{
    flex-direction:column;
    gap:10px;
  }

  .program-info h3{
    font-size:22px;
  }

  .program-info p{
    font-size:14px;
  }
}





    /* ===== GALLERY ===== */

#gallery{
  padding:80px 6%;
  text-align:center;
}

.gallery{
  margin-top:40px;
  display:grid;

  /* Desktop = 4 columns */
  grid-template-columns: repeat(4,1fr);

  gap:20px;
}

.gallery img{
  width:100%;
  height:400px;
  object-fit:cover;
  border-radius:8px;
  transition:0.4s;
  cursor:pointer;
}

.gallery img:hover{
  transform:scale(1.05);
  filter:brightness(1.15);
}
/* Tablet */
@media(max-width:992px){
  .gallery{
    grid-template-columns: 1fr;
  }
   .gallery img{
    height:650px; /* optional */
  }
}

/* Mobile */
@media(max-width:600px){
  .gallery{
    grid-template-columns: 1fr;
  }

  .gallery img{
    height:450px; /* optional */
  }
}


/* Small Mobile */
@media(max-width:480px){
  .gallery{
    grid-template-columns:1fr;
  }

  .gallery img{
    height:450px;
  }
}




    /* ===== CONTACT ===== */

    .contact {
      padding: 100px 8%;
      text-align: center;
    }

    /* FORM LAYOUT */

    .contact form {
      max-width: 900px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    /* MESSAGE BOX FULL WIDTH */

    .contact textarea {
      grid-column: span 2;
    }

    /* INPUT STYLE */

    .contact input,
    .contact textarea {
      width: 100%;
      padding: 15px;
      background: #111;
      border: 1px solid #333;
      color: white;
      border-radius: 8px;
      outline: none;
    }

    .contact input:focus,
    .contact textarea:focus {
      border: 1px solid silver;
    }

    /* BUTTON CENTER */

    .contact .btn {
      grid-column: span 2;
      justify-self: center;
      margin-top: 10px;
      cursor: pointer;
    }


/* videobanerhidenoption */
.social-fixed{
  position:fixed;
  top:50%;
  left:15px;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:18px;
  z-index:999;

  opacity:0;
  pointer-events:none;
  transition:0.4s;
}

/* SHOW CLASS */

.social-fixed.show{
  opacity:1;
  pointer-events:auto;
}




/* PRELOADER */

#preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* CENTER SQUARE BOX */
#preloader .loader-box{
  width: 220px;
  height: 220px;
  background: #000;
  border-radius: 5px;


  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
}


/* LOGO */
#preloader img{
  width: 190px;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

