
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family: Arial, sans-serif;
    }
a{
  text-decoration: none;
}
    body{
      background:#fff;
    }

    /* TOP MARQUEE */
    .top-marquee{
      background:#004b8d;
      color:#fff;
      padding:8px 0;
      font-size:15px;
      font-weight:bold;
    }

    .top-marquee marquee{
      width:100%;
    }

    .top-marquee span{
      color:yellow;
      margin-right:10px;
    }

    /* TOP HEADER */
    .top-header{
      background:#000;
      color:#fff;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:10px 70px;
    }

    .email{
      font-size:18px;
    }

    .header-btns button{
      background:#ff6600;
      color:#fff;
      border:none;
      padding:12px 25px;
      margin-left:15px;
      border-radius:6px;
      font-size:16px;
      cursor:pointer;
      font-weight:bold;
    }
/* NAVBAR */
.navbar{
  background:#f4f4f4;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:4px 50px;

  /* STICKY */
  position:sticky;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:260px;
  margin-right:15px;
}

.logo-text{
  font-size:28px;
  font-weight:bold;
  color:#333;
  line-height:38px;
}

.menu{
  display:flex;
  list-style:none;
}

.menu li{
  margin-left:35px;
}

.menu li a{
  text-decoration:none;
  color:#333;
  font-size:15px;
  font-weight:600;
  transition:0.3s;
}

.menu li a:hover{
  color:#ff6600;
}

.active{
  color:#ff6600 !important;
}
    /* SLIDER */
    .slider{
      width:100%;
      height:650px;
      position:relative;
      overflow:hidden;
    }

    .slider img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .arrow{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      font-size:55px;
      color:#fff;
      cursor:pointer;
      background:rgba(0,0,0,0.3);
      width:60px;
      height:60px;
      text-align:center;
      line-height:55px;
      border-radius:50%;
    }

    .left{
      left:20px;
    }

    .right{
      right:20px;
    }

    /* RESPONSIVE */
    @media(max-width:992px){

      .navbar{
        flex-direction:column;
      }

      .menu{
        flex-wrap:wrap;
        justify-content:center;
        margin-top:20px;
      }

      .menu li{
        margin:10px;
      }

      .top-header{
        flex-direction:column;
        gap:15px;
      }

      .slider{
        height:400px;
      }
    }
/* ========================= */
/* ABOUT SECTION */
/* ========================= */

.about-section{
    width:100%;
    background:#f5f5f5;
    padding:90px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    position:relative;
}

/* LEFT SIDE */
.about-image{
    width:50%;
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:8px;
    display:block;
}

/* SHAPES */

.shape1{
    width:50px;
    height:50px;
    border-left:8px solid #1b2b5a;
    border-top:8px solid #42e9f5;
    transform:rotate(-45deg);
    position:absolute;
    top:80px;
    left:-20px;
}

.shape2{
    width:45px;
    height:45px;
    border:4px solid #b300ff;
    position:absolute;
    right:-30px;
    bottom:20px;
    transform:rotate(20deg);
}

.shape3{
    width:70px;
    height:12px;
    border:4px solid #1b2b5a;
    border-radius:20px;
    position:absolute;
    left:-40px;
    bottom:40px;
    transform:rotate(-35deg);
}

/* RIGHT SIDE */
.about-content{
    width:50%;
}

.small-title{
    color:#ff5a00;
    font-size:17px;
    margin-bottom:10px;
    display:inline-block;
}

.about-content h1{
    font-size:29px;
    /* line-height:85px; */
    color:#222;
    margin-bottom:35px;
    font-weight:700;
}

.about-content p{
    font-size:15px;
    line-height:27px;
    color:#666;
    margin-bottom:40px;
    font-weight:500;
}

.about-content .contact-btn{
    background: #ff5a00;
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 18px;
    cursor:pointer;
    font-weight:bold;
    transition:0.3s;
    text-decoration: none;
}

.about-content .contact-btn:hover{
    background:#e64d00;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .about-content h1{
        font-size:45px;
        line-height:60px;
    }

    .about-content p{
        font-size:20px;
        line-height:38px;
    }

}

@media(max-width:992px){

    .about-section{
        flex-direction:column;
        padding:60px 30px;
    }

    .about-image,
    .about-content{
        width:100%;
    }

    .about-content h1{
        font-size:38px;
        line-height:50px;
    }

    .about-content p{
        font-size:18px;
        line-height:32px;
    }

}
/* ========================= */
/* COUNTER SECTION */
/* ========================= */

.counter-section{
    width:100%;
    padding:70px 50px;
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    background:#f5f5f5;
}

.counter-box{
    width: 268px;
    background: #fff;
    border-radius: 12px;
    padding: 23px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:11px;
}

.counter-top h1{
    font-size:35px;
    color:#111;
}

.counter-top i{
    font-size:45px;
}

.counter-box:nth-child(1) i{
    color:#11b5b9;
}

.counter-box:nth-child(2) i{
    color:#5f4de4;
}

.counter-box:nth-child(3) i{
    color:#ff4d4d;
}

.counter-box:nth-child(4) i{
    color:#c61cff;
}

.counter-box p{
    font-size: 15px;
    color: #444;
    font-weight: 600;
    line-height: 39px;
}



/* ========================= */
/* EVENTS SECTION */
/* ========================= */

.events-section{
    width:100%;
    background:#f5f5f5;
    padding:80px 0;
    overflow:hidden;
}

.event-title{
    text-align:center;
    font-size:40px;
    color:#222;
    margin-bottom:70px;
    font-weight:700;
}

.event-slider{
    width: 85%;
    overflow: hidden;
    position: relative;
    margin-left: 120px;
}

.event-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.event-card{
width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 270px;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.event-content{
    padding:25px;
}

.event-content h3{
    font-size:32px;
    color:#222;
    margin-bottom:15px;
}

.event-content p{
    font-size:20px;
    color:#666;
    line-height:32px;
}

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:992px){

    .event-title{
        font-size:45px;
    }

    .event-card{
        width:320px;
    }

    .event-card img{
        height:220px;
    }

    .event-content h3{
        font-size:24px;
    }

    .event-content p{
        font-size:16px;
        line-height:28px;
    }

}


.footer-section{
    background: linear-gradient(132deg, #fafafa98, #63636346), url(../images/footer-bg-DHcRW2IX.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-overlay{
  /* background: rgba(207, 232, 243, 0.9); */
  padding: 70px 0 0;
}

.container{
  width:90%;
  margin:auto;
}

.footer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.footer-logo img{
  width:326px;
}

.footer-logo h2{
  font-size:20px;
  line-height:1.3;
  font-weight:700;
  color:#333;
}

.footer-logo span{
  color:#0a4a7a;
}

.footer-col p{
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-col h3{
  color:#ff5a00;
  font-size:23px;
  margin-bottom:25px;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:15px;
}

.footer-col ul li a{
text-decoration: none;
    color: #222;
    font-size: 17px;
    transition: 0.3s;
    font-weight: 600;
}

.footer-col ul li a:hover{
  color:#ff5a00;
  padding-left:5px;
}

.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:48px;
  height:48px;
  border:1px solid #bbb;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#999;
  font-size:18px;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:#ff5a00;
  color:#fff;
  border-color:#ff5a00;
}

.contact-item{
  display:flex;
  gap:15px;
  margin-bottom:17px;
}

.contact-item i{
  font-size:22px;
  color:#222;
  margin-top:5px;
}

.contact-item h4{
  color:#0d6efd;
  margin-bottom:8px;
  font-size:17px;
}

.contact-item p{
  margin:0;
  line-height:1.7;
}

.footer-bottom{
  text-align:center;
  padding:25px 0;
  margin-top:50px;
  border-top:1px solid rgba(0,0,0,0.1);
}

.footer-bottom p{
  font-size:16px;
  color:#666;
}

.footer-bottom span{
  color:#0d6efd;
  font-weight:600;
}

@media(max-width:768px){

  .footer-col h3{
    font-size:28px;
  }

  .footer-logo{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-grid{
    gap:40px;
  }
}

.reason-section{
  background:#f5f5f5;
  padding:80px 0;
  font-family:Arial, sans-serif;
}

.container{
  width:85%;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:48px;
  color:#1f2a44;
  margin-bottom:10px;
  font-weight:700;
}

.section-title p{
  font-size:18px;
  color:#333;
}

.reason-box{
  position:relative;
  background:#fff;
  border:1px solid #d8d8d8;
  border-radius:8px;
  padding:35px 35px 35px 70px;
  margin-bottom:35px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.reason-box .icon{
  position:absolute;
  left:-18px;
  top:-10px;
  width:50px;
  height:50px;
  background:#17bebb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  font-size:22px;
}

.reason-box .icon.purple{
  background:#6c63ff;
}

.reason-box .icon.blue{
  background:#0066ff;
}

.reason-box h3{
  font-size:34px;
  color:#1f2a44;
  margin-bottom:18px;
}

.reason-box p{
  font-size:17px;
  line-height:1.9;
  color:#555;
}

@media(max-width:768px){

  .section-title h2{
    font-size:36px;
  }

  .reason-box{
    padding:30px 20px 30px 55px;
  }

  .reason-box h3{
    font-size:28px;
  }

  .reason-box p{
    font-size:15px;
  }

  .reason-box .icon{
    width:42px;
    height:42px;
    font-size:18px;
    left:-12px;
  }
}


.vision-gallery-section{
  padding:80px 0;
}

.container{
  width:88%;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:48px;
  color:#14213d;
  font-weight:700;
}

/* TOP GRID */
.vision-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:25px;
  margin-bottom:90px;
}

/* LEFT SIDE */
.left-content{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.info-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  display:flex;
  align-items:center;
  gap:25px;
  padding:14px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.info-card img{
  width:230px;
  height:150px;
  object-fit:cover;
  border-radius:6px;
}

.card-content h3{
  font-size:36px;
  margin-bottom:15px;
  color:#111;
}

.card-content p{
  font-size:17px;
  line-height:1.9;
  color:#555;
}

/* BELIEF CARD */
.belief-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.belief-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.belief-content{
  padding:25px;
}

.belief-content h3{
  font-size:38px;
  margin-bottom:15px;
  color:#111;
}

.belief-content p{
  font-size:17px;
  line-height:1.9;
  color:#555;
}

/* GALLERY */
.gallery-title{
  margin-bottom:45px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-item{
  overflow:hidden;
  border-radius:8px;
}

.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:0.4s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-btn{
  text-align:center;
  margin-top:35px;
}

.gallery-btn a{
  display:inline-block;
  padding:14px 35px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-size:16px;
  font-weight:600;
  transition:0.3s;
}

.gallery-btn a:hover{
  background:#0f4fd6;
}

/* RESPONSIVE */
@media(max-width:992px){

  .vision-grid{
    grid-template-columns:1fr;
  }

  .belief-card{
    max-width:500px;
    margin:auto;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){

  .section-title h2{
    font-size:34px;
  }

  .info-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .info-card img{
    width:100%;
    height:220px;
  }

  .card-content h3,
  .belief-content h3{
    font-size:28px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

}

.features-section{
  padding:60px 0;
  background:#f5f7fa;
  font-family:Arial, sans-serif;
}

.container{
  width:85%;
  margin:auto;
}

.section-heading{
  text-align:center;
  margin-bottom:40px;
}

.section-heading h2{
  font-size:42px;
  color:#1e293b;
  margin-bottom:10px;
}

.section-heading p{
  font-size:17px;
  color:#555;
}

.feature-box{
  background:#fff;
  padding:25px;
  border-radius:8px;
  margin-bottom:20px;
  /* border-left:5px solid #2563eb; */
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  transition:0.3s;
}

.feature-box:hover{
  transform:translateY(-3px);
}

.feature-box h3{
  font-size:24px;
  color:#111827;
  margin-bottom:12px;
}

.feature-box p{
  font-size:15px;
  line-height:1.9;
  color:#555;
}

/* MOBILE */
@media(max-width:768px){

  .container{
    width:90%;
  }

  .section-heading h2{
    font-size:30px;
  }

  .feature-box{
    padding:20px;
  }

  .feature-box h3{
    font-size:20px;
  }

  .feature-box p{
    font-size:14px;
  }

}

.about-banner {
    position: relative;
    background: #f3f3f3;
    padding: 100px 0;
    overflow: hidden;
}

/* Background GIF */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/breadcrumb-bg-lU3D3W-W.jpg") no-repeat center;
    /* background-size: cover; */
    /* opacity: 0.15; */
}


.about-banner::after {
    content: "";
    position: absolute;
    left: -150px;
    top: 0;
    width: 400px;
    height: 100%;
    /* background: #dfe7e2; */
    border-radius: 0 200px 200px 0;
}

/* Wrapper */
.banner-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Image */
.banner-left img {
    width: 180px;
}

/* Right Image */
.banner-right img {
    width: 120px;
}

/* Content */
.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #222;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb a {
    text-decoration: none;
    color: #333;
}

.breadcrumb span {
    margin: 0 5px;
    color: #777;
}

.breadcrumb .active {
    color: #2f6fed;
    font-weight: 600;
}

.faculty-section{
  padding:60px 0;
  background:#f5f7fb;
  font-family:Arial, sans-serif;
}

.container{
  width:90%;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:40px;
  color:#1e293b;
  margin-bottom:10px;
}

.section-title p{
  font-size:16px;
  color:#666;
}

.faculty-category{
  margin-bottom:45px;
}

.faculty-category h3{
  font-size:28px;
  color:#07173d;
  margin-bottom:18px;
}

.table-wrapper{
  overflow-x:auto;
  background:#fff;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
}

table{
  width:100%;
  border-collapse:collapse;
}

table thead{
  background:#07173d;
  color:#fff;
}

table th,
table td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid #e5e7eb;
  font-size:14px;
}

table tbody tr:hover{
  background:#f1f5f9;
}

table th{
  font-weight:600;
}

/* MOBILE */
@media(max-width:768px){

  .section-title h2{
    font-size:30px;
  }

  .faculty-category h3{
    font-size:22px;
  }

  table th,
  table td{
    font-size:13px;
    padding:12px;
  }

}


.terms-section{
  padding:60px 0;
  background:#f5f7fb;
  font-family:Arial, sans-serif;
}

.container{
  width:85%;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:40px;
  color:#1e293b;
  margin-bottom:10px;
}

.section-title p{
  font-size:16px;
  color:#555;
}

.terms-box{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.terms-item{
  background:#fff;
  padding:25px;
  border-radius:8px;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  /* border-left:5px solid #2563eb; */
}

.terms-item h3{
  font-size:24px;
  color:#111827;
  margin-bottom:15px;
}

.terms-item p{
  font-size:15px;
  line-height:1.9;
  color:#555;
}

.terms-item ul{
  padding-left:20px;
}

.terms-item ul li{
  margin-bottom:12px;
  font-size:15px;
  line-height:1.8;
  color:#555;
}

/* MOBILE */
@media(max-width:768px){

  .container{
    width:90%;
  }

  .section-title h2{
    font-size:30px;
  }

  .terms-item{
    padding:20px;
  }

  .terms-item h3{
    font-size:20px;
  }

  .terms-item p,
  .terms-item ul li{
    font-size:14px;
  }

}


.gallery-section{
  padding:60px 0;
  background:#f5f7fb;
  font-family:Arial, sans-serif;
}

.container{
  width:90%;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:40px;
  color:#1e293b;
  margin-bottom:10px;
}

.section-title p{
  font-size:16px;
  color:#666;
}

/* GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* ITEM */
.gallery-item{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
  transition:0.3s;
}

.gallery-item:hover{
  transform:translateY(-5px);
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  background:#ddd;
}

/* MOBILE */
@media(max-width:992px){

  .gallery-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:768px){

  .section-title h2{
    font-size:30px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .gallery-item img{
    height:180px;
  }

}

@media(max-width:500px){

  .gallery-grid{
    grid-template-columns:1fr;
  }

}

.message-section{
  padding:60px 0;
  background:#f5f7fb;
  font-family:Arial, sans-serif;
}

.container{
  width:85%;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:40px;
  color:#1e293b;
  margin-bottom:10px;
}

.section-title p{
  font-size:16px;
  color:#666;
}

.message-box{
  background:#fff;
  padding:35px;
  border-radius:10px;
  box-shadow:0 3px 12px rgba(0,0,0,0.06);
  /* border-left:5px solid #2563eb; */
}

.message-box p{
  font-size:16px;
  line-height:2;
  color:#444;
  margin-bottom:22px;
  text-align:justify;
}

.message-box p:last-child{
  margin-bottom:0;
}

/* MOBILE */
@media(max-width:768px){

  .container{
    width:90%;
  }

  .section-title h2{
    font-size:30px;
  }

  .message-box{
    padding:22px;
  }

  .message-box p{
    font-size:14px;
    line-height:1.9;
  }

}

.courses {
    padding: 60px 109px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.course-icon {
    width: 50px;
    height: 50px;
    background: #eef2f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.course-icon i {
    color: #2f6fed;
    font-size: 20px;
}

/* TITLE */
.course-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* INFO */
.info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    font-size: 14px;
}

.info p {
    color: #6b7280;
}

.info span {
    font-weight: 600;
}

/* STATUS */
.status {
    background: #6c3fc9;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* TAGS */
.tags {
    margin: 15px 0;
}

.tags span {
    display: inline-block;
    border: 1px solid #d1d5db;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin: 4px;
}

/* ELIGIBILITY */
.eligibility {
    font-size: 14px;
    color: #374151;
    margin: 15px 0;
}

/* BUTTON */
.courses-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.courses-btn:hover {
    background: #2f6fed;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.contact-section {
    padding: 60px 20px;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* WRAPPER */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* BOX */
.contact-info,
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* HEADINGS */
.contact-info h3,
.contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

/* INFO ITEMS */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 18px;
    color: #2f6fed;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.info-item p {
    font-size: 14px;
    color: #6b7280;
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.contact-form button {
    padding: 14px;
    background: #2f6fed;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #1d4ed8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
/* DIRECTOR & PRINCIPAL MESSAGE SECTION */

.message-section{
    padding: 80px 0;
    background: #f7f7f7;
}

.message-card{
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.message-image img{
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
}

.message-content{
    flex: 1;
}

.message-content h2{
    font-size: 42px;
    color: #0b1c4d;
    margin-bottom: 20px;
    font-weight: 700;
}

.message-content p{
    font-size: 18px;
    line-height: 1.9;
    color: #5d6985;
    font-style: italic;
}

/* RESPONSIVE */

@media(max-width:768px){

    .message-card{
        flex-direction: column;
        text-align: center;
    }

    .message-image img{
        width: 100%;
        height: auto;
    }

    .message-content h2{
        font-size: 32px;
    }
}
/* COURSE FEE SECTION */

.course-fee-section{
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title{
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2{
    font-size: 48px;
    font-weight: 700;
    color: #07173d;
}

.fee-table-wrapper{
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.fee-table{
    width: 100%;
    border-collapse: collapse;
}

.fee-table thead{
    background: #07173d;
}

.fee-table thead th{
    color: #fff;
    padding: 20px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
}

.fee-table tbody td{
    padding: 20px;
    vertical-align: top;
    border-bottom: 1px solid #e5e5e5;
    color: #4a5568;
    font-size: 16px;
}

.fee-table tbody tr:last-child td{
    border-bottom: none;
}

.fee-table strong{
    color: #07173d;
    font-size: 22px;
}

.year-fee-box{
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
    background: #fafafa;
    color: #07173d;
    font-size: 15px;
}

.total-fee{
    color: #0056d6 !important;
    font-weight: 700;
    font-size: 28px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .section-title h2{
        font-size: 34px;
    }

    .fee-table thead th,
    .fee-table tbody td{
        padding: 15px;
        font-size: 14px;
    }

    .fee-table strong{
        font-size: 18px;
    }

    .total-fee{
        font-size: 20px;
    }
}
/* CAMPUS IMAGE SECTION */

.campus-section{
    padding: 40px 0;
    background: #f7f7f7;
}

.campus-section .section-title{
    text-align: center;
    margin-bottom: 40px;
}

.campus-section .section-title h2{
    font-size: 48px;
    font-weight: 700;
    color: #07173d;
}

.campus-image{
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.campus-image img{
    width: 70%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    margin: auto;
}

/* RESPONSIVE */

@media(max-width:768px){

    .campus-section{
        padding: 60px 0;
    }

    .campus-section .section-title h2{
        font-size: 34px;
    }
}
/* GALLERY SECTION */

.gallery-section{
    padding: 80px 0;
    background: #f5f5f5;
}

.gallery-section .section-title{
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section .section-title h2{
    font-size: 48px;
    font-weight: 700;
    color: #07173d;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-card{
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border: 1px solid #ddd;
}

.gallery-card:hover{
    transform: translateY(-5px);
}

.gallery-card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.gallery-content{
    padding: 20px 25px;
}

.gallery-content h3{
    font-size: 28px;
    color: #07173d;
    font-weight: 700;
}
/* IMAGE HOVER ZOOM EFFECT */

.gallery-card{
    overflow: hidden;
}

.gallery-card img{
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img{
    transform: scale(1.1);
}
/* RESPONSIVE */

@media(max-width:992px){

    .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px){

    .gallery-section{
        padding: 60px 0;
    }

    .gallery-section .section-title h2{
        font-size: 34px;
    }

    .gallery-grid{
        grid-template-columns: 1fr;
    }

    .gallery-card img{
        height: auto;
    }

    .gallery-content h3{
        font-size: 22px;
    }
}
/* NOTICE SECTION */

.notice-section{
    padding: 80px 20px;
    background: #f7f7f7;
}

.notice-section .container{
    max-width: 1100px;
    margin: auto;
}

.section-title{
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2{
    font-size: 48px;
    font-weight: 700;
    color: #111827;
}

.notice-card{
    background: #fff;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 25px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.notice-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.notice-top{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.notice-top h3{
    font-size: 28px;
    color: #111827;
    margin: 0;
}

.notice-badge{
    padding: 6px 14px;
    border: 1px solid #cfd8e3;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    background: #fff;
}

.notice-content p{
    margin: 0;
    font-size: 18px;
    color: #5b6475;
    line-height: 1.7;
}

.notice-date{
    font-size: 16px;
    color: #6b7280;
    white-space: nowrap;
    margin-top: 5px;
}

/* Responsive */

@media (max-width: 768px){

    .section-title h2{
        font-size: 36px;
    }

    .notice-card{
        flex-direction: column;
    }

    .notice-top h3{
        font-size: 22px;
    }

    .notice-content p{
        font-size: 16px;
    }

    .notice-date{
        margin-top: 10px;
    }
}
/* INFO SECTION */

.info-section{
    padding: 80px 20px;
    background: #f5f6f8;
}

.info-section .container{
    max-width: 1100px;
    margin: auto;
}

.info-card-mandatory{
    background: #fff;
    border: 1px solid #d8dee8;
    border-radius: 14px;
    padding: 35px 30px;
    margin-bottom: 30px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}

.info-card-mandatory:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.info-card-mandatory h2{
    font-size: 30px;
    color: #111827;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-content p{
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.8;
    color: #5b6475;
}

.info-content strong{
    color: #111827;
}

.infra-list{
    padding-left: 20px;
    margin: 0;
}

.infra-list li{
    margin-bottom: 16px;
    font-size: 16px;
    color: #5b6475;
    line-height: 1.7;
}

.approval-text{
    font-size: 17px;
    line-height: 1.8;
    color: #5b6475;
    margin: 0;
}

/* Responsive */

@media (max-width: 768px){

    .info-section{
        padding: 60px 15px;
    }

    .info-card-mandatory{
        padding: 25px 20px;
    }

    .info-card-mandatory h2{
        font-size: 32px;
    }

    .info-content p,
    .infra-list li,
    .approval-text{
        font-size: 16px;
    }
}