*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, sans-serif;}
body{background:#f2f2f2;overflow-x:hidden;}

/* ===== TOP BAR ===== */
.top-bar{
  color:white;
  background:#003366;
  padding:8px 5%;
  display:flex;
  justify-content:space-between;
  font-size:14px;
}

/* ===== HEADER ===== */
.header{
  width:100%;
  background:#e9e9e9;
}
.header-logo{
  width:100%;
  height:200px;
  object-fit:contain;
  display:block;
}

/* Mobile View */
@media (max-width: 600px){
  .header-logo{
    height:120px;
  }
}


/* ================= NAVBAR ================= */
.navbar {
  background: #003366;
  position: relative;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
}

/* ===== DESKTOP MENU ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-menu li {
  position: relative;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  display: block;
  transition: 0.3s;
}
.nav-menu a:hover{
  color:#ffd700;
}

/* ===== DESKTOP ARROW ===== */
.dropdown > a::after {
  content:"\f107";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  margin-left:6px;
  font-size:12px;
}

/* ===== DESKTOP DROPDOWN ===== */
.sub-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}
.sub-menu li a {
  color: #000;
  padding: 10px 15px;
}
.sub-menu li a:hover{
  background:#f2f2f2;
}

.dropdown:hover .sub-menu {
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
}

/* ===== OVERLAY ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 998;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #003366;   /* BLUE BACKGROUND */
    flex-direction: column;
    transition: 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding-top: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
  }

  .nav-menu li a {
    color: #ffffff;   /* WHITE FONT */
    padding: 14px 20px;
    font-weight: 500;
    transition:0.3s;
  }

  .nav-menu li a:hover {
    color: red;   /* RED HOVER */
  }

  /* ===== MOBILE + BUTTON ===== */
  .dropdown > a::after {
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    line-height:22px;
    text-align:center;
    font-size:16px;
    font-weight:bold;
    background:#ffffff;
    color:#003366;
    border-radius:4px;
    transition:0.3s;
  }

  .dropdown.active > a::after {
    content:"−";
    background:red;
    color:#fff;
  }

  /* ===== SUBMENU ===== */
  .sub-menu {
    position: static;
    box-shadow: none;
    background: #00264d;  /* Slight darker blue */
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .dropdown.active .sub-menu {
    display:block;
  }

  .sub-menu li {
    border-bottom:1px solid rgba(255,255,255,0.2);
  }

  .sub-menu li a {
    padding:12px 40px;
    font-size:14px;
    color:#ffffff;
  }

  .sub-menu li a:hover{
    color:red;
    background:rgba(255,255,255,0.1);
  }
}












/* ================= NOTICE SECTION UPDATE ================= */

.notice-section {
  padding: 40px 5%;
  background: #2f5c8f;
}

.notice-card {
  background: #e9e9e9;
  border-radius: 8px;
  width: 48%;
  padding: 15px;
  min-height: 520px;
}

@media(max-width:992px){
  .notice-card{
    width:100%;
  }
}

/* NOTICE SLIDER FIX */
.notice-card .slider {
  position: relative;
  height: auto;
  overflow: hidden;
}

.notice-card .slide {
  display: none;
  position: relative;
  height: 100%;
}

.notice-card .slide.active {
  display: block;
}

/* FULL WIDTH IMAGE */
.notice-card .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* contain hata diya */
  border-radius: 6px;
}

/* DATE CENTER TOP */
.notice-card .date-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff5722;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 2;
}

/* SLIDER BUTTON */
.notice-card .prev,
.notice-card .next {
  position: absolute; 
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.notice-card .prev { left: 10px; }
.notice-card .next { right: 10px; }

.notice-card .prev:hover,
.notice-card .next:hover {
  background: #ff9800;
}


/******************************EnD***********************/





/* ===== MAIN ===== */
.main{
  display:flex;
  gap:20px;
  padding:20px 1%;
}

/* ===== SLIDER ===== */
/* ===== SLIDER ===== */
.slider{
  flex:3;
  position:relative;
  overflow:hidden;
  border-radius:6px;
  height:auto;
  min-height:250px;
}

@media(max-width:768px){
  .slider{
    height:auto !important;
    width:100%;
  }
}


.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:0.6s;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slide.active{opacity:1;}

.caption{
  position:absolute;
  bottom:20px;
  left:20px;
  background:rgba(0,0,0,0.6);
  color:#fff;
  padding:10px 15px;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  font-size:28px;
  padding:8px 14px;
  cursor:pointer;
  border-radius:50%;
}

.arrow.left{left:15px;}
.arrow.right{right:15px;}
.arrow:hover{background:#ff9800;}

/* ===== NEWS ===== */
.news{
  flex:1.3;
  background:#fff;
  padding:15px;
  border-radius:6px;
}

.news h3{
  background:#2f5c8f;
  color:#fff;
  padding:10px;
  margin:-15px -15px 15px -15px;
}

.news-item{
  padding:8px 0;
  border-bottom:1px solid #eee;
}


/* ===== RESPONSIVE ===== */
@media(max-width:900px){

  .main{flex-direction:column;}

 
}

@media(max-width:768px){

  .main{
    gap:10px;
    padding:10px 2%;
  }

  /* 8 column */
  .slider{
    flex: 0 0 66.66%;
    max-width: 100%;
    height: 220px;
  }

  /* 4 column */
  .news{
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding:10px;
  }

  .news h3{
    font-size:14px;
    padding:8px;
  }

  .news-item{
    font-size:12px;
  }

  .caption{
    font-size:12px;
    padding:6px 10px;
    bottom:10px;
    left:10px;
  }

  .arrow{
    font-size:18px;
    padding:5px 9px;
  }

}

/* ===== ABOUT SECTION ===== */


.about-section{
  background:#fff;
  margin:40px 1%;
  padding:40px;
  border-radius:8px;
  display:flex;
  gap:40px;
  align-items:center;
}

.about-text{
  flex:1;
}

.about-text h2{
  margin-bottom:20px;
  color:#1e3d73;
}

.about-text p{
  text-align:justify;
  line-height:1.7;
  font-size:15px;
  color:#444;
}

.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  border-radius:8px;
}


/* ===== Modern Leadership Section ===== */
.modern-leadership {
    background: linear-gradient(135deg, #eef2f7, #f8f9fc);
    padding: 0px 20px;
}

.modern-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.modern-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.modern-img img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.modern-content h3 {
    color: #2a5298;
    font-size: 18px;
    margin-bottom: 5px;
}

.modern-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.modern-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.modern-btn {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}


/* Responsive */




/* ===== MOBILE VIEW FIX ===== */
@media(max-width:768px){

  .about-section{
    flex-direction:column;   /* side by side se vertical */
    padding:20px;
    margin:20px 3%;
    gap:20px;
  }

  .about-text,
  .about-image{
    width:100%;
    flex:unset;
  }

  .about-text p{
    font-size:14px;
  }

}




/* SECTION WRAPPER */
.section-wrapper{
    padding:40px 1%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
}

/* SECTION HEADER */
.section-header{
    background:linear-gradient(135deg,#2b1055,#5f0a87);
    color:#fff;
    padding:15px 20px;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.section-header h2{
    font-size:20px;
}

.section-header a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.section-header a:hover{
    opacity:0.8;
}

/* CARD GRID */
.card-grid{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:20px;
}

/* CARD STYLE */
.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s;
}

.card:hover img{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:900px){
    .section-wrapper{
        grid-template-columns:1fr;
    }
    
}

@media(max-width:600px){
    .card-grid{
        grid-template-columns:1fr;
    }
}


/************************************footer*******************************************************/
.footer{
  background:#2e73b4;
  color:#fff;
  padding:50px 5% 0;
  font-family:Arial, sans-serif;
}

.footer-container{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:40px;
}

.footer-col h3{
  margin-bottom:15px;
  font-size:18px;
  position:relative;
}

.footer-col h3::before{
  content:"|";
  color:#00e0ff;
  margin-right:8px;
}

.footer-logo{
    background-color:white;
  width:180px;
  /*border-radius:50%;*/
  margin:15px 0;
}

.footer-col p{
  font-size:14px;
  line-height:1.6;
}

.map-link{
  color:#00e0ff;
  text-decoration:none;
}

.links ul{
  list-style:none;
  padding:0;
}

.links ul li{
  margin-bottom:8px;
}

.links ul li a{
  color:#fff;
  text-decoration:none;
}

.links ul li a:hover{
  color:#00e0ff;
}

.counter-box{
  background:#000;
  color:#ffd400;
  font-weight:bold;
  font-size:22px;
  padding:8px 15px;
  display:inline-block;
  margin-bottom:15px;
}

.stats-list{
  list-style:none;
  padding:0;
  font-size:14px;
}

.stats-list li{
  margin-bottom:6px;
}

.footer-bottom{
  background:#e58a00;
  text-align:center;
  padding:15px;
  margin-top:40px;
  font-size:14px;
}

/* Responsive */
@media(max-width:992px){
  .footer-container{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:600px){
  .footer-container{
    grid-template-columns: 1fr;
    /*text-align:center;*/
  }

  .footer-logo{
    margin:auto;
  }
}



.notice-section {
  padding: 40px 5%;
  background: #2f5c8f;
}

.container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.notice-card {
  background: #e9e9e9;
  border-radius: 8px;
  width: 48%;
  padding: 15px;
  min-height: 520px;
}

.card-title {
  font-weight: bold;
  color: #003399;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid orange;
  display: inline-block;
}

/* ================= SLIDER ================= */

.slider {
  position: relative;
  height: auto;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Date Badge on Slider */
.date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff5722;
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: bold;
}

/* Slider Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ================= SCROLL ================= */

.notice-list {
  height: 460px;
  overflow: hidden;
  cursor: pointer;
}

.notice-list ul {
  list-style: none;
}

.notice-list li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Date Button in List */
.date-btn {
  background: #003399;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 15px;
  white-space: nowrap;
}

/* More Link */
.more-link {
  text-align: right;
  color: orange;
  font-size: 13px;
  margin-top: 5px;
}

@media(max-width:992px){
  .notice-card{
    width:100%;
  }
}


/* ===== FLOATING CONTACT ICONS ===== */

/* FLOATING ICONS FIXED */

.floating-icons{
    position:fixed !important;
    right:20px;
    bottom:80px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:999999 !important;
}

/* ICON STYLE */

.floating-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* COLORS */

.whatsapp{
    background:#25D366;
}

.call{
    background:#0b3d91;
}

.youtube{
    background:#ff0000;
}


/* HOVER EFFECT */

.floating-icons a:hover{
    transform:scale(1.1);
}
/* Mobile */
@media(max-width:768px){
    .floating-icons{
        top: 45%;
    }
}
