    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f4f6fb;
    }

    /* ================= HEADER ================= */
    /* HEADER */


    /* HAMBURGER */
    .hamburger {
      position: absolute;
      right: 20px;
      top: 20px;
      font-size: 26px;
      color: #fff;
      cursor: pointer;
      display: none;
    }

    /* NORMAL MENU */
    .menu {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px;
      background: #6f42c1;
      padding: 14px;
    }

    .menu a {
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      padding: 10px 14px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: 0.3s;
    }

    .menu a:hover {
      background: #fff;
      color: #6f42c1;
    }


    /* MOBILE MENU */
    .top-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #6f42c1;
      transform: translateY(-100%);
      transition: 0.3s;
      z-index: 999;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .top-menu.active {
      transform: translateY(0);
    }

    .top-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 20px;
    }

    /* CLOSE BTN */
    .close-btn {
      text-align: right;
      font-size: 22px;
      color: #fff;
      cursor: pointer;
    }

    /* OVERLAY */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 998;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* 📱 MOBILE VIEW */
    @media(max-width:1024px) {

      .menu {
        display: none;
        /* hide normal menu */
      }

      .hamburger {
        display: block;
        /* show hamburger */
      }

    }

    /* ================= HEADER ================= */
    .header {
      position: relative;
      background: linear-gradient(135deg, #6f42c1, #d069b5);
      padding: 15px 0;
    }

    /* INNER */
    .header-inner {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* TEXT CONTAINER (NEW) */
    /* BRAND */
    .brand {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    /* LOGO LEFT */
    .brand img {
      width: 100px;
    }

    /* TEXT STACK RIGHT */
    .brand {
      display: flex;
      align-items: center;
      justify-content: center;
      /* center whole block */
      gap: 15px;
      text-align: center;
    }

    /* LOGO */
    .brand img {
      width: 120px;
    }

    /* TEXT STACK */
    .brand-text {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* ORIGINAL SIZES (DESKTOP) */
    .brand h1 {
      font-size: 36px;
      font-weight: 900;
      color: gold;
      letter-spacing: 1px;
    }

    .brand h2 {
      font-size: 30px;
      font-weight: 900;
      color: gold;
      letter-spacing: 1px;
    }

    .brand p {
      font-size: 33px;
      font-weight: 900;
      color: gold;
      letter-spacing: 1px;
    }

    /* HAMBURGER */
    .hamburger {
      font-size: 26px;
      color: #fff;
      cursor: pointer;
      display: none;
    }

    /* ================= MENU ================= */
    .menu {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      background: #6f42c1;
      padding: 15px;
    }

    /* ================= MOBILE ================= */
    @media(max-width:768px) {

      /* STACK EVERYTHING CENTER */
      .header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .brand img {
        width: 110px;
        /* 🔥 bigger logo in mobile */
      }

      .brand h1 {
        font-size: 18px;
      }

      .brand h2 {
        font-size: 18px;
      }

      .brand p {
        font-size: 18px;
      }

      /* HAMBURGER FIX */
      .hamburger {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
      }
    }


.banner{
  width:100%;
  background:#000; /* optional */
}

.banner img{
  width:100%;
  height:auto;        /* 🔥 full image visible */
  display:block;
}


/* ================= CONTENT ================= */
.content{
  width:90%;
  max-width:1200px;
  margin:40px auto;
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.welcome{
  font-size:32px;
  font-weight:900;
  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;
}

/* ================= MOBILE ================= */
@media(max-width:1024px){

  .menu{
    display:none;
  }

  .hamburger{
    display:block;
  }

  .brand{
    justify-content:flex-start;
    padding-left:15px;
  }

  .brand img{
    width:80px;
  }

  .brand h1{
    font-size:20px;
 
  }

  .banner img{
    max-height:250px;
  }

  .content{
    margin:25px auto;
    padding:20px;
  }

  .welcome{
    font-size:24px;
  }
}

/* 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;
    }
}
