    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f4f6fb;
       overflow-x:hidden;
    }

    
    
/* BANNER FIX */
.banner img{
  width:100%;
  height:500px;
  object-fit:cover;
  display:block;
}



/* CONTENT */
.content{
  width:90%;
  max-width:1200px;
  margin:30px auto;
  background:white;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width:768px){

  .logo-section img{
    width:80px;
  }

  .logo-section h2{
    font-size:18px;
  }

  .menu{
    display:none;
  }

  .hamburger{
    display:block;
  }

  .banner img{
    height:220px;
  }
}


/* CONTENT */
.content{
  width:90%;
  max-width:1200px;
  margin:30px auto;
  background:white;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.welcome{
  font-size:45px;
  font-weight:800;
  text-align:center;
  margin-bottom:15px;
  background: linear-gradient(135deg, #ff4ecd, #6f42c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote{
  text-align:center;
  color:#dc3545;
  font-style:italic;
  margin:10px 0;
}

.content p{
  line-height:1.8;
  text-align:justify;
}

/* RESPONSIVE */
@media(max-width:768px){

  .menu{
    display:none;
  }

  .hamburger{
    display:block;
  }

  .banner img{
    height:220px;
  }

  .logo-section img{
    width:90px;
  }

  .logo-section h2{
    font-size:18px;
  }
}


/* IMAGE FIX */
img{
  max-width:100%;
  height:auto;
}


/* UPCOMING */
.upcoming-box {
  margin-top: 40px;
  padding: 25px;
  background: #f9f9ff;
  border-radius: 10px;
  border: 1px solid #eee;

  width: 80%;      /* 👈 width reduce pannitu */
  margin-left: auto;
  margin-right: auto;  /* 👈 center pannum */
}


    .upcoming-box ul {
      margin-top: 10px;
      padding-left: 20px;
    }

    .upcoming-box li {
      margin-bottom: 8px;
    }

    /* MOBILE */
    @media(max-width:768px) {
      .section-title {
        font-size: 26px;
      }
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    /* CARD */
    .program-card {
      background: #fff;
      padding: 20px;
      text-align: center;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
      cursor: pointer;
    }

    /* IMAGE */
    .program-card img {
      width: 60px;
      margin-bottom: 10px;
      transition: 0.3s;
    }

    /* TEXT */
    .program-card h3 {
      color: #444;
      font-size: 18px;
    }

    /* 🔥 HOVER */
    .program-card:hover {
      transform: translateY(-8px) scale(1.05);
      background: linear-gradient(135deg, #6f42c1, #ff4ecd);
    }

    .program-card:hover h3 {
      color: #fff;
    }

    .program-card:hover img {
      transform: scale(1.2) rotate(5deg);
    }

    




/* SECTION */
.admission-hero{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:57vh;
    padding:20px;
}

/* WRAPPER */
.admission-wrapper{
    width:95%;
    max-width:1100px;
    display:flex;
    border-radius:20px;
    overflow:hidden;
    background:white;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

/* LEFT IMAGE */
.admission-left{
    flex:1;
    min-height:450px;
    background-image:url('../image/admission_bro.jpeg');
    background-size:cover;
    background-position:center;
}

/* RIGHT CONTENT */
.admission-right{
    flex:1;
    padding:50px;
}

/* TAG */
.tag{
    background:#4f46e5;
    color:white;
    padding:6px 14px;
    border-radius:20px;
    font-size:15px;
}

/* TITLE */
.admission-right h1{
    font-size:34px;
    margin:15px 0;
}

.admission-right h1 span{
    color:#4f46e5;
}

p{
    color:#555;
    line-height:1.6;
}

/* BUTTONS */
.buttons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

/* BUTTONS */
.buttons button{
    padding:12px 18px;
    border:none;
    cursor:pointer;
    border-radius:8px;
}

/* PRIMARY */
.buttons button:first-child{
    background:#4f46e5;
    color:white;
}

/* APPLY */
.apply-btn{
    background:#16a34a;
    color:white;
    text-decoration:none;
    padding:12px 18px;
    border-radius:8px;
    display:inline-block;
}

/* MODAL */
.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.4);
    justify-content:center;
    align-items:center;
    z-index:999;
}

/* IMAGE BOX */
.modal-box{
    position:relative;
    max-width:90%;
    max-height:90%;
}

/* IMAGE */
.modal-box img{
    width:100%;
    height:auto;
    max-height:90vh;
    object-fit:contain;
    border-radius:10px;
}

/* CLOSE */
.close{
    position:absolute;
    top:-15px;
    right:-15px;
    background:red;
    color:white;
    width:35px;
    height:35px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:20px;
    cursor:pointer;
    z-index:1000;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE FIX */
/* ========================= */

@media (max-width: 768px){

    /* STACK LAYOUT */
    .admission-wrapper{
        flex-direction:column;
    }

    /* IMAGE HEIGHT SMALL */
    .admission-left{
        min-height:250px;
    }

    /* CONTENT PADDING REDUCE */
    .admission-right{
        padding:25px;
    }

    /* TITLE SMALL */
    .admission-right h1{
        font-size:24px;
    }

    /* BUTTON STACK */
    .buttons{
        flex-direction:column;
        gap:10px;
    }

    .buttons button,
    .apply-btn{
        width:100%;
        text-align:center;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px){

    .admission-right h1{
        font-size:20px;
    }

    .tag{
        font-size:12px;
    }
}

@media (max-width: 768px){
    html, body{
        overflow-x: hidden;
    }
}
