body{font-family:Poppins;margin:0;background:#f5f7fb}

    /* HEADER */
    header{
     display:flex;justify-content:space-between;align-items:center;
     padding:15px 60px;background:#0b1d3a;color:#fff
    }
    header img{height:50px}
    header a{color:#fff;margin:0 12px;text-decoration:none}

    /* HERO */
   .hero{
  height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;

  background-size:cover;
  background-position:center;
  transition: background-image 1s ease-in-out;
}


   .top-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-height);
  z-index: 1001;

  background: #f4c400;
}

.top-bar-container{
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-left, .top-right{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar span{
  display: flex;
  align-items: center;
  gap: 6px;
}
@media(max-width:768px){
  .top-bar-container{
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .top-left, .top-right{
    justify-content: center;
  }
}

   /* SECTION */
.section{
 max-width:1300px;
 margin:auto;
 padding:80px 20px;
}


/* TITLE */
.section-title{
 text-align:center;
 font-size:42px;
 margin-bottom:50px;
}

/* MAIN LAYOUT */
.course-wrapper{
 display:grid;
 grid-template-columns: 2fr 1fr;
 gap:30px;
 align-items:start;
}

/* COURSES */
/* GRID */
.grid{
 display:grid;
 grid-template-columns: repeat(2, 1fr);
 gap:30px;
}

/* CARD */
.course-card{
 position:relative;
 background:#fff;
 border-radius:18px;
 overflow:hidden;
 box-shadow:0 10px 30px rgba(0,0,0,0.08);

 transition: all 0.5s cubic-bezier(.22,1,.36,1);
}

/* HOVER LIFT */
.course-card:hover{
 transform: translateY(-12px) scale(1.02);
 box-shadow:0 30px 70px rgba(0,0,0,0.2);
}

/* IMAGE */
.course-card img{
 width:100%;
 height:220px;
 object-fit:cover;
 transition: transform 0.6s ease;
}

/* IMAGE ZOOM */
.course-card:hover img{
 transform: scale(1.1);
}

/* DARK OVERLAY */
.course-card::before{
 content:"";
 position:absolute;
 inset:0;
 background:linear-gradient(to top, rgba(0,0,0,0.5), transparent);
 opacity:0;
 transition:0.4s;
 z-index:1;
}

.course-card:hover::before{
 opacity:1;
}

/* CONTENT */
.course-content{
 position:relative;
 padding:25px;
 text-align:center;
 transition:0.4s;
 z-index:2;
}

/* TEXT MOVE UP */
.course-card:hover .course-content{
 transform: translateY(-5px);
}

/* TITLE */
.course-content h3{
 margin-bottom:15px;
 font-size:20px;
 transition:0.3s;
}

/* TITLE COLOR CHANGE */
.course-card:hover h3{
 color:#ff4c1e;
}

/* BUTTON SMOOTH */
.course-content .btn{
 transition: all 0.3s ease;
}

.course-card:hover .btn{
 transform: scale(1.05);
}
/* BUTTON */
.btn{
 background:linear-gradient(135deg,#ff4c1e,#ff7a3d);
 color:#fff;
 padding:10px 20px;
 border:none;
 border-radius:8px;
 cursor:pointer;
 transition:.3s;
}

.btn:hover{
 transform:translateY(-2px);
 box-shadow:0 8px 20px rgba(255,76,30,0.4);
}

/* NOTICE */
.notice{
 background:#e9f3f7;
 padding:20px;
 border-radius:15px;
 height:100%;
 display:flex;
 flex-direction:column;
 min-height: 345px; /* increase height */
}

.notice h3{
 background:#2c9ab7;
 color:#fff;
 padding:12px;
 text-align:center;
 border-radius:8px;
 margin-bottom:10px;
}

.notice-item{
 padding:12px;
 border-bottom:1px solid #ccc;
 font-size:14px;
}

/* NOTICE FIXED (STICKY) */
.notice{
  background:#e9f3f7;
  padding:20px;
  border-radius:15px;
  height:fit-content;

  position: sticky;
  top:120px; /* adjust according to header height */
}

/* MOBILE */
@media(max-width:900px){
 .course-wrapper{
  grid-template-columns:1fr;
 }

 .grid{
  grid-template-columns:1fr;
 }
}
    /* WRAPPER (SIDE BY SIDE) */
.testimonial-wrapper{
 display:grid;
 grid-template-columns:repeat(2,1fr);
 gap:30px;
 margin-top:40px;
}

/* CARD */
.testimonial{
 background:#fff;
 padding:25px;
 border-radius:18px;
 display:flex;
 align-items:center;
 gap:20px;
 box-shadow:0 15px 40px rgba(0,0,0,0.08);
 transition:.3s;
}

.testimonial:hover{
 transform:translateY(-8px);
 box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.student-icon{
 width:70px;
 height:70px;
 background:#e9f3f7;
 border-radius:50%;
 display:flex;
 align-items:center;
 justify-content:center;
 font-size:30px;
 color:#0b1d3a;
 flex-shrink:0;
}

/* CONTENT */
.testimonial-content p{
 margin:8px 0;
 color:#444;
}

.testimonial-content h4{
 margin-top:5px;
 font-weight:600;
}

/* STARS */
.stars{
 color:#f4c430;
 font-size:16px;
}

/* MOBILE */
@media(max-width:768px){
 .testimonial-wrapper{
  grid-template-columns:1fr;
 }
}


    /* CTA */
    .cta{
     background:#13233c;color:#fff;padding:50px;border-radius:20px;
     display:flex;justify-content:space-between;align-items:center
    }
    .cta .btn{
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 50px;
  font-weight: 600;
  background: linear-gradient(135deg,#ff4c1e,#ff7a3d);
  box-shadow: 0 10px 25px rgba(255,76,30,0.4);
  transition: 0.3s;
}

.cta .btn:hover{
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255,76,30,0.6);
}

   /* FOOTER */
.footer{
  background:#0b1d3a;
  color:#fff;
  padding:60px 80px;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

/* COLUMN */
.footer-col h3{
  margin-bottom:15px;
  font-size:18px;
  color:#f4c430;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
  color:#ccc;
}

/* LIST */
.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
  color:#ccc;
  transition:0.3s;
}

.footer-col ul li:hover{
  color:#fff;
}

/* MAP */
.footer iframe{
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* BOTTOM BAR */
.bottom-bar{
  background:#09152b;
  text-align:center;
  padding:15px;
  color:#aaa;
  font-size:13px;
}

/* CREDIT */
.brand-credit{
  color:#f4c430;
  font-weight:600;
}
@media(max-width:768px){
  .footer{
    padding:40px 20px;
    text-align:center;
  }
}

/* GLASS EFFECT */
.glass{
 background:rgba(255,255,255,0.1);
 backdrop-filter:blur(15px);
 border-radius:20px;
}

/* BUTTON UPGRADE */
.btn{
 background:linear-gradient(135deg,#ff4c1e,#ff7a3d);
 color:#fff;
 padding:12px 28px;
 border-radius:8px;
 font-weight:600;
 transition:.3s;
}
.btn:hover{
 transform:translateY(-3px);
 box-shadow:0 10px 25px rgba(255,76,30,0.4);
}

/* CARD PREMIUM */
.card{
 border-radius:18px;
 transition:.4s;
}
.card:hover{
 transform:translateY(-10px) scale(1.02);
 box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* TYPOGRAPHY */
h1{font-size:56px;font-weight:800}
h2{font-size:38px;font-weight:700}

/* GRADIENT TEXT */
.gradient-text{
 background:linear-gradient(90deg,#ff4c1e,#f4c430);
 -webkit-background-clip:text;
 -webkit-text-fill-color:transparent;
}
    /* FLOAT CALL */
.call-float{
 position:fixed;
 bottom:100px;
 right:20px;
 width:60px;
 height:60px;
 background:#0b1d3a;
 color:#fff;
 border-radius:50%;
 display:flex;
 align-items:center;
 justify-content:center;
 font-size:24px;
 z-index:1000;
 text-decoration:none;
}

/* WHATSAPP already exists */
/* ================= WHATSAPP FLOAT PREMIUM ================= */
.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
  transition: 0.3s;
  animation: pulse 2s infinite;
}

/* ICON */
.whatsapp-float img{
  width: 34px;
}

/* HOVER EFFECT */
.whatsapp-float:hover{
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* TOOLTIP */
.whatsapp-float::after{
  content: "Chat on WhatsApp";
  position: absolute;
  right: 75px;
  background: #0b1d3a;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
}

.whatsapp-float:hover::after{
  opacity: 1;
}

  header img{
 height:60px;
 width:60px;
 border-radius:50%;
 object-fit:cover;
 border:3px solid #f4c430;
 box-shadow:0 8px 20px rgba(0,0,0,0.3);
 transition:0.3s;
}

header img:hover{
 transform:scale(1.1);
 box-shadow:0 12px 30px rgba(244,196,48,0.5);
}
    header img{
 object-fit:contain;
 background:#fff;
 padding:5px;
}
    /* HEADER GLASS */
    *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
:root{
  --topbar-height: 40px;
}

/* HEADER */
#header{
  position: fixed;
  top: var(--topbar-height); /* push below top-bar */
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 60px;
  z-index: 1000;

  background: rgba(11,29,58,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);

  transition: all 0.3s ease;
}

/* SHRINK ON SCROLL */
#header.scrolled{
 padding:10px 60px;
 background:rgba(11,29,58,0.9);
}

/* LOGO */
/* NAV LEFT FIX */
.nav-left{
 display:flex;
 align-items:center;
 gap:12px;
}

/* LOGO */
.logo{
 height:60px;
 width:60px;
 border-radius:50%;
 object-fit:contain;
 background:#fff;
 padding:6px;
 border:2px solid #f4c430;
 box-shadow:0 6px 18px rgba(0,0,0,0.25);
 transition:0.3s;
}
.logo:hover{
 transform:scale(1.08);
 box-shadow:0 10px 25px rgba(244,196,48,0.4);
}

/* BRAND TEXT */
.brand{
 color:#fff;
 font-weight:700;
 font-size:18px;
 letter-spacing:0.5px;
 position:relative;
}

/* OPTIONAL PREMIUM TOUCH (SUBTEXT EFFECT) */
.brand::after{
 content:"Institute";
 display:block;
 font-size:10px;
 letter-spacing:2px;
 color:#f4c430;
 text-transform:uppercase;
 margin-top:2px;
}

/* NAV LINKS */
#nav a{
 position:relative;
 color:#fff;
 margin:0 15px;
 text-decoration:none;
 font-weight:500;
}

/* UNDERLINE ANIMATION */
#nav a::after{
 content:"";
 position:absolute;
 left:0;
 bottom:-5px;
 width:0;
 height:2px;
 background:#f4c430;
 transition:0.3s;
}
#nav a:hover::after{
 width:100%;
}

/* BUTTON */
.btn-primary{
 background:linear-gradient(135deg,#ff4c1e,#ff7a3d);
 color:#fff;
 padding:10px 20px;
 border:none;
 border-radius:8px;
 font-weight:600;
 cursor:pointer;
 transition:0.3s;
}
.btn-primary:hover{
 transform:translateY(-2px);
 box-shadow:0 8px 20px rgba(255,76,30,0.4);
}

/* MOBILE */
.menu-toggle{
 display:none;
 color:#fff;
 font-size:24px;
 cursor:pointer;
}

@media(max-width:768px){
 #nav{
  position:absolute;
  top:70px;
  right:0;
  background:#0b1d3a;
  flex-direction:column;
  display:none;
  width:200px;
 }
 #nav a{
  display:block;
  padding:15px;
 }
 .menu-toggle{
  display:block;
 }
}

/* SECTION */
.college-section{
  text-align:center;
}

/* SUBTITLE */
.section-subtitle{
  max-width:700px;
  margin:0 auto 50px;
  color:#666;
  font-size:15px;
  line-height:1.6;
}

/* GRID */
.college-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
}

/* CARD */
.college-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(.25,.8,.25,1);
  position:relative;
}

/* HOVER LIFT + DEPTH */
.college-card:hover{
  transform: translateY(-10px) scale(1.01);
  box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

/* IMAGE */
.college-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition: transform 0.5s ease;
}

/* IMAGE ZOOM EFFECT */
.college-card:hover img{
  transform: scale(1.08);
}

/* CONTENT */
.college-content{
  padding:22px;
  text-align:left;
}

/* TITLE */
.college-content h3{
  margin-bottom:12px;
  font-size:18px;
  font-weight:600;
  transition:0.3s;
}

/* TEXT */
.college-content p{
  font-size:14px;
  color:#666;
  margin:6px 0;
}

/* BUTTON */
.college-content .btn{
  margin-top:15px;
  transition: all 0.3s ease;
}

/* BUTTON HOVER SMOOTH */
.college-content .btn:hover{
  transform: translateY(-2px);
}

/* SUBTLE BORDER GLOW */
.college-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  border:1px solid transparent;
  transition:0.3s;
}

.college-card:hover::after{
  border-color: rgba(255,76,30,0.3);
}
@media(max-width:900px){
  .college-grid{
    grid-template-columns:1fr;
  }
}

/* OVERLAY */
.popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* POPUP BOX */
/* OVERLAY */
.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* MAIN POPUP */
.popup-box{
  display:grid;
  grid-template-columns: 42% 58%;
  width:90%;
  max-width:800px;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  animation: popupFade 0.4s ease;
}

/* LEFT IMAGE */
/* FIXED IMAGE POSITION */
.popup-box::before{
  content:"";
  display:block;
  width:100%;
  height:100%;

  background:url('GSI_ADM_EN_SKM.jpg') center / cover no-repeat;

  grid-column:1;
  grid-row:1 / span 2; /* IMPORTANT → full height */
}
.popup-box{
  align-items:stretch; /* ensures equal height */
}

/* RIGHT CONTENT WRAPPER */
.popup-box h3,
.popup-box form{
  grid-column:2;
}

/* TITLE */
.popup-box h3{
  margin:0;
  padding:30px 30px 10px;
  font-size:24px;
  font-weight:700;
  color:#111;
  text-align:left;
}

/* FORM */
.popup-box form{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:10px 30px 30px;
}

/* INPUTS */
.popup-box input,
.popup-box select{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:14px;
  outline:none;
  transition:0.2s ease;
}

/* INPUT FOCUS */
.popup-box input:focus,
.popup-box select:focus{
  border-color:#ff4c1e;
  box-shadow:0 0 0 2px rgba(255,76,30,0.1);
}

/* BUTTON */
.popup-box .btn{
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:12px;
  font-weight:600;
  font-size:15px;
  background:linear-gradient(135deg,#ff4c1e,#ff7a3d);
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

/* BUTTON HOVER */
.popup-box .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(255,76,30,0.3);
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:22px;
  cursor:pointer;
  color:#333;
}

/* ANIMATION */
@keyframes popupFade{
  from{
    opacity:0;
    transform:translateY(20px) scale(0.95);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* MOBILE FIX */
@media(max-width:768px){
  .popup-box{
    grid-template-columns:1fr;
    max-width:400px;
  }

  .popup-box::before{
    height:180px;
  }

  .popup-box h3,
  .popup-box form{
    grid-column:1;
  }

  .popup-box h3{
    padding:20px 20px 5px;
    text-align:center;
  }

  .popup-box form{
    padding:10px 20px 20px;
  }
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:10px;
  right:15px;
  font-size:22px;
  cursor:pointer;
}

/* FORM */
.popup-box input,
.popup-box select{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:1px solid #ccc;
  border-radius:8px;
  outline:none;
}

/* BUTTON */
.popup-box .btn{
  width:100%;
  margin-top:10px;
}

/* ANIMATION */
@keyframes popupFade{
  from{
    transform: translateY(-20px);
    opacity:0;
  }
  to{
    transform: translateY(0);
    opacity:1;
  }
}
/* DROPDOWN WRAPPER */
.dropdown{
  position: relative;
  display: inline-block;
}

/* MAIN LINK */
.dropdown > a{
  cursor: pointer;
}

/* DROPDOWN MENU */
.dropdown-menu{
  position: absolute;
  top: 120%;
  left: 0;

  background: #fff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* MENU LINKS */
.dropdown-menu a{
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

/* HOVER EFFECT */
.dropdown-menu a:hover{
  background: #f5f7fb;
  color: #ff4c1e;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a{
  color:#000 !important;
}

/* keep hover clean */
.dropdown-menu a:hover{
  color: #ff4c1e; /* optional highlight */
}
@media(max-width:768px){
  .dropdown-menu{
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
  }

  .dropdown-menu.show{
    display: block;
  }
}

/* ===== ADS SECTION ===== */
.ads-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #0b1f3a, #091a30);
  overflow: hidden;
}

.ads-slider {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}

.ads-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.ad-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #000; /* fallback background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔥 NO CROPPING */
  object-position: center;
}

/* Overlay Content */
.ad-overlay {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
}

.ad-overlay h3 {
  font-size: 28px;
  font-weight: 700;
}

.ad-overlay p {
  margin: 10px 0;
  opacity: 0.9;
}

/* CTA Button */
.ad-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #ff6a00, #ffb347);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.ad-btn:hover {
  transform: scale(1.05);
}

/* NAV BUTTONS */
.ads-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6a00;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.ads-btn.prev { left: 10px; }
.ads-btn.next { right: 10px; }

.ads-btn:hover {
  background: #ff8c00;
}
.ads-slider {
  max-width: 1200px;
}

.ads-section {
  padding: 40px 0;
}

/* MOBILE */
@media(max-width:768px){
  .ad-slide img {
    height: 220px;
  }

  .ad-overlay h3 {
    font-size: 20px;
  }
}

.btn {
  text-decoration: none;
}

   body{
  padding-top: calc(var(--topbar-height) + 80px);
}

