* {
	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;
  text-align: center;
}

.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);
}
.logo-right{
  text-align: right;
}
/* ✅ 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;
  color: #fff;
}

/* 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: #800000;
  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;
}


/* Responsive Enhancements */
@media (max-width: 992px) {
  .slider {
    max-height: 400px;
  }

  .slide img {
    height: 400px;
  }

  .slider-nav {
    font-size: 26px;
    padding: 6px 12px;
  }
}

@media (max-width: 600px) {
  .slider {
    max-height: 280px;
  }

  .slide img {
    height: 280px;
  }

  .slider-nav {
    font-size: 22px;
    padding: 5px 10px;
  }

  .slider-dots span {
    width: 10px;
    height: 10px;
  }
}

/* Extra safety for very small screens */
@media (max-width: 400px) {
  .slider {
    max-height: 220px;
  }

  .slide img {
    height: 220px;
  }
}


/* c2130a */

/* ============================================================================== News Ticker ============================================================================== */
.news-ticker {
  display: flex;
  align-items: center;
  background: #4B2E2B;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-top: 3px solid #4B2E2B;
  border-bottom: 3px solid #4B2E2B;
  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: rgb(32, 188, 79); 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: linear-gradient(135deg, #f3f4f8, #f3f4f8);
}

.gallery-hero-text h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #800000;
}

.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: #800000;
  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: #e21037; } /* pink/red */
.search-btn.sss      { background: #0e91e2; } /* 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(90deg, #8e0e00 0%, #c2130a 50%, #e53935 100%);

  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: #800000;

  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: #3c2102;
  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;
}

.headcls h2{
  	color: #da251c !important;
	background-color: #edecec !important;
	border-left: 4px solid #da251c !important;
	border-right: none;
	border-top: none;
	border-bottom: none;
}

.cntclass li{border-bottom: none !important;}

.cntclass li span{
  	background: #1a5c9e;
	color: #fff;
	font-weight: bold;
	font-size: 17px;
  padding: 13px
}
 .cntclass li i{
	color: #1a5c9e;
	font-size: 15px;
	margin-right: 10px;

 }

 .aboutmember div{display: inline-block;}

  .aboutmember div img{
    	width: 100%;
	max-width: 157px;
  border-radius: 15px;
  }

  .pillerimg{
    text-align: center;
  }

  .pillerimg img{
    max-width: 150px;
    width: 100%;
    border-radius:10px;
  }

  .pillerheade h5{
    	color: #da251c;
	margin-bottom: 10px;
	margin-top: 13px;
  }

  .aboutmember h6{
    color: #000;
	font-size: 15px;
	font-weight: bold;
	padding-top: 15px;
  }

  .pillerimg h6{
     color: #000;
	font-size: 15px;
	font-weight: bold;
	padding-top: 15px;
  }

  /************************** gllery start ********************/

#demo {
  height:100%;
  position:relative;
  overflow:hidden;
}


.green{
  background-color:#6fb936;
}
        .thumb{
            margin-bottom: 30px;
        }
        
        .page-top{
            margin-top:85px;
        }

   
img.zoom {
    width: 100%;
    height: 200px;
    border-radius:5px;
    object-fit:cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}
        
 
.transition {
    -webkit-transform: scale(1.2); 
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
    .modal-header {
   
     border-bottom: none;
}
    .modal-title {
        color:#000;
    }
    .modal-footer{
      display:none;  
    }
.faculty{
  text-align: center;
}

.faculty img{}

.faculty h6{}
  /*********************** gallery end *************************/
/********************* card designs start *******************/

.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  background-color: #f7f5ec;
  text-align: center;
  overflow: hidden;
  position: relative;
  	text-align: center;
	align-items: center;
	border-radius: 15px !important;
}

.our-team .picture {
  display: inline-block;
  height: 130px;
  width: 130px;
  margin-bottom: 30px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #D8261C;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}
.team-content h3{
  text-decoration: none;
	font-size: 20px;
  	font-weight: bold;
}
.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #D8261C;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: #333;
  text-transform: capitalize;
  	font-weight: bold;
    margin-bottom: 0;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #D8261C;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
  overflow: hidden;
	width: 100%;
  padding: 7px;
	color: #fff;
  	font-size: 14px;
	font-weight: bold;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: white;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: #fff;
  background-color:unset;
}

.our-team a{
  color:#1a5c9e;
  text-decoration: none;
}

.ourteamcls{
  text-decoration: none;
}
/******************** cards design end ********************/


/******************* teaching faculty start *******************/

.sample_container {      
        margin: auto;
        min-height: auto;
    }
    /* Card Customizations */
    .e-custom-card {
        position: relative;
        margin-top: 80px;
        overflow: visible;
        border-radius: 15px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
        transition: 0.2s;
        border-width: 1px;
        padding: 1px;
    }
    .e-custom-card.e-card:hover {
        border-width: 1px;
        padding: 1px;
    }
    .e-custom-card :nth-child(2) .e-card-header-title.name {
        margin-top: 20px;
    }
    .sample_container p.avatar-content {
        line-height: 20px;
        font-family: inherit;
    }
    .e-custom-card .e-card-header {
        text-align: center;
    }
    .e-custom-card .e-avatar {
        font-size: 40px;
        position: absolute;
        top: calc(0% - 1.5em);
        left: calc(50% - 1.5em);
        border-radius: 50%;
    }
    .e-avatar img{border-radius: 50%;;	border: 2px solid #1a5c9e;
	padding: 2px;}
  
    body.bootstrap-dark .e-custom-card .avatar-content {
        color: #ffffff;
    }
        .e-card.e-custom-card :nth-child(3) {
         	height: auto;
	margin-bottom: 0;
  color: #000;
	font-size: 13px;
        }
    .e-custom-card.e-card .e-card-header .e-card-header-caption .e-card-header-title {
        font-size:17px;
        font-weight: 500;
        line-height: normal;
        color: rgb(26 92 158);
        text-shadow: 0 0 0.1px;
    }
    .e-custom-card.e-card .e-card-header .e-card-header-caption .e-card-sub-title {
        font-size: 12px;
        font-weight: 500;
        line-height: normal;
        color: rgba(86, 90, 97, 0.65);
        text-shadow: 0 0 0.1px;
    }
    .e-custom-card.e-card .e-card-content {
        overflow: visible;
        width: auto;
        margin: -5px 20px 0 20px;
        word-spacing: 1px;
    }
    .avatar-content {
        color: rgba(250, 200, 130, 0.6);
        margin: 0 auto;
        text-align: center;
        color: rgb(94, 94, 94);
        border: none;
        padding: 0;
        font-size: 14px;
    }
    .avatar-content {
        margin-bottom: 0;
    }
    .sample_container .name {
        margin-top: 10px;
    }
    
    .e-card-header-caption{
      	padding: 42px;
	padding-bottom: 12px;
  	padding-left: 10px;
	padding-right: 10px;
    }

    .e-card-header-caption{}

    .e-card-header-caption ul{	padding-left: 0!important; }
    .e-card-header-caption a{text-decoration: none; color: #1a5c9e;}
    .e-card-header-caption ul li{
      list-style: none;
	display: inline;
	font-size: 12px;
  color: #1a5c9e;
    }
/****************** teaching faculty end **********************/
.about-dept-section {
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 700;
    color: #1a5c9e;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: #1a5c9e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-card {
    border: none;
    border-radius: 12px;
}

.dept-title {
    font-weight: 600;
    color: #212529;
}

.about-card p {
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

.convener-box {
    border-top: 1px solid #e9ecef;
    padding-top: 12px;
}

.convener-name {
    font-weight: 600;
    color: #212529;
}
/******************** my css end **************************************/
  /* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  background: #7f0505; 
  font-family: Arial, sans-serif;
}

/* ===== LINKS ===== */
nav a {
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  display: block;
  cursor: pointer;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 24px;
  padding: 14px;
  color: white;
  cursor: pointer;
}

/* ===== MAIN NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
}

/* ===== NAV ITEM ===== */
.nav-item {
  position: relative;
}

/* ===== DROPDOWN ===== */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.dropdown a {
  color: #333;
  padding: 10px 16px;
}

/* ===== OPEN STATE (CLICK BASED) ===== */
.nav-item.open > .dropdown {
  display: block;
}

/* ===== SUB NAV ITEM ===== */
.sub-nav-item {
  position: relative;
}

/* ===== SUB DROPDOWN ===== */
.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* sub dropdown links */
.sub-dropdown a {
  color: #333;
  padding: 10px 16px;
}

/* open sub dropdown */
.sub-nav-item.open > .sub-dropdown {
  display: block;
}

/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 768px) {

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #003b75;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-item,
  .sub-nav-item {
    width: 100%;
  }

  nav a {
    padding: 12px 20px;
  }

  /* dropdown stacked */
  .dropdown,
  .sub-dropdown {
    position: static;
    background: #00488d;
    box-shadow: none;
  }

  .dropdown a,
  .sub-dropdown a {
    color: white;
  }

  /* indent sub dropdown */
  .sub-dropdown a {
    padding-left: 40px;
  }

  /* open on click */
  .nav-item.open > .dropdown {
    display: block;
  }

  .sub-nav-item.open > .sub-dropdown {
    display: block;
  }
}

    /* ===== RESET & BASE ===== */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: Arial, sans-serif; }
    
    /* Top Bar Styles */
    .top-bar { background: #800000; border-bottom: 1px solid #ddd; padding: 5px 0; font-size: 14px; }
    .top-bar-container { display: flex; justify-content: space-between; align-items: center; }
    .separator { margin: 0 8px; color: #ccc; }
    .right-links { display: flex; align-items: center; gap: 15px; }
    .login-dropdown { position: relative; }
    .login-dropdown .dropdown { display: none; position: absolute; top: 100%; right: 0; background: white; border: 1px solid #ddd; z-index: 2000; min-width: 150px; }
    .login-dropdown:hover .dropdown { display: block; }
    .login-dropdown .dropdown a { display: block; padding: 8px 15px; color: #333; text-decoration: none; border-bottom: 1px solid #eee; }

  /* ===== UPDATED HEADER & LOGO RESPONSIVENESS ===== */
header { 
    padding: 15px 0; 
    background: #fff; 
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* On Desktop: Logos are side-by-side with text */
.logo-left, .logo-right { 
    flex: 0 0 15%; 
    text-align: center;
}

.logo-left img, .logo-right img { 
    max-width: 50%; /* Changed from 50% to 100% of their container */
    height: auto;
    display: inline-block;
}

.header-text {
    flex: 0 0 65%;
    text-align: center;
}
/* Tablets */
@media (max-width: 768px) {
    .logo-left img,
    .logo-right img {
        max-width: 150%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-left img,
    .logo-right img {
        max-width: 150%;
    }
}

/* Mobile Responsive Adjustments (Phones) */
@media (max-width: 768px) {
    header { padding: 10px 0; }
    
    .header-row {
        flex-wrap: wrap; /* Allows logos to stack or move if needed */
    }

    /* Make logos slightly larger on mobile */
    .logo-left, .logo-right { 
        flex: 0 0 20%; 
    }
    
    .header-text { 
        flex: 0 0 60%; 
    }

    .header-text h1 {
        font-size: 1.1rem !important; /* Shrink title text so it fits */
    }
    
    .header-text h3 {
        font-size: 0.8rem !important;
    }
}

/* Extra Small Devices (Very small phones) */
@media (max-width: 480px) {
    .logo-left, .logo-right {
        flex: 0 0 25%;
    }
    .header-text {
        flex: 0 0 50%;
    }
}
    

/* Tablet and Mobile (Screens smaller than 992px) */
@media (max-width: 992px) {
    .header-top h3 {
        font-size: 0.9rem !important; /* Smaller but still readable */
        margin-bottom: 5px !important;
        line-height: 1.3;
    }
}

/* Phones (Screens smaller than 768px) */
@media (max-width: 768px) {
    .header-top h3 {
        font-size: 0.75rem !important; /* Significant reduction for phone layouts */
        margin-bottom: 2px !important;
        font-weight: normal; /* Less "heavy" look helps readability at small sizes */
        letter-spacing: 0.2px;
    }
}

/* Very Small Phones (Screens smaller than 480px) */
@media (max-width: 480px) {
    .header-top h3 {
        font-size: 0.65rem !important; /* Tiny font to ensure it fits between logos */
    }
}
    /* ===== NAVIGATION STYLES ===== */
/* ===== NAVIGATION STYLES ===== */
nav { 
  background: #800000; 
  /* 1. Make it Sticky */
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  
  /* 2. Increase Height */
  min-height: 50px; /* Adjust this value as needed */
  display: flex;
  align-items: center; 
}

.nav-container { 
  display: flex; 
  align-items: center; 
  width: 100%;
}

nav a { 
  color: white; 
  text-decoration: none; 
  /* 3. Increase padding for a taller feel */
  padding: 25px 20px; 
  display: block; 
  cursor: pointer; 
}

.main-nav { 
  display: flex; 
  align-items: center; 
  list-style: none; 
  width: 100%; 
}

.nav-item { position: relative; }

.hamburger { 
  display: none; 
  font-size: 24px; 
  padding: 14px; 
  color: white; 
  cursor: pointer; 
}

    /* Level 1 Dropdown */
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 250px;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      z-index: 999;
    }
    .dropdown a { color: #333 !important; border-bottom: 1px solid #eee; }
    .dropdown a:hover { background-color: #f8f8f8; }

    /* Level 2 Sub-Dropdown (Side Menu) */
    .has-submenu { position: relative; }
    .dropdown-side {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      min-width: 230px;
      background: #ffffff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Open States */
    .nav-item.open > .dropdown,
    .has-submenu.open > .dropdown-side {
      display: block;
    }

    .toggle-arrow { transition: transform 0.3s; margin-left: 5px; }
    .nav-item.open > a .toggle-arrow,
    .has-submenu.open > a .toggle-arrow {
      transform: rotate(180deg);
    }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 992px) {
      .hamburger { display: block; }
      .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #7f0505;
      }
      .main-nav.active { display: flex; }
      
      .dropdown, .dropdown-side {
        position: static; 
        width: 100%;
        background: #D8261C;
        box-shadow: none;
      }
      .dropdown a, .dropdown-side a { color: white !important; padding-left: 30px; border-bottom: 1px solid #8b1010; }
      .dropdown-side a { padding-left: 50px; }
      .nav-item { width: 100%; }
      .nav-item.open > a .toggle-arrow, .has-submenu.open > a .toggle-arrow { transform: rotate(90deg); }
    }

    /* SEO Optimization: Print Styles */
    @media print {
      .top-bar, nav, .hamburger, .login-dropdown {
        display: none !important;
      }
      header {
        padding: 10px 0;
        border-bottom: 2px solid #800000;
      }
      a {
        text-decoration: underline !important;
        color: #000 !important;
      }
    }

    /* SEO: Focus styles for accessibility */
    a:focus, button:focus, .nav-item a:focus {
      outline: 2px solid #ffcc00;
      outline-offset: 2px;
    }

    /* SEO: Better image rendering */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* SEO: Microdata hidden */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
	
	
	
:root {
   --primary-gradient: linear-gradient(135deg, #8b5c5c 0%, #5c4343 100%);

    --card-bg:  linear-gradient(135deg, #e7cdcd 0%, #b5a7a7 100%);
    --text-dark: #2d3436;
    --accent-color: #731989;
}

.team-section {
    background-color: #f9f9ff;
}

.team-anchor {
    text-decoration: none !important;
    display: block;
    width: 100%;
    max-width: 350px;
}

.premium-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    z-index: 1;
}

/* The Animated Background Circle */
.card-header-visual {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: 0.5s ease;
}

.profile-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    transition: 0.5s ease;
}

/* Typography */
.member-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.member-role {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* Button UI */
.btn-neo {
    display: inline-block;
    padding: 12px 28px;
    background: var(--card-bg);
    color: var(--text-dark);
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 5px 5px 15px #d1d9e6, -5px -5px 15px #ffffff;
    transition: 0.3s ease;
}

/* Hover Interactions */
.premium-card:hover {
    transform: translateY(-15px);
    background: var(--primary-gradient);
}

.premium-card:hover .member-name, 
.premium-card:hover .member-role {
    color: #fff;
}

.premium-card:hover .circle-bg {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.2;
    background: #fff;
}

.premium-card:hover .profile-img {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.2);
}

.premium-card:hover .btn-neo {
    background: #fff;
    color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .premium-card {
        margin-bottom: 20px;
    }
}


 .contact-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}
.info-banner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.banner-item {
    flex: 1;
    min-width: 250px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background-size: cover;
    background-position: center;
    /* This creates the color tint effect */
    background-blend-mode: multiply; 
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Individual Backgrounds & Colors */
.orange-bg { 
    background-color: rgba(243, 112, 33, 0.9); 
    background-image: url('../img/2.png'); 
}

.blue-bg { 
    background-color: rgba(68, 114, 196, 0.9); 
    background-image: url('../img/i6.jpg'); 
}

.pink-bg { 
    background-color: rgba(230, 46, 132, 0.9); 
    background-image: url('../img/3_2.jpeg'); 
}

.green-bg { 
    background-color: rgba(0, 166, 81, 0.9); 
    background-image: url('../img/3_1.jpeg'); 
}

/* Hover effect */
.banner-item:hover {
    filter: contrast(1.1) brightness(1.1);
}

/* Text & Icon Styles */
.icon { font-size: 45px; margin-right: 15px; }
.text { display: flex; flex-direction: column; line-height: 1.2; }
.text span { font-size: 1.1rem; }
.text strong { font-size: 1.9rem; font-weight: 800; }
.text .small-text { font-size: 1.4rem; margin-top: 5px; }

/* Responsive */
@media (max-width: 992px) {
    .banner-item { flex: 1 0 50%; } /* 2x2 grid */
}
@media (max-width: 600px) {
    .banner-item { flex: 1 0 100%; } /* Stacked */
}

:root {
    --primary-blue: #0074a2;
    --primary-green: #4caf50;
    --text-dark: #222;
    --text-gray: #555;
    --bg-light: #f8f9fa;
}

/* ================== Full-Width Welcome Section ================== */
.welcome-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f3f4f8, #f3f4f8);
    overflow: hidden;
}

/* Header */
.welcome-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.welcome-header h1 {
    font-size: 2.8rem;
    color: #800000;
    font-weight: 700;
}

.welcome-header h1 span {
    color: var(--primary-green);
}

.brush-underline {
    display: block;
    margin: -10px auto 0;
    width: 180px;
    animation: gentleBounce 3s infinite;
}

.arrow-sketch {
    position: absolute;
    right: 50px;
    top: -20px;
    width: 50px;
    opacity: 0.5;
}

/* Layout Grid */
.welcome-container {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.welcome-media img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Content Area */
.welcome-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.welcome-content p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 25px;
}

/* Buttons */
.btn-explore {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-explore i {
    margin-right: 10px;
}

.btn-explore:hover {
    background: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Collaboration Box */
.collab-box {
    margin-top: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.collab-item small {
    display: block;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 15px;
    text-align: center;
}

.collab-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.collab-item img {
    height: 50px;
    object-fit: contain;
}

.collab-divider {
    width: 1px;
    height: 80px;
    background: #ddd;
}

/* Gentle bounce for brush */
@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ================== Responsive Rules ================== */
@media (max-width: 1200px) {
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .welcome-header h1 {
        font-size: 2rem;
    }

    .btn-explore {
        padding: 10px 20px;
    }

    .collab-box {
        flex-direction: column;
        text-align: center;
    }

    .collab-divider {
        width: 80%;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .welcome-header h1 {
        font-size: 1.5rem;
    }

    .welcome-content h2 {
        font-size: 1.5rem;
    }
}


:root {
    --primary: #002e5b;
}

/* Layout */
.main-wrapper {
    padding: 50px 15px;
    font-family: 'Inter', system-ui, sans-serif;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: auto;
}

/* Card Base */
.feature-card {
    border-radius: 24px;
    padding: 35px 20px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* Icon */
.card-icon-box {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Headings */
.feature-card h3 {
    text-align: center;
    margin: 25px 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Scroll */
.content-scroll {
    height: 320px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Items */
.item-row {
    display: block;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: 0.3s;
}

.item-row:hover {
    transform: translateX(4px);
}

.year {
    background: #eef2f7;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Button */
.btn-pill {
    margin-top: auto;
    align-self: center;
    padding: 10px 30px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ================= THEMES – Darker Version ================= */

/* Notices – Darker Red */
.notice-theme {
    background: linear-gradient(135deg, #ffd6d6, #ffe6e6);
    border: 1px solid #fb0000;
}
.notice-theme .card-icon-box {
    background: linear-gradient(135deg, #f80000, #bc1616);
    color: #fff;
}

/* Events – Darker Blue */
.event-theme {
    background: linear-gradient(135deg, #cce6ff, #e6f4ff);
    border: 1px solid #339af0;
}
.event-theme .card-icon-box {
    background: linear-gradient(135deg, #0088f7, #146db7);
    color: #fff;
}

/* Achievements – Darker Green */
.medal-theme {
    background: linear-gradient(135deg, #d9fbd9, #e9fbe9);
    border: 1px solid #40c057;
}
.medal-theme .card-icon-box {
    background: linear-gradient(135deg, #0ae932, #22ad3a);
    color: #fff;
}

/* Downloads – Darker Orange */
.download-theme {
    background: linear-gradient(135deg, #ffe0cc, #fff1e6);
    border: 1px solid #ff922b;
}
.download-theme .card-icon-box {
    background: linear-gradient(135deg, #fc7a00, #bb7325);
    color: #fff;
}


/* Responsive */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

    :root {
            --navy: #002e5b;
            --green-light: #bd320b;
            --orange: #f37021;
            --purple: #9b59b6;
            --teal: #16a085;
            --gray-text: #666;
            --bg-light: #f8f9fa;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; }

        /* .awards-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        } */


        .awards-section {
          padding: 80px 20px;
          max-width: 1500px;
          margin: 0 auto;
          overflow: hidden;
          position: relative;
          border-radius: 20px;
          background: url('img/bgg10.png') no-repeat center center/cover;
}

        .main-title { text-align: center; margin-bottom: 60px; }
        .main-title h1 { color: var(--green-light); font-weight: 300; font-size: clamp(2rem, 5vw, 3.5rem); }
        .main-title h1 span { color: var(--navy); font-weight: 700; }
        .orange-dash { width: 60px; height: 5px; background: var(--orange); margin: 15px auto; border-radius: 10px; }

        /* Main Grid Layout */
        .awards-display {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 40px;
        }

        /* Awards Columns */
        .awards-left, .awards-right {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .award-item {
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s ease;
        }

        /* Desktop: Left side text is right-aligned to point toward center */
        .awards-left .award-item {
            text-align: right;
            flex-direction: row;
        }

        /* Desktop: Right side text is left-aligned */
        .awards-right .award-item {
            text-align: left;
            flex-direction: row-reverse;
        }

        .award-text h4 { font-weight: 700; color: #2c2c2c; margin-bottom: 5px; font-size: 1.1rem; }
        .award-text p { font-size: 0.9rem; color: var(--gray-text); }

        /* Icon Styling */
        .award-icon {
            min-width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 4px solid #fff;
            outline: 1px solid #eee;
            flex-shrink: 0;
        }

        .orange-icon { background: var(--orange); }
        .green-icon { background: var(--green-light); }
        .purple-icon { background: var(--purple); }
        .teal-icon { background: var(--teal); }

        /* Center Orbit Styling */
        .awards-center {
            position: relative;
            width: 320px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .circle-orbit {
            width: 100%;
            height: 100%;
            border: 2px dashed #ddd;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 25s linear infinite;
        }

        .center-logo {
            width: 160px;
            height: auto;
            z-index: 10;
            animation: counter-rotate 25s linear infinite;
        }

        /* Orbital Dots */
        .dot {
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .dot-1 { top: -9px; background: var(--orange); }
        .dot-2 { right: -9px; top: 50%; background: var(--green-light); }
        .dot-3 { bottom: -9px; left: 50%; background: var(--navy); }
        .dot-4 { left: -9px; top: 50%; background: var(--purple); }

        /* Animations */
        @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes counter-rotate { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .awards-display { gap: 20px; }
            .awards-center { width: 250px; height: 250px; }
            .center-logo { width: 120px; }
        }

        @media (max-width: 991px) {
            .awards-display {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .awards-center {
                grid-row: 1; /* Move logo to top on mobile if preferred, or remove this line to keep it in center */
                margin: 0 auto;
            }

            

            .awards-left, .awards-right {
                text-align: center !important;
                gap: 30px;
            }

            .award-item, .awards-right .award-item {
                flex-direction: column !important;
                text-align: center !important;
            }

            .award-text p { max-width: 100%; }
        }
		
		* {

    font-family: 'Montserrat', sans-serif;
}


.stories-container {
    display: flex;
    gap: 15px; /* The white gap between the two boxes */
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

.story-box {
    flex: 1;
    background-color: #aaca4f;
; /* The specific light green color */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.content {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between text and button */
}

/* Text Styling */
h2 {
    font-size: 2.2rem;
    color: #fdf7f7;
    font-weight: 400;
    letter-spacing: -1px;
}

h2 strong {
    font-weight: 700;
}

/* Button Styling */
.explore-btn {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: #333;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.explore-btn:hover {
    transform: translateY(-2px);
}

.explore-btn .arrow {
    margin-right: 10px;
    font-size: 1.2rem;
}

.explore-btn strong {
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stories-container {
        flex-direction: column;
    }
    h2 {
        font-size: 1.8rem;
    }
}

:root {
  --primary-green: #070201;
  --accent-blue: #0d47a1;
  --bg-color: #f9f9f9;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f3f4f8; }

.alumni-section { padding: 60px 20px; text-align: center; }

.header h2 { font-size: 3.5rem; color: #D8261C;
; margin-bottom: 10px; }
.header h2 span {
  color: var(--accent-blue);
  position: relative;
  font-weight: 700; /* makes it bold */
}

.header h2 span::after {
  content: ""; position: absolute; bottom: -5px; left: 0; width: 100%; height: 6px;

}

.header p { color: #666; max-width: 800px; margin: 0 auto 40px; line-height: 1.6; }

/* Swiper */
.swiper { padding: 20px 0; }
.swiper-wrapper { align-items: stretch; }

/* Alumni Card */
.alumni-card {
 background: linear-gradient(135deg, #e7cdcd 0%, #b5a7a7 100%);

color: #b71c1c;
 border-radius: 20px; padding: 30px 20px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  border: 1px solid #bcafaf; text-align: center; transition: transform 0.3s;
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%;
}
.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-box img {
  width: 100px; height: 100px; border-radius: 50% ;
  object-fit: cover; margin-bottom: 15px; border: 3px solid #f0f0f0;
}

.alumni-card h3 { color: #0f7a2c; font-weight: 600; margin: 10px 0 5px; font-size: 1.25rem; }
.school-year { font-size: 0.9rem; color: #000000; font-weight: 600; margin-bottom: 15px; }

hr { border: none; border-top: 1px solid #1b0303; margin: 20px 0; }

.details { text-align: left; font-size: 0.85rem; color: #000000; font-weight: 600; }
.details p { margin: 8px 0; display: flex; align-items: flex-start; gap: 10px; }
.details i { color: #000000; margin-top: 3px; }

/* Navigation Buttons */
.swiper-button-next, .swiper-button-prev {
  color: #333 !important;  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px; font-weight: bold; }

/* Pagination bullets (optional) */
.swiper-pagination {
  bottom: 10px;
}

@media (max-width: 1024px) {
  .header h2 { font-size: 2rem; }
  .alumni-card { padding: 25px 15px; }
}

@media (max-width: 768px) {
  .swiper { padding: 20px 0; }
  .header h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .header h2 { font-size: 1.5rem; }
  .alumni-card { padding: 20px 15px; min-height: 360px; }
}

.header1 h2 { font-size: 3.5rem; color: #D8261C; margin-bottom: 10px; }
.header1 h2 span {
  color: var(--accent-blue);
  position: relative;
  font-weight: 700; /* makes it bold */
}

.header1 h2 span::after {
  content: ""; position: absolute; bottom: -5px; left: 0; width: 100%; height: 6px;

}
.header1 {
  text-align: center;
}

:root {
  --primary-blue: #003366;
  --accent-green: #85200b;
  --accent-orange: #ffcc00;
}


.section-title {
  text-align: center;
  font-size: 3.5rem;
  color: var(--accent-green);
  margin-bottom: 40px;
  text-transform: capitalize;
}

.section-title span {
  color: var(--primary-blue);
  position: relative;
  font-weight: 700;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;

  border-radius: 10px;
}


/* Grid Layout */
.activity-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* Large item spans 2 columns equivalent */
  grid-template-rows: auto auto;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}



.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 250px;
}

/* Make the first card large */
.activity-card.feature {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 100%; /* Stretches to fill both rows */
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Bottom Overlay Bar */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7); /* Dark semi-transparent bar */
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-overlay h3 {
  color: white;
  margin: 0;
  font-size: 0.95rem;
  font-weight: bold;
}

.read-more {
  background-color: var(--accent-orange);
  color: #000;
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
}

.read-more:hover {
  background-color: #e6b800;
}

/* Responsive for Mobile */
@media (max-width: 900px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .activity-card.feature {
    grid-row: auto;
    height: 300px;
  }
}