/*
Theme Name: AIMVOC Theme
Theme URI: https://shapehive.in
Description: Custom theme for AIMVOC with ACF dynamic fields
Author: ShapeHive
Version: 1.0
Text Domain: aimvoc-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-blue: #1a2a5e;
  --dark-blue: #0f1d45;
  --accent-yellow: #f5a623;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #333333;
  --text-gray: #666666;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

/* HEADER */
.site-header {
  background: var(--primary-blue);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a, .main-nav .nav-dropdown > span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}

.main-nav a:hover, .main-nav .nav-dropdown > span:hover {
  opacity: 0.8;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > span img {
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 220px;
  padding: 12px 0;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown-content a {
  display: block;
  padding: 8px 20px;
  color: var(--text-dark);
  font-size: 13px;
}

.nav-dropdown-content a:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
}

.nav-programs-btn {
  background: var(--white);
  color: var(--primary-blue) !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-programs-btn img {
  width: 10px;
}

.btn-apply {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white) !important;
}

.btn-apply img {
  width: 16px;
  filter: brightness(0) invert(1);
}

.btn-enquire {
  border: 2px solid var(--accent-yellow);
  color: var(--accent-yellow) !important;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600 !important;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  cursor: pointer;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* HERO SECTION */
.hero-section {
  background: var(--primary-blue);
  padding: 0;
  position: relative;
  display: flex;
  min-height: 500px;
}

.hero-sidebar {
  background: var(--dark-blue);
  padding: 30px 20px;
  width: 220px;
  flex-shrink: 0;
}

.hero-sidebar h3 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.offering-item {
  text-align: center;
  color: var(--white);
}

.offering-item .icon-circle {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.offering-item .icon-circle img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.offering-item span {
  font-size: 11px;
  line-height: 1.3;
  display: block;
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 550px;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-admission {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 8px;
}

.hero-admission .date-highlight {
  color: var(--accent-yellow);
  font-weight: 600;
}

.hero-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.hero-programs a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 2px 4px;
}

.hero-programs a:hover {
  text-decoration: underline;
}

.hero-programs .separator {
  color: var(--white);
  opacity: 0.5;
}

.btn-enroll {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--dark-blue);
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 450px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-tagline {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
}

.hero-tagline span {
  color: var(--accent-yellow);
  font-weight: 700;
}

.hero-tagline p {
  color: var(--white);
  font-size: 16px;
}

/* WHO WE ARE */
.who-we-are {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.who-we-are h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.who-we-are p {
  max-width: 900px;
  margin: 0 auto 16px;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.8;
}

/* RANKINGS */
.rankings-section {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.rankings-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.rankings-section .subtitle {
  color: var(--text-gray);
  margin-bottom: 40px;
}

.rankings-swiper {
  padding-bottom: 50px;
  overflow: hidden;
}

.ranking-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.ranking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.ranking-card img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.ranking-card p {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.4;
}

.rankings-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  opacity: 0.3;
}

.rankings-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
  background: var(--accent-yellow);
}

/* PROGRAMS SECTION */
.programs-section {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.programs-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.programs-section .subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-style: italic;
}

.program-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.program-tab {
  padding: 8px 20px;
  border: 2px solid var(--primary-blue);
  border-radius: 25px;
  background: none;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.program-tab.active, .program-tab:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.programs-swiper {
  padding-bottom: 50px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.programs-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  opacity: 0.3;
}

.programs-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
  background: var(--accent-yellow);
}

.programs-swiper .swiper-slide {
  height: auto;
}

.programs-swiper .program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 0;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.program-card .program-card-overlay {
  padding: 24px 20px 20px;
}

.program-card .program-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.program-card .program-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-gray);
}

.program-card .program-card-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  border-bottom: 1px solid var(--primary-blue);
  padding-bottom: 2px;
}

.program-card.has-image {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-blue);
  border: none;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.program-card-overlay {
  background: linear-gradient(to top, rgba(15,29,69,0.95) 60%, rgba(15,29,69,0.6) 80%, transparent 100%);
  padding: 24px 20px 20px;
  color: var(--white);
}

.program-card.has-image h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.program-card.has-image p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  line-height: 1.5;
}

.program-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.program-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.program-card-meta svg {
  flex-shrink: 0;
}

.program-card-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-yellow);
  border-bottom: 1px solid var(--accent-yellow);
  padding-bottom: 2px;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.program-card.has-image:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.program-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.program-card p {
  font-size: 13px;
  color: var(--text-gray);
}

.browse-all-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 16px;
}

/* HOW DIFFERENT */
.how-different {
  padding: 60px 0;
  background: var(--light-gray);
}

.how-different h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.how-different .subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 40px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.pillar-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.pillar-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.pillar-card p, .pillar-card li {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

.pillar-card ul {
  padding-left: 16px;
  list-style: disc;
}

/* ACADEMIC APPROACH */
.academic-approach {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.academic-approach h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.academic-approach .subtitle {
  color: var(--text-gray);
  margin-bottom: 40px;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.approach-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s;
}

.approach-card:hover {
  transform: translateY(-4px);
}

.approach-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}

.approach-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

/* PEDAGOGY */
.pedagogy-section {
  padding: 60px 0;
  background: var(--light-gray);
  text-align: center;
}

.pedagogy-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pedagogy-section .subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.pedagogy-section .pedagogy-image {
  max-width: 900px;
  margin: 0 auto;
}

/* MICRO CREDENTIALS */
.micro-credentials {
  padding: 60px 0;
  background: var(--primary-blue);
  text-align: center;
  color: var(--white);
}

.micro-credentials h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.micro-credentials p {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 15px;
  opacity: 0.9;
}

.btn-know-more {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--dark-blue);
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 700;
}

/* LEARNER THREADS */
.learner-threads {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
}

.learner-threads h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.learner-threads .subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.threads-swiper {
  padding-bottom: 50px;
  overflow: hidden;
  position: relative;
}

.thread-item {
  display: block;
}

.thread-item img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.threads-swiper .swiper-button-prev,
.threads-swiper .swiper-button-next {
  color: var(--primary-blue);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.threads-swiper .swiper-button-prev::after,
.threads-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.threads-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  opacity: 0.3;
}

.threads-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
  background: var(--accent-yellow);
}

/* ALUMNI SPEAK */
.alumni-speak {
  padding: 60px 0;
  background: var(--light-gray);
  text-align: center;
}

.alumni-speak h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.alumni-speak .subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.testimonials-swiper {
  padding-bottom: 50px;
  overflow: hidden;
  position: relative;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: var(--primary-blue);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  opacity: 0.3;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
  background: var(--accent-yellow);
}

.testimonial-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.testimonial-card img.testimonial-bg {
  width: 100%;
  border-radius: 12px;
}

.testimonial-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.testimonial-info {
  padding: 12px;
  text-align: center;
}

.testimonial-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 12px;
  color: var(--text-gray);
}

.btn-watch-all {
  display: inline-block;
  margin-top: 20px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
}

/* ALUMNI WORK */
.alumni-work {
  padding: 60px 0;
  text-align: center;
  background: var(--white);
}

.alumni-work h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.alumni-work .subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.companies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.company-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 8px;
  padding: 10px;
}

.company-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* MAKE DREAMS */
.make-dreams {
  padding: 60px 0;
  background: var(--primary-blue);
  color: var(--white);
}

.make-dreams .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.make-dreams-content {
  flex: 1;
}

.make-dreams h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.make-dreams p {
  font-size: 15px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.make-dreams ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: disc;
}

.make-dreams li {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.make-dreams-image {
  flex: 1;
  text-align: center;
}

.make-dreams-image img {
  max-width: 400px;
  border-radius: 12px;
}

.btn-apply-now {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--dark-blue);
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 700;
}

/* NEWS & BLOGS */
.news-section, .blogs-section {
  padding: 60px 0;
  text-align: center;
}

.news-section h2, .blogs-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.news-section .subtitle, .blogs-section .subtitle {
  color: var(--text-gray);
  margin-bottom: 30px;
}

.btn-see-all {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 20px;
}

/* FAQ */
.faq-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.faq-question {
  padding: 16px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 16px;
}

/* FOOTER */
.site-footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
}

.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.floating-btn.phone-btn {
  background: var(--primary-blue);
}

.floating-btn.whatsapp-btn {
  background: #25d366;
}

.floating-btn img {
  width: 24px;
  height: 24px;
}

/* INNER PAGES */
.page-banner {
  background: var(--primary-blue);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  font-size: 36px;
  font-weight: 800;
}

.page-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 12px;
}

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

.page-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.page-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
  }
  .hero-sidebar {
    width: 100%;
    padding: 20px;
  }
  .offering-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-main {
    padding: 30px 20px;
  }
  .hero-image {
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== MOBILE DRAWER ========== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 9999;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.active {
  display: flex;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--primary-blue);
  position: sticky;
  top: 0;
  z-index: 10;
}
.mobile-drawer-header img {
  height: 32px;
  width: auto;
}
.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}
.mobile-drawer-header-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-drawer-header-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  cursor: pointer;
}
.mobile-drawer-body {
  padding: 24px 16px;
  flex: 1;
}
.mobile-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.mobile-drawer-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.mobile-drawer-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}
.mobile-drawer-item svg {
  color: #999;
}
.mobile-drawer-sub {
  display: none;
}
.mobile-drawer-sub.active {
  display: block;
}
.mobile-drawer-sub-back {
  padding: 10px 0;
  margin-bottom: 12px;
  color: var(--primary-blue);
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.mobile-drawer-sub h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
}
.mobile-drawer-sub a {
  display: block;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}
.mobile-drawer-sub a:hover {
  background: var(--light-gray);
  color: var(--primary-blue);
}
.mobile-drawer-course {
  display: flex !important;
  align-items: center;
  gap: 12px;
}
.mobile-drawer-course img {
  width: 36px;
  height: 36px;
}
.mobile-drawer-browse {
  display: block;
  margin-top: 16px;
  color: var(--primary-blue) !important;
  font-weight: 600 !important;
  text-align: center;
  padding: 14px !important;
  border: 2px solid var(--primary-blue) !important;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .offering-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .who-we-are h2, .rankings-section h2, .programs-section h2,
  .how-different h2, .alumni-speak h2, .faq-section h2,
  .make-dreams h2, .micro-credentials h2 {
    font-size: 24px;
  }
  .make-dreams .container {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .approach-cards {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .hero-sidebar {
    display: none;
  }
  .program-card.has-image {
    min-height: 340px;
  }
  .program-card.has-image h3 {
    font-size: 17px;
  }
  .program-card-meta {
    gap: 10px;
  }
  .programs-swiper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 20px;
  }
  .hero-programs a {
    font-size: 12px;
  }
  .btn-enroll {
    padding: 10px 24px;
    font-size: 13px;
  }
  .program-tabs {
    gap: 6px;
  }
  .program-tab {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* ==========================================
   COURSE / PROGRAM PAGE STYLES
   ========================================== */

.course-banner {
  background: var(--primary-blue);
  padding: 50px 0 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

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

.banner-content-wrap {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.banner-text {
  flex: 1;
  padding-bottom: 40px;
}

.banner-image {
  flex: 0 0 45%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.banner-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.course-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.badge-gold {
  background: var(--accent-yellow);
  color: var(--dark-blue);
}

.badge-red {
  background: #e74c3c;
  color: white;
}

.course-banner h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.course-tagline {
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.course-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  margin-bottom: 30px;
  max-width: 700px;
}

.quick-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-label {
  font-size: 12px;
  opacity: 0.7;
  font-weight: 500;
}

.quick-value {
  font-size: 16px;
  font-weight: 700;
}

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

.btn-brochure {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--dark-blue);
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

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

.course-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.section-desc {
  text-align: center;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 15px;
  line-height: 1.6;
}

.section-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 24px;
}

.course-overview-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-gray);
}

.course-overview-content h2, .course-overview-content h3 {
  text-align: left;
}

/* STATS */
.stats-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--dark-blue);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
}

.trending-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.trending-roles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.role-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.role-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.role-item span {
  font-size: 14px;
  color: var(--text-dark);
}

/* HIGHLIGHTS */
.highlights-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.highlights-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* SYLLABUS */
.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.syllabus-semester {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 24px;
}

.syllabus-semester h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.syllabus-subjects {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

.syllabus-subjects ul {
  padding-left: 16px;
  list-style: disc;
}

/* ELIGIBILITY */
.eligibility-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

.eligibility-content ul {
  padding-left: 20px;
  list-style: disc;
}

.eligibility-content li {
  margin-bottom: 8px;
}

/* FEE STRUCTURE */
.fee-section {
  background: var(--light-gray);
}

.fee-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.fee-emi {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
}

.emi-label {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.emi-amount {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.emi-note {
  font-size: 12px;
  color: var(--text-gray);
}

.fee-breakdown {
  margin-bottom: 20px;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.fee-total-row {
  border-bottom: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-blue);
}

.fee-label {
  color: var(--text-gray);
  font-size: 14px;
}

.fee-value {
  font-weight: 600;
  color: var(--text-dark);
}

.fee-total-row .fee-label,
.fee-total-row .fee-value {
  color: var(--primary-blue);
  font-size: 18px;
}

.fee-note {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.5;
  text-align: center;
}

/* IT ALL ADDS UP */
.addsup-section {
  background: var(--primary-blue);
  color: var(--white);
}

.addsup-section h2 {
  color: var(--white);
}

.addsup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.addsup-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.addsup-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.addsup-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.addsup-card p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
}

/* ADMISSION PROCESS */
.admission-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.admission-step {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.step-number {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.admission-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.admission-step p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* OUTCOMES */
.outcomes-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.outcomes-list {
  padding-left: 20px;
  list-style: disc;
}

.outcomes-list li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.outcomes-image img {
  width: 100%;
  border-radius: 12px;
}

/* CAREER SERVICES */
.career-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.career-service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  text-align: center;
}

.career-service-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

.career-service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
}

.career-service-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* COURSE PAGE RESPONSIVE */
@media (max-width: 992px) {
  .banner-image {
    flex: 0 0 40%;
  }
  .banner-image img {
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .banner-content-wrap {
    flex-direction: column;
  }
  .banner-text {
    padding-bottom: 24px;
  }
  .banner-image {
    flex: none;
    width: 100%;
    max-height: 280px;
    overflow: hidden;
  }
  .banner-image img {
    max-height: 280px;
    border-radius: 8px 8px 0 0;
  }
  .course-banner h1 {
    font-size: 24px;
  }
  .course-quick-info {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }
  .stat-card {
    min-width: 100%;
  }
  .trending-roles {
    grid-template-columns: 1fr;
  }
  .outcomes-wrapper {
    grid-template-columns: 1fr;
  }
  .syllabus-grid {
    grid-template-columns: 1fr;
  }
  .addsup-grid {
    grid-template-columns: 1fr;
  }
  .admission-steps {
    grid-template-columns: 1fr;
  }
  .career-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .course-banner h1 {
    font-size: 20px;
  }
  .course-quick-info {
    grid-template-columns: 1fr;
  }
  .course-cta-buttons {
    flex-direction: column;
  }
  .course-cta-buttons a {
    text-align: center;
  }
  .banner-image img {
    max-height: 220px;
  }
}

/* ========== MEGA MENU ========== */
.nav-dropdown.mega-dropdown { position: static !important; }
.site-header { position: sticky; top: 0; z-index: 1000; }
.header-inner { position: relative; }
.nav-dropdown.mega-dropdown .mega-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100vw;
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  z-index: 9999;
  padding: 0;
  border-top: 3px solid var(--accent-yellow);
}
.nav-dropdown.mega-dropdown:hover .mega-menu { display: block !important; }
.mega-menu .mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}
.mega-menu .mega-menu-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue) !important;
  margin-bottom: 24px;
}
.mega-menu .mega-menu-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px;
}
.mega-menu a.mega-menu-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.2s;
  color: var(--text-dark) !important;
  text-decoration: none;
}
.mega-menu a.mega-menu-item:hover {
  background: var(--light-gray) !important;
}
.mega-menu .mega-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #eef1f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-menu .mega-icon img {
  width: 24px;
  height: 24px;
  filter: none !important;
}
.mega-menu a.mega-menu-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark) !important;
  line-height: 1.3;
}
.mega-menu .mega-menu-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  text-align: center;
}
.mega-menu .mega-browse-all {
  display: inline-block;
  color: var(--primary-blue) !important;
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.2s;
}
.mega-menu .mega-browse-all:hover { opacity: 0.7; }
.mega-menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}
.mega-menu-overlay.active { display: block; }

/* ========== ARCHIVE PAGES ========== */
.archive-hero {
  text-align: center;
}
.archive-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}
.archive-hero p {
  font-size: 16px;
  opacity: 0.9;
}
.archive-card .testimonial-quote {
  background: var(--light-gray);
  padding: 16px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-gray);
  font-style: italic;
  line-height: 1.6;
}
.pagination-wrap {
  margin-top: 40px;
  text-align: center;
}
.pagination-wrap .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination-wrap .page-numbers {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s;
}
.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
}

/* Blog category links */
.blog-cat-link {
  display: inline-block;
  padding: 6px 18px;
  border: 2px solid var(--primary-blue);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue);
  transition: all 0.2s;
}
.blog-cat-link.active,
.blog-cat-link:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* Threads grid (archive) */
.threads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.thread-archive-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.thread-archive-item:hover {
  transform: translateY(-4px);
}
.thread-archive-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.thread-archive-item h4 {
  padding: 12px 16px 4px;
  font-size: 15px;
  font-weight: 600;
}
.thread-archive-item p {
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--text-gray);
}

/* Blog grid */
.blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ========== MOBILE BOTTOM NAV BAR ========== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--primary-blue);
  font-size: 11px;
  font-weight: 600;
  flex: 1;
  padding: 4px 0;
}
.mobile-bottom-item svg {
  width: 24px;
  height: 24px;
}
.mobile-bottom-item:nth-child(1) svg {
  color: var(--accent-yellow);
  stroke: var(--accent-yellow);
}
.mobile-bottom-item:nth-child(1) span {
  color: var(--primary-blue);
}
.mobile-bottom-item:nth-child(2) svg {
  color: #25d366;
}
.mobile-bottom-item:nth-child(2) span {
  color: var(--primary-blue);
}
.mobile-bottom-item:nth-child(3) svg {
  color: var(--accent-yellow);
  stroke: var(--accent-yellow);
}
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }
  .floating-buttons {
    display: none;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ========== MEGA MENU RESPONSIVE ========== */
@media (max-width: 768px) {
  .mega-menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mega-menu-item {
    padding: 8px 10px;
  }
  .mega-menu-item span {
    font-size: 12px;
  }
  .mega-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  .mega-icon img {
    width: 18px;
    height: 18px;
  }
  .mega-menu-inner h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .archive-hero h1 {
    font-size: 24px;
  }
  .threads-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .mega-menu-grid {
    grid-template-columns: 1fr;
  }
  .threads-grid {
    grid-template-columns: 1fr;
  }
}

/* ENQUIRY MODAL */
.enquiry-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.enquiry-modal-overlay.active {
  display: flex;
}
.enquiry-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.enquiry-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-gray);
  line-height: 1;
}
.enquiry-modal-close:hover {
  color: var(--text-dark);
}
.enquiry-modal h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}
.enquiry-modal-subtitle {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ENQUIRY FORM (shared by modal and contact page) */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form select,
.enquiry-form textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
  background: var(--white);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}
.enquiry-form textarea {
  resize: vertical;
}
.enquiry-submit-btn {
  width: 100%;
  text-align: center;
}
.enquiry-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.enquiry-form-msg {
  text-align: center;
  font-size: 14px;
  padding: 8px;
  border-radius: 6px;
  display: none;
}
.enquiry-form-msg.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}
.enquiry-form-msg.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
}

@media (max-width: 480px) {
  .enquiry-modal {
    padding: 24px 20px;
    max-width: 100%;
    border-radius: 12px;
  }
  .enquiry-modal h2 {
    font-size: 20px;
  }
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.search-overlay.active {
  display: flex;
}
.search-overlay-inner {
  width: 100%;
  max-width: 600px;
  text-align: center;
  animation: modalSlideIn 0.3s ease;
}
.search-overlay-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}
.search-overlay-inner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}
.search-overlay-form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  padding: 4px;
}
.search-overlay-form input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: transparent;
}
.search-overlay-form button {
  background: var(--primary-blue);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.search-overlay-form button svg {
  stroke: #fff;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  font-size: 13px;
  margin-bottom: 12px;
  opacity: 0.8;
}
.breadcrumb a {
  color: inherit;
  text-decoration: underline;
}
.breadcrumb span {
  color: inherit;
}

/* ========== SEARCH RESULTS PAGE ========== */
.search-page-form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.search-page-form input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}
.search-page-form input:focus {
  border-color: var(--primary-blue);
  outline: none;
}
.search-page-form button {
  padding: 12px 32px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search-result-item {
  display: block;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.search-result-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: var(--primary-blue);
}
.search-result-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 6px;
}
.search-result-item p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 8px;
}
.search-result-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--light-gray);
  padding: 3px 10px;
  border-radius: 12px;
  color: var(--primary-blue);
}
.no-results {
  text-align: center;
  padding: 60px 0;
}
.no-results h2 {
  margin-bottom: 8px;
}
.no-results p {
  margin-bottom: 24px;
}
.no-results-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BLOG CARDS (improved) ========== */
.blog-cats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-gray);
}
.blog-card-cat {
  background: rgba(26,42,94,0.08);
  color: var(--primary-blue);
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 600;
}

/* ========== TESTIMONIALS GRID (archive) ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ========== SCHOLARSHIP PAGE ========== */
.scholarship-banner {
  text-align: left;
}
.scholarship-banner h1 {
  text-align: left;
  max-width: 700px;
}
.scholarship-banner p {
  text-align: left;
  max-width: 800px;
}
.scholarship-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.scholarship-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
}
.scholarship-desc {
  color: var(--text-gray);
  margin-bottom: 20px;
}
.scholarship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.scholarship-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.scholarship-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.scholarship-item strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.scholarship-item p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ========== FAQ PAGE ========== */
.faq-hero {
  background: var(--primary-blue);
  padding: 50px 0 60px;
  text-align: center;
  color: #fff;
}
.faq-hero .breadcrumb {
  text-align: left;
}
.faq-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}
.faq-search-form {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}
.faq-search-form input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.faq-search-form svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.faq-page-content {
  padding: 50px 0;
}
.faq-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.faq-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
}
.faq-category-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.faq-category-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.faq-category-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
}
.faq-section-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto 40px;
}
.faq-contact-section {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.faq-contact-section h2 {
  margin-bottom: 20px;
}
.faq-contact-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  transition: box-shadow 0.3s;
  min-width: 260px;
}
.faq-contact-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.faq-contact-card strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
}
.faq-contact-card span {
  font-size: 13px;
  color: var(--primary-blue);
}

/* ========== NOTIFICATIONS PAGE ========== */
.notifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.notification-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.notification-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.notification-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}
.notification-date {
  font-size: 13px;
  color: var(--text-gray);
}

/* ========== NEWS & MEDIA PAGE ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.news-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.news-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
}
.news-card-meta svg {
  stroke: var(--primary-blue);
}

/* ========== CONTACT PAGE (improved) ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--text-gray);
}
.contact-info-item a {
  color: var(--primary-blue);
}
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-map {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  border-radius: 12px;
}

/* ========== RESPONSIVE FOR NEW PAGES ========== */
@media (max-width: 768px) {
  .scholarship-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .faq-hero h1 {
    font-size: 24px;
  }
  .faq-categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .notifications-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .search-overlay-inner h2 {
    font-size: 22px;
  }
  .scholarship-banner h1 {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .faq-categories-grid {
    grid-template-columns: 1fr;
  }
  .faq-contact-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .search-page-form {
    flex-direction: column;
  }
  .search-page-form button {
    width: 100%;
  }
}
