* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'montserrat', sans-serif;
}
/* html,body{
  width: 100%;
  overflow-x: hidden;
} */




:root{
  --primary:#2E7D32;     /* Green */
  --secondary:#F9A825;   /* Yellow */
  --accent:#E53935;      /* Red */
  --dark:#1b1b1b;
  --light:#f9f9f9;
}




/* ===== TOPBAR ===== */
.topbar{
  background:linear-gradient(90deg,var(--primary),#1b5e20);
  color:#fff;
  font-size:14px;
}

.topbar-inner{
  max-width:1200px;
  margin:auto;
  padding:8px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar i{
  color:var(--secondary);
  margin-right:6px;
}

.topbar a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

.topbar span{
  margin:0 10px;
  opacity:.6;
}

/* ===== NAVBAR ===== */
.navbar{
  position:sticky;
  top:0;
  background:#f7f7f7;
  z-index:9999;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
 
}

.nav-inner{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position: relative;
  height: 100px;
}

/* LOGO */
.logo{
  display: flex;
  align-items: center;    /* logo vertically center */
}

.logo img{
  max-height: 100%;       /* ❗ navbar se bahar nahi jayega */
  height: 100px;           /* 🔥 yaha size bada/small karo */
  width: auto;
  object-fit: contain;
}

/* MENU */
.menu{
  display:flex;
  gap:28px;
  align-items:center;
}

.menu a,
.drop-btn{
  text-decoration:none;
  color:rgb(46, 46, 46);
  font-size:16px;
  font-weight:600;
  position:relative;
  cursor:pointer;
}

/* underline */
.menu a::after,
.drop-btn::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:3px;
  background:var(--secondary);
  transition:.3s;
}

.menu a:hover::after,
.menu a.active::after,
.drop-btn:hover::after{
  width:100%;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:140%;
  left:-80px;
  background:#fff;
  min-width:200px;
  border-top:4px solid var(--secondary);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
}

.dropdown-menu a{
  display:block;
  padding:12px 18px;
  font-size:15px;
  color:#222;
}

.dropdown-menu a:hover{
  background:#f6f6f6;
  color:var(--primary);
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* MOBILE TOGGLE */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#333333;
}


@media(max-width:1200px){ /* jab screen thodi choti ho */
  .dropdown-menu{
    left: auto;       /* left fix mat karo */
    right: 0;         /* parent ke right se align */
  }
}

/* Mobile menu */
@media(max-width:900px){
  .dropdown-menu{
    position: static; /* menu flow me aaye */
    width: 100%;      /* full width menu ke andar */
    box-sizing: border-box;
    display:none;     /* toggle pe show hoga */
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

  .menu{
    position:fixed;
    top:0;
    right:-100%;
    width:70%;
    height:100vh;
    background:#fff;
    flex-direction:column;
    padding:100px 30px;
    transition:.4s;
    box-shadow:-10px 0 30px rgba(0,0,0,.15);
  }

  .menu.active{
    right:0;
  }

  .menu-toggle{
    display:flex;
  }

  .dropdown-menu{
    position:static;
    box-shadow:none;
    border:none;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }
}

@media(max-width:768px){
  .topbar-inner{
    flex-direction:column;
    gap:6px;               /* lines ke beech space */
    text-align:center;
  }

  .top-left,
  .top-right{
    display:flex;
    flex-wrap:wrap;        /* line break allow */
    justify-content:center;
    gap:6px;               /* items ke beech space */
  }

  .topbar span{
    display:none;          /* | hide on mobile */
  }
}

/* Toggle animation */
.menu-toggle span{
  transition:0.4s;
}

/* जब menu open ho */
.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

.social-floating{
  position: fixed;
  bottom: 20px; /* bottom se gap */
  left: 20px;   /* left side */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  transform: none;
}

/* ICONS */
.social-floating .social-icon{
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* TOOLTIP */
.social-floating .social-icon span{
  position: absolute;
  left: 60px; /* tooltip circle ke right me */
  background: #222;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.social-floating .social-icon:hover{
  width: 180px; /* expand circle into rectangle */
  border-radius: 25px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.social-floating .social-icon:hover span{
  opacity: 1;
  left: 60px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .social-floating{
    bottom: 15px;
    left: 10px;
    gap: 10px;
  }

  .social-floating .social-icon{
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .social-floating .social-icon:hover{
    width: 140px; /* smaller expand on mobile */
  }

  .social-floating .social-icon span{
    left: 50px; /* adjust tooltip position */
    font-size: 14px;
  }
}

@media(max-width:500px){
  .social-floating{
    bottom: 10px;
    left: 5px;
    gap: 8px;
  }

  .social-floating .social-icon{
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .social-floating .social-icon:hover{
    width: 140px; /* mobile friendly */
  }

  .social-floating .social-icon span{
    left: 45px;
    font-size: 12px;
  }
}

/* SLIDER ARROWS */
.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:55px;
  height:55px;
  border-radius:50%;
  border:none;
  background:rgba(0,0,0,0.45);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.4s ease;
  backdrop-filter: blur(6px);
}

.slider-arrow:hover{
  background:var(--secondary);
  color:#000;
}

/* LEFT */
.slider-arrow.prev{
  left:30px;
}

/* RIGHT */
.slider-arrow.next{
  right:30px;
}

/* MOBILE */
@media(max-width:768px){
  .slider-arrow{
    width:45px;
    height:45px;
    font-size:16px;
  }

  .slider-arrow.prev{ left:15px; }
  .slider-arrow.next{ right:15px; }
}



.hero-slider{
  position:relative;
  height:90vh;
  overflow:hidden;
}

/* SLIDE */
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.08);
  transition:1.2s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

/* OVERLAY */
.slide .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.35),
    rgba(0,0,0,.7)
  );
}

/* CONTENT */
.hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:0 20px;
  animation:fadeUp 1.3s ease forwards;
}

/* TAG */
.hero-content .tag{
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--secondary);
  margin-bottom:18px;
  background-color: var(--dark);
  padding: 10px 20px;
  border-radius: 10px;
}

/* HEADING */
.hero-content h1{
  font-size:64px;
  font-weight:700;
  line-height:1.1;
  margin-bottom:30px;
}

.hero-content h1 span{
  color:var(--secondary);
}

/* BUTTON */
.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:15px 38px;
  border-radius:40px;
  border:2px solid var(--secondary);
  color:var(--secondary);
  text-decoration:none;
  font-weight:600;
  transition:.4s;
}

.hero-btn:hover{
  background:var(--secondary);
  color:#000;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-slider{
    height:75vh;
  }

  .hero-content h1{
    font-size:22px;
  }
}


/* FIRST SLIDE CUSTOM */
.slide-custom{
  background:
    linear-gradient(135deg,rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(45deg,rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(135deg,#2b84c6,#1f6fa8);
  background-size:40px 40px;
  opacity:1 !important;
  transform:scale(1) !important;
}

/* WRAP */
.custom-wrap{
  height:100%;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  align-items:center;
  padding:0 8%;
  gap:40px;
}

/* TEXT LEFT */
.custom-text{
  color:#fff;
}

.custom-text h1{
  font-size:60px;
  line-height:1.1;
  margin:25px 0;
}

.custom-text h1 span{
  color:var(--secondary);
}

.custom-text p{
  max-width:520px;
  font-size:18px;
  opacity:.9;
  margin-bottom:30px;
}

/* IMAGE RIGHT */
.custom-image{
  text-align:right;
}

.custom-image img{
  max-width:100%;
  height:auto;
  animation: float 4s ease-in-out infinite;
}

/* FLOAT EFFECT */
/* @keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-15px); }
} */

@media(max-width:900px){
  .custom-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  /* .custom-image{
    order:-1;
    text-align:center;
    width: 100%;
    height: 100px;
  } */

  .custom-text h1{
    font-size:20px;
  }
}

.why-choose-new{
  padding:110px 60px;
  min-height:600px;
  background: linear-gradient(
    180deg,
    #ffffff,
    var(--light)
  );
  color:#000;
  position: relative;
  overflow: hidden;
}

.why-choose-new::after{
  content:"";
  position:absolute;
  top:40px;
  right:0;
  width:320px;
  height:270px;
  background:url('images/svg2.webp') no-repeat center;
  background-size:contain;
  opacity:0.12;
  pointer-events:none;
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY{
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(620px); /* 👈 niche */
  }
  100%{
    transform: translateY(0);
  }
}



/* .why-choose-new::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.03) 2px,
      transparent 2px,
      transparent 10px
    );
} */


/* Heading */
.why-head{
  max-width:600px;
  margin-bottom:70px;
  
}

.why-head span{
  font-size:13px;
  letter-spacing:3px;
  color:var(--secondary);
  font-weight:600;
}

.why-head h2{
  font-size:42px;
  font-weight:800;
  margin-top:10px;
  color:#000000;
}

/* Grid */
.why-grid-new{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:45px;
}

/* Card */
.why-card-new{
  background:#fff;
  padding:50px 35px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  position:relative;
  transition:.45s cubic-bezier(.4,0,.2,1);
}

/* Top Accent Line */
.why-card-new::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  border-radius:22px 22px 0 0;
}

/* Hover */
/* Parent perspective (IMPORTANT) */
.why-grid-new{
  perspective:1200px;
}

/* Card */
.why-card-new{
  background:#fff;
  padding:50px 35px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  position:relative;
  transform-style:preserve-3d;
  transition:transform .45s ease, box-shadow .45s ease;
}

/* Hover */
.why-card-new:hover{
  transform: translateY(-14px) rotateZ(-2deg);
  box-shadow:0 35px 80px rgba(0,0,0,0.18);
}

/* Icon */
.why-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  color:#fff;
  background:var(--primary);
  margin-bottom:28px;
}

.why-card-new:nth-child(2) .why-icon{background:var(--secondary);}
.why-card-new:nth-child(3) .why-icon{background:var(--accent);}
.why-card-new:nth-child(4) .why-icon{background:var(--primary);}
.why-card-new:nth-child(5) .why-icon{background:var(--secondary);}
.why-card-new:nth-child(6) .why-icon{background:var(--accent);}

/* Text */
.why-card-new h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:16px;
  color:var(--dark);
}

.why-card-new p{
  font-size:16px;
  line-height:1.7;
  color:#555;
}

/* Responsive */
@media(max-width:900px){
  .why-grid-new{
    grid-template-columns:1fr;
    gap:40px;
  }

  .why-head h2{
    font-size:32px;
  }
}


.about-unique {
  padding: 120px 75px;
  min-height: 600px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.856),
      rgba(245, 247, 250, 0.877)
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Crect x='10' y='10' width='30' height='40' fill='%23F9E79F' opacity='0.6'/%3E%3Crect x='60' y='30' width='40' height='30' fill='%23F5B041' opacity='0.5'/%3E%3Cpolygon points='120,20 130,40 110,40' fill='%23FAD7A0' opacity='0.6'/%3E%3Ccircle cx='50' cy='150' r='12' fill='%23FDEBD0' opacity='0.4'/%3E%3Cline x1='150' y1='150' x2='170' y2='170' stroke='%23F5CBA7' stroke-width='3' opacity='0.4'/%3E%3C/svg%3E") repeat;
  background-size: 35% auto;
}

.about-wrap{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT */
.about-tag{
  font-size:13px;
  letter-spacing:3px;
  color:var(--secondary);
  font-weight:600;
}

.about-left h2{
  font-size:46px;
  font-weight:800;
  line-height:1.2;
  margin:16px 0 28px;
  color:var(--dark);
}

.about-left h2 span{
  color:var(--primary);
}

.about-left p{
  font-size:17px;
  line-height:1.8;
  color:#555;
  margin-bottom:20px;
  max-width:520px;
}

/* BUTTON */
.about-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:20px;
  padding:14px 34px;
  border-radius:30px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.35s;
}

.about-btn i{
  font-size:14px;
  transition:.35s;
}

.about-btn:hover{
  background:var(--accent);
}

.about-btn:hover i{
  transform:translateX(6px);
}

/* RIGHT SIDE */
.about-right{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:28px;
}

/* CARD */
.about-card{
  background:#fff;
  padding:30px 32px;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  display:flex;
  gap:18px;
  align-items:flex-start;
  transition: transform .4s ease, box-shadow .4s ease;
}

.about-card:hover{
  transform: translateX(12px) rotateZ(-5deg) !important;
  box-shadow:0 30px 65px rgba(0,0,0,0.18);
}

/* ICON */
.about-card i{
  font-size:28px;
  color:#fff;
  background:var(--primary);
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.about-card:nth-child(2) i{ background:var(--secondary); }
.about-card:nth-child(3) i{ background:var(--accent); }

/* TEXT */
.about-card h4{
  font-size:20px;
  font-weight:700;
  margin-bottom:8px;
  color:var(--dark);
}

.about-card p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:900px){

  .about-unique{
    padding:70px 20px;
    min-height:auto;
    background:none;
  }

  .about-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-left{
    text-align:center;
  }

  .about-left h2{
    font-size:30px;
    line-height:1.25;
  }

  .about-left p{
    font-size:16px;
    line-height:1.7;
    margin-left:auto;
    margin-right:auto;
    max-width:100%;
  }

  .about-btn{
    margin-left:auto;
    margin-right:auto;
  }

  .about-right{
    gap:18px;
  }

  /* CARD FIX */
  .about-card{
    width:100%;
    max-width:100%;
    padding:22px 20px;
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
    transform:none !important;
  }

  .about-card:hover{
    transform:none;
  }

  .about-card i{
    width:48px;
    height:48px;
    font-size:24px;
    margin-bottom:10px;
  }

  .about-card h4{
    font-size:18px;
  }

  .about-card p{
    font-size:14.5px;
    line-height:1.6;
    word-break:break-word;
  }
}

.about-unique{
  overflow-x:hidden;
}


/* ICON HOVER EFFECT */
.about-card i {
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.5s ease;
  background: var(--primary);
}

/* Different colors for other cards already exist */
.about-card:nth-child(2) i { background: var(--secondary); }
.about-card:nth-child(3) i { background: var(--accent); }

/* Hover animation */
.about-card:hover i {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #ffb347, #ffcc33);
}

.reviews-marquee{
  padding:110px 20px;
  color:#fff;
  overflow:hidden;
  background:
    linear-gradient(
      180deg,
      rgba(14, 28, 47, 0.822),
      rgba(20,40,68,0.92)
    ),
    url("images/marquee.jpg") center/cover no-repeat;
}

.reviews-inner{
  max-width:1300px;
  margin:auto;
  text-align:center;
}

/* Title */
.reviews-title{
  font-size:40px;
  letter-spacing:2px;
  margin-bottom:25px;
}

/* Rating */
.reviews-rating{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-bottom:70px;
}

.reviews-rating img{
  width:36px;
}

.reviews-rating strong{
  font-size:36px;
}

.reviews-rating span{
  font-size:14px;
  opacity:.8;
}

/* Slider */
.reviews-strip{
  overflow:hidden;
}

.reviews-move{
  display:flex;
  gap:35px;
  width:max-content;
  animation: reviewsScroll 35s linear infinite;
}

/* Card */
.review-box{
  width:340px;
  background:rgba(255, 255, 255, 0.616);
  color:#111;
  padding:35px 28px;
  border-radius:22px;
  box-shadow:0 30px 70px rgba(0,0,0,0.35);
  text-align:center;
}

/* Avatar */
.review-box .avatar,
.review-box .photo{
  width:70px;
  height:70px;
  border-radius:50%;
  margin:auto;
  margin-bottom:18px;
  object-fit:cover;
  background:#607d8b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
}

.review-box p{
  font-size:16px;
  line-height:1.6;
  margin-bottom:12px;
}

.review-box span{
  font-size:14px;
  color:#555;
}

/* Infinite motion */
@keyframes reviewsScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* Mobile */
@media(max-width:768px){
  .reviews-move{
    animation:none;
    flex-direction:column;
  }

  .review-box{
    width:100%;
  }
}

/* Mobile Fix */
@media(max-width:768px){

  .reviews-marquee{
    padding:80px 15px;
  }

  .reviews-move{
    animation:none;
    flex-direction:column;
    width:100%;
    transform:none;
  }

  .reviews-strip{
    overflow:hidden;
  }

  .review-box{
    width:100%;
    max-width:100%;
    margin:0 auto;
  }
}

.reviews-marquee,
.reviews-strip{
  overflow-x:hidden;
}


.video-feature{
  padding:120px 20px;
  background:
    radial-gradient(circle at top left, rgba(46,125,50,.14), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249,168,37,.14), transparent 55%),
    linear-gradient(180deg,#ffffff,var(--light));
}

/* Layout */
.video-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:70px;
  align-items:center;
}

/* Slider */
.video-slider{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
  width:100%;
  max-width:420px;   /* 👈 ye magic hai */
}

.video-track{
  display:flex;
  transition:transform .7s ease-in-out;
}

.video-slide{
  flex:0 0 100%;
  aspect-ratio:16/9;
  background:#000;
}

.video-slide iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Arrows */
.slide-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.6);
  color:#fff;
  border:none;
  font-size:22px;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  z-index:2;
}

.slide-btn:hover{
  background:#2E7D32;
}

.prev{ left:15px; }
.next{ right:15px; }

/* Text */
.video-tag{
  font-size:13px;
  letter-spacing:2px;
  color:#f9a825;
  font-weight:600;
}

.video-text h2{
  font-size:42px;
  margin:25px 0;
}

.video-text h2 span{
  color:#2E7D32;
}

.video-text p{
  font-size:17px;
  line-height:1.8;
  color:#444;
}

/* Mobile */
@media(max-width:900px){
  .video-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  .slide-btn{
    width:38px;
    height:38px;
  }
}

/* Mobile pe natural flow */
@media(max-width:900px){
  .video-box{
    order:1;
  }
  .video-text{
    order:2;
  }
   .video-slider{
    max-width:100%;
    width:100%;
    margin:0 auto;
  }
}

/* ===== MODERN GALLERY SECTION ===== */
.gallery-modern{
  padding:110px 20px;
  min-height:600px;
  background:
    radial-gradient(circle at left, rgba(46,125,50,.14), transparent 55%),
    linear-gradient(180deg,#f9fafb,#ffffff);
  position: relative;
  overflow: hidden;
}

.gallery-modern::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:400px;
  height:400px;
  background:url('images/svg3.webp') no-repeat top right;
  background-size:contain;
  opacity:0.12;
  pointer-events:none;
}

.video-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
}


/* MAIN GRID */
.gallery-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  grid-template-rows:auto auto;
  gap:60px;
  align-items:start;
}

/* ===== HEADING ===== */
.gallery-head{
  grid-column:1 / -1;
  max-width:650px;
}

.gallery-tag{
  display:inline-block;
  padding:6px 16px;
  background:#e8f5e9;
  color:#2E7D32;
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  border-radius:30px;
  margin-bottom:18px;
}

.gallery-head h2{
  font-size:46px;
  line-height:1.2;
  margin-bottom:18px;
  color:#111;
}

.gallery-head h2 span{
  color:#2E7D32;
}

.gallery-head p{
  font-size:17px;
  color:#555;
  line-height:1.7;
}

/* ===== FEATURED IMAGE ===== */
.gallery-featured{
  position:relative;
  height:700px;
  border-radius:28px;
  overflow:hidden;
  background:#f1f1f1;   /* empty space clean lagega */
  display:flex;
  align-items:center;
  justify-content:center;
}

.gallery-featured img{
  width:100%;
  height:100%;
  object-fit:contain;   /* 🔥 MOST IMPORTANT */
}


.gallery-featured:hover img{
  transform:scale(1.08);
}

.gallery-featured video{
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000;
}

/* Overlay */
.featured-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:32px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.7));
  color:#fff;
}
#featuredVideo,
#featuredImg {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 MOST IMPORTANT */
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.featured-overlay h3{
  font-size:26px;
  margin-bottom:6px;
}

.featured-overlay p{
  font-size:14px;
  opacity:.9;
}

/* ===== RIGHT GRID ===== */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-content:start;
}

.gallery-item{
  height:150px;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
  transition:.4s ease;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s ease;
}

.gallery-item:hover img{
  transform:scale(1.15);
}

/* Dark overlay hover */
.gallery-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
  opacity:0;
  transition:.4s;
}

.gallery-item:hover::after{
  opacity:1;
}

/* Active state */
.gallery-item.active{
  outline:3px solid #2E7D32;
  transform:translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .gallery-wrapper{
    grid-template-columns:1fr;
  }

  .gallery-head{
    text-align:center;
    margin-bottom:30px;
  }

  .gallery-head h2{
    font-size:34px;
  }

  .gallery-featured{
    height:320px;
  }

  .gallery-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:500px){
  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }
}


.enquiry-modern{
  padding:110px 20px;
  background:
    radial-gradient(circle at top, rgba(46,125,50,.18), transparent 55%),
    linear-gradient(180deg,#f9fafb,#ffffff);
}

.enquiry-box{
  max-width:800px;
  margin:auto;
  text-align:center;
  background:#fff;
  padding:70px 40px;
  border-radius:32px;
  box-shadow:0 40px 90px rgba(0,0,0,.15);
}

/* Tag */
.enquiry-tag{
  display:inline-block;
  padding:6px 18px;
  background:#e8f5e9;
  color:#2E7D32;
  font-size:12px;
  letter-spacing:2px;
  border-radius:30px;
  margin-bottom:20px;
  font-weight:600;
}

/* Heading */
.enquiry-box h2{
  font-size:44px;
  margin-bottom:20px;
  color:#111;
}

.enquiry-box h2 span{
  color:#2E7D32;
}

/* Text */
.enquiry-box p{
  font-size:18px;
  color:#555;
  line-height:1.7;
  margin-bottom:45px;
}

/* Form */
.enquiry-form{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.enquiry-form input{
  width:360px;
  padding:16px 20px;
  font-size:16px;
  border-radius:40px;
  border:1px solid #ddd;
  outline:none;
}

.enquiry-form input:focus{
  border-color:#2E7D32;
}

.enquiry-form button{
  padding:16px 40px;
  border:none;
  border-radius:40px;
  background:#2E7D32;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}

.enquiry-form button:hover{
  background:#1b5e20;
}

/* Mobile */
@media(max-width:768px){
  .enquiry-box{
    padding:50px 25px;
  }
  .enquiry-box h2{
    font-size:32px;
  }
  .enquiry-form input{
    width:100%;
  }
}


/* ===== FOOTER ===== */
.footer-modern{
  background:
    radial-gradient(circle at top left, rgba(46,125,50,.18), transparent 55%),
    linear-gradient(180deg,#0f172a,#020617);
  color:#d1d5db;
  padding:90px 20px 0;
}

/* GRID (DESKTOP) */
.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
}

/* BRAND */
.footer-brand h3{
  font-size:30px;
  color:#fff;
  margin-bottom:15px;
}

.footer-brand h3 span{
  color:#22c55e;
}

.footer-brand p{
  font-size:15px;
  line-height:1.7;
  color:#9ca3af;
  max-width:420px;
}

/* SOCIAL */
.footer-social{
  margin-top:25px;
  display:flex;
  gap:14px;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}

.footer-social a:hover{
  transform:translateY(-4px);
}

/* SOCIAL COLORS */
.footer-social .fb{background:#1877f2;}
.footer-social .ig{background:#e1306c;}
.footer-social .yt{background:#ff0000;}
.footer-social .li{background:#0a66c2;}

/* LINKS */
.footer-links h4,
.footer-contact h4{
  font-size:18px;
  color:#fff;
  margin-bottom:18px;
}

.footer-links a{
  display:block;
  color:#9ca3af;
  font-size:15px;
  margin-bottom:12px;
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:#22c55e;
  padding-left:6px;
}

/* CONTACT */
.footer-contact p{
  font-size:15px;
  color:#9ca3af;
  margin-bottom:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-contact i{
  color:#22c55e;
  font-size:15px;
}

.footer-contact a{
  color:#9ca3af;
  text-decoration:none;
  transition:.3s;
}

.footer-contact a:hover{
  color:#22c55e;
}

/* BOTTOM BAR */
.footer-bottom-modern{
  margin-top:70px;
  padding:25px 20px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  font-size:14px;
}

.footer-bottom-modern a{
  color:#22c55e;
  text-decoration:none;
}

/* ===== TABLET ===== */
@media(max-width:1024px){
  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

/* ===== MOBILE ===== */
@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-social{
    justify-content:center;
  }

  .footer-contact p{
    justify-content:center;
  }

  .footer-bottom-modern{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}


.about-hero{
  padding:140px 20px;
  background:
    linear-gradient(
      rgba(146, 88, 88, 0.75),
      rgba(122, 65, 65, 0.75)
    ),
    url('images/svg.webp') no-repeat center/cover;
}


.about-hero-inner{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.hero-tag{
  display:inline-block;
  background:#dcfce7;
  color:#166534;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:25px;
}

.about-hero h1{
  font-size:52px;
  line-height:1.2;
  margin-bottom:25px;
}

.about-hero h1 span{
  color:#2E7D32;
}

.about-hero p{
  font-size:18px;
  color:#ffffff;
  max-width:700px;
  margin:auto;
}

@media(max-width:768px){
  .about-hero h1{font-size:36px;}
}


.about-cards{
  padding:110px 20px;
  background:#f8fafc;
}

.about-cards-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

/* CARD */
.about-card{
  background:#fff;
  padding:30px;
  border-radius:22px;
  display:flex;
  align-items:flex-start;
  gap:22px;
  box-shadow:0 25px 55px rgba(0,0,0,.08);
  transition:.35s ease;
}

.about-card:hover{
  transform:translateY(-8px);
}

/* ICON */
.card-icon{
  min-width:62px;
  height:62px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.card-icon.green{background:#2E7D32;}
.card-icon.yellow{background:#f4b400;}
.card-icon.red{background:#e53935;}

/* CONTENT */
.card-content h3{
  font-size:22px;
  margin-bottom:10px;
  color:#111;
}

.card-content p{
  font-size:15.5px;
  line-height:1.7;
  color:#555;
}

.about-cards-head{
  max-width:700px;
  margin:0 auto 60px;
  text-align:center;
}

.about-cards-head h2{
  font-size:38px;
  color:#111;
  margin-bottom:14px;
}

.about-cards-head p{
  font-size:16px;
  color:#555;
  line-height:1.7;
}

.about-cards-head span{
  color:#2E7D32;

}

/* MOBILE */
@media(max-width:768px){
  .about-cards-head h2{
    font-size:30px;
  }
}


/* RESPONSIVE */
@media(max-width:900px){
  .about-cards-wrap{
    grid-template-columns:1fr;
  }
}



/* ===== STUDENT ACHIEVEMENT ===== */
.about-strip{
  padding:100px 20px;
  background:linear-gradient(180deg,#0f172a,#020617);
  color:#fff;
}

.about-strip-inner{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.about-strip h2{
  font-size:38px;
  margin-bottom:30px;
}

.about-strip h2 span{
  color:#22c55e;
}

.about-strip ul{
  list-style:none;
  padding:0;
  font-size:18px;
  line-height:2;
}

.about-strip{
  padding:110px 20px;
  background:
    radial-gradient(circle at top,#1e293b,#020617 70%);
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* Soft glow effect */
.about-strip::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,
    rgba(34,197,94,.15),
    transparent 60%);
  pointer-events:none;
}

.about-strip-inner{
  max-width:900px;
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

/* small tag */
.strip-tag{
  display:inline-block;
  padding:6px 16px;
  font-size:13px;
  letter-spacing:1px;
  border-radius:30px;
  background:rgba(34,197,94,.15);
  color:#22c55e;
  margin-bottom:18px;
}

.about-strip h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:45px;
}

.about-strip h2 span{
  color:#22c55e;
}

/* LIST */
.trust-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px 40px;
  text-align:left;
  max-width:720px;
  margin-inline:auto;
}

.trust-points li{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:18px;
  background:rgba(255,255,255,.05);
  padding:16px 20px;
  border-radius:14px;
  backdrop-filter:blur(6px);
  transition:.3s;
}

.trust-points li i{
  color:#22c55e;
  font-size:18px;
}

.trust-points li:hover{
  transform:translateY(-4px);
  background:rgba(34,197,94,.12);
}

/* MOBILE */
@media(max-width:768px){
  .about-strip h2{
    font-size:30px;
  }

  .trust-points{
    grid-template-columns:1fr;
  }

  .trust-points li{
    font-size:16px;
  }
}




/* ================= DIRECTOR OVERLAP ================= */
.director-overlap{
  position:relative;
  padding:130px 20px;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
  display:flex;
  align-items:center;
  gap:0;
  overflow:hidden;
}

/* BIG IMAGE */
.director-media{
  flex:1;
  position:relative;
}

.director-media img{
  width:100%;
  max-width:520px;
  height:620px;
  object-fit:cover;
  border-radius:32px 80px 30px 120px;
  box-shadow:0 40px 90px rgba(0,0,0,.28);
  /* margin-top: 20px; */
  object-position: center 40%;
}

/* OVERLAP CARD */
.director-info{
  flex:1;
  background:#fff;
  padding:65px 60px;
  border-radius:28px;
  box-shadow:0 35px 90px rgba(0,0,0,.18);

  margin-left:-90px;   /* 🔥 overlap magic */
  z-index:2;
}

/* TAG */
.director-tag{
  display:inline-block;
  padding:6px 18px;
  font-size:13px;
  border-radius:20px;
  background:#dcfce7;
  color:#16a34a;
  margin-bottom:18px;
}

/* TEXT */
.director-info h2{
  font-size:42px;
  margin-bottom:6px;
}

.director-info h4{
  font-size:18px;
  color:#555;
  margin-bottom:28px;
}

.director-info p{
  font-size:16px;
  line-height:1.9;
  color:#444;
  margin-bottom:18px;
}

/* STATS */
.director-stats{
  display:flex;
  gap:40px;
  margin-top:35px;
  padding-top:25px;
  border-top:1px solid #eee;
}

.director-stats strong{
  font-size:30px;
  color:#16a34a;
  display:block;
}

.director-stats span{
  font-size:14px;
  color:#666;
}

/* ================= SPIN BADGE ================= */
.spin-badge{
  position:absolute;
  bottom:20px;
  right:135px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* ICON */
.spin-badge i{
  font-size:28px;
  color:#000000;
  z-index:2;
}

/* SPIN RING */
.spin-badge::before{
  content:'';
  position:absolute;
  inset:-8px;
  border-radius:50%;
  border:2px dashed #000000;
  animation:spin 10s linear infinite;
}

/* SOFT GLOW */
.spin-badge::after{
  content:'';
  position:absolute;
  inset:-18px;
  border-radius:50%;
  background:rgba(3, 3, 3, 0.15);
  z-index:-1;
}

/* HOVER INTERACTION */
.spin-badge{
  transition:transform .45s ease, box-shadow .45s ease;
}

/* IMAGE HOVER SE BADGE REACT KARE */
.director-media:hover .spin-badge{
  transform:scale(1.12);
  box-shadow:0 35px 80px rgba(34,197,94,.45);
}

/* SPIN SPEED INCREASE ON HOVER */
.director-media:hover .spin-badge::before{
  animation-duration:3s;   /* fast spin */
}

/* ICON POP EFFECT */
.director-media:hover .spin-badge i{
  transform:scale(1.15);
  color:#22c55e;
  transition:.4s ease;
}

/* OPTIONAL : IMAGE SOFT ZOOM */
.director-media img{
  transition:transform .6s ease;
}

.director-media:hover img{
  transform:scale(1.03);
}


/* ROTATION */
@keyframes spin{
  from{
    transform:rotate(0deg);
  }
  to{
    transform:rotate(360deg);
  }
}

/* RESPONSIVE */
@media(max-width:900px){
  .spin-badge{
    width:70px;
    height:70px;
  }

  .spin-badge i{
    font-size:22px;
  }
  
}


@media (max-width: 900px){

  .director-media{
    position:relative;   /* MOBILE me image reference */
  }

  .spin-badge{
    right:15px;          /* image ke corner me */
    bottom:95px;
  }

}



/* RESPONSIVE */
@media(max-width:900px){
  .director-overlap{
    flex-direction:column;
    padding:80px 15px;
  }

  .director-media img{
    height:420px;
    max-width:100%;
  }

  .director-info{
    margin-left:0;
    margin-top:-80px; /* mobile overlap */
    padding:45px 30px;
  }
}



/* ================= SALIENT SECTION ================= */
.salient-section{
  padding:100px 20px;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.salient-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

/* ================= HEADING ================= */
.salient-heading{
  font-size:34px;
  font-weight:700;
  letter-spacing:1px;
  color:#111;
  margin-bottom:12px;
  font-family:'Montserrat',sans-serif;
}

.salient-underline{
  width:140px;
  height:4px;
  background:linear-gradient(90deg,#16a34a,#22c55e);
  margin:14px auto 30px;
  border-radius:5px;
}

.salient-intro{
  font-size:18px;
  color:#444;
  max-width:820px;
  margin:0 auto 70px;
  line-height:1.7;
}

/* ================= GRID ================= */
.salient-content{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
}

/* ================= CARD ================= */
.salient-card{
  position:relative;
  background:rgba(255,255,255,.9);
  padding:38px 34px 38px 90px;
  border-radius:22px;
  text-align:left;
  box-shadow:0 25px 70px rgba(0,0,0,.08);
  overflow:hidden;
  transition:.45s ease;
  backdrop-filter:blur(6px);
  z-index:1;
}

/* OVERLAY SLIDE */
.salient-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:var(--secondary);
  transition:.5s ease;
  z-index:-1;
}

/* HOVER */
.salient-card:hover::before{
  left:0;
}

.salient-card:hover{
  transform:translateY(-10px);
  box-shadow:0 40px 90px rgba(0,0,0,.18);
}

/* ================= NUMBER BADGE ================= */
.salient-num{
  position:absolute;
  left:28px;
  top:34px;
  width:44px;
  height:44px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#fff;
  font-weight:700;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  box-shadow:0 10px 30px rgba(34,197,94,.45);
  transition:.4s ease;
}

/* ================= TEXT ================= */
.salient-card p{
  font-size:16.5px;
  line-height:1.8;
  color:#444;
  transition:.4s ease;
}

.salient-card strong{
  color:#111;
  transition:.4s ease;
}

/* TEXT COLOR ON HOVER */
.salient-card:hover p,
.salient-card:hover strong{
  color:#fff;
}

/* NUMBER INVERT ON HOVER */
.salient-card:hover .salient-num{
  background:#fff;
  color:var(--secondary);
  box-shadow:0 10px 30px rgba(255,255,255,.5);
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .salient-heading{
    font-size:28px;
  }

  .salient-content{
    grid-template-columns:1fr;
  }

  .salient-card{
    padding:32px 28px 32px 85px;
  }
}




/* ================= VIDEO SECTION ================= */
.video-section{
  padding:100px 20px;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.video-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

/* HEADING */
.video-heading{
  font-size:34px;
  font-weight:700;
  color:#111;
  margin-bottom:12px;
  font-family:'Montserrat',sans-serif;
}

.video-heading span{
  color:#16a34a;
}

.video-underline{
  width:130px;
  height:4px;
  background:linear-gradient(90deg,#16a34a,#22c55e);
  margin:14px auto 30px;
  border-radius:5px;
}

.video-intro{
  font-size:18px;
  color:#444;
  max-width:820px;
  margin:0 auto 70px;
  line-height:1.7;
}

/* GRID */
.video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

/* CARD */
.video-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.08);
  transition:.45s ease;
}

.video-card:hover{
  transform:translateY(-12px);
  box-shadow:0 40px 90px rgba(0,0,0,.15);
}

/* THUMB */
.video-thumb{
  position:relative;
  overflow:hidden;
}

.video-thumb img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:.5s ease;
}

.video-card:hover img{
  transform:scale(1.08);
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:62px;
  height:62px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  box-shadow:0 20px 50px rgba(34,197,94,.5);
  transition:.4s ease;
}

.video-card:hover .play-btn{
  transform:translate(-50%,-50%) scale(1.15);
}

/* INFO */
.video-info{
  padding:26px 24px;
  text-align:left;
}

.video-info h4{
  font-size:18px;
  color:#111;
  margin-bottom:8px;
}

.video-info p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .video-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .video-grid{
    grid-template-columns:1fr;
  }
}
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.8);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.video-modal-content{
  width:80%;
  max-width:900px;
  background:#000;
  border-radius:18px;
  overflow:hidden;
  position:relative;
}

.video-modal iframe{
  width:100%;
  height:480px;
  border:none;
}

.video-close{
  position:absolute;
  top:10px;
  right:15px;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}



.contact-section{
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  padding:80px 6%;
  color:#fff;
}

.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:50px;
  margin-bottom:60px;
}

/* LEFT INFO */
.contact-info h2{
  font-size:36px;
}
.contact-info h2 span{
  color:#00ffd5;
}
.contact-info p{
  margin:15px 0 30px;
  opacity:.8;
}

.info-card{
  display:flex;
  align-items:center;
  gap:15px;
  background:rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding:18px;
  border-radius:14px;
  margin-bottom:18px;
  transition:.4s;
}
.info-card:hover{
  transform:translateX(10px);
  background:rgba(0,255,213,0.15);
}
.info-card i{
  font-size:22px;
  color:#00ffd5;
}

/* FORM */
.contact-form{
  background:rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding:40px;
  border-radius:20px;
}
.contact-form h3{
  margin-bottom:25px;
}

.field{
  position:relative;
  margin-bottom:25px;
}
.field input,
.field textarea{
  width:100%;
  background:transparent;
  border:1px solid rgba(255,255,255,0.3);
  padding:14px;
  color:#fff;
  border-radius:10px;
  outline:none;
}
.field textarea{
  resize:none;
  height:120px;
}
.field label{
  position:absolute;
  top:50%;
  left:15px;
  transform:translateY(-50%);
  font-size:14px;
  opacity:.7;
  pointer-events:none;
  transition:.3s;
}
.field input:focus + label,
.field input:valid + label,
.field textarea:focus + label,
.field textarea:valid + label{
  top:-8px;
  background:#203a43;
  padding:0 6px;
  font-size:12px;
  opacity:1;
  color:#00ffd5;
}

.contact-form button{
  width:100%;
  padding:14px;
  background:#00ffd5;
  border:none;
  color:#000;
  font-weight:600;
  border-radius:30px;
  cursor:pointer;
  transition:.4s;
}
.contact-form button:hover{
  transform:scale(1.05);
}

/* MAP */
.map-wrap{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}
.map-wrap iframe{
  width:100%;
  height:350px;
  border:0;
}

/* ===== CONTACT SECTION RESPONSIVE ===== */

@media (max-width: 992px){
  .contact-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-info h2{
    font-size:30px;
  }

  .contact-form{
    padding:30px;
  }
}

@media (max-width: 576px){
  .contact-section{
    padding:60px 20px;
  }

  .contact-info h2{
    font-size:26px;
    line-height:1.3;
  }

  .contact-info p{
    font-size:14px;
  }

  .info-card{
    padding:15px;
    gap:12px;
  }

  .info-card i{
    font-size:20px;
  }

  .contact-form{
    padding:25px 20px;
    border-radius:16px;
  }

  .field input,
  .field textarea{
    padding:12px;
    font-size:14px;
  }

  .contact-form button{
    padding:13px;
    font-size:15px;
  }

  .map-wrap iframe{
    height:280px;
  }
}

.quicklinks-section{
  position:relative;
  padding:90px 20px;
  background:url('images/quicklink.jpg') no-repeat center center/cover;
  overflow:hidden;
}

/* LIGHT OVERLAY */
.quicklinks-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.65); /* lightness control */
  /* agar thoda blue tone chahiye to niche wala use kr */
  /* background:rgba(224,247,250,0.75); */
  z-index:0;
}

/* CONTENT UPPER RAHE */
.quicklinks-container{
  position:relative;
  z-index:1;
}

.quicklinks-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

/* HEADING */
.quicklinks-heading{
  font-size:38px;
  font-weight:700;
  color:#0f172a;
}
.quicklinks-heading span{
  color:#2E7D32;
}
.quicklinks-sub{
  margin:14px auto 60px;
  max-width:650px;
  font-size:18px;
  color:#475569;
}

/* GRID */
.quicklinks-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

/* CARD */
.quick-card{
  position:relative;
  padding:45px 25px;
  border-radius:22px;
  background:rgba(255,255,255,0.65);
  backdrop-filter:blur(12px);
  box-shadow:0 30px 70px rgba(0,0,0,.08);
  text-decoration:none;
  color:#0f172a;
  transition:.45s ease;
  overflow:hidden;
}

/* GRADIENT BORDER EFFECT */
.quick-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:2px;
  background:linear-gradient(135deg,#0284c7,#22d3ee);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
}

/* ICON */
.quick-card i{
  font-size:36px;
  color:#0284c7;
  margin-bottom:18px;
  transition:.4s;
}

/* TEXT */
.quick-card h4{
  font-size:20px;
  margin-bottom:6px;
}
.quick-card span{
  font-size:15px;
  color:#475569;
}

/* HOVER */
.quick-card:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 45px 90px rgba(2,132,199,.25);
}
.quick-card:hover i{
  transform:rotate(-6deg) scale(1.15);
  color:#0ea5e9;
}

/* RESPONSIVE */
@media(max-width:900px){
  .quicklinks-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:600px){
  .quicklinks-grid{
    grid-template-columns:1fr;
  }
}


.privacy-page{
  background:linear-gradient(180deg,#ffffff,#f3f7f3);
  padding:90px 20px;
  font-family:'Poppins',sans-serif;
}

.privacy-container{
  max-width:1200px;
  margin:auto;
}

.privacy-header{
  text-align:center;
  margin-bottom:50px;
}

.privacy-header h1{
  font-size:44px;
  font-weight:700;
  color:var(--primary);
}

.privacy-header span{
  display:block;
  width:80px;
  height:4px;
  background:var(--secondary);
  margin:14px auto;
  border-radius:10px;
}

.privacy-header p{
  color:#555;
  font-size:16px;
}

.privacy-card{
  background:var(--light);
  border-radius:16px;
  padding:50px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  border-top:6px solid var(--primary);
  position:relative;
}

.privacy-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:120px;
  height:120px;
  background:var(--secondary);
  clip-path:polygon(100% 0,0 0,100% 100%);
  opacity:.15;
}

.privacy-card pre{
  white-space:pre-wrap;
  font-family:'Inter',sans-serif;
  font-size:15px;
  line-height:1.9;
  color:var(--dark);
}
.privacy-card h3{
  font-size:22px;
  color:var(--primary);
  margin-top:35px;
  margin-bottom:10px;
  position:relative;
}

.privacy-card h3::before{
  content:"";
  width:40px;
  height:3px;
  background:var(--secondary);
  position:absolute;
  left:0;
  bottom:-6px;
  border-radius:10px;
}

.privacy-card p{
  font-size:15.5px;
  line-height:1.9;
  color:#333;
  margin-top:12px;
}

.privacy-card .highlight{
  background:rgba(249,168,37,0.15);
  padding:10px 14px;
  border-left:4px solid var(--secondary);
  border-radius:6px;
  font-weight:500;
}

.privacy-card strong{
  color:var(--accent);
}

.contact-line{
  margin-top:40px;
  font-weight:600;
  color:var(--primary);
}



.terms-section{
  padding:90px 20px;
  background:linear-gradient(135deg,#f1f8f3,#fff);
}

.terms-container{
  max-width:1100px;
  margin:auto;
}

.terms-container h1{
  text-align:center;
  font-size:40px;
  color:var(--primary);
}

.sub-text{
  text-align:center;
  color:#555;
  margin-bottom:40px;
}

.terms-card{
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.terms-card h3{
  margin-top:40px;
  color:var(--primary);
  font-size:22px;
  position:relative;
}

.terms-card h3::after{
  content:"";
  width:50px;
  height:3px;
  background:var(--secondary);
  display:block;
  margin-top:6px;
  border-radius:10px;
}

.terms-card p{
  margin-top:15px;
  line-height:1.9;
  color:#333;
  font-size:15.5px;
}

.address-box{
  background:rgba(249,168,37,0.15);
  padding:15px;
  border-left:5px solid var(--secondary);
  border-radius:8px;
}

.terms-card ul{
  margin-top:15px;
  padding-left:20px;
}

.terms-card ul li{
  margin-bottom:10px;
  color:#444;
}

.credit-box{
  background:rgba(46,125,50,0.08);
  padding:15px;
  border-radius:10px;
  margin-top:30px;
}


.legal-docs{
  padding:100px 20px;
  background:#f4f7f5;
}

.legal-wrap{
  max-width:1200px;
  margin:auto;
}

.legal-head{
  text-align:center;
  margin-bottom:35px;
}

.legal-head h1{
  font-size:38px;
  color:var(--primary);
}

.legal-head p{
  color:#555;
}

.trust-box{
  background:rgba(46,125,50,0.1);
  color:var(--primary);
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:center;
  padding:15px;
  border-radius:14px;
  margin-bottom:50px;
  font-weight:600;
}

.trust-box i{
  font-size:22px;
}

.legal-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.legal-card{
  background:#fff;
  padding:30px 25px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:.35s;
}

.legal-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 45px rgba(0,0,0,0.12);
}

.legal-card i{
  font-size:40px;
  color:var(--secondary);
  margin-bottom:15px;
}

.legal-card h4{
  margin-bottom:8px;
  color:#222;
}

.legal-card p{
  font-size:14px;
  color:#666;
  margin-bottom:18px;
}

.legal-card a{
  display:inline-block;
  padding:9px 18px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  font-size:14px;
  transition:.3s;
}

.legal-card a:hover{
  background:var(--secondary);
  color:#000;
}


.edu-consult{
  padding:100px 20px;
  background:linear-gradient(135deg,#f3f8f4,#ffffff);
}

.edu-wrap{
  max-width:1200px;
  margin:auto;
}

.edu-hero{
  text-align:center;
  margin-bottom:70px;
}

.edu-hero .tag{
  display:inline-block;
  padding:6px 14px;
  background:rgba(46,125,50,0.1);
  color:var(--primary);
  border-radius:20px;
  font-size:14px;
  margin-bottom:15px;
}

.edu-hero h1{
  font-size:44px;
  color:var(--dark);
  margin-bottom:15px;
}

.edu-hero h1 span{
  color:var(--primary);
}

.edu-hero p{
  max-width:700px;
  margin:0 auto 25px;
  color:#555;
  font-size:16px;
}

.btn-primary{
  display:inline-block;
  padding:14px 28px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:.3s;
}

.btn-primary:hover{
  background:var(--secondary);
  color:#000;
}

/* ABOUT */
.edu-about{
  max-width:900px;
  margin:0 auto 70px;
  text-align:center;
}

.edu-about h2{
  font-size:32px;
  color:var(--primary);
  margin-bottom:15px;
}

.edu-about p{
  color:#555;
  line-height:1.8;
}

/* FEATURES */
.edu-features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-bottom:80px;
}

.feature-card{
  background:#fff;
  padding:35px 30px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:.35s;
  text-align:center;
}

.feature-card:hover{
  transform:translateY(-10px);
}

.feature-card i{
  font-size:42px;
  color:var(--secondary);
  margin-bottom:15px;
}

.feature-card h4{
  margin-bottom:10px;
  color:#222;
}

.feature-card p{
  color:#666;
  font-size:14px;
}

/* TIE UP */
.edu-tieup{
  background:var(--primary);
  color:#fff;
  padding:60px 40px;
  border-radius:25px;
  text-align:center;
}

.edu-tieup h2{
  font-size:30px;
  margin-bottom:15px;
}

.edu-tieup p{
  max-width:850px;
  margin:auto;
  line-height:1.8;
  opacity:.95;
}


/* ===== SITE MAP ===== */
/* ===== SITE MAP – ABSTRACT WAVE STYLE ===== */
.sitemap-section{
  position:relative;
  padding:120px 20px;
  background:#f9fbf8;
  overflow:hidden;
}

/* TOP WAVE */
.sitemap-section::before{
  content:"";
  position:absolute;
  top:-120px;
  left:0;
  width:100%;
  height:420px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232E7D32' fill-opacity='0.08' d='M0,160 C120,140 240,180 360,186 C480,192 600,160 720,154 C840,148 960,170 1080,176 C1200,182 1320,170 1440,150 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-size:cover;
  pointer-events:none;
}

/* SUBTLE LINE GRID */
.sitemap-section::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}

/* CONTENT ABOVE BACKGROUND */
.sitemap-wrap{
  position:relative;
  z-index:2;
}

.sitemap-wrap{
  max-width:1200px;
  margin:auto;
}

.sitemap-head{
  text-align:center;
  margin-bottom:60px;
}

.sitemap-head h1{
  font-size:42px;
  color:var(--primary);
  margin-bottom:10px;
}

.sitemap-head p{
  color:#555;
  font-size:16px;
}

.sitemap-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

.sitemap-card{
  background:#fff;
  padding:35px 30px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:.35s;
}

.sitemap-card:hover{
  transform:translateY(-8px);
}

.sitemap-card h3{
  color:var(--primary);
  margin-bottom:20px;
  font-size:20px;
}

.sitemap-card ul{
  list-style:none;
  padding:0;
}

.sitemap-card li{
  margin:12px 0;
}

.sitemap-card a{
  text-decoration:none;
  color:#333;
  font-size:15px;
  transition:.3s;
}

.sitemap-card a:hover{
  color:var(--secondary);
  padding-left:6px;
}


/* =========================
   VIDEO SHOWCASE LAYOUT
========================= */

.video-showcase-new{
  padding:120px 8%;
  background:#f8fafc;
}

/* =========================
   GRID
========================= */
.video-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:70px;
  align-items:center;
}

/* =========================
   LEFT CONTENT
========================= */
.badge{
  display:inline-block;
  background:#e8f5e9;
  color:#2e7d32;
  padding:6px 18px;
  border-radius:30px;
  font-size:12px;
  font-weight:600;
  margin-bottom:20px;
}

.video-info h2{
  font-size:48px;
  line-height:1.15;
  margin-bottom:20px;
}

.video-info h2 span{ color:#2e7d32; }

.video-info p{
  font-size:17px;
  color:#555;
  max-width:420px;
  line-height:1.7;
}

.video-btn{
  display:inline-block;
  margin-top:28px;
  padding:14px 36px;
  background:#2e7d32;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
}

/* =========================
   SLIDER
========================= */
.video-slider{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider-viewport{
  width:420px;
  max-width:100%;
  overflow:hidden;
}

.slider-track{
  display:flex;
  transition:transform .5s ease;
}

/* =========================
   VIDEO CARD (🔥 MAIN FIX)
========================= */
.video-frame{
  flex:0 0 100%;
  aspect-ratio:16/9;          /* height auto */
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:#000;
  box-shadow:0 40px 90px rgba(0,0,0,.25);
}

.video-frame img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   PLAY BUTTON
========================= */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:34px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* =========================
   ARROWS (OVERLAY SAFE)
========================= */
.slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  background:#2e7d32;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
}

.slider-arrow:hover{ background:#1b5e20; }

.slider-arrow.left{ left:12px; }
.slider-arrow.right{ right:12px; }

/* =========================
   MODAL
========================= */
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.video-modal video{
  width:90%;
  max-width:1100px;
  aspect-ratio:16/9;
}

.video-modal .close{
  position:absolute;
  top:30px;
  right:40px;
  font-size:32px;
  color:#fff;
  cursor:pointer;
}

/* =========================
   MOBILE
========================= */
@media(max-width:900px){
  .video-wrap{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .video-info p{
    margin:0 auto;
  }
}

/* =========================
   SMALL DEVICES
========================= */
@media(max-width:420px){
  .video-showcase-new{
    padding:60px 5%;
  }

  .video-info h2{
    font-size:28px;
    line-height:1.25;
  }

  .video-info p{
    font-size:15px;
  }

  .slider-arrow{
    width:36px;
    height:36px;
    font-size:20px;
  }

  .play-btn{
    width:56px;
    height:56px;
    font-size:26px;
  }
}

@media(max-width:360px){
  .video-info h2{
    font-size:24px;
  }
}
.open-board-section{
  padding:120px 8%;
  background:
    radial-gradient(circle at left, rgba(46,125,50,.12), transparent 55%),
    linear-gradient(180deg,#f9fafb,#ffffff);
}



/* WRAP */
.open-board-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

/* TEXT */
.open-tag{
  display:inline-block;
  padding:6px 18px;
  background:#e8f5e9;
  color:#2E7D32;
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  border-radius:30px;
  margin-bottom:20px;
}

.open-board-content h2{
  font-size:44px;
  line-height:1.25;
  margin-bottom:20px;
  color:#111;
}

.open-board-content h2 span{
  color:#2E7D32;
}

.open-board-content h2 b{
  color:#1b5e20;
}

.open-board-content p{
  font-size:17px;
  color:#555;
  line-height:1.7;
  margin-bottom:26px;
  max-width:520px;
}

/* POINTS */
.open-points{
  list-style:none;
  padding:0;
  margin:0;
}

.open-points li{
  padding-left:28px;
  margin-bottom:14px;
  position:relative;
  font-size:15px;
  color:#333;
}

.open-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#2E7D32;
  font-weight:700;
}

/* CARDS */
.open-board-cards{
  display:grid;
  gap:26px;
}

.open-cards{
  background:#fff;
  padding:34px 30px;
  border-radius:26px;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  transition:.4s ease;
}

.open-cards:hover{
  transform:translateY(-6px);
}

.open-cards h4{
  font-size:22px;
  margin-bottom:12px;
  color:#1b5e20;
}

.open-cards p{
  font-size:15px;
  line-height:1.6;
  color:#555;
}

/* HIGHLIGHT CARD */
.open-cards.highlights{
  background:#2E7D32;
  color:#fff;
}

.open-cards.highlights h4{
  color:#fff;
}

.open-cards.highlights p{
  color:rgba(255,255,255,.9);
}

/* RESPONSIVE */
@media(max-width:900px){
  .open-board-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  .open-board-content p{
    margin:auto;
  }

  .open-points li{
    text-align:left;
  }
}
 .open-cards{
  padding:25px;
  border-radius:14px;
  transition:all .4s ease;
  border:2px solid #1c9c4a;
  background:#f7f7f7;
  cursor:pointer;
}

/* FIRST CARD – GREEN ON HOVER */
.card-one:hover{
  background:#1c9c4a;
  color:#fff;
}

.card-one:hover h4,
.card-one:hover p{
  color:#fff;
}

/* SECOND CARD – WHITE ON HOVER */
.highlights{
  background:#1c9c4a;
  color:#fff;
}

.highlights:hover{
  background:#fff;
  color:#1c9c4a;
}

.highlights:hover h4,
.highlights:hover p{
  color:#1c9c4a;
}






.media-section{
  position:relative;
  padding:100px 6%;
  overflow:hidden;
  background:linear-gradient(135deg,#f8fbff,#eef5ff);
}

/* Light academic pattern */
.media-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232e7d32' fill-opacity='0.05'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='40' cy='20' r='3'/%3E%3Ccircle cx='25' cy='45' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index:0;
}

/* Soft top wave */
.media-section::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:120px;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232e7d32' fill-opacity='0.08' d='M0,96L80,101.3C160,107,320,117,480,112C640,107,800,85,960,85.3C1120,85,1280,107,1360,117.3L1440,128V0H1360C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0H0Z'/%3E%3C/svg%3E") no-repeat top;
  background-size:cover;
  z-index:0;
}

.media-section > *{
  position:relative;
  z-index:2;
}
/* SECTION HEADER */
.section-header{
  text-align:center;
  margin-bottom:50px;
}
.media-tag{
  display:inline-block;
  padding:6px 20px;
  background:#e8f5e9;
  color:#2E7D32;
  font-weight:600;
  border-radius:25px;
  font-size:14px;
  margin-bottom:15px;
}
.section-header h2{
  font-size:36px;
  color:#1b5e20;
  line-height:1.2;
  margin-bottom:15px;
}
.section-header h2 span{color:#2E7D32;}
.section-header h2 b{color:#1b5e20;}
.section-header p{
  font-size:16px;
  color:#333;
  line-height:1.6;
}

/* GALLERY */
.media-gallery h3, .media-videos h3{
  font-size:22px;
  color:#2E7D32;
  margin-bottom:20px;
}

.media-videos{
  margin-top:40px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:8px;
}
.gallery-item img{
  width:100%;
  display:block;
  transition: transform .3s ease;
}
.gallery-item:hover img{
  transform:scale(1.05);
}
.gallery-item .overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  background:rgba(0,0,0,.2);
  font-size:28px;
  color:#fff;
  transition:opacity .2s ease;
  z-index: 99999999!important; /* ensure it's above all */
}
.gallery-item:hover .overlay{
  opacity:1;
}

/* VIDEO GRID */
.video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin-top:20px;
}
.video-item{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  cursor:pointer;
}
.video-item img{
  width:100%;
  display:block;
}
.video-item .play-btn{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  font-size:36px;
  color:#2E7D32;
  pointer-events:none;
}

/* VIDEO MODAL */
.video-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  align-items:center;
  justify-content:center;
  z-index:999;
}
.video-modal .modal-content{
  width:90%;
  max-width:900px;
  background:#000;
  border-radius:8px;
  overflow:hidden;
  position:relative;
}
.video-modal iframe{
  width:100%;
  height:500px;
  border:none;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .gallery-grid, .video-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:768px){
  .gallery-grid, .video-grid{
    grid-template-columns:1fr;
  }
  .section-header h2{
    font-size:28px;
  }
}

/* IMAGE MODAL */
.image-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.8);
  align-items:center;
  justify-content:center;
  z-index:999999!important; /* ensure it's above all */
}
.image-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:8px;
}
.image-modal .close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:32px;
  color:#fff;
  cursor:pointer;
}


.video-modal .close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:30px;
  color:#fff;
  z-index:10;  /* must be above video */
  cursor:pointer;
}


/* IMAGE MODAL */
.image-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  align-items:center;
  justify-content:center;
  z-index:999;
}
.image-modal img{
  max-width:90%;
  max-height:90%;
  border-radius:8px;
}
.image-modal .close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:32px;
  color:#fff;
  cursor:pointer;
  z-index:10;
}

.gallery-items {
  height: 260px;                     /* fixed card height */
  border-radius: 16px;               /* smooth corners */
  overflow: hidden;                   /* image stays inside */
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);  /* subtle shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image inside gallery item */
.gallery-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;                  /* crop nicely */
  transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-items:hover {
  transform: translateY(-5px);        /* lift up a bit */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); /* stronger shadow */
}

.gallery-items:hover img {
  transform: scale(1.05);             /* slight zoom */
}

/* Overlay icon (optional) */
.gallery-items .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-items:hover .overlay {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width:768px) {
  .gallery-items {
    height: 200px;
  }
}

.video-item {
  position: relative;
  border-radius: 16px;                 /* smooth corners like gallery */
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* subtle shadow */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 260px;                       /* fixed height for uniformity */
}

/* Video element inside card */
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover effect */
.video-item:hover {
  transform: translateY(-5px);         /* lift effect */
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.video-item:hover video {
  transform: scale(1.05);              /* zoom in slightly */
  filter: brightness(0.8);              /* dark overlay effect */
}

/* Play button */
.video-item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #2E7D32;
  z-index: 5;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.video-item:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);  /* little scale on hover */
}

/* Responsive adjustments */
@media(max-width:1024px){
  .video-item{
    height: 220px;
  }
}

@media(max-width:768px){
  .video-item{
    height: 180px;
  }
}

.video-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  align-items:center;
  justify-content:center;
  z-index:99999;   /* increase this */
}