* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        img{width:100%;}
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.logo-left img,
.logo-right img {
  height: 80px;   /* adjust size */
  width: auto;
}

.header-top {
  flex: 1;
  padding: 0 20px;
}

.header-top h1 {
  font-size: 26px;
  margin: 0;
  color: #0066cc;
}

/* ====== ==================================================================. HEADER STYLING ============================================================================== */
/* Container: Desktop layout */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Logos styling */
.logo-left img,
.logo-right img {
  height: 120px;
  width: auto;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-right img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ✅ Mobile layout */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;  /* stack vertically */
    align-items: center;
  }

  /* Group both logos on the same row */
  .logo-left,
  .logo-right {
    display: inline-block;
    margin: 0 10px;
  }

  .logo-left img,
  .logo-right img {
    height: 80px;   /* smaller logos on mobile */
  }

  /* Put logos side by side */
  .logo-left, .logo-right {
    vertical-align: middle;
  }

  /* Force logos to appear above text */
  .logo-left, .logo-right {
    order: -1;  /* logos first */
  }

  .header-top {
    text-align: center;
    margin-top: 10px;
  }
}




.header-top h1 {
  color: rgb(192, 2, 2);        /* Make h1 red */
  font-size: 2rem;   /* Bigger font size */
  font-weight: bold; /* Emphasize */
  margin: 10px 0;
}

.header-top h2, 
.header-top h3, 
.header-top h4 {
  font-size: 1rem;   /* Smaller font */
  font-weight: normal;
  color: #333;       /* Grayish text */
  margin: 2px 0;
}

/* Special Effects with Colors */
.header-top h4:nth-child(4) {
  color: #ff8800;
}

.header-top h4:nth-child(5) {
  color: #1a5c9e;
}

/* ====== Professional Underline Animation ====== */
.header-top h1::after
 {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  /* background: #1a5c9e; */
  margin: 6px auto 0;
  border-radius: 2px;
  /* animation: underlineSlide 2s ease infinite alternate; */
}


h3 .orange-text {
  color: rgb(255, 123, 0);   /* Makes only this part orange */
  font-weight: bold;
}

@keyframes underlineSlide {
  from { width: 40px; background: #b30000; }
  to { width: 120px; background: #1a5c9e; }
}

/* ====== Responsive Design ====== */
@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Logos stay at the top */
  .logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* space between logos */
    margin-bottom: 12px;
    order: -1; /* force logos above text */
  }

  .logo-left img,
  .logo-right img {
    height: 55px; /* adjust size for mobile */
    max-width: 100px;
  }

  /* Headings scale down */
  .header-top h1 {
    font-size: 20px;
  }
  .header-top h2 {
    font-size: 10px;
  }
  .header-top h3 {
    font-size: 10px;
  }
  .header-top h4 {
    font-size: 10px;
  }
}



  /* ======================================================================  NAVBAR   =================================================================*/
        /* Navigation Styles */
nav {
  background: #1a5c9e;  /* your navbar color */
  color: white;
  font-family: Arial, sans-serif;

  position: sticky;
  top: 0;              /* stick at very top */
  z-index: 1000;       /* above other content */
}

/* Navbar container */
.main-nav {
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;       /* ✅ allow items to wrap into 2 rows */
  gap: 8px;              /* spacing */
  white-space: nowrap;
  max-width: 1000px;     /* keep nav centered on large screens */
  margin: auto;
}

/* Each nav item */
.nav-item {
  position: relative;
}

/* Main nav links */
.nav-item > a {
  
  display: block;
  padding: 10px 14px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s;
}

.nav-item > a:hover {
  background: #0f3b6b;
  border-radius: 4px;
}

/* Dropdown styling */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.dropdown a:last-child {
  border-bottom: none;
}

.dropdown a:hover {
  background: #f0f0f0;
  color: #1a5c9e;
}


/* Login dropdown wrapper */
.login-dropdown {
  position: relative;
  display: inline-block;
}

/* Login button style (same as other links) */
.login-dropdown > a {
  padding: 8px 12px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.3s;
}

.login-dropdown > a:hover {
  background: #0f3b6b;
  border-radius: 4px;
}

/* Dropdown menu */
.login-dropdown .dropdown {
  position: absolute;
  top: 100%;
  right: 0;                  /* align to right */
  min-width: 160px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: none;
  z-index: 999;
}

/* Dropdown links */
.login-dropdown .dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.login-dropdown .dropdown a:last-child {
  border-bottom: none;
}

.login-dropdown .dropdown a:hover {
  background: #f0f0f0;
  color: #1a5c9e;
}

/* Show dropdown on hover */
.login-dropdown:hover .dropdown {
  display: block;
}


/* ✅ Responsive: stack items on smaller screens */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;   /* stack links vertically */
    gap: 4px;
  }

  .nav-item > a {
    padding: 10px;
    text-align: center;
  }

  .dropdown {
    position: static;         /* dropdown flows inline */
    box-shadow: none;
    min-width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;            /* hidden by default */
  }

  .nav-item:hover .dropdown {
    display: block;           /* show when tapped */
  }
}



/* Responsive */
/* hamburger default hidden (desktop) */
.hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

/* hamburger bars */
.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--nav-text);
  transition: transform .25s ease, opacity .2s ease;
}

/* nav (desktop) */
.main-nav {
  
  display: flex;
}
.nav-list {
  
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-item a {
  
  color: var(--nav-text);
  text-decoration: none;
  padding: 8px 6px;
}

/* dropdown (desktop behavior) */
.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  background: white;
  color: #111;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  display: none;
  z-index: 1200;
  padding: 8px 0;
}
.has-dropdown:hover > .dropdown { display: block; }
.dropdown li { padding: 0; }
.dropdown a { display:block; padding: 8px 12px; color: inherit; }






/* ----------------------------
   Responsive / Mobile rules
   ---------------------------- */
@media (max-width: 768px) {
  .header-inner { align-items: center; }

  /* show hamburger */
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* transform hamburger when active */
  .hamburger.is-active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.is-active .bar:nth-child(2) { opacity: 0; transform: scaleX(.2); }
  .hamburger.is-active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* mobile nav: hidden by default */
  .main-nav {
    display: none;               /* hidden on mobile until activated */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-mobile-bg);
    color: var(--nav-mobile-text);
    z-index: 1100;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    padding: 12px 16px;
    flex-direction: column;
  }
  .main-nav.active { display: flex; }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-item a {
    padding: 12px 8px;
    color: var(--nav-mobile-text);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  /* mobile dropdowns: controlled via .open on parent */
  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    display: none; /* closed by default on mobile */
    padding-left: 12px;
    background: transparent;
  }
  .nav-item.open > .dropdown { display: block; }

  .caret { margin-left:6px; }
}

/* optional: prevent page scroll when menu open */
body.menu-open {
  overflow: hidden;
}



/*============================================================================== Content Styles =================================================================*/
        .most-searched {
            background-color: #f9f9f9;
            padding: 4px;
            border-radius: 9px;
            margin: 0px 0;
        }
        
        .most-searched h3 {
            margin-top: 0;
            color: #0066cc;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        
        .most-searched ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: space-around;
        }
        
        .most-searched li {
            padding: 5px 0;
        }
        
        .content-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .section {
            flex: 1;
            min-width: 300px;
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .section h2 {
            color: #0066cc;
            border-bottom: 2px solid #0066cc;
            padding-bottom: 10px;
            margin-top: 0;
        }
        
        .news-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ccc;
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .info-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        
        .info-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #ccc;
        }
        
        .info-list li:last-child {
            border-bottom: none;
        }
        
        .initiative {
            background-color: #e6f2ff;
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
        }
        
        hr {
            border: none;
            border-top: 2px solid #ddd;
            margin: 20px 0;
        }
        
        /* Footer */
        footer {
            background: #1a5c9e;
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-top: 30px;
        }
        
       /* Base nav */
/*====================================================================================== Base nav ================================ */
.nav {
  background: #003366;
  color: white;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  padding: 12px;
}

/* Main nav on desktop */
.main-nav {
  display: flex;
  gap: 10px;
}

/* Dropdown base */
.dropdown {
  display: none;
  position: absolute;
  background: #fff;
  color: #333;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
}
.dropdown a {
  color: #333;
  padding: 10px 15px;
}
.nav-item {
  position: relative;
}
.nav-item:hover > .dropdown {
  display: block; /* desktop hover */
}

/* Sub-dropdown arrow */
.sub-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sub-dropdown .dropdown {
  left: 100%;
  top: 0;
}

/* ---------- Mobile (≤768px) ---------- */
/* === MOBILE STYLES === */
@media (max-width: 768px) {
  .container {
    position: relative; /* Needed for absolute positioning of nav */
  }

  .hamburger {
    display: block;
    margin-left: auto;   /* pushes it to the right */
    cursor: pointer;
    z-index: 1100;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;    /* directly below navbar */
    right: 0;     /* aligned with hamburger */
    width: 450px; /* adjust width */
    background: #003b75;
    padding: 10px 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  }

  .main-nav.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    background: #00488d;
    display: none;
    flex-direction: column;
  }

  .dropdown a {
    color: white;
    padding: 10px 20px;
  }

  .nav-item.open > .dropdown {
    display: flex;
  }

  .sub-dropdown .dropdown a {
    padding-left: 40px;
  }
}




/* ===========================================================================. Top Bar Styling  ================================================================================ */
.top-bar {
  background: #1a5c9e;
  color: white;
  font-size: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.separator {
  margin: 0 4px;
  color: rgba(255,255,255,0.6);
}

/* ===== Responsive Top Bar ===== */
@media (max-width: 768px) {
  .top-bar-container {
    display: flex;
    flex-direction: column;   /* stack items vertically */
    align-items: center;      /* center horizontally */
    justify-content: center;
    gap: 0px;                 /* space between rows */
    text-align: center;
    padding: 0px 0;
  }

  .right-links {
    display: flex;
    flex-wrap: wrap;          /* allow wrapping if many links */
    justify-content: center;
    gap: 0px;                 /* space between links */
  }

  .right-links a {
    margin: 0;
    display: inline-block;
    font-size: 10px;          /* smaller text for mobile */
    padding: 4px 6px;
  }
}






/* ======================================================================== Slider Styling ============================================================================== */
.slider {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin: 0 auto;
  border-bottom: 4px solid #1a5c9e;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  transition: opacity 1s ease;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: white;
  background: rgba(0,0,0,0.4);
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}

.slider-nav:hover {
  background: rgba(0,0,0,0.7);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots */
.slider-dots {
  text-align: center;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .active {
  background: #1a5c9e;
}




/* ============================================================================== News Ticker ============================================================================== */
.news-ticker {
  display: flex;
  align-items: center;
  background: #1a5c9e;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-top: 3px solid #004080;
  border-bottom: 3px solid #004080;
  overflow: hidden;
  position: relative;
}

/* .news-title {
  flex-shrink: 0;
  margin-right: 12px;
  background: #004080;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
} */
 .news-title {
  flex-shrink: 0;
  margin-right: 12px;
  background: #004080;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
  animation: blink 1s infinite; /* 🔴 Blinking animation */
}

/* 🔴 Blinking Effect */
@keyframes blink {
  0%   { background: #004080; color: white; }
  50%  { background: red; color: yellow; }
  100% { background: #004080; color: white; }
}

.news-content {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.news-items {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}

.news-items span {
  margin-right: 40px;
}

@keyframes ticker {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}




/*====================================================      social icon ==============================================================================================*/
.social-links-left {
  position: fixed;      /* stick to screen */
  top: 50%;             /* middle of screen */
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;  /* stack vertically */
  gap: 10px;               /* space between boxes */
  z-index: 9999;           /* on top of everything */
}

.social-links-left .social-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;            
  height: 40px;           
  background: transparent; /* transparent background */
  border-radius: 0 19px 19px 0; 
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
  border: 1px solid rgba(0,0,0,0.3); /* optional semi-transparent border */
}

/* Social media icon colors */
.social-links-left .instagram i { color: #E4405F; }
.social-links-left .twitter i   { color: #1DA1F2; }
.social-links-left .youtube i   { color: #FF0000; }
.social-links-left .facebook i  { color: #1877F2; }
.social-links-left .whatsapp i  { color: #25D366; }
.social-links-left .admission i { color: #FF8800; }

/* Hover effect - optional */
.social-links-left .social-box:hover {
  transform: translateX(5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.1); /* subtle hover */
}




/* ====== ====== ====== ====== ====== ====== ====== ====== GALLERY SECTION ====== ============================================================*/
/* ====== FULL SCREEN GALLERY HERO ====== */
.gallery-hero {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.gallery-hero-text h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1a5c9e;
}

.gallery-hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.gallery-hero-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-hero-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-hero-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.gallery-btn {
  margin-top: 30px;
}

.btn-more {
  display: inline-block;
  background: #1a5c9e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-more:hover {
  background: #ff8800;
  transform: translateY(-3px);
}


/* Lightbox overlay */
.lightbox {
  display: none; 
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

/* Full-size image */
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}


/* ============================================================        3 Button =========================================================================================*/
.search-buttons {
  display: flex;
  
  flex-wrap: wrap;
  justify-content: space-between; /* evenly fills row */
  gap: 0;                          /* remove gaps */
  width: 100%;
}

.search-btn {
  display: flex;           /* icon left, text right */
  align-items: center;
  width: 100%;             /* full screen width */
  height: 100px;           /* adjust height as needed */
  border-radius: 0;        /* edge-to-edge, no gaps */
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* for desktop - 3 buttons in a row */
@media (min-width: 768px) {
  .search-btn {
    flex: 1;           /* distribute evenly */
    height: 150px;
  }
}

/* Icon section 20% */
.search-btn i {
  width: 40%;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text section 80% */
.search-btn span {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15px;
  text-align: left;
}

.search-btn span small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Hover effect */
.search-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Individual card colors */
.search-btn.glimpses { background: #e4405f; } /* pink/red */
.search-btn.sss      { background: #1da1f2; } /* blue */
.search-btn.lab      { background: #ff8800; } /* orange */






/* ========================================================. Card Wrapper ========================================================================*/


.notice-card {
  max-width: 400px;
  margin: 20px auto;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e6ed;
}

/* Title */
.notice-card h2 {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
  color: #1e3a8a;
}





/* ============================================================ Notice list======================================================================== */
/* Grid layout for cards */


.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* 2 equal columns */
  grid-template-rows: repeat(2, 1fr);     /* 2 equal rows */
  gap: 20px;
  
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}
/* Card base */
.cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* 2 equal columns */
  grid-template-rows: repeat(2, 1fr);     /* 2 equal rows */
  gap: 20px;
  height: 100vh;  /* full screen height */
  padding: 20px;
  box-sizing: border-box;
}

/* Make each card fill its grid cell */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  border: 1px solid #e0e6ed;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;   /* 🔑 ensures equal height */
  overflow: hidden;
}

/* Scrollable area takes available space */
.scroll-box {
  flex: 1;        /* fills remaining space */
  overflow-y: auto;
  padding: 10px;
}


/* Card Header */
.card h2 {
  font-size: 18px;
  margin: 0;
  padding: 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #1e3a8a, #3182ce); /* default blue */
}

/* Each card custom header color */
.notice-card h2 {
  background: linear-gradient(90deg, #b30000, #ff4d4d); /* red */
}

.card:nth-child(2) h2 {
  background: linear-gradient(90deg, #065f46, #10b981); /* green */
}

.card:nth-child(3) h2 {
  background: linear-gradient(90deg, #92400e, #f59e0b); /* amber */
}

.card:nth-child(4) h2 {
  background: linear-gradient(90deg, #1e3a8a, #2563eb); /* blue */
}

/* Scrollable content */
.scroll-box {
  flex: 1; /* fill remaining space */
  overflow-y: auto;
  padding: 10px;
}

.notice-list {
  padding: 10px;
  list-style: none;
  margin: 0;
}

.notice-list li {
  padding: 6px 8px;
  margin-bottom: 6px;
  background: #f9fafc;
  border-radius: 6px;
  font-size: 14px;
}

.notice-list li:hover {
  background: #eef4ff;
}

/* Highlighted text */
.highlight {
  font-weight: 700;
  background: linear-gradient(45deg, #ff4d4d, #b30000);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

  .highlight-year {
    color: #d7141e;      /* Blue color */
    font-weight: bold;   /* Bold */
    background: #e6f0ff; /* Light blue background */
    padding: 2px 4px;
    border-radius: 4px;
  }

/* View All button */
.view-all-container {
  text-align: center;
  padding: 10px;
}

.view-all-btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #3182ce, #1e4e8c);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.view-all-btn:hover {
  background: linear-gradient(45deg, #ff4d4d, #b30000);
  transform: translateY(-2px);
}

/* Scrollbar styling */
.scroll-box::-webkit-scrollbar {
  width: 6px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background: #3182ce;
  border-radius: 6px;
}
.scroll-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}


/* Mobile (max 768px) → 1 column (stacked cards) */
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;   /* single column */
    grid-template-rows: auto;     /* rows adjust automatically */
    width: 100%;                  /* full width */
    height: 100vh;                /* lock container to viewport height */
    padding: 10px;
    overflow-y: auto;             /* 🔑 enable vertical scroll inside */
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }

  .card {
    height: 500px;   /* cards expand with content */
  }
}






/* ============================================================================ footer ==============================================================================  */
.footer {
  background: linear-gradient(90deg, #002a5c, #065888);
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 300px;
}

.footer-col h3, .footer-col h4 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffdd00;
}

.footer-col p {
  margin: 5px 0;
  font-size: 14px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  background: #ff8800;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #ffdd00;
  color: #003366;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 13px;
}








/*================================================================= Font size controls (A- / A / A+) ==============================================================================*/
.left-tools {
  display: flex;
  align-items: center;
  gap: 3px;
 
  padding: 5px 10px;
  font-size: 14px;
 
}
.left-tools a {
  text-decoration: none;
  color: #002a5c;
  font-weight: bold;
  font-size: 13px;              /* 👈 slightly smaller text */
  padding: 3px 6px;             /* 👈 smaller padding */
  border-radius: 4px;           /* 👈 less rounded */
  border: 1px solid #002a5c;
  background: white;
  display: inline-block;
  min-width: 18px;              /* 👈 tighter width */
  text-align: center;
  line-height: 1.2;
}

.left-tools a:hover,
.left-tools a:focus {
  background: #002a5c;
  color: white;
}


.separator {
  color: #666;
}

/* Skip link: visible only when focused */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 5px;
  background: yellow;
  color: black;
  font-weight: bold;
}

/************************ my css start ***************************/

.memberimg img{
  	min-height: 100%;
	height: 340px;
}
/******************** my css end **************************************/