/* Base Styles */
:root {
  --primary-color: #1a365d; /* Deep Blue */
  --secondary-color: #f6ad55; /* Warm Orange/Gold */
  --accent-color: #ed8936;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info span {
  margin-right: 15px;
  display: inline-block;
}

.top-info i {
  margin-right: 6px;
  color: var(--secondary-color);
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.top-btn {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.top-btn:hover {
  background-color: rgba(255,255,255,0.2);
}

.top-btn.highlight {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 600;
}

.top-btn.highlight:hover {
  background-color: var(--white);
}

/* Header Main */
.header-main {
  background-color: var(--white);
  padding: 20px 0;
  border-bottom: 2px solid var(--primary-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box img {
  height: 100px;
  width: auto;
}

@media (max-width: 900px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .right-box { display: none; }
  .hindi-title { font-size: 1.8rem !important; }
  .english-title { font-size: 1.4rem !important; }
}

/* Navbar */
.navbar {
  background-color: var(--primary-color);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.nav-links {
  display: flex;
  gap: 0;
  justify-content: center;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 500;
  color: #e2e8f0;
  padding: 15px 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.1);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
  border-top: 3px solid var(--secondary-color);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid #edf2f7;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: #f7fafc;
  color: var(--secondary-color);
  padding-left: 25px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  padding: 15px 0;
}

/* Responsive Navbar & Topbar */
@media (max-width: 1250px) {
  .nav-link {
    padding: 15px 8px;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .nav-link {
    padding: 12px 6px;
    font-size: 0.8rem;
  }
  .hindi-title { font-size: 2rem !important; }
  .english-title { font-size: 1.8rem !important; }
}

@media (max-width: 900px) {
  .top-bar {
    display: block;
    padding: 10px 0;
  }
  
  .top-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hide-mobile {
    display: none !important;
  }
  
  .top-info, .top-actions {
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
  }
  
  .top-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  
  .menu-toggle {
    display: block;
    width: 100%;
    text-align: left;
  }
  
  .navbar .container {
    justify-content: flex-start;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    justify-content: space-between;
    width: 100%;
    white-space: normal;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: var(--white);
    border-top: none;
  }
  
  .nav-item.active .dropdown-menu {
    display: block;
  }
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.slide-overlay h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideUp 0.8s ease forwards;
}

.slide-overlay p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  animation: slideUp 1s ease forwards;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 6px rgba(246, 173, 85, 0.4);
  animation: slideUp 1.2s ease forwards;
}

.btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(237, 137, 54, 0.4);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.management-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.mgmt-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary-color);
  text-align: center;
  transition: var(--transition);
}

.mgmt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mgmt-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-light);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7fafc;
}

.mgmt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mgmt-img i {
  font-size: 3rem;
  color: var(--text-light);
}

.mgmt-card h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.mgmt-card span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-slider { height: 400px; }
  .slide-overlay h2 { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .management-cards { grid-template-columns: 1fr; }
}

/* News Marquee Section */
.news-section {
  padding: 12px 0;
  background-color: var(--primary-color);
  color: var(--white);
  border-bottom: 3px solid var(--secondary-color);
  border-top: 3px solid var(--secondary-color);
}

.news-container {
  display: flex;
  align-items: center;
}

.news-label {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 15px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  margin-right: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.news-marquee {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.news-marquee p {
  margin: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-size: 1rem;
  font-weight: 500;
}

.news-marquee p:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .news-label {
    text-align: center;
    justify-content: center;
    margin-right: 0;
  }
  .news-marquee p {
    font-size: 0.9rem;
  }
}

/* Courses Section */
.courses-sec {
  background-color: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.course-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
  border-radius: 10px;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.course-card:hover::before {
  height: 100%;
}

.course-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(246, 173, 85, 0.2);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.course-card:hover .course-icon {
  background-color: var(--white);
  color: var(--primary-color);
}

.course-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: var(--transition);
}

.course-card:hover h3, 
.course-card:hover .course-subjects li {
  color: var(--white);
}

.course-subjects {
  text-align: left;
  margin-top: 20px;
}

.course-subjects li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.course-subjects li i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.course-card:hover .course-subjects li {
  border-color: rgba(255,255,255,0.1);
}

.course-card:hover .course-subjects li i {
  color: var(--secondary-color);
}

/* Leadership Section */
.leadership-sec {
  background-color: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.leader-card {
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.leader-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #edf2f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader-img i {
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.leader-info {
  padding: 15px 12px;
  border-top: 4px solid var(--secondary-color);
}

.leader-info h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.leader-info .position {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.leader-info .bio {
  color: var(--text-light);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 850px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .leadership-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 54, 93, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--secondary-color);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================
   INNER PAGE STYLES
   ============================ */

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 60%, #1a365d 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
  opacity: 0.6;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: slideUp 0.6s ease forwards;
}

.page-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  animation: slideUp 0.8s ease forwards;
}

.page-banner .breadcrumb {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  animation: slideUp 1s ease forwards;
}

.page-banner .breadcrumb a {
  color: var(--secondary-color);
}

.page-banner .breadcrumb a:hover {
  color: var(--white);
}

.page-banner .breadcrumb span {
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .page-banner { padding: 40px 0 35px; }
  .page-banner h1 { font-size: 2rem; }
  .page-banner p { font-size: 1rem; }
}

/* Inner Content Section */
.inner-content {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.content-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  border-top: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.content-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.content-card h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #edf2f7;
  position: relative;
}

.content-card h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.content-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin: 25px 0 12px;
}

.content-card p {
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Committee Table */
.committee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 25px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.committee-table thead th {
  background: linear-gradient(135deg, var(--primary-color), #2c5282);
  color: var(--white);
  padding: 15px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  white-space: nowrap;
}

.committee-table tbody tr {
  transition: var(--transition);
}

.committee-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.committee-table tbody tr:hover {
  background-color: #edf2f7;
  transform: scale(1.005);
}

.committee-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.committee-table td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  width: 60px;
}

.committee-table td a {
  color: var(--secondary-color);
  font-weight: 500;
}

.committee-table td a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .committee-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .committee-table thead th {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  .committee-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .content-card {
    padding: 25px 18px;
  }
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-left: 5px solid var(--secondary-color);
  padding: 25px 30px;
  border-radius: 0 10px 10px 0;
  margin: 25px 0;
}

.info-box h4 {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box p {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 0.98rem;
}

/* Contact Cards Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.contact-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact-card p, .contact-card a {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .submit-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--primary-color), #2c5282);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .submit-btn:hover {
  background: linear-gradient(135deg, #2c5282, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 54, 93, 0.3);
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Fee Structure Cards */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.fee-card {
  background: linear-gradient(135deg, var(--white), #f7fafc);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 0;
  background: linear-gradient(135deg, var(--primary-color), #2c5282);
  transition: var(--transition);
  z-index: 0;
}

.fee-card:hover::before {
  height: 100%;
}

.fee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.fee-card * {
  position: relative;
  z-index: 1;
}

.fee-card .fee-icon {
  width: 70px;
  height: 70px;
  background: rgba(246, 173, 85, 0.2);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.fee-card:hover .fee-icon {
  background: var(--white);
  color: var(--primary-color);
}

.fee-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.fee-card:hover h3 {
  color: var(--white);
}

.fee-card .fee-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  transition: var(--transition);
}

.fee-card:hover .fee-amount {
  color: var(--secondary-color);
}

.fee-card .fee-period {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}

.fee-card:hover .fee-period {
  color: rgba(255,255,255,0.8);
}

/* Notice Board */
.notice-list {
  list-style: none;
  padding: 0;
}

.notice-item {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border-left: 5px solid var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.notice-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transform: translateX(5px);
}

.notice-date {
  background: linear-gradient(135deg, var(--primary-color), #2c5282);
  color: var(--white);
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  min-width: 70px;
}

.notice-date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.notice-date .month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.notice-content h4 {
  color: var(--primary-color);
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.notice-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* RTI Info Cards */
.rti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.rti-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.rti-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.rti-card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rti-card h3 i {
  color: var(--secondary-color);
  font-size: 1.3rem;
}

.rti-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.rti-card a {
  color: var(--secondary-color);
  font-weight: 600;
}

.rti-card a:hover {
  color: var(--accent-color);
}

/* Vision Mission Cards */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 25px 0;
}

.vm-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.vm-card:nth-child(1) { border-top-color: #3182ce; }
.vm-card:nth-child(2) { border-top-color: var(--secondary-color); }

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vm-card .vm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
}

.vm-card:nth-child(1) .vm-icon {
  background: rgba(49, 130, 206, 0.15);
  color: #3182ce;
}

.vm-card:nth-child(2) .vm-icon {
  background: rgba(246, 173, 85, 0.2);
  color: var(--secondary-color);
}

.vm-card h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  border: none;
}

.vm-card h2::after { display: none; }

.vm-card p, .vm-card li {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.vm-card ul {
  text-align: left;
  padding-left: 0;
}

.vm-card ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vm-card ul li i {
  color: var(--accent-color);
  margin-top: 5px;
}

/* Leader Detail Page */
.leader-detail {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.leader-detail-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.leader-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.leader-detail-content h2 {
  border: none;
}

.leader-detail-content h2::after { display: none; }

.leader-detail-content .leader-role {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 768px) {
  .leader-detail {
    grid-template-columns: 1fr;
  }
  .leader-detail-img {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Highlight List */
.highlight-list {
  list-style: none;
  padding: 0;
}

.highlight-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.highlight-list li i {
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* News & Leadership Two-Column Section */
.two-col-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}

/* News List */
.news-col {
  display: flex;
  flex-direction: column;
}

/* News Col Inner Wrapper for strict height matching */
.news-col-inner {
  position: relative;
  flex-grow: 1;
}

/* News Box Wrapper */
.news-box-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08); /* Stronger premium shadow */
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  border-top: 5px solid var(--secondary-color);
  background-image: linear-gradient(180deg, #ffffff 0%, #fcfdfd 100%);
}

@media (max-width: 992px) {
  .news-col-inner {
    height: 450px;
    flex: none;
    margin-bottom: 20px;
  }
  .news-col {
    margin-bottom: 30px;
  }
}

.news-marquee-vertical {
  height: 100%;
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Add padding to prevent shadow clipping inside marquee */
  padding: 5px 5px 20px 5px; 
}

.news-item-card {
  background: var(--bg-light); /* subtly grey to pop against white wrapper */
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--secondary-color);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: var(--transition);
  cursor: pointer;
}

.news-item-card:hover {
  background: var(--white);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left-color: var(--primary-color);
}

.news-item-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.5;
}

.news-date {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-date i {
  color: var(--secondary-color);
}

/* Featured Leaders */
.featured-leaders {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-leader-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.featured-leader-card .leader-title-top {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.fl-img-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.fl-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
}

.featured-leader-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.featured-leader-card p.position {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline.red {
  border-color: #e53e3e;
  color: #e53e3e;
}
.fl-img-wrapper.red {
  background: linear-gradient(135deg, #e53e3e, #c53030);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-outline.red:hover {
  background-color: #e53e3e;
  color: var(--white);
}
