/* Google Fonts + Font Awesome for that lucrative feel */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fafcff;
  color: #1b2f44;
  line-height: 1.5;
}

/* smooth container */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* lucrative glassmorphism / light gradient */
.glass-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 40, 80, 0.15);
}

.btn-gold {
  background: #eac576;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  color: #1e2f3f;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 8px 16px -6px rgba(234, 197, 118, 0.4);
  border: 1px solid rgba(255, 245, 210, 0.7);
}

.btn-gold i {
  margin-right: 8px;
}

.btn-gold:hover {
  background: #f5cf8c;
  transform: scale(1.02);
  box-shadow: 0 18px 28px -10px #eac576;
}


/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #1f3a57;
  padding: 10px;
  z-index: 1001;
}

.hamburger i {
  transition: transform 0.3s ease;
}

.hamburger.active i {
  transform: rotate(90deg);
}

/* hero section — lucrative & premium */
.hero {
  padding: 30px 0 60px 0;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 400px;
}

.hero-content .badge {
  background: rgba(41, 95, 152, 0.1);
  color: #295f98;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid rgba(41, 95, 152, 0.2);
  backdrop-filter: blur(2px);
}

.hero-content h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  background: linear-gradient(145deg, #172c3f, #2a4b70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.hero-content h1 i {
  color: #eac576;
  -webkit-text-fill-color: initial;
  background: none;
  font-style: normal;
}

.hero-desc {
  font-size: 18px;
  color: #3e5871;
  max-width: 500px;
  margin-bottom: 32px;
  font-weight: 400;
}

.cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1b2f44;
  border: none;
  padding: 16px 42px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  color: white;
  box-shadow: 0 20px 30px -10px #0b1c2b;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #3d5a7a;
}

.btn-primary i {
  font-size: 18px;
}

.btn-primary:hover {
  background: #234768;
  transform: translateY(-3px);
  box-shadow: 0 28px 34px -8px #1d3d5b;
}

.link-underline {
  font-weight: 600;
  color: #2b4d73;
  border-bottom: 2px solid #eac576;
  text-decoration: none;
  padding-bottom: 4px;
}

.hero-visual {
  flex: 1 1 400px;
  min-height: 430px;
  position: relative;
}

/* Hero Carousel Styles */
#heroSlider {
  box-shadow: 0 25px 50px -12px rgba(0, 40, 80, 0.15);
  border-radius: 20px;
  overflow: hidden;
}

#heroSlider .carousel-inner {
  border-radius: 16px;
}

#heroSlider .carousel-item img {
  height: 380px;
  object-fit: cover;
}

#heroSlider .carousel-indicators {
  bottom: 20px;
}

#heroSlider .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
}

#heroSlider .carousel-indicators button.active {
  background-color: #eac576;
  width: 30px;
  border-radius: 10px;
}

#heroSlider .carousel-control-prev-icon,
#heroSlider .carousel-control-next-icon {
  background-color: rgba(27, 47, 68, 0.7);
  border-radius: 50%;
  background-size: 50%;
  width: 45px;
  height: 45px;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
  width: 5%;
}

.floating-card {
  background: white;
  border-radius: 28px;
  padding: 20px 24px;
  box-shadow: 0 35px 55px -20px rgba(0, 32, 64, 0.25);
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  margin-top: 30px;
}

.floating-card i {
  font-size: 40px;
  color: #eac576;
}

.card-stats h4 {
  font-size: 28px;
  font-weight: 800;
  color: #1b2f44;
}

.card-stats p {
  color: #5a738f;
}

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #1b2f44 0%, #2a4b70 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.about-hero .badge {
  background: rgba(41, 95, 152, 0.1);
  color: #295f98;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid rgba(41, 95, 152, 0.2);
  backdrop-filter: blur(2px);
}

.about-hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #eac576;
}
.about-hero .hero-desc {
  font-size: 18px;
  color: #3e5871;
  max-width: 600px;
  margin: 0 auto 30px;
  font-weight: 400;
}

/* features section */
.section-header {
  text-align: center;
  margin: 70px 0 40px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1d3246;
}

.section-header p {
  color: #54718f;
  font-size: 18px;
  max-width: 580px;
  margin: 16px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-year {
    background: linear-gradient(135deg, #295F98, #1e3b5a);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 20px;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 15px 30px -10px rgba(18, 52, 77, 0.1);
    flex: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin: 60px 0;
}

.feature-card {
  background: white;
  padding: 36px 24px;
  border-radius: 38px;
  box-shadow: 0 25px 40px -20px rgba(18, 52, 77, 0.15);
  transition: 0.2s ease;
  border: 1px solid rgba(230, 242, 255, 0.8);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 55px -16px #1f3f5c70;
  border-color: #eac57670;
}

.feature-icon {
  background: #ebf4ff;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #295f98;
  margin-bottom: 26px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 700;
}

.feature-card p {
  color: #426281;
  font-weight: 400;
}

/* enrollment / stats ribbon */
.stats-ribbon {
  background: linear-gradient(105deg, #1b2f44 0%, #1d3851 100%);
  border-radius: 70px;
  padding: 50px 40px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 80px 0;
  box-shadow: 0 35px 40px -20px #0e2538;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #eac576;
}

.stat-item p {
  font-size: 16px;
  font-weight: 400;
  color: #b7d0e9;
}

/* courses / lucrative cards */
.course-slider {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0 80px;
}

.course-card {
  background: white;
  border-radius: 40px;
  padding: 30px;
  flex: 1 1 280px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 20px 35px -10px rgba(31, 66, 99, 0.1);
  transition: all 0.25s;
}

.course-card:hover {
  box-shadow: 0 35px 50px -15px #254b6e;
}

.course-tag {
  background: #eac57630;
  color: #ab822f;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 60px;
  font-size: 14px;
  width: fit-content;
  margin-bottom: 24px;
  border: 1px solid #eac57670;
}

.course-card h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-card p {
  color: #526f8c;
  margin-bottom: 24px;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eaf1f9;
  padding-top: 20px;
}

.price {
  font-weight: 800;
  font-size: 28px;
  color: #1f3a57;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #1f3a57;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-outline:hover {
  background: #1f3a57;
  color: white;
}

/* About Preview Section */
.about-preview {
  margin: 30px 0;
  padding: 60px 0;
}

.about-preview-content {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-preview-text {
  flex: 1 1 500px;
}

.about-preview-text .badge {
  background: rgba(41, 95, 152, 0.1);
  color: #295f98;
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid rgba(41, 95, 152, 0.2);
}

.about-preview-text h2 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #1d3246;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-preview-text p {
  font-size: 17px;
  color: #426281;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eac576;
  color: #1e2f3f;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 8px 16px -6px rgba(234, 197, 118, 0.4);
  border: 1px solid rgba(255, 245, 210, 0.7);
  margin-top: 10px;
}

.btn-read-more:hover {
  background: #f5cf8c;
  transform: translateY(-3px);
  box-shadow: 0 18px 28px -10px #eac576;
}

.btn-read-more i {
  font-size: 18px;
  transition: transform 0.25s;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

.about-preview-visual {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-video-frame {
  width: 100%;
  max-width: 480px;
}

.about-video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px -10px rgba(18, 52, 77, 0.25);
}

/* About Image Frame */
.about-image-frame {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.frame-main {
  flex: 1.2;
}

.frame-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px -10px rgba(18, 52, 77, 0.25);
}

.frame-side {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frame-side img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px -8px rgba(18, 52, 77, 0.2);
}

.about-preview-card {
  background: white;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 30px 50px -15px rgba(18, 52, 77, 0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.preview-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #fafcff 0%, #f0f5fa 100%);
  border-radius: 16px;
}

.preview-stat i {
  font-size: 28px;
  color: #295f98;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -6px rgba(41, 95, 152, 0.2);
}

.preview-stat span {
  font-weight: 600;
  font-size: 16px;
  color: #1d3246;
}

/* testimonial (legacy support) */
.testimonial-area {
  background: #e2eefa60;
  border-radius: 90px;
  padding: 70px 40px;
  margin: 70px 0;
  backdrop-filter: blur(4px);
}

.testimonial-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial-quote {
  flex: 2;
}

.testimonial-quote i {
  font-size: 50px;
  color: #eac576;
  opacity: 0.5;
  margin-bottom: 16px;
}

.testimonial-quote p {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  color: #1d364b;
  margin-bottom: 30px;
}

.testimonial-author h5 {
  font-size: 20px;
  font-weight: 700;
}

.testimonial-author span {
  color: #547aa5;
}

.testimonial-stats {
  flex: 1;
  background: white;
  border-radius: 48px;
  padding: 36px;
  box-shadow: 0 30px 40px -20px #1b3d5e;
}

.testimonial-stats h3 {
  font-size: 52px;
  font-weight: 800;
  color: #295f98;
}

.testimonial-stats p {
  color: #3d627f;
  font-weight: 500;
}

/* Messages Section */
.messages-section {
  background: #e2eefa60;
  border-radius: 90px;
  padding: 70px 40px;
  margin: 70px 0;
  backdrop-filter: blur(4px);
}

.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.message-card {
  background: white;
  border-radius: 48px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 40, 80, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px -15px rgba(0, 40, 80, 0.2);
  border-color: #eac576;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #eaf1f9;
}

.message-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #295f98, #1e3b5a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #eac576;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -5px rgba(41, 95, 152, 0.3);
  overflow: hidden;
}

.principal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #eac576;
}

.message-title h3 {
  font-size: 22px;
  font-weight: 700;
  color: #295f98;
  margin-bottom: 6px;
}

.message-title h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1d3246;
  margin-bottom: 4px;
}

.message-title span {
  font-size: 14px;
  color: #547aa5;
  font-weight: 500;
}

.message-content {
  margin-bottom: 25px;
}

.message-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #426281;
  margin-bottom: 18px;
}

.message-content blockquote {
  background: linear-gradient(135deg, #fafcff 0%, #f0f5fa 100%);
  border-left: 4px solid #eac576;
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 0 16px 16px 0;
  font-size: 17px;
  font-style: italic;
  color: #1d3246;
  font-weight: 500;
  line-height: 1.6;
}

.message-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid #eaf1f9;
}

.message-footer .institution {
  font-size: 16px;
  font-weight: 600;
  color: #1d3246;
}

.message-footer .location {
  font-size: 14px;
  color: #547aa5;
}

/* footer */
.footer {
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col p {
  color: #486684;
  margin: 20px 0;
}

.social-icons i {
  font-size: 24px;
  margin-right: 22px;
  color: #345d84;
  transition: 0.2s;
  cursor: pointer;
}

.social-icons i:hover {
  color: #eac576;
}

.footer-col h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 16px;
  color: #486a8a;
  font-weight: 400;
  cursor: pointer;
  width: fit-content;
}

.footer-col li:hover {
  color: #1b2f44;
  font-weight: 500;
}

.copyright {
  border-top: 1px solid #d4e1ef;
  padding-top: 30px;
  text-align: center;
  color: #607d9c;
}

ol,
ul {
  padding: 0 !important;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0 80px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(18, 52, 77, 0.15);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(18, 52, 77, 0.25);
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */

/* Tablet */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 44px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-preview-text h2 {
    font-size: 36px;
  }
  .about-image-frame {
    max-width: 400px;
  }
  .frame-main img {
    height: 280px;
  }
  .frame-side img {
    height: 134px;
  }
  .stats-ribbon {
    padding: 40px 30px;
  }
  .stat-item h3 {
    font-size: 36px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 36px;
  }

  /* About Preview Responsive */
  .about-preview-content {
    flex-direction: column;
  }

  .about-preview-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-preview-text h2 {
    font-size: 28px;
  }

  .about-preview-visual {
    flex: 1 1 100%;
    width: 100%;
  }

  .about-image-frame {
    max-width: 100%;
    width: 100%;
  }

  .frame-main img {
    height: 220px;
  }

  .frame-side img {
    height: 106px;
  }

  .about-video-frame {
    max-width: 100%;
    width: 100%;
  }

  .about-video {
    height: 220px;
  }

  /* Stats Ribbon Responsive */
  .stats-ribbon {
    border-radius: 30px;
    padding: 30px 20px;
    margin: 50px 0;
  }

  .stat-item {
    flex: 1 1 50%;
    margin-bottom: 20px;
  }

  .stat-item:last-child {
    margin-bottom: 0;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .stat-item p {
    font-size: 14px;
  }

  /* Section Headers */
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  /* Feature Grid */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Course Slider */
  .course-slider {
    flex-direction: column;
  }

  /* Messages */
  .messages-grid {
    grid-template-columns: 1fr;
  }

  .message-card {
    padding: 30px 20px;
  }

  /* Testimonial */
  .testimonial-flex {
    flex-direction: column;
  }

  .testimonial-quote {
    flex: 1 1 100%;
  }

  .testimonial-quote p {
    font-size: 20px;
  }

  .testimonial-stats {
    flex: 1 1 100%;
  }
}

/* ========================================
   GLOBAL HEADER STYLES
======================================== */

.header {
  color: var(--default-color);
  background-color: #ffff;
  padding: 0 0 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 26px;
  margin-right: 8px;
}

.logo {
  height: 150px;
  width: 150px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* ========================================
   NAVIGATION MENU - DESKTOP
======================================== */

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: #121212;
  padding: 18px 15px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: goldenrod;
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: #ffff;
  display: block;
  position: absolute;
  visibility: hidden;
  left: 14px;
  top: 130%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul li {
  min-width: 200px;
}

.navmenu .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #121212;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: goldenrod;
}

.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* ========================================
   MOBILE HEADER STYLES
======================================== */

/* Mobile Header */
.mobile-header {
  display: none;
  background-color: #ffff;
  padding: 10px 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-header-content a {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 1;
}

.mobile-logo {
  height: 45px;
  width: 45px;
  border-radius: 8px;
  margin-right: 10px;
}

.mobile-sitename {
  font-weight: bold;
  font-family: Bebas Neue, serif;
  color: goldenrod;
  font-size: 1.5rem;
  margin: 0;
}

.mobile-header .hamburger {
  display: block;
  font-size: 22px;
  color: #1f3a57;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Navigation Menu */
.mobile-navmenu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  flex-direction: column;
  padding: 80px 20px 30px;
  box-shadow: -10px 0 30px rgba(0, 40, 80, 0.15);
  transition: right 0.4s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-navmenu.active {
  right: 0;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid #eaf1f9;
}

.mobile-nav-menu li:last-child {
  border-bottom: none;
}

.mobile-nav-menu a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  color: #121212;
  text-decoration: none;
  transition: 0.3s;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: goldenrod;
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li {
  border-bottom: none;
}

.mobile-dropdown-menu a {
  padding: 12px 0;
  font-size: 15px;
  color: #426281;
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Show mobile elements on small screens */
@media (max-width: 1199px) {
  .mobile-header {
    display: block;
  }
  
  .mobile-navmenu {
    display: flex;
  }
  
  .mobile-overlay {
    display: block;
  }
}

/* ========================================
   ACADEMICS PAGE STYLES
======================================== */

.subject-list {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.subject-list li {
    padding: 10px 0;
    color: #426281;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eaf1f9;
}

.subject-list li:last-child {
    border-bottom: none;
}

.subject-list li i {
    color: #eac576;
    font-size: 16px;
}

/* Subject List Inline (for Science & Commerce) */
.subject-list-inline {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.subject-list-inline li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fafcff 0%, #f0f5fa 100%);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #1d3246;
    font-weight: 500;
    border: 1px solid #eaf1f9;
}

.subject-list-inline li i {
    color: #295F98;
    font-size: 14px;
}

/* Coaching List Styles */
.coaching-list {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.coaching-list li {
    padding: 8px 0;
    color: #426281;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coaching-list li i {
    color: #eac576;
    font-size: 12px;
}

/* Facilities List Styles */
.facilities-list {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.facilities-list li {
    padding: 10px 0;
    color: #426281;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #eaf1f9;
}

.facilities-list li:last-child {
    border-bottom: none;
}

.facilities-list li i {
    color: #295F98;
    font-size: 16px;
    margin-top: 3px;
}

/* Environment Highlights */
.env-highlights {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.env-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fafcff 0%, #f0f5fa 100%);
    border-radius: 20px;
    border: 1px solid #eaf1f9;
}

.env-item i {
    font-size: 36px;
    color: #eac576;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -6px rgba(234, 197, 118, 0.3);
    flex-shrink: 0;
}

.env-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1d3246;
    margin-bottom: 8px;
}

.env-item p {
    font-size: 14px;
    color: #526f8c;
    margin: 0;
}

/* Quote Card */
.quote-card {
    background: linear-gradient(135deg, #1b2f44 0%, #2a4b70 100%);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.quote-card i {
    font-size: 50px;
    color: #eac576;
    margin-bottom: 20px;
    display: block;
}

.quote-card p {
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* NCC/NSS/SG Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.program-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(18, 52, 77, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 242, 255, 0.8);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 55px -16px #1f3f5c70;
    border-color: #eac57670;
}

.program-card-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 200px;
    object-fit: cover;
}

.program-card-content {
    padding: 28px 24px;
}

.program-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.program-card-icon.ncc {
    background: linear-gradient(135deg, #1e3b5a, #295f98);
    color: #eac576;
}

.program-card-icon.nss {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #eac576;
}

.program-card-icon.sg {
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #eac576;
}

.program-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1d3246;
    margin-bottom: 12px;
}

.program-card p {
    color: #526f8c;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive adjustments for academics page */
@media (max-width: 768px) {
    .env-highlights {
        grid-template-columns: 1fr;
    }
    
    .env-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quote-card {
        padding: 30px 20px;
    }
    
    .quote-card p {
        font-size: 18px;
    }
}

/* Vision Mission Grid Styles */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.vm-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px -15px rgba(18, 52, 77, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 242, 255, 0.8);
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -20px rgba(18, 52, 77, 0.2);
    border-color: #eac57670;
}

.vm-icon {
    background: linear-gradient(135deg, #295f98, #1e3b5a);
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #eac576;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px -5px rgba(41, 95, 152, 0.4);
}

.vm-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1d3246;
    margin-bottom: 16px;
}

.vm-card p {
    color: #526f8c;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* About Section & About Card Styles */
.about-section {
    margin: 60px 0;
}

.about-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px -15px rgba(18, 52, 77, 0.12);
    border: 1px solid rgba(230, 242, 255, 0.8);
}

.about-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1d3246;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-card h2 i {
    color: #eac576;
    font-size: 28px;
}

.about-card > p {
    font-size: 17px;
    color: #426281;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-card {
        padding: 30px 20px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-card h2 {
        font-size: 24px;
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   OUR OBJECTIVES SECTION - ENHANCED
======================================== */

.objectives-section {
    margin: 60px 0;
}

.objectives-header {
    text-align: center;
    margin-bottom: 50px;
}

.objectives-header h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #1d3246;
    margin-bottom: 16px;
}

.objectives-header p {
    color: #54718f;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.objective-card {
    background: white;
    border-radius: 24px;
    padding: 35px 28px;
    box-shadow: 0 15px 35px -10px rgba(18, 52, 77, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 242, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #295f98, #eac576);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px rgba(18, 52, 77, 0.2);
    border-color: #eac57670;
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #f0f5fa 0%, #e2eefa 100%);
    border: 1px solid #eaf1f9;
}

.objective-icon.blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

.objective-icon.gold {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #f9a825;
}

.objective-icon.green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
}

.objective-icon.purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    color: #7b1fa2;
}

.objective-icon.orange {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
}

.objective-icon.teal {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    color: #00695c;
}

.objective-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1d3246;
    margin-bottom: 14px;
}

.objective-card p {
    color: #526f8c;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   OUR CORE VALUES SECTION - ENHANCED
======================================== */

.core-values-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f5fa 100%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 197, 118, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.core-values-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.core-values-header h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #1d3246;
    margin-bottom: 16px;
}

.core-values-header p {
    color: #54718f;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-item {
    background: white;
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 15px 35px -10px rgba(18, 52, 77, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.value-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #295f98, #eac576);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 55px -15px rgba(18, 52, 77, 0.2);
    border-color: #eac57650;
}

.value-item:hover::after {
    width: 60%;
}

.value-item > i {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    background: linear-gradient(135deg, #295f98, #1e3b5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1d3246;
    margin-bottom: 14px;
}

.value-item p {
    color: #526f8c;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Core Values Icons Colors */
.value-item:nth-child(1) > i {
    background: linear-gradient(135deg, #1565c0, #1976d2);
    -webkit-background-clip: text;
    background-clip: text;
}

.value-item:nth-child(2) > i {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    -webkit-background-clip: text;
    background-clip: text;
}

.value-item:nth-child(3) > i {
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
    -webkit-background-clip: text;
    background-clip: text;
}

.value-item:nth-child(4) > i {
    background: linear-gradient(135deg, #c62828, #e53935);
    -webkit-background-clip: text;
    background-clip: text;
}

.value-item:nth-child(5) > i {
    background: linear-gradient(135deg, #f57c00, #fb8c00);
    -webkit-background-clip: text;
    background-clip: text;
}

.value-item:nth-child(6) > i {
    background: linear-gradient(135deg, #00838f, #00acc1);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Responsive for Objectives & Core Values */
@media (max-width: 768px) {
    .objectives-header h2,
    .core-values-header h2 {
        font-size: 28px;
    }
    
    .objectives-header p,
    .core-values-header p {
        font-size: 16px;
    }
    
    .objectives-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .objective-card,
    .value-item {
        padding: 28px 22px;
    }
    
    .core-values-section {
        padding: 40px 20px;
        border-radius: 24px;
    }
}

