/* Mandatory Disclosure Page Styles */
.page-header {
  background: #ffffff;
  padding: 30px 0 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eaeff5;
}

.page-header h1 {
  color: #1e3a8a;
  font-size: 2rem;
  margin: 0 0 5px 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.page-header h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3b82f6;
}

.breadcrumb {
  padding: 0;
  margin: 0;
  background: none;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #3b82f6;
}

.breadcrumb-item.active {
  color: #1e3a8a;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #94a3b8;
  padding: 0 10px;
  font-size: 0.9rem;
  font-weight: normal;
}

.disclosure-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 40px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

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

.document-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.document-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

.document-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
  font-size: 32px;
}

.document-card h3 {
  color: #1e40af;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.document-card p {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3b82f6;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-download:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.page-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.page-header h1 {
  color: #1e40af;
  font-size: 2.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 10px;
  color: #94a3b8;
}

.breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.section-title {
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  color: #1e40af;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.title-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .disclosure-section {
    padding: 25px 20px;
  }
}

/* Art & Craft Page Styles */
.art-craft-section {
  padding: 40px 0;
}

.art-craft-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.art-craft-feature {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.art-craft-feature .feature-image {
  flex: 1;
  min-width: 45%;
}

.art-craft-feature .feature-text {
  flex: 1;
}

.art-craft-feature img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.art-craft-feature img:hover {
  transform: translateY(-5px);
}

.materials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
  padding-left: 20px;
}

.materials-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.materials-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #3b82f6;
  position: absolute;
  left: 0;
  top: 2px;
}

.activities-section {
  margin: 40px 0;
}

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

.activity-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-color: #3b82f6;
}

.activity-card i {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
}

.activity-card h3 {
  color: #1e40af;
  margin: 15px 0 10px;
  font-size: 1.2rem;
}

.achievements-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  border-left: 5px solid #3b82f6;
}

.achievements-section h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

.section-title {
  color: #1e40af;
  margin-bottom: 25px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.section-title i {
  margin-right: 10px;
  color: #3b82f6;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #3b82f6;
  border-radius: 3px;
}

/* Mobile Navigation */
.navbar {
  /* position: relative; */
  background: #1a365d;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 30px;
  top: -75px;
  color: white;
  background-color: #1a365d;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

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

.nav-menu li {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  color: #333;
  padding: 12px 20px;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #1a365d;
  padding-left: 25px;
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
  .navbar {
    position: relative !important;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none !important;
    flex-direction: column;
    width: 100%;
    background: #1a365d;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li {
    width: 100%;
    text-align: left;
  }

  .nav-link {
    padding: 15px 25px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding-left: 15px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Enhanced Button Styles */
.btn-primary.large {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-secondary.large {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Key Features Section */
.key-features {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.feature-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.feature-card p {
  color: #64748b;
  margin-bottom: 20px;
}

.feature-link {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-link:hover {
  color: #d97706;
}

/* Quick Overview Section */
.quick-overview {
  padding: 60px 0;
  background: white;
}

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

.overview-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #cbd5e1;
  transition: transform 0.3s ease;
}

.overview-card:hover {
  transform: scale(1.05);
}

.overview-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.overview-card p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.overview-card .highlight {
  background: rgba(245, 158, 11, 0.2);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.overview-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Call to Action Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
}

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

.cta-main h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-main p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.info-item i {
  font-size: 1.2rem;
  color: #f59e0b;
}

.info-item span {
  font-weight: 500;
}

/* Modern Hero Banner Styles */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #1e3a8a;
  color: white;
  padding-bottom: 80px;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.hero-slide > * {
  position: relative;
  z-index: 2;
}

.hero-slide.slide-1 {
  background-image: url("images/school-building.jpg"),
    linear-gradient(
      135deg,
      rgba(30, 64, 175, 0.8) 0%,
      rgba(59, 130, 246, 0.7) 50%,
      rgba(96, 165, 250, 0.6) 100%
    );
  background-blend-mode: overlay;
}

.hero-slide.slide-2 {
  background-image: url("images/classroom.jpg"),
    linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.8) 0%,
      rgba(147, 51, 234, 0.7) 50%,
      rgba(168, 85, 247, 0.6) 100%
    );
  background-blend-mode: overlay;
}

.hero-slide.slide-3 {
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.8) 0%,
    rgba(16, 185, 129, 0.7) 50%,
    rgba(52, 211, 153, 0.6) 100%
  );
  background-blend-mode: overlay;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.prev {
  transform: translateX(-100%);
}

.hero-content {
  z-index: 2;
  color: white;
  max-width: 600px;
  animation: slideInLeft 1s ease-out 0.5s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-badge i {
  color: #f59e0b;
  font-size: 1.1rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-title .highlight {
  background: linear-gradient(45deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.hero-main-image {
  max-width: 100%;
  max-height: 80%;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  color: #f59e0b;
}

.card-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 25%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 20%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: rotate 20s linear infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  animation-duration: 25s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 40%;
  animation-duration: 30s;
  animation-direction: reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 8%;
  animation-duration: 20s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.hero-nav-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: all;
}

.hero-nav-btn:hover {
  background: rgba(245, 158, 11, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.hero-nav-btn.prev-btn {
  left: 30px;
}

.hero-nav-btn.next-btn {
  right: 30px;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: #f59e0b;
  border-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounceArrow 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(2px);
  }
}

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

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

/* About Section Styles */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: none !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 30px;
  position: relative;
}

.section-title i {
  color: #3b82f6;
  font-size: 2rem;
  padding: 15px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text strong {
  color: #1e40af;
  font-weight: 600;
}

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

.highlight-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.highlight-item:hover::before {
  left: 100%;
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.highlight-item i {
  width: 2.5em;
  height: 2.5em;
  display: flex !important;
  justify-content: center;
  align-items: center !important;
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 20px;
  /* padding: 20px; */
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.highlight-item h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.highlight-item:hover h4 {
  color: #1e40af;
}

.highlight-item p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* News & Events Section */
.news-events .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.news-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.news-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.news-item:hover::before {
  left: 100%;
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 8px 10px;
  border-radius: 10px;
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.2;
}

.news-date .day {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-date .year {
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 1px;
}

.news-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  transition: color 0.3s ease;
}

.news-title-link {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-title-link:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.news-content p {
  color: #4b5563;
  margin: 0 0 10px 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.read-more:hover {
  color: #1e40af;
  gap: 12px;
}

/* News Actions */
.news-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Share Buttons */
.share-buttons {
  position: relative;
  display: inline-block;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.share-icon:hover {
  background-color: #e2e8f0;
  color: #3b82f6;
  transform: scale(1.1);
}

.share-options {
  position: absolute;
  bottom: 100%;
  right: 0;
  display: none;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px;
  z-index: 100;
  margin-bottom: 10px;
  white-space: nowrap;
  animation: fadeIn 0.2s ease;
}

.share-buttons:hover .share-options {
  display: flex;
  gap: 8px;
}

.share-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.share-option[data-platform="facebook"] {
  background-color: #3b5998;
}
.share-option[data-platform="twitter"] {
  background-color: #1da1f2;
}
.share-option[data-platform="whatsapp"] {
  background-color: #25d366;
}
.share-option[data-platform="linkedin"] {
  background-color: #0077b5;
}

.share-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.view-all {
  text-align: center;
  margin-top: 30px;
}

.btn-secondary {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #475569;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Key Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.feature-icon i {
  width: 2.5em;
  height: 2.5em;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 20px;
  /* padding: 20px; */
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 50%;
  display: inline-block;
  /* box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2); */
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
  /* box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3); */
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #1e40af;
}

.feature-card p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Academic Excellence Section */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.overview-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.overview-card:hover::before {
  left: 100%;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.overview-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.overview-card:hover h3 {
  color: #1e40af;
}

.overview-card p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.overview-card .highlight {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* CTA Section */
.cta-section {
  /* background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a78bfa 100%); */
  color: white;
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  display: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-main h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-main p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 15px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #d97706, #b45309);
}

.cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Chairman Message Page Styles */
.chairman-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  min-height: calc(100vh - 200px);
  position: relative;
}

.chairman-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(147, 197, 253, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(96, 165, 250, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
  pointer-events: none;
}

.page-header {
  margin-bottom: 40px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #64748b;
}

.breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #1e40af;
}

.breadcrumb .separator {
  color: #cbd5e1;
}

.breadcrumb .current {
  color: #1e293b;
  font-weight: 500;
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.page-title i {
  color: #3b82f6;
  font-size: 2rem;
  padding: 15px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.chairman-message-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chairman-message-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
}

.message-container {
  position: relative;
  z-index: 2;
}

.message-header {
  text-align: center;
  margin-bottom: 40px;
}

.quote-icon {
  margin-bottom: 20px;
}

.quote-icon i {
  font-size: 3rem;
  color: #3b82f6;
  padding: 25px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.opening-quote {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e40af;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(147, 197, 253, 0.1)
  );
  border-radius: 20px;
  border-left: 5px solid #3b82f6;
  position: relative;
}

.message-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.quote-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legacy-section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.legacy-card {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.legacy-card:hover {
  transform: translateY(-5px);
}

.legacy-icon {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 10px;
}

.legacy-card h3 {
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 5px;
}

.legacy-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Focus Areas Styles */
.focus-areas {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(147, 197, 253, 0.05)
  );
  border-radius: 15px;
  border-left: 4px solid #3b82f6;
}

.focus-areas h3 {
  color: #1e40af;
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.focus-areas h3 i {
  color: #3b82f6;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.focus-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.focus-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.focus-item p {
  margin: 0;
  color: #374151;
  font-weight: 500;
  line-height: 1.4;
}

.closing-message {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05),
    rgba(34, 197, 94, 0.05)
  );
  border-radius: 15px;
  border-left: 4px solid #10b981;
}

.closing-message p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #065f46;
  margin: 0;
  text-align: center;
}

/* Rules Page Styles */
.rules-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  min-height: calc(100vh - 200px);
  position: relative;
}

.rules-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(147, 197, 253, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(96, 165, 250, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
  pointer-events: none;
}

.rules-content-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rules-container {
  position: relative;
  z-index: 2;
}

.rules-intro {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(147, 197, 253, 0.05)
  );
  border-radius: 15px;
  border-left: 4px solid #3b82f6;
}

.intro-text {
  font-size: 1.1rem;
  color: #1e40af;
  margin: 0;
  line-height: 1.6;
}

.rules-list {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.rule-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.rule-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.rule-item p {
  margin: 0;
  color: #374151;
  font-weight: 500;
  line-height: 1.6;
}

.conduct-list {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.conduct-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.conduct-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.conduct-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.conduct-content h3 {
  color: #1e40af;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.conduct-content p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.quarantine-section {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.05),
    rgba(248, 113, 113, 0.05)
  );
  border-radius: 15px;
  border-left: 4px solid #ef4444;
}

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

.quarantine-intro {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quarantine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.quarantine-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.disease-icon {
  font-size: 2rem;
  color: #dc2626;
  margin-bottom: 10px;
}

.quarantine-item h4 {
  color: #dc2626;
  margin-bottom: 8px;
}

.quarantine-period {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.rules-footer {
  margin-top: 30px;
}

.important-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1),
    rgba(251, 191, 36, 0.1)
  );
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.important-note i {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-top: 2px;
}

.important-note p {
  margin: 0;
  color: #92400e;
  line-height: 1.6;
}

.chairman-profile {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.chairman-image {
  position: relative;
  width: 250px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
  transition: all 0.4s ease;
}

.chairman-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.chairman-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.chairman-image:hover .chairman-photo {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30, 64, 175, 0.9));
  color: white;
  padding: 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.chairman-image:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.image-overlay p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

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

.message-text p {
  margin-bottom: 25px;
  text-align: justify;
}

.closing-statement {
  font-weight: 600;
  color: #1e40af;
  font-size: 1.2rem;
  text-align: center;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(147, 197, 253, 0.1)
  );
  border-radius: 15px;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.signature-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.signature-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 30px 40px;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.signature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.signature-icon i {
  font-size: 3rem;
  color: #3b82f6;
  padding: 20px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.signature-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.signature-details .designation {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 5px;
}

.signature-details .institution {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

.milestones-section {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #e2e8f0;
}

.milestones-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 30px;
  text-align: center;
}

.milestones-title i {
  color: #f59e0b;
  font-size: 1.5rem;
  padding: 12px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

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

.milestone-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 25px;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.milestone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 158, 11, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.milestone-card:hover::before {
  left: 100%;
}

.milestone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
  border-color: #f59e0b;
}

.milestone-year {
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.milestone-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.milestone-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Chairman Page */
@media (max-width: 768px) {
  .nav-toggle {
    top: -170px;
  }
  .chairman-page {
    padding: 15px;
  }

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

  .page-title i {
    font-size: 1.5rem;
    padding: 12px;
  }

  .chairman-message-section {
    padding: 20px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .opening-quote {
    font-size: 1.1rem;
    padding: 20px;
  }

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

  .chairman-image {
    width: 180px;
    height: 220px;
  }

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

  .signature-card {
    text-align: center;
    padding: 20px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .focus-item {
    padding: 12px;
  }

  .focus-areas {
    padding: 20px;
  }

  .closing-message {
    padding: 20px;
  }

  .rules-page {
    padding: 15px;
  }

  .rules-content-section {
    padding: 20px;
  }

  .rule-item {
    padding: 15px;
    flex-direction: column;
    gap: 10px;
    /* text-align: center; */
  }

  .conduct-item {
    padding: 20px;
    flex-direction: column;
    /* text-align: center; */
    gap: 15px;
  }

  .quarantine-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .important-note {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Main Layout Styles */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
  padding: 40px 0;
  padding-bottom: 0px;
}

.content-area {
  min-width: 0; /* Prevents grid overflow */
}

.content-area section {
  margin-bottom: 50px;

  padding: 30px;
  /* background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); */
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: none;
  overflow: hidden;
  position: relative;
}

.content-area section:last-child {
  margin-bottom: 0px;
}

.content-area section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
}

.sidebar {
  position: sticky;
  top: 20px;
  background: white;
  border-radius: 15px;
}

.sidebar .widget-title {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  padding: 15px 20px;
  margin: 0;
  border-radius: 15px 15px 0 0;
  font-size: 1rem;
  font-weight: 600;
}

.sidebar .widget-title:not(:first-child) {
  border-radius: 0;
  border-top: 1px solid #e2e8f0;
}

.sidebar > div:last-child .widget-title {
  border-radius: 0 0 15px 15px;
}

.sidebar .widget-btn-primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-links-list,
.notices-list {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style: none;
}

.quick-links-list li,
.notices-list li {
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 20px;
}

.quick-links-list li:last-child,
.notices-list li:last-child {
  border-bottom: none;
}

.quick-links-list a,
.notices-list a {
  text-decoration: none;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.quick-links-list a:hover,
.notices-list a:hover {
  color: #1e3a8a;
}

.quick-links-list i {
  color: #f59e0b;
  width: 16px;
}

.notice-date {
  font-size: 0.8rem;
  color: #64748b;
  display: block;
  margin-bottom: 5px;
}

.admission-content,
.houses-grid {
  padding: 20px;
}

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

.house-item {
  text-align: center;
  padding: 15px 10px;
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
}

.house-item.peace {
  background: #059669;
}
.house-item.courage {
  background: #dc2626;
}
.house-item.devotion {
  background: #7c3aed;
}
.house-item.sacrifice {
  background: #ea580c;
}

.house-item h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

/* Responsive Design Improvements */
/* Mobile Sidebar - Hidden by default */
.mobile-sidebar {
  display: none;
}

/* Desktop Sidebar - Visible by default */
.sidebar {
  display: block;
}

@media (max-width: 1024px) {
  .main-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .content-area {
    order: 1;
    width: 100%;
  }

  .quick-overview {
    order: 2;
  }

  /* Show mobile sidebar after quick overview */
  .mobile-sidebar {
    display: block;
    order: 3;
    width: 100%;
  }

  /* Hide desktop sidebar on mobile */
  .sidebar {
    display: none;
  }

  /* Ensure sidebar widgets stack properly */
  .sidebar > div,
  .mobile-sidebar > div {
    margin-bottom: 30px;
  }

  .slide-content h3 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1.2rem;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .slide-content {
    left: 20px;
    right: 20px;
    bottom: 60px;
    max-width: none;
    padding: 25px;
    text-align: center;
  }

  .slide-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .slider-nav button {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .cta-main h2 {
    font-size: 2rem;
  }

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

  .overview-grid {
    /* grid-template-columns: repeat(2, 1fr); */
  }

  .overview-cta {
    flex-direction: column;
    align-items: center;
  }

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

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  border: 2px solid white;
}

.institution-name-english {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.institution-tagline {
  font-size: 1rem;
  font-weight: 400;
  margin: 3px 0;
  color: #fbbf24;
}

.establishment-year,
.accreditation {
  font-size: 0.8rem;
  margin: 1px 0;
  opacity: 0.9;
}

.header-right {
  text-align: right;
}

.contact-info p {
  margin: 3px 0;
  font-size: 0.85rem;
}

.contact-info i {
  margin-right: 8px;
  color: #b3d9ff;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: white;
  font-size: 1.2em;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #b3d9ff;
}

/* Navigation Styles */
.navbar {
  background: #1e3a8a;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-link {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav-link:hover {
  background-color: #1e3a8a;
  border-bottom-color: #f59e0b;
  color: #dbeafe;
}

/* .nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 15px 20px;
} */

/* .nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
} */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

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

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: #f8fafc;
  color: #1e3a8a;
  border-left-color: #f59e0b;
  padding-left: 25px;
}

.nav-link i {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.quick-links-list li,
.notices-list li {
  margin-bottom: 12px;
}

.quick-links-list a {
  color: #333;
  text-decoration: none;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.quick-links-list a:hover {
  background-color: #eff6ff;
  color: #1e3a8a;
}

.quick-links-list i {
  color: #f59e0b;
  width: 16px;
}

.notices-list a {
  color: #1e3a8a;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.notices-list a:hover {
  color: #f59e0b;
}

.notice-date {
  display: block;
  font-size: 0.8em;
  color: #666;
  margin-bottom: 5px;
}

.admission-content {
  text-align: center;
}

.admission-content p {
  margin-bottom: 15px;
  color: #666;
  font-size: 0.9em;
}

/* Navigation Styles */
.navbar {
  background: #1a4b8c;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  flex-wrap: wrap;
}

.nav-menu > li {
  position: relative;
  padding: 0;
}

.nav-link {
  color: #fff !important;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-menu a {
  color: #333 !important;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  padding-left: 25px;
  color: #1a4b8c !important;
}

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

/* Houses Widget Styles */
.houses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.house-item {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.house-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.house-item h4 {
  font-size: 1em;
  margin-bottom: 5px;
}

.house-item p {
  font-size: 0.8em;
  opacity: 0.9;
}

.house-item.peace {
  background: linear-gradient(135deg, #10b981, #059669);
}

.house-item.courage {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.house-item.devotion {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.house-item.sacrifice {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Leadership Section Styles */
.leadership-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.leadership-grid {
  display: grid;
  gap: 30px;
  margin-top: 25px;
}

.leader-message {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #1e3a8a;
  transition: all 0.3s ease;
}

.leader-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.leader-info {
  text-align: center;
  min-width: 120px;
}

.leader-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #1e3a8a;
}

.leader-info h3 {
  color: #1e3a8a;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.leader-title {
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.9em;
}

.message-content {
  flex: 1;
}

.message-content p {
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1.05em;
}

/* Academics Section Styles */
.academics-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.academics-content h3 {
  color: #1e3a8a;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.class-sections {
  display: grid;
  gap: 30px;
  margin-top: 25px;
}

.class-section {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
}

.class-section h4 {
  color: #1e3a8a;
  font-size: 1.2em;
  margin-bottom: 15px;
  border-bottom: 2px solid #f59e0b;
  padding-bottom: 8px;
}

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

.stream {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.stream h5 {
  color: #059669;
  font-size: 1.1em;
  margin-bottom: 12px;
  text-align: center;
}

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

.subject-list li {
  padding: 5px 0;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.95em;
}

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

/* Facilities Section Styles */
.facilities-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

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

.facility-item {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.facility-item:hover {
  border-color: #1e3a8a;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.1);
}

.facility-item i {
  font-size: 2.5em;
  color: #f59e0b;
  margin-bottom: 15px;
}

.facility-item h3 {
  color: #1e3a8a;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.facility-item p {
  color: #6b7280;
  line-height: 1.5;
}

/* Activities Section Styles */
.activities-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.activities-content {
  margin-top: 25px;
}

.activity-category {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #f59e0b;
  transition: all 0.3s ease;
}

.activity-category:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.activity-category h3 {
  color: #1e3a8a;
  font-size: 1.2em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-category h3 i {
  color: #f59e0b;
}

.activity-category p {
  color: #4b5563;
  line-height: 1.6;
}

/* Admissions Section Styles */
.admissions-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.admissions-content {
  margin-top: 25px;
}

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

.admission-timeline,
.age-criteria,
.required-documents {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
}

.admission-timeline h3,
.age-criteria h3,
.required-documents h3 {
  color: #1e3a8a;
  font-size: 1.2em;
  margin-bottom: 15px;
  border-bottom: 2px solid #f59e0b;
  padding-bottom: 8px;
}

.admission-timeline ul,
.age-criteria ul,
.required-documents ul {
  list-style: none;
  padding: 0;
}

.admission-timeline li,
.age-criteria li,
.required-documents li {
  padding: 8px 0;
  color: #4b5563;
  border-bottom: 1px solid #e5e7eb;
}

.admission-timeline li:last-child,
.age-criteria li:last-child,
.required-documents li:last-child {
  border-bottom: none;
}

/* Hostel Section Styles */
.hostel-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.hostel-content {
  margin-top: 25px;
}

.hostel-info > p {
  font-size: 1.1em;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.feature-item {
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #1e3a8a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.1);
}

.feature-item i {
  font-size: 2em;
  color: #f59e0b;
  margin-bottom: 10px;
}

.feature-item h4 {
  color: #1e3a8a;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.feature-item p {
  color: #6b7280;
  font-size: 0.9em;
  line-height: 1.4;
}

/* Footer Styles */
.footer {
  background-color: #002244;
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

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

.footer-section h4 {
  color: #b3d9ff;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.contact-details p {
  margin-bottom: 8px;
  font-size: 0.9em;
}

.contact-details i {
  margin-right: 8px;
  color: #f59e0b;
  width: 16px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f59e0b;
}

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

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-policies a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-policies a:hover {
  color: #f59e0b;
}

/* Responsive Design */
/* Mobile Hero Section Fixes */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 100vh;
    height: auto;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 0 5%;
    text-align: center;
    justify-items: center;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-navigation {
    position: absolute;
    top: auto;
    bottom: 30px;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    z-index: 1000;
  }

  .hero-nav-btn {
    position: static;
    width: 50px;
    height: 50px;
    transform: none !important;
  }

  .hero-nav-btn.prev-btn {
    left: auto;
    right: auto;
  }

  .hero-nav-btn.next-btn {
    right: auto;
    left: auto;
  }

  .hero-indicators {
    bottom: 100px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 80px 20px 120px;
    align-content: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-navigation {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 20px;
  }

  .hero-dots {
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    border-radius: 30px;
    margin: 0 auto;
    max-width: 90%;
    backdrop-filter: blur(10px);
  }

  .hero-visual {
    display: none;
  }

  .container {
    padding: 0 15px;
  }

  .header-top {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .logo-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .institution-info h1 {
    font-size: 1.8em;
  }

  .institution-info h2 {
    font-size: 1.4em;
  }

  /* Hero Banner Tablet Styles */
  .hero-banner {
    height: 70vh;
    min-height: 600px;
  }

  /* About Section Responsive */
  .section-title {
    font-size: 2rem;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .section-title i {
    font-size: 1.5rem;
    padding: 12px;
  }

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

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

  .highlight-item {
    padding: 25px 20px;
  }

  .highlight-item i {
    font-size: 2.5rem;
    padding: 15px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 4%;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
    height: 300px;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .floating-card {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .floating-card i {
    font-size: 1.3rem;
  }

  .hero-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .hero-nav-btn.prev-btn {
    left: 20px;
  }

  .hero-nav-btn.next-btn {
    right: 20px;
  }

  .hero-scroll-indicator {
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
  }

  /* Mobile styles for new sections */
  .leader-message {
    flex-direction: column;
    text-align: center;
  }

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

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

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

  .admission-info {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .slider {
    height: 400px;
  }

  .slide-content {
    left: 30px;
    right: 30px;
    max-width: 90%;
    padding: 30px 25px;
    border-radius: 20px;
  }

  .slide-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .slide-content .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .slider-nav button {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }

  .prev-btn {
    left: 20px;
  }

  .next-btn {
    right: 20px;
  }

  .slider-dots {
    bottom: 25px;
  }

  .dot {
    width: 12px;
    height: 12px;
  }

  .slide-content p {
    font-size: 1em;
  }

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

  .news-item {
    flex-direction: column;
    text-align: center;
  }

  .news-date {
    align-self: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Quick Links Fix */
@media (max-width: 768px) {
  .quick-links-widget {
    margin: 15px 0;
  }

  .quick-links-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
  }

  .quick-links-list li {
    margin-bottom: 0;
    border-bottom: none;
    padding: 0;
  }

  .quick-links-list a {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    height: 100%;
  }

  .quick-links-list a:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .quick-links-list i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-navigation {
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 20px;
  }
  .institution-info h1 {
    font-size: 1.5em;
  }

  .institution-info h2 {
    font-size: 1.2em;
  }

  /* Hero Banner Mobile Styles */
  .hero-banner {
    height: 60vh;
    min-height: 540px;
  }

  /* About Section Mobile */
  .section-title {
    font-size: 1.8rem;
  }

  .section-title i {
    font-size: 1.3rem;
    padding: 10px;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .highlight-item {
    padding: 20px 15px;
  }

  .highlight-item i {
    font-size: 2rem;
    padding: 12px;
  }

  .highlight-item h4 {
    font-size: 1.2rem;
  }

  .hero-slide {
    padding: 0 3%;
  }

  .hero-visual {
    height: 200px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .hero-badge {
    padding: 8px 16px;
    font-size: 0.8rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .floating-card {
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .floating-card i {
    font-size: 1.1rem;
  }

  .card-1 {
    top: 15%;
    right: 5%;
  }

  .card-2 {
    top: 45%;
    right: 15%;
  }

  .card-3 {
    bottom: 15%;
    right: 8%;
  }

  .hero-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .hero-nav-btn.prev-btn {
    left: 15px;
  }

  .hero-nav-btn.next-btn {
    right: 15px;
  }

  .hero-indicators {
    bottom: 25px;
    gap: 12px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .hero-scroll-indicator {
    bottom: 15px;
    right: 15px;
    font-size: 0.7rem;
  }

  .hero-shape {
    display: none;
  }

  .news-events,
  .quick-links-widget,
  .notices-widget,
  .admission-widget,
  .leadership-section,
  .academics-section,
  .facilities-section,
  .activities-section,
  .admissions-section,
  .hostel-section {
    padding: 20px;
  }

  .section-title {
    font-size: 1.5em;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .leader-photo {
    width: 60px;
    height: 60px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .slider,
  .sidebar,
  .footer {
    display: none;
  }

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

  body {
    background: white;
    color: black;
  }

  .news-events {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Accessibility Improvements */
.nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.slider-nav button:focus,
.dot:focus {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

/* Animation for smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .header {
    background: #000;
  }

  .navbar {
    background-color: #000;
  }

  .news-item:hover {
    border-color: #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Curriculum Page Styles */
.curriculum-page {
  background: #f8fafc;
  min-height: 100vh;
}

.compact-header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 30px 0;
}

.compact-header .page-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.compact-header .page-title i {
  margin-right: 10px;
  color: #fbbf24;
}

.curriculum-content {
  padding: 30px 0;
}

.session-info {
  margin-bottom: 25px;
}

.session-text {
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  border-left: 4px solid #3b82f6;
  margin: 0;
  font-size: 1rem;
  color: #475569;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.subjects-section {
  margin-bottom: 30px;
}

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

.subjects-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

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

.card-header {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  padding: 15px 20px;
  text-align: center;
}

.card-header h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.card-header i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.subjects-compact {
  padding: 20px;
  line-height: 1.8;
  color: #475569;
}

.subjects-compact span {
  font-weight: 500;
  color: #334155;
}

.stream-group {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.stream-group strong {
  color: #1e293b;
  margin-right: 8px;
}

.compact-note {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 12px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compact-note i {
  font-size: 1.2rem;
  color: #d97706;
  margin-right: 10px;
}

.compact-note span {
  font-size: 0.95rem;
  color: #92400e;
}

.streams-section {
  margin-top: 80px;
}

.streams-container h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 50px;
  font-weight: 700;
}

.streams-container h2 i {
  margin-right: 15px;
  color: #3b82f6;
}

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

.stream-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stream-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stream-card:hover::before {
  transform: scaleX(1);
}

.stream-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stream-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.stream-card:hover .stream-icon {
  transform: scale(1.1) rotate(5deg);
}

.stream-icon i {
  font-size: 2rem;
  color: white;
}

.stream-card h3 {
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 600;
}

.stream-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

/* Animations */
@keyframes backgroundMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-10px) translateY(-10px);
  }
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.6s ease forwards;
}

.animate-fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-fade-in:nth-child(2) {
  animation-delay: 0.3s;
}
.animate-fade-in:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .compact-header .page-title {
    font-size: 1.5rem;
  }

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

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

  .subjects-compact {
    padding: 15px;
    font-size: 0.9rem;
  }

  .stream-group {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .compact-header {
    padding: 20px 0;
  }

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

  .session-text {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 365px) {
  .nav-toggle {
    top: -190px;
  }
}

@media (max-width: 330px) {
  .nav-toggle {
    top: -220px;
  }
}
