/* ============================================
   GOOGLE FONTS & IMPORTS
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, transparent, #f97316, transparent);
  border-radius: 2px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #f97316;
  border: 2px solid #f97316;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: #f97316;
  color: white;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

/* ============================================
   TOP STRIP
   ============================================ */
.top-strip {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.top-strip-left {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.top-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-strip-item svg {
  width: 16px;
  height: 16px;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.social-icons svg {
  .top-actions a i {
    margin-right: 8px;
    font-size: 1rem;
    line-height: 1;
  }
  width: 16px;
  height: 16px;
}

/* Top-strip action buttons (replace social icons) */
.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.15s ease;
}

.top-actions a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .top-actions {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .top-actions a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: white;
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  width: 150px;
  height: 150px;
  /* background: linear-gradient(135deg, #f97316, #ea580c); */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.college-info h1 {
  font-size: 2rem;
  color: #1a1a1a;
  /* margin-bottom: 5px; */
}

.college-info h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 8px;
}

.college-info .affiliation {
  color: #f97316;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 20px;
}

.college-info .address {
  color: #666;
  font-size: 0.9rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
}

.nav-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #222;
}

.mobile-menu {
  display: none;
}

/* Dropdown (desktop) */
.dropdown {
  position: relative;
}

.dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.dropdown .caret {
  font-size: 0.8rem;
  line-height: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  display: none;
  z-index: 200;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #111;
}

/* show on hover for desktop */
.dropdown:hover .dropdown-menu {
  display: block;
}

.nav-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #222;
}

/* Ensure dropdown menu links stay dark even though .nav-menu a sets links to white */
.nav-menu .dropdown-menu a {
  color: #1a1a1a;
}

/* Stronger selector in case of specificity/cascade issues */
.navbar .nav-menu .dropdown-menu a {
  color: #222 !important;
}

/* Prevent desktop nav items from wrapping into two lines */
.nav-menu {
  flex-wrap: nowrap;
  align-items: center;
}

.nav-menu a,
.nav-menu .dropdown-toggle,
.nav-menu .nav-link {
  white-space: nowrap;
}

/* Mobile dropdown inside mobile-menu */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown .mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #333;
  font-weight: 600;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
}

.mobile-submenu a {
  padding: 12px 36px;
  border-bottom: 1px solid #e5e7eb;
  color: #333;
}

/* Make mobile dropdown submenu background slightly different for clarity */
.mobile-submenu {
  background: #f3f4f6; /* subtle light gray */
}

.mobile-dropdown .mobile-submenu a {
  background: transparent;
}

.mobile-dropdown .mobile-dropdown-toggle {
  background: #fff; /* keep the toggle row white for contrast */
}

.mobile-submenu a:hover {
  background: #fff;
  color: #f97316;
}

.mobile-dropdown.open .mobile-submenu {
  display: flex;
}

/* Make hamburger bars white on gradient navbar for visibility */
.hamburger span {
  background: #fff;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   SLIDER
   ============================================ */
.slider {
  position: relative;
  width: 100%;
  height: 650px; /* increased from 500px */
  overflow: hidden;
  background: #000;
}

.slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider-item.active {
  opacity: 1;
}

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

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slider-content h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
  animation: fadeInUp 0.8s ease;
}

.slider-content p {
  font-size: 1.3rem;
  font-weight: 500;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.about-section {
  background: #f9fafb;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ABOUT PAGE: layout for text + photo */
.about-photo {
  /* larger photo on desktop */
  flex: 0 0 520px;
  max-width: 520px;
  min-width: 260px;
  text-align: center;
}
.about-photo img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-row {
    flex-direction: column-reverse; /* image below text on small screens */
    gap: 18px;
  }
  .about-photo {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }
  .about-text {
    flex: 1 1 100%;
  }
}

/* ============================================
   MISSION & VISION PAGE STYLES
   ============================================ */
.mv-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-section {
  display: flex;
}

.mv-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #f97316;
}

.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.mv-card h2 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 1.8rem;
  position: relative;
}

.mv-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 1rem;
}

.mv-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mv-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mv-card {
    padding: 30px 20px;
  }

  .mv-card h2 {
    font-size: 1.5rem;
  }
}
.ar-content {
  max-width: 1000px;
  margin: 0 auto;
}

.ar-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.ar-table-container {
  overflow-x: auto;
  margin-bottom: 40px;
}

.ar-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ar-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.ar-table th,
.ar-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.ar-table th {
  font-weight: 600;
  font-size: 1rem;
}

.ar-table td {
  font-size: 0.95rem;
}

.ar-table tbody tr:hover {
  background: #f9fafb;
}

.ar-table tbody tr:last-child td {
  border-bottom: none;
}

.view-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #f97316;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.ar-note {
  background: #f9fafb;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f97316;
  text-align: center;
}

.ar-note p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
.idp-content {
  max-width: 1000px;
  margin: 0 auto;
}

.idp-intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.idp-goals h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.goal-section {
  background: #f9fafb;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #f97316;
  transition: transform 0.3s ease;
}

.goal-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.goal-section h3 {
  color: #f97316;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.goal-section ul {
  list-style: none;
  padding: 0;
}

.goal-section li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  padding-left: 25px;
}

.goal-section li:before {
  content: "✓";
  color: #f97316;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

.goal-section li:last-child {
  border-bottom: none;
}

.idp-contact {
  text-align: center;
  margin-top: 60px;
}

.idp-contact h2 {
  margin-bottom: 30px;
}

.idp-contact .contact-details {
  display: inline-block;
  text-align: left;
  background: #f9fafb;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f97316;
}
.affiliation-points {
  margin: 20px 0;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.point-icon {
  color: #f97316;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 20px;
}

.contact-details {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #f97316;
}

.contact-details p {
  margin: 8px 0;
  line-height: 1.6;
}

.contact-details a {
  color: #f97316;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}
.news-section {
  background: white;
}

.marquee-container {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: white;
  padding: 20px 0;
  overflow: hidden;
  border-radius: 8px;
}

.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 50px;
}

.marquee-item {
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-content {
  padding: 20px;
}

.news-card-date {
  color: #f97316;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.news-card-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   LEADERSHIP TEAM SECTION
   ============================================ */
.leadership-section {
  background: #f9fafb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.team-member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #f97316;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ensure inline SVG user-icon fills the circular container */
.team-member-image svg.user-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.team-member-position {
  color: #f97316;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member-bio {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #f97316;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* ============================================
   COURSES SECTION
   ============================================ */
.courses-section {
  background: #f9fafb;
}

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

.course-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.course-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.course-header {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 30px;
  text-align: center;
}

.course-header h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
}

.course-body {
  padding: 25px;
}

.course-body p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.course-details {
  list-style: none;
  margin: 20px 0;
}

.course-details li {
  padding: 8px 0;
  color: #666;
  border-bottom: 1px solid #e5e7eb;
}

.course-details li:last-child {
  border-bottom: none;
}

.course-details li::before {
  content: "✓ ";
  color: #f97316;
  font-weight: bold;
  margin-right: 8px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 250px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay-icon {
  color: white;
  font-size: 2rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #f97316;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f97316;
  margin-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .top-strip-content {
    flex-direction: column;
    gap: 15px;
    align-items: center; /* center phone/email and actions */
  }

  .top-strip-left {
    flex-direction: column;
    gap: 10px;
    width: auto;
    align-items: center; /* center left-side items */
  }

  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .college-info h1 {
    font-size: 1.5rem;
  }

  .college-info h2 {
    font-size: 1.3rem;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    flex-direction: column;
    gap: 0;
    padding: 0;
    z-index: 99;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
    color: #333;
    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: white;
    color: #f97316;
  }

  /* center the top-actions buttons on mobile */
  .top-actions {
    justify-content: center;
  }

  .slider {
    height: 380px; /* increased for tablet/mobile-large */
  }

  .slider-content h2 {
    font-size: 1.8rem;
  }

  .slider-content p {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    height: 300px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-item {
    height: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-padding {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .top-strip-item {
    font-size: 0.85rem;
  }

  .college-info h1 {
    font-size: 1.2rem;
  }

  .college-info h2 {
    font-size: 1rem;
  }

  .logo {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .slider {
    height: 300px; /* increased for small phones */
  }

  .slider-content h2 {
    font-size: 1.3rem;
  }

  .slider-content p {
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .team-member {
    padding: 20px;
  }

  .team-member-image {
    width: 120px;
    height: 120px;
  }

  .course-header h3 {
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 180px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
.contact-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 1.2rem;
}

/* ============================================
   FOUNDER MESSAGE STYLES
   ============================================ */
.founder-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.founder-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.founder-hero p {
  font-size: 1.2rem;
}

.founder-content {
  padding: 60px 0;
}

.founder-message {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.founder-row {
  display: flex;
  align-items: center;
  min-height: 500px;
}

.founder-text {
  flex: 1;
  padding: 50px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.founder-text h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}

.founder-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.founder-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.founder-signature {
  margin-top: 30px;
  font-weight: 600;
  color: #1a1a1a;
  font-style: italic;
}

.founder-photo {
  flex: 0 0 400px;
  height: 500px;
  background: linear-gradient(135deg, #3e4b58, #1a202c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(249, 115, 22, 0.2);
  margin: 20px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.1);
}

.founder-photo:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

.founder-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15) 0%,
    rgba(234, 88, 12, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.founder-photo:hover::before {
  opacity: 1;
}

.founder-photo .photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(249, 115, 22, 0.5);
}

.founder-photo:hover .photo-overlay {
  transform: translateY(0);
}

.founder-photo .photo-overlay h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.founder-photo .photo-overlay p {
  margin: 8px 0 0 0;
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .founder-hero h1 {
    font-size: 2rem;
  }

  .founder-row {
    flex-direction: column;
    min-height: auto;
  }

  .founder-text {
    padding: 30px;
    order: 2;
  }

  .founder-photo {
    flex: 1;
    height: 300px;
    order: 1;
    margin: 15px;
    border-radius: 12px;
  }

  .founder-text h2 {
    font-size: 2rem;
  }

  .founder-text p {
    font-size: 1rem;
  }
}

/* ============================================
   MANAGER MESSAGE STYLES
   ============================================ */
.manager-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.manager-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.manager-hero p {
  font-size: 1.2rem;
}

.manager-content {
  padding: 60px 0;
}

.manager-message {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.manager-row {
  display: flex;
  align-items: center;
  min-height: 500px;
}

.manager-text {
  flex: 1;
  padding: 50px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.manager-text h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}

.manager-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.manager-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.manager-signature {
  margin-top: 30px;
  font-weight: 600;
  color: #1a1a1a;
  font-style: italic;
}

.manager-photo {
  flex: 0 0 400px;
  height: 500px;
  background: linear-gradient(135deg, #3e4b58, #1a202c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(249, 115, 22, 0.2);
  margin: 20px;
}

.manager-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.1);
}

.manager-photo:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

.manager-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15) 0%,
    rgba(234, 88, 12, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.manager-photo:hover::before {
  opacity: 1;
}

.manager-photo .photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(249, 115, 22, 0.5);
}

.manager-photo:hover .photo-overlay {
  transform: translateY(0);
}

.manager-photo .photo-overlay h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.manager-photo .photo-overlay p {
  margin: 8px 0 0 0;
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .manager-hero h1 {
    font-size: 2rem;
  }

  .manager-row {
    flex-direction: column;
    min-height: auto;
  }

  .manager-text {
    padding: 30px;
    order: 2;
  }

  .manager-photo {
    flex: 1;
    height: 300px;
    order: 1;
    margin: 15px;
    border-radius: 12px;
  }

  .manager-text h2 {
    font-size: 2rem;
  }

  .manager-text p {
    font-size: 1rem;
  }
}

/* ============================================
   FEE REFUND POLICY STYLES
   ============================================ */
.refund-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.refund-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.refund-hero p {
  font-size: 1.2rem;
}

.refund-intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.refund-section {
  margin-bottom: 60px;
}

.refund-table-container {
  overflow-x: auto;
  margin: 30px 0;
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.refund-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.refund-table th,
.refund-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.refund-table th {
  font-weight: 600;
  font-size: 1.1rem;
}

.refund-table td {
  font-size: 1rem;
}

.refund-table tbody tr:hover {
  background: #f9fafb;
}

.refund-table tbody tr:last-child td {
  border-bottom: none;
}

.refund-notes {
  background: #f9fafb;
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.refund-notes h2 {
  margin-bottom: 30px;
  color: #1a1a1a;
}

.notes-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.note-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #f97316;
}

.note-item p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.ugc-link {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ugc-link p {
  margin: 0;
  color: #555;
  font-size: 1rem;
}

.ugc-link a {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
}

.ugc-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .refund-hero h1 {
    font-size: 2rem;
  }

  .refund-intro {
    padding: 20px;
    font-size: 1rem;
  }

  .refund-table th,
  .refund-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .refund-notes {
    padding: 25px;
  }

  .notes-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .note-item {
    padding: 15px;
  }
}

/* ============================================
   PRINCIPAL MESSAGE STYLES
   ============================================ */
.principal-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.principal-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.principal-hero p {
  font-size: 1.2rem;
}

.principal-content {
  padding: 60px 0;
}

.principal-message {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.principal-row {
  display: flex;
  align-items: center;
  min-height: 500px;
}

.principal-text {
  flex: 1;
  padding: 50px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.principal-text h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}

.principal-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.principal-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.principal-signature {
  margin-top: 30px;
  font-weight: 600;
  color: #1a1a1a;
  font-style: italic;
}

.principal-icon {
  flex: 0 0 400px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px;
}

.icon-container {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.icon-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.icon-container:hover::before {
  opacity: 1;
  animation: shine 1.5s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.icon-container:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.icon-container i {
  font-size: 8rem;
  color: white;
  z-index: 2;
  transition: all 0.3s ease;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.icon-container:hover i {
  transform: scale(1.1);
  color: #fff;
}

.icon-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(249, 115, 22, 0.5);
  border-radius: 0 0 50% 50%;
}

.icon-container:hover .icon-overlay {
  transform: translateY(0);
}

.icon-overlay h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.icon-overlay p {
  margin: 8px 0 0 0;
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
}

@media (max-width: 768px) {
  .principal-hero h1 {
    font-size: 2rem;
  }

  .principal-row {
    flex-direction: column;
    min-height: auto;
  }

  .principal-text {
    padding: 30px;
    order: 2;
  }

  .principal-icon {
    flex: 1;
    height: 300px;
    order: 1;
    margin: 15px;
  }

  .icon-container {
    width: 250px;
    height: 250px;
  }

  .icon-container i {
    font-size: 6rem;
  }

  .principal-text h2 {
    font-size: 2rem;
  }

  .principal-text p {
    font-size: 1rem;
  }
}

/* ============================================
   COLLEGE STAFF STYLES
   ============================================ */
.staff-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.staff-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.staff-hero p {
  font-size: 1.2rem;
}

.staff-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.staff-section {
  margin-bottom: 60px;
}

.section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

/* ADMINISTRATIVE STAFF GRID */
.admin-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.staff-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
}

.staff-icon {
  height: 120px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.staff-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.staff-card:hover .staff-icon::before {
  opacity: 1;
  animation: shine 1.5s ease-in-out;
}

.staff-icon i {
  font-size: 3rem;
  color: white;
  z-index: 2;
  transition: transform 0.3s ease;
}

.staff-card:hover .staff-icon i {
  transform: scale(1.1);
}

.staff-info {
  padding: 25px;
  text-align: center;
}

.staff-info h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 700;
}

.designation {
  color: #f97316;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-info i {
  color: #f97316;
  width: 16px;
}

/* FACULTY TABLE */
.faculty-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.faculty-table {
  width: 100%;
  border-collapse: collapse;
}

.faculty-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.faculty-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faculty-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
  color: #4a5568;
}

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

.faculty-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.faculty-table tbody tr:last-child td {
  border-bottom: none;
}

.empty-row {
  text-align: center !important;
  font-style: italic;
  color: #6b7280 !important;
}

.coming-soon {
  color: #9ca3af;
  font-size: 0.9rem;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .admin-staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .staff-hero h1 {
    font-size: 2rem;
  }

  .admin-staff-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .staff-card {
    margin: 0 10px;
  }

  .faculty-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .faculty-table {
    min-width: 600px;
  }

  .faculty-table th,
  .faculty-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .staff-info {
    padding: 20px;
  }

  .staff-info h3 {
    font-size: 1.2rem;
  }
}

/* ============================================
   SEXUAL HARASSMENT COMMITTEE STYLES
   ============================================ */
.shc-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.shc-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.shc-hero p {
  font-size: 1.2rem;
}

.shc-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.shc-section {
  margin-bottom: 60px;
}

.shc-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.shc-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.shc-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

/* COMMITTEE TABLE */
.committee-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 40px;
}

.committee-table {
  width: 100%;
  border-collapse: collapse;
}

.committee-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.committee-table th {
  padding: 20px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.committee-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4a5568;
}

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

.committee-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.committee-table tbody tr:last-child td {
  border-bottom: none;
}

.committee-table td:first-child {
  font-weight: 600;
  color: #f97316;
  text-align: center;
  width: 50px;
}

/* Highlight Name and Email columns */
.committee-table td:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(
    90deg,
    rgba(249, 115, 22, 0.05),
    rgba(249, 115, 22, 0.02)
  );
}

.committee-table td:nth-child(6) {
  font-weight: 500;
  color: #2563eb;
  font-family: "Courier New", monospace;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.05),
    rgba(37, 99, 235, 0.02)
  );
}

.committee-table td:nth-child(6):hover {
  background: rgba(37, 99, 235, 0.1);
  cursor: pointer;
}

/* COMPLAINT INFO */
.complaint-info {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 5px solid #f97316;
}

.complaint-info p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.6;
}

.complaint-list {
  list-style: none;
  padding: 0;
}

.complaint-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #4a5568;
  line-height: 1.6;
}

.complaint-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #f97316;
  font-weight: bold;
  font-size: 1.2rem;
}

/* COMPLAINT METHODS */
.complaint-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.complaint-method {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.complaint-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.method-icon {
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.method-content {
  padding: 25px;
}

.method-content h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.method-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .shc-hero h1 {
    font-size: 2rem;
  }

  .shc-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .shc-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .committee-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .committee-table {
    min-width: 800px;
  }

  .committee-table th,
  .committee-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .complaint-info {
    padding: 20px;
    margin: 0 10px 30px 10px;
  }

  .complaint-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 10px;
  }

  .complaint-method {
    margin: 0;
  }
}

/* ============================================
   ANTI-RAGGING COMMITTEE STYLES
   ============================================ */
.arc-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.arc-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.arc-hero p {
  font-size: 1.2rem;
}

.arc-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.arc-section {
  margin-bottom: 60px;
}

.arc-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.arc-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.arc-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

/* Reuse committee table styles */
.arc-section .committee-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 40px;
}

.arc-section .committee-table {
  width: 100%;
  border-collapse: collapse;
}

.arc-section .committee-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.arc-section .committee-table th {
  padding: 20px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arc-section .committee-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4a5568;
}

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

.arc-section .committee-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.arc-section .committee-table tbody tr:last-child td {
  border-bottom: none;
}

.arc-section .committee-table td:first-child {
  font-weight: 600;
  color: #f97316;
  text-align: center;
  width: 50px;
}

/* Highlight Name and Email columns */
.arc-section .committee-table td:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(
    90deg,
    rgba(249, 115, 22, 0.05),
    rgba(249, 115, 22, 0.02)
  );
}

.arc-section .committee-table td:nth-child(5) {
  font-weight: 500;
  color: #2563eb;
  font-family: "Courier New", monospace;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.05),
    rgba(37, 99, 235, 0.02)
  );
}

.arc-section .committee-table td:nth-child(5):hover {
  background: rgba(37, 99, 235, 0.1);
  cursor: pointer;
}

/* Reuse complaint info styles */
.arc-section .complaint-info {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 5px solid #f97316;
}

.arc-section .complaint-info p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.6;
}

.arc-section .complaint-list {
  list-style: none;
  padding: 0;
}

.arc-section .complaint-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #4a5568;
  line-height: 1.6;
}

.arc-section .complaint-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #f97316;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Reuse complaint methods styles */
.arc-section .complaint-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.arc-section .complaint-method {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.arc-section .complaint-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.arc-section .method-icon {
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.arc-section .method-content {
  padding: 25px;
}

.arc-section .method-content h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.arc-section .method-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .arc-hero h1 {
    font-size: 2rem;
  }

  .arc-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .arc-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .arc-section .committee-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .arc-section .committee-table {
    min-width: 600px;
  }

  .arc-section .committee-table th,
  .arc-section .committee-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .arc-section .complaint-info {
    padding: 20px;
    margin: 0 10px 30px 10px;
  }

  .arc-section .complaint-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 10px;
  }

  .arc-section .complaint-method {
    margin: 0;
  }
}

/* ============================================
   GRIEVANCE REDRESSAL COMMITTEE STYLES
   ============================================ */
.grc-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.grc-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.grc-hero p {
  font-size: 1.2rem;
}

.grc-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.grc-section {
  margin-bottom: 60px;
}

.grc-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.grc-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.grc-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

/* Reuse committee table styles */
.grc-section .committee-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 40px;
}

.grc-section .committee-table {
  width: 100%;
  border-collapse: collapse;
}

.grc-section .committee-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.grc-section .committee-table th {
  padding: 20px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grc-section .committee-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4a5568;
}

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

.grc-section .committee-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.grc-section .committee-table tbody tr:last-child td {
  border-bottom: none;
}

.grc-section .committee-table td:first-child {
  font-weight: 600;
  color: #f97316;
  text-align: center;
  width: 50px;
}

/* Highlight Name and Email columns */
.grc-section .committee-table td:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(
    90deg,
    rgba(249, 115, 22, 0.05),
    rgba(249, 115, 22, 0.02)
  );
}

.grc-section .committee-table td:nth-child(5) {
  font-weight: 500;
  color: #2563eb;
  font-family: "Courier New", monospace;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.05),
    rgba(37, 99, 235, 0.02)
  );
}

.grc-section .committee-table td:nth-child(5):hover {
  background: rgba(37, 99, 235, 0.1);
  cursor: pointer;
}

/* FUNCTIONS LIST */
.functions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.function-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  padding: 20px;
}

.function-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.function-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.function-content p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
}

/* CONTACT METHODS */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.contact-method {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-method .method-icon {
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.contact-method .method-content {
  padding: 25px;
}

.contact-method .method-content h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-method .method-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .grc-hero h1 {
    font-size: 2rem;
  }

  .grc-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .grc-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .grc-section .committee-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .grc-section .committee-table {
    min-width: 700px;
  }

  .grc-section .committee-table th,
  .grc-section .committee-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .functions-list {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 10px;
  }

  .function-item {
    padding: 15px;
  }

  .function-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 15px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 10px;
  }

  .contact-method {
    margin: 0;
  }
}

/* ============================================
   INTERNAL COMPLAINTS COMMITTEE STYLES
   ============================================ */
.icc-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.icc-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.icc-hero p {
  font-size: 1.2rem;
}

.icc-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.icc-section {
  margin-bottom: 60px;
}

.icc-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.icc-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.icc-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

/* Reuse committee table styles */
.icc-section .committee-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 40px;
}

.icc-section .committee-table {
  width: 100%;
  border-collapse: collapse;
}

.icc-section .committee-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.icc-section .committee-table th {
  padding: 20px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.icc-section .committee-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4a5568;
}

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

.icc-section .committee-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.icc-section .committee-table tbody tr:last-child td {
  border-bottom: none;
}

.icc-section .committee-table td:first-child {
  font-weight: 600;
  color: #f97316;
  text-align: center;
  width: 50px;
}

/* Highlight Name and Email columns */
.icc-section .committee-table td:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(
    90deg,
    rgba(249, 115, 22, 0.05),
    rgba(249, 115, 22, 0.02)
  );
}

.icc-section .committee-table td:nth-child(6) {
  font-weight: 500;
  color: #2563eb;
  font-family: "Courier New", monospace;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.05),
    rgba(37, 99, 235, 0.02)
  );
}

.icc-section .committee-table td:nth-child(6):hover {
  background: rgba(37, 99, 235, 0.1);
  cursor: pointer;
}

/* PROCEDURE INFO */
.procedure-info {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 5px solid #f97316;
}

.procedure-info p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.6;
}

.procedure-list {
  list-style: none;
  padding: 0;
}

.procedure-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #4a5568;
  line-height: 1.6;
}

.procedure-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #f97316;
  font-weight: bold;
  font-size: 1.2rem;
}

/* PROCEDURE METHODS */
.procedure-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.procedure-method {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.procedure-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.procedure-method .method-icon {
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.procedure-method .method-content {
  padding: 25px;
}

.procedure-method .method-content h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.procedure-method .method-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .icc-hero h1 {
    font-size: 2rem;
  }

  .icc-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .icc-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .icc-section .committee-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .icc-section .committee-table {
    min-width: 600px;
  }

  .icc-section .committee-table th,
  .icc-section .committee-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .procedure-info {
    padding: 20px;
    margin: 0 10px 30px 10px;
  }

  .procedure-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 10px;
  }

  .procedure-method {
    margin: 0;
  }
}

/* ============================================
   SC/ST CELL STYLES
   ============================================ */
.scst-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.scst-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.scst-hero p {
  font-size: 1.2rem;
}

.scst-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.scst-section {
  margin-bottom: 60px;
}

.scst-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.scst-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.scst-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

/* Reuse committee table styles */
.scst-section .committee-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 40px;
}

.scst-section .committee-table {
  width: 100%;
  border-collapse: collapse;
}

.scst-section .committee-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.scst-section .committee-table th {
  padding: 20px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scst-section .committee-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
  color: #4a5568;
}

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

.scst-section .committee-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.scst-section .committee-table tbody tr:last-child td {
  border-bottom: none;
}

.scst-section .committee-table td:first-child {
  font-weight: 600;
  color: #f97316;
  text-align: center;
  width: 50px;
}

/* Highlight Name and Email columns */
.scst-section .committee-table td:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
  background: linear-gradient(
    90deg,
    rgba(249, 115, 22, 0.05),
    rgba(249, 115, 22, 0.02)
  );
}

.scst-section .committee-table td:nth-child(5) {
  font-weight: 500;
  color: #2563eb;
  font-family: "Courier New", monospace;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.05),
    rgba(37, 99, 235, 0.02)
  );
}

.scst-section .committee-table td:nth-child(5):hover {
  background: rgba(37, 99, 235, 0.1);
  cursor: pointer;
}

/* FUNCTIONS GRID */
.functions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.function-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.function-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.function-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.function-content p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CONTACT METHODS */
.scst-section .contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.scst-section .contact-method {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.scst-section .contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.scst-section .method-icon {
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.scst-section .method-content {
  padding: 25px;
}

.scst-section .method-content h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.scst-section .method-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .scst-hero h1 {
    font-size: 2rem;
  }

  .scst-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .scst-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .scst-section .committee-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .scst-section .committee-table {
    min-width: 700px;
  }

  .scst-section .committee-table th,
  .scst-section .committee-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .functions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 10px;
  }

  .function-card {
    padding: 15px;
  }

  .function-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    margin-right: 12px;
  }

  .scst-section .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 10px;
  }

  .scst-section .contact-method {
    margin: 0;
  }
}

/* ============================================
   COURSES STYLES
   ============================================ */
.courses-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.courses-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.courses-hero p {
  font-size: 1.2rem;
}

.courses-section {
  margin-bottom: 60px;
}

.courses-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.courses-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.courses-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.course-intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.course-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(249, 115, 22, 0.1);
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.course-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.course-card p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
  padding: 0 25px;
  margin-bottom: 25px;
  text-align: center;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.course-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.detail-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.detail-card h4 {
  color: #f97316;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.detail-card h4 i {
  font-size: 1.2rem;
}

.detail-card p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .courses-hero h1 {
    font-size: 2rem;
  }

  .courses-hero p {
    font-size: 1rem;
  }

  .courses-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .course-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0 10px;
  }

  .course-card {
    margin: 0;
  }

  .course-card h3 {
    font-size: 1.2rem;
  }

  .course-card p {
    padding: 0 20px;
    font-size: 0.9rem;
  }

  .course-details {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 10px;
  }

  .detail-card {
    padding: 20px;
  }

  .detail-card h4 {
    font-size: 1rem;
  }
}

/* ============================================
   COURSES TABLE STYLES
   ============================================ */
.courses-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 50px;
}

.courses-table {
  width: 100%;
  border-collapse: collapse;
}

.courses-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.courses-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.courses-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
  color: #4a5568;
}

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

.courses-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.courses-table tbody tr:last-child td {
  border-bottom: none;
}

.courses-table td:first-child {
  font-weight: 600;
  color: #f97316;
  text-align: center;
  width: 60px;
}

.courses-table td:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .courses-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .courses-table {
    min-width: 600px;
  }

  .courses-table th,
  .courses-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
}

/* ============================================
   TEACHING STAFF STYLES
   ============================================ */
.staff-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.staff-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.staff-hero p {
  font-size: 1.2rem;
}

.staff-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.staff-section {
  margin-bottom: 60px;
}

.staff-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.staff-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.staff-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.staff-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 40px;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
}

.staff-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.staff-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.staff-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
  color: #4a5568;
}

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

.staff-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.staff-table tbody tr:last-child td {
  border-bottom: none;
}

.staff-table td:first-child {
  font-weight: 600;
  color: #f97316;
  text-align: center;
  width: 60px;
}

.staff-table td:nth-child(2) {
  font-weight: 600;
  color: #1a1a1a;
}

.staff-table td:nth-child(3) {
  font-weight: 500;
  color: #2563eb;
}

.staff-table td:nth-child(4) {
  font-weight: 500;
  color: #059669;
}

@media (max-width: 768px) {
  .staff-hero h1 {
    font-size: 2rem;
  }

  .staff-hero p {
    font-size: 1rem;
  }

  .staff-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .staff-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .staff-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .staff-table {
    min-width: 700px;
  }

  .staff-table th,
  .staff-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }
}

/* ============================================
   COLLABORATIONS STYLES
   ============================================ */
.colab-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.colab-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.colab-hero p {
  font-size: 1.2rem;
}

.colab-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.colab-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.colab-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  border-left: 4px solid #f97316;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.colab-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.colab-item h3 {
  color: #f97316;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.colab-item p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* BENEFITS SECTION */
.benefits-section {
  margin-top: 60px;
}

.benefits-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.benefits-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.benefits-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin: 0 auto 15px;
}

.benefit-item h4 {
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-item p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .colab-hero h1 {
    font-size: 2rem;
  }

  .colab-hero p {
    font-size: 1rem;
  }

  .colab-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .colab-content {
    padding: 20px 0;
  }

  .colab-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .colab-item h3 {
    font-size: 1.1rem;
  }

  .colab-item p {
    font-size: 0.9rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 10px;
  }

  .benefit-item {
    padding: 20px;
  }
}

/* ============================================
   FEE STRUCTURE STYLES
   ============================================ */
.fee-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.fee-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.fee-hero p {
  font-size: 1.2rem;
}

.fee-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.fee-section {
  margin-bottom: 60px;
}

.fee-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.fee-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.fee-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.fee-description {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #4a5568;
}

.fee-table-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  margin-bottom: 40px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table thead {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
}

.fee-table th {
  padding: 20px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fee-table td {
  padding: 18px 15px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1rem;
  color: #4a5568;
}

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

.fee-table tbody tr:hover {
  background: rgba(249, 115, 22, 0.05);
  transition: background 0.3s ease;
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-table td:first-child {
  font-weight: 500;
  color: #1a1a1a;
}

.fee-table td:last-child {
  font-weight: 600;
  color: #f97316;
  text-align: right;
  font-family: "Courier New", monospace;
}

.total-row {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1),
    rgba(249, 115, 22, 0.05)
  ) !important;
  border-top: 2px solid #f97316 !important;
}

.total-row td {
  font-size: 1.1rem !important;
  padding: 20px 15px !important;
}

.total-row:hover {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15),
    rgba(249, 115, 22, 0.08)
  ) !important;
}

/* FEE NOTE */
.fee-note {
  margin-top: 50px;
}

.note-content {
  background: linear-gradient(135deg, #f9fafb, #e2e8f0);
  border-radius: 12px;
  padding: 30px;
  border-left: 4px solid #f97316;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.note-content h3 {
  color: #f97316;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-content h3 i {
  font-size: 1.2rem;
}

.note-content p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .fee-hero h1 {
    font-size: 2rem;
  }

  .fee-hero p {
    font-size: 1rem;
  }

  .fee-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .fee-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .fee-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .fee-table-container {
    margin: 0 10px;
    overflow-x: auto;
  }

  .fee-table {
    min-width: 400px;
  }

  .fee-table th,
  .fee-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .total-row td {
    font-size: 1rem !important;
    padding: 15px 10px !important;
  }

  .note-content {
    padding: 20px;
    margin: 0 10px;
  }

  .note-content h3 {
    font-size: 1.1rem;
  }

  .note-content p {
    font-size: 0.9rem;
  }
}

/* ============================================
   SPORTS PAGE STYLES
   ============================================ */
.sports-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.sports-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.sports-hero p {
  font-size: 1.2rem;
}

.sports-section {
  margin-bottom: 60px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
  transition: transform 0.3s ease;
}

.sports-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.sports-section .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sports-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.sports-content {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
}

.sports-content p {
  margin: 0;
}

@media (max-width: 768px) {
  .sports-hero h1 {
    font-size: 2rem;
  }

  .sports-hero p {
    font-size: 1rem;
  }

  .sports-section {
    padding: 25px;
    margin-bottom: 40px;
  }

  .sports-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sports-content {
    font-size: 1rem;
  }
}

/* ============================================
   NSS PAGE STYLES
   ============================================ */
.nss-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.nss-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.nss-hero p {
  font-size: 1.2rem;
}

.nss-section {
  margin-bottom: 60px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
  transition: transform 0.3s ease;
}

.nss-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.nss-section .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nss-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.nss-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.nss-image {
  text-align: center;
}

.nss-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.nss-text {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
}

.nss-text h3 {
  color: #f97316;
  margin: 25px 0 15px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.nss-text ul {
  margin: 15px 0;
  padding-left: 20px;
}

.nss-text li {
  margin-bottom: 8px;
  position: relative;
}

.nss-text li::before {
  content: "✓";
  color: #f97316;
  font-weight: bold;
  position: absolute;
  left: -20px;
  top: 0;
}

@media (max-width: 768px) {
  .nss-hero h1 {
    font-size: 2rem;
  }

  .nss-hero p {
    font-size: 1rem;
  }

  .nss-section {
    padding: 25px;
    margin-bottom: 40px;
  }

  .nss-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .nss-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .nss-image img {
    max-width: 300px;
  }

  .nss-text {
    font-size: 1rem;
  }

  .nss-text h3 {
    font-size: 1.1rem;
  }
}

/* ============================================
   TPC PAGE STYLES
   ============================================ */
.tpc-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.tpc-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.tpc-hero p {
  font-size: 1.2rem;
}

.tpc-intro {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.tpc-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: start;
}

.tpc-image {
  text-align: center;
}

.tpc-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.tpc-functions {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
}

.tpc-functions .section-heading {
  margin-bottom: 25px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tpc-functions .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.tpc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tpc-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  padding-left: 25px;
  color: #555;
  line-height: 1.6;
}

.tpc-list li::before {
  content: "•";
  color: #f97316;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 12px;
}

.tpc-list li:last-child {
  border-bottom: none;
}

.tpc-section {
  margin-bottom: 60px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
}

.tpc-section .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tpc-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.tpc-content {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.skill-item {
  background: #f9fafb;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: #f97316;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.skill-item i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f97316;
}

.skill-item:hover i {
  color: white;
}

.skill-item h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.tpc-vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.vision-card,
.mission-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #f97316;
  transition: transform 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.vision-card h3,
.mission-card h3 {
  color: #f97316;
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.vision-card h3 i,
.mission-card h3 i {
  font-size: 1.5rem;
}

.vision-card p,
.mission-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.tpc-contact {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
}

.tpc-contact .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tpc-contact .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #f97316;
}

.contact-item i {
  color: #f97316;
  font-size: 1.5rem;
  min-width: 20px;
}

.contact-item div {
  color: #555;
  line-height: 1.5;
}

.contact-item strong {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .tpc-hero h1 {
    font-size: 2rem;
  }

  .tpc-hero p {
    font-size: 1rem;
  }

  .tpc-intro {
    padding: 20px;
    font-size: 1rem;
  }

  .tpc-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tpc-functions {
    padding: 25px;
  }

  .tpc-section {
    padding: 25px;
    margin-bottom: 40px;
  }

  .skill-grid {
    grid-template-columns: 1fr;
  }

  .tpc-vision-mission {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vision-card,
  .mission-card {
    padding: 25px;
  }

  .tpc-contact {
    padding: 25px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HEALTH PAGE STYLES
   ============================================ */
.health-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.health-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.health-hero p {
  font-size: 1.2rem;
}

.health-facilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.facility-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f97316;
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.facility-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.facility-card h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.facility-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.emergency-contact {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #dc2626;
}

.emergency-contact .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.emergency-contact .section-heading i {
  color: #dc2626;
  font-size: 1.8rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fef2f2;
  border-radius: 8px;
  border-left: 4px solid #dc2626;
}

.contact-details .contact-item i {
  color: #dc2626;
  font-size: 1.5rem;
  min-width: 20px;
}

.contact-details .contact-item div {
  color: #555;
  line-height: 1.5;
}

.contact-details .contact-item strong {
  color: #1a1a1a;
}

.emergency-note {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #dc2626;
}

.emergency-note p {
  margin: 0;
  color: #991b1b;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .health-hero h1 {
    font-size: 2rem;
  }

  .health-hero p {
    font-size: 1rem;
  }

  .health-facilities {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .facility-card {
    padding: 25px;
  }

  .facility-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .emergency-contact {
    padding: 25px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-details .contact-item {
    padding: 15px;
  }
}

/* ============================================
   BUILDING PAGE STYLES
   ============================================ */
.building-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.building-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.building-hero p {
  font-size: 1.2rem;
}

.building-image-container {
  text-align: center;
  margin-bottom: 50px;
}

.building-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.building-image:hover {
  transform: scale(1.02);
}

.building-description {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
}

.building-description .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.building-description .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.building-description p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.building-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #f97316;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #f97316;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.feature-item i {
  color: #f97316;
  font-size: 1.5rem;
  min-width: 20px;
}

.feature-item:hover i {
  color: white;
}

.feature-item span {
  font-weight: 500;
  color: #1a1a1a;
}

.feature-item:hover span {
  color: white;
}

@media (max-width: 768px) {
  .building-hero h1 {
    font-size: 2rem;
  }

  .building-hero p {
    font-size: 1rem;
  }

  .building-image-container {
    margin-bottom: 30px;
  }

  .building-image {
    max-width: 100%;
  }

  .building-description {
    padding: 25px;
  }

  .building-description .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .building-features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    padding: 12px;
  }
}

/* ============================================
   GROUND PAGE STYLES
   ============================================ */
.ground-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.ground-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.ground-hero p {
  font-size: 1.2rem;
}

.ground-description {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.ground-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.ground-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.ground-image:hover {
  transform: scale(1.02);
}

.ground-features {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
}

.ground-features .section-heading {
  margin-bottom: 40px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ground-features .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

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

.feature-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-top: 4px solid #f97316;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: white;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.feature-card h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .ground-hero h1 {
    font-size: 2rem;
  }

  .ground-hero p {
    font-size: 1rem;
  }

  .ground-description {
    padding: 20px;
    font-size: 1rem;
  }

  .ground-image-container {
    margin-bottom: 30px;
  }

  .ground-image {
    max-width: 100%;
  }

  .ground-features {
    padding: 25px;
  }

  .ground-features .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ============================================
   COMPUTER LAB PAGE STYLES
   ============================================ */
.clab-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.clab-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.clab-hero p {
  font-size: 1.2rem;
}

.clab-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.clab-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.clab-image:hover {
  transform: scale(1.02);
}

.clab-description {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.clab-facilities {
  margin-bottom: 60px;
}

.clab-facilities .section-heading {
  margin-bottom: 40px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.clab-facilities .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

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

.facility-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f97316;
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.facility-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.facility-card h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.facility-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.lab-rules {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
}

.lab-rules .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.lab-rules .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

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

.rules-list h3 {
  color: #f97316;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.rules-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rules-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  padding-left: 20px;
  color: #555;
  line-height: 1.5;
}

.rules-list li::before {
  content: "•";
  color: #f97316;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

.rules-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .clab-hero h1 {
    font-size: 2rem;
  }

  .clab-hero p {
    font-size: 1rem;
  }

  .clab-image-container {
    margin-bottom: 30px;
  }

  .clab-image {
    max-width: 100%;
  }

  .clab-description {
    padding: 20px;
    font-size: 1rem;
  }

  .clab-facilities .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .facility-card {
    padding: 25px;
  }

  .facility-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .lab-rules {
    padding: 25px;
  }

  .rules-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================
   LIBRARY PAGE STYLES
   ============================================ */
.library-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.library-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.library-hero p {
  font-size: 1.2rem;
}

.library-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.library-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.library-image:hover {
  transform: scale(1.02);
}

.library-description {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.library-facilities {
  margin-bottom: 60px;
}

.library-facilities .section-heading {
  margin-bottom: 40px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.library-facilities .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

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

.facility-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #f97316;
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.facility-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.facility-card h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.facility-card p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.library-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.library-hours,
.library-rules {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #f97316;
}

.library-hours .section-heading,
.library-rules .section-heading {
  margin-bottom: 30px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 15px;
}

.library-hours .section-heading i,
.library-rules .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

.hours-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hours-item {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  color: #555;
  line-height: 1.5;
}

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

.hours-item strong {
  color: #1a1a1a;
}

.rules-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.rules-list h3 {
  color: #f97316;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.rules-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rules-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  padding-left: 20px;
  color: #555;
  line-height: 1.5;
}

.rules-list li::before {
  content: "•";
  color: #f97316;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

.rules-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .library-hero h1 {
    font-size: 2rem;
  }

  .library-hero p {
    font-size: 1rem;
  }

  .library-image-container {
    margin-bottom: 30px;
  }

  .library-image {
    max-width: 100%;
  }

  .library-description {
    padding: 20px;
    font-size: 1rem;
  }

  .library-facilities .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .facility-card {
    padding: 25px;
  }

  .facility-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .library-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .library-hours,
  .library-rules {
    padding: 25px;
  }

  .rules-content {
    gap: 20px;
  }
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */
.gallery-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.gallery-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.gallery-hero p {
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 2rem;
  }

  .gallery-hero p {
    font-size: 1rem;
  }

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

  .gallery-item {
    margin: 0 10px;
  }

  .gallery-image {
    height: 200px;
  }

  .gallery-overlay {
    padding: 15px;
  }

  .gallery-overlay h3 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }
}

/* ============================================
   RTI PAGE STYLES
   ============================================ */
.rti-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.rti-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.rti-hero p {
  font-size: 1.2rem;
}

.rti-description {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  background: #f9fafb;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.rti-description p {
  margin-bottom: 20px;
}

.rti-description p:last-child {
  margin-bottom: 0;
}

.rti-section {
  margin-bottom: 60px;
}

.rti-section .section-heading {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.rti-section .section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 2px;
}

.rti-section .section-heading i {
  color: #f97316;
  font-size: 1.8rem;
}

/* PIO CARD */
.pio-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.pio-info {
  padding: 40px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row strong {
  color: #1a1a1a;
  font-weight: 600;
  min-width: 120px;
}

.info-row span {
  color: #4a5568;
  text-align: right;
}

.info-row a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.info-row a:hover {
  text-decoration: underline;
}

/* RTI FORM */
.rti-form-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  padding: 40px;
}

.rti-form {
  max-width: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  background: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #f97316;
  margin-bottom: 30px;
}

.form-note p {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

.submit-btn {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.submit-btn i {
  font-size: 1rem;
}

/* CONTACT INFO CARD */
.contact-info-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.contact-details {
  padding: 40px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row i {
  color: #f97316;
  font-size: 1.5rem;
  margin-top: 5px;
  min-width: 25px;
}

.contact-row div {
  flex: 1;
}

.contact-row strong {
  color: #1a1a1a;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.contact-row p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
}

.contact-row a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.contact-row a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rti-hero h1 {
    font-size: 2rem;
  }

  .rti-hero p {
    font-size: 1rem;
  }

  .rti-description {
    padding: 20px;
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .rti-section .section-heading {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }

  .pio-info {
    padding: 25px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .info-row strong {
    min-width: auto;
  }

  .info-row span {
    text-align: left;
  }

  .rti-form-container {
    padding: 25px;
    margin: 0 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-details {
    padding: 25px;
  }

  .contact-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-row i {
    align-self: flex-start;
  }
}

/* ============================================
   NOTICES PAGE STYLES
   ============================================ */
.notices-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.notices-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.notices-hero p {
  font-size: 1.2rem;
}

.notices-container {
  margin-bottom: 60px;
}

.notice-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border-left: 4px solid #f97316;
  transition: all 0.3s ease;
}

.notice-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  gap: 20px;
}

.notice-text {
  flex: 1;
}

.notice-text p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
}

.notice-date {
  flex-shrink: 0;
  text-align: right;
}

.notice-date span {
  background: #f97316;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.notices-info {
  margin-top: 40px;
}

.info-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  border-left: 4px solid #f97316;
  text-align: center;
}

.info-card h3 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.info-card h3 i {
  color: #f97316;
}

.info-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .notices-hero h1 {
    font-size: 2rem;
  }

  .notices-hero p {
    font-size: 1rem;
  }

  .notice-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
  }

  .notice-text p {
    font-size: 0.95rem;
  }

  .notice-date {
    text-align: left;
  }

  .notice-date span {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .info-card {
    padding: 20px;
    margin: 0 10px;
  }

  .info-card h3 {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   UNIVERSITY PAGE STYLES
   ============================================ */
.univ-hero {
  background: linear-gradient(135deg, #3e4b58, #3e1601);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.univ-hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.univ-hero p {
  font-size: 1.2rem;
}

.univ-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.univ-main {
  flex: 1;
}

.univ-section {
  margin-bottom: 50px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-left: 4px solid #f97316;
}

.univ-section h2 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.univ-section h2 i {
  color: #f97316;
}

.univ-section p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.univ-image {
  text-align: center;
  margin: 30px 0;
}

.univ-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.affiliation-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #f97316;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-2px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.benefit-content p {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-details-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail i {
  color: #f97316;
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 20px;
}

.contact-detail strong {
  color: #1a1a1a;
  display: block;
  margin-bottom: 5px;
}

.contact-detail p {
  margin: 0;
  color: #4a5568;
  line-height: 1.5;
}

.contact-detail a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Sidebar Styles */
.univ-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
}

.sidebar-section h3 {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  margin: 0;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  border-bottom: 1px solid #f0f0f0;
}

.quick-links li:last-child {
  border-bottom: none;
}

.quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  background: #f8fafc;
  color: #f97316;
  padding-left: 25px;
}

.quick-links a i {
  font-size: 1rem;
  width: 16px;
}

.college-contact {
  padding: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: #f97316;
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 16px;
}

.contact-item span {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-item a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.download-links {
  padding: 20px;
}

.download-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #4a5568;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.download-link:last-child {
  border-bottom: none;
}

.download-link:hover {
  color: #f97316;
  padding-left: 10px;
}

.download-link i {
  font-size: 1rem;
  width: 16px;
}

@media (max-width: 1024px) {
  .univ-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .univ-sidebar {
    position: static;
  }

  .affiliation-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .univ-hero h1 {
    font-size: 2rem;
  }

  .univ-hero p {
    font-size: 1rem;
  }

  .univ-section {
    padding: 20px;
    margin-bottom: 30px;
  }

  .univ-section h2 {
    font-size: 1.5rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .benefit-icon {
    align-self: center;
  }

  .contact-detail {
    flex-direction: column;
    gap: 8px;
  }

  .contact-detail i {
    align-self: flex-start;
  }

  .sidebar-section h3 {
    font-size: 1.1rem;
    padding: 15px;
  }

  .quick-links a {
    padding: 12px 15px;
  }

  .college-contact {
    padding: 15px;
  }

  .download-links {
    padding: 15px;
  }
}
