@charset "UTF-8";
a {
  text-decoration: none;
}

/* ====================================
🌐 Global Reset & Root Variables
==================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #365ad9;
  --accent-color: #4d8aff;
  --bg-white: #ffffff;
  --bg-light: #f5f7fb;
  --text-dark: #1e1f25;
  --text-muted: #6c757d;
  --radius: 10px;
  --transition: all 0.3s ease;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
}

/* ====================================
🧱 Base Typography & Structure
==================================== */
html,
body {
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ====================================
🔧 Utility Classes
==================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Responsive Grid */
.grid {
  display: grid;
  gap: 20px;
}

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

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

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.logo img {
  max-height: 60px; /* adjust this number until it looks right */
  height: auto;
  width: auto;
  display: block;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000 !important; /* Black icon */
  background: #fff !important; /* White background */
  padding: 10px;
  border-radius: 6px;
  z-index: 1001;
  border: none;
  box-shadow: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 10;
  min-width: 120px;
  padding: 10px 0;
}

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

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-item:hover .dropdown-content {
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
    background: none;
  }
  .dropdown-content {
    display: none;
    position: static;
    padding: 0;
    box-shadow: none;
    background: none;
  }
  .nav-item.active-dropdown .dropdown-content {
    display: block;
  }
}
@media (max-width: 768px) and (prefers-color-scheme: dark) {
  .hamburger {
    color: white;
    background: #333;
  }
}
.site-footer {
  background: #3f66e0;
  color: white;
  padding: 60px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-left,
.footer-right {
  flex: 1 1 400px;
}

.footer-left h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.footer-left blockquote {
  font-style: italic;
  margin: 0 0 16px;
}

.footer-left p {
  margin: 10px 0;
}

.footer-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
}

.social-icons {
  margin-top: 20px;
  font-size: 20px;
  display: flex;
  gap: 12px;
}

.footer-right p {
  margin-bottom: 12px;
}

.footer-right input {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
}

.footer-right button {
  margin-top: 12px;
  padding: 12px;
  background: #0d0f2b;
  border: none;
  color: white;
  border-radius: 999px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-right button:hover {
  background: #1e2656;
}

.search-feature {
  position: relative;
  max-width: 320px;
  margin-bottom: 20px;
}

.search-feature input {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 999;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
}

.search-result-item {
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-result-item:hover,
.search-result-item.active {
  background-color: #f0f4ff;
}

.no-result {
  padding: 12px;
  color: #888;
}

.company {
  color: white !important;
}

.font-size {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container,
  .footer-content {
    flex-direction: column;
  }
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
}
.book-btn {
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-btn a {
  color: white;
  text-decoration: none;
  display: block;
}

.book-btn:hover {
  background: linear-gradient(135deg, #1a1a1a, #444);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: scale(1.05);
}

@keyframes pulse {
  from {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  to {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
  }
}
/*mission */
/* services */
/*demo */
/*team */
/* join */
/*advisory */
/* about */
/* Google Calender */
.calendar-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.calendar-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2e66e5;
}

.calendar-container {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.calendar-iframe {
  width: 100%;
  height: 600px;
  border: none;
}

/* Survey */
.survey-banner {
  background: linear-gradient(to right, #6a82fb, #a18cd1);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05);
}

.survey-content {
  max-width: 900px;
  margin: 0 auto;
}

.survey-content h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #ffffff;
}

.survey-content h2 span {
  color: #ffd54f;
}

.subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
}

.survey-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.survey-btn {
  background: #ffffff;
  color: #333;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.survey-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background-color: #f4f4f4;
}

.survey-btn.disabled {
  background: #cccccc;
  color: #666;
  pointer-events: none;
  box-shadow: none;
}

.qr-note {
  font-size: 15px;
  color: #f0f0f0;
  opacity: 0.85;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .survey-content h2 {
    font-size: 24px;
  }
  .survey-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
/* innovation */
.innovation-section {
  background: #0d0f2b;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.innovation-content {
  max-width: 1100px;
  margin: 0 auto;
}

.innovation-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.innovation-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #ffd54f;
  margin-bottom: 20px;
}

.innovation-content p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffeb3b;
}

.feature-card p {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-card {
    width: 100%;
  }
  .innovation-content h2 {
    font-size: 28px;
  }
  .innovation-content h3 {
    font-size: 18px;
  }
}
/* edu-section */
.edu-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.edu-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.edu-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.edu-block.reverse {
  flex-direction: row-reverse;
}

.edu-text {
  flex: 1 1 450px;
}

.edu-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.edu-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.edu-images {
  flex: 1 1 450px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.edu-images img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ✅ Override for .image-3 specifically */
.edu-images img.image-3 {
  width: 100%;
  max-width: 500px;
  height: auto;
  border: 2px solid red;
}

/* Hover effect */
.edu-images img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .edu-block,
  .edu-block.reverse {
    flex-direction: column;
  }
  .edu-images {
    justify-content: center;
  }
  /* Optional: make image-3 scale down on smaller screens */
  .edu-images img.image-3 {
    max-width: 100%;
    width: 100%;
  }
}
/* Success */
.success-section {
  background: #f3f6fa;
  padding: 80px 20px;
  text-align: center;
}

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

.success-container h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.success-container .subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}

.success-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.success-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.success-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.success-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2e3a59;
}

.success-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .success-grid {
    flex-direction: column;
    align-items: center;
  }
  .success-card {
    width: 100%;
    max-width: 90%;
  }
}
.contact-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  gap: 40px;
  font-size: 15px;
  margin-bottom: 20px;
}

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

.search-feature label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.search-feature input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.contact-form button {
  padding: 14px;
  border: none;
  background: #0d0f2b;
  color: white;
  font-weight: bold;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #1e2656;
}

.deck-stack {
  position: relative;
  width: min(90vw, 320px);
  height: calc(min(90vw, 320px) * 1.4); /* Card ratio: 2.5"x3.5" */
  transform: translateX(170px);
  border-radius: 12px;
  perspective: 1000px;
  cursor: pointer;
  touch-action: manipulation; /* improves tap responsiveness */
}

.deck-card {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(0) scale(1);
  transition: transform 0.8s ease, opacity 0.8s ease;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.deck-card.active {
  opacity: 1;
  z-index: 3;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.deck-card.next {
  opacity: 0.9;
  z-index: 2;
  transform: translateY(6%) scale(0.96); /* subtle peek */
}

.deck-card.exit {
  transform: translateX(-120%) rotate(-6deg);
  opacity: 0;
  z-index: 1;
}

.deck-card.active:hover {
  transform: translateY(-5%) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* ✅ Mobile tuning */
@media (max-width: 430px) {
  .deck-stack {
    width: 90vw; /* slightly smaller for balance */
    height: 126vw; /* maintains card ratio */
    margin: 1.5rem auto; /* ✅ less vertical space, still centered */
    background: pink;
  }
  .deck-card.next {
    transform: translateY(5%) scale(0.95);
  }
  .deck-card.exit {
    transform: translateX(-100%) rotate(-4deg);
  }
}
:root {
  --primary-blue: #3f66e0;
  --blue-bg: #f8fbff;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --text-soft: #444;
  --radius-md: 12px;
  --shadow-light: 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 10px 24px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* ============================
📘 Advisory Section
============================ */
.academic-advisory-section {
  background: #fff;
  padding: 100px 24px;
  font-family: "Segoe UI", sans-serif;
  animation: fadeSlideUp 0.8s ease-out;
}

.academic-advisory-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================
📌 Section Title & Intro
============================ */
.academic-advisory-heading {
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
}

.academic-advisory-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  margin: 12px auto 0;
  border-radius: 2px;
}

.academic-advisory-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================
📋 Advisory Cards Grid
============================ */
.academic-advisory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.academic-advisory-card {
  background: var(--blue-bg);
  border-left: 6px solid var(--primary-blue);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, box-shadow, opacity;
}

.academic-advisory-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.academic-advisory-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.academic-advisory-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.academic-advisory-card:hover h3 {
  color: var(--primary-blue);
}

.academic-advisory-card p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ============================
📱 Responsive
============================ */
@media (max-width: 768px) {
  .academic-advisory-heading {
    font-size: 30px;
  }
  .academic-advisory-intro {
    font-size: 16px;
  }
}
/* ============================
💫 Fade Slide Up Animation
============================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --primary-color: #3b65c4;
  --gold-color: #ffd700;
  --silver-color: #c0c0c0;
  --bronze-color: #cd7f32;
}

/* ============================
🎖️ Standards Section Styling
============================ */
.standards-section {
  background: linear-gradient(135deg, #f0f4f8, #dbe8fa);
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #14213d;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section-subtitle {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 60px;
  font-weight: 500;
}

.standards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* 🚀 Card Base Styles */
.standard-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 320px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e6ef;
  /* Entry Animation Setup */
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
}

/* 🪄 When card is visible */
.standard-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🖱️ Hover Pop-Up + 3D Effect */
.standard-card:hover {
  transform: perspective(800px) rotateX(1.5deg) rotateY(1.5deg) scale(1.02);
}

/* ✨ Animated Gradient Shine */
.standard-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 300%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.4s ease;
  pointer-events: none;
}

.standard-card:hover::after {
  left: 100%;
  transition: all 1.2s ease-in-out;
}

/* 💫 Hover Glow by Tier */
.standard-card.gold:hover {
  box-shadow: 0 18px 45px rgba(255, 215, 0, 0.4);
}

.standard-card.silver:hover {
  box-shadow: 0 18px 45px rgba(192, 192, 192, 0.35);
}

.standard-card.bronze:hover {
  box-shadow: 0 18px 45px rgba(205, 127, 50, 0.35);
}

/* Floating Badge */
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 26px;
  z-index: 2;
}

.gold .badge {
  color: var(--gold-color);
}

.silver .badge {
  color: var(--silver-color);
}

.bronze .badge {
  color: var(--bronze-color);
}

/* Card Header + Text */
.standard-card h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #121212;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.3px;
}

.tier-label {
  font-size: 26px;
  line-height: 1;
}

.standard-card p {
  font-size: 16px;
  margin-bottom: 22px;
  color: #333;
  line-height: 1.75;
  font-weight: 500;
}

/* 🔘 Stylish Bullet List */
.standard-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.standard-card ul li {
  font-size: 15.5px;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  color: #2b2b2b;
  position: relative;
  padding-left: 20px;
  opacity: 0;
  transform: translateY(10px);
  animation: slideFadeIn 0.4s ease forwards;
}

.standard-card.visible ul li:nth-child(1) {
  animation-delay: 0.3s;
}

.standard-card.visible ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.standard-card.visible ul li:nth-child(3) {
  animation-delay: 0.5s;
}

.standard-card.visible ul li:nth-child(4) {
  animation-delay: 0.6s;
}

.standard-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.toggle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toggle-item {
  margin-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.toggle-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.toggle-header:hover {
  color: var(--primary-color, #3b65c4);
}

.toggle-content {
  display: none;
  font-size: 0.95rem;
  color: #555;
  padding: 6px 0 10px;
}

.toggle-item.active .toggle-content {
  display: block;
}

.toggle-item.active .arrow {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

/* 🎖️ Tier Color Backgrounds */
.standard-card.gold {
  border-top: 6px solid var(--gold-color);
  background: linear-gradient(to bottom, #fffbe6, #fff3b0);
}

.standard-card.silver {
  border-top: 6px solid var(--silver-color);
  background: linear-gradient(to bottom, #f7f7f7, #e6e6e6);
}

.standard-card.bronze {
  border-top: 6px solid var(--bronze-color);
  background: linear-gradient(to bottom, #fff4e6, #ffd6a5);
}

/* 📱 Responsive Styles */
@media (max-width: 992px) {
  .standard-card {
    max-width: 47%;
  }
}
@media (max-width: 768px) {
  .standards-grid {
    flex-direction: column;
    align-items: center;
  }
  .standard-card {
    max-width: 90%;
  }
  .section-title {
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}
/* CTA Button */
.standards-cta-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 14px 32px;
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.standards-cta-btn:hover {
  background: #2d4fb2;
  transform: translateY(-2px);
}

:root {
  --primary-blue: #3f66e0;
  --blue-bg: #f8fbff;
  --badge-bg: #e5f0ff;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --gold: #f7b500;
  --shadow-light: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ============================
📊 QSM Section
============================ */
.academic-qsm-section {
  background: var(--blue-bg);
  padding: 100px 24px;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  animation: fadeSlideUp 0.8s ease-out;
}

.academic-qsm-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ============================
📌 Headings
============================ */
.academic-qsm-heading {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
}

.academic-qsm-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.9;
}

.academic-qsm-subtext {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================
📦 QSM Card Layout
============================ */
.academic-qsm-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 32px;
  gap: 32px;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition), opacity 0.5s ease;
  will-change: transform, box-shadow, opacity;
}

.academic-qsm-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
🖼️ Image
============================ */
.academic-qsm-image img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  border: 4px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(63, 102, 224, 0.2);
  transition: transform 0.3s ease;
}

.academic-qsm-card:hover .academic-qsm-image img {
  transform: scale(1.05);
}

/* ============================
📄 Content Block
============================ */
.academic-qsm-content {
  max-width: 500px;
  text-align: left;
}

.academic-qsm-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  background: var(--badge-bg);
  padding: 6px 12px;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 12px;
}

.academic-qsm-button {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: 16px;
}

.academic-qsm-button:hover {
  background: #2c4ecf;
  transform: translateY(-2px);
}

.academic-qsm-rating {
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 16px;
}

/* ============================
📱 Responsive
============================ */
@media (max-width: 768px) {
  .academic-qsm-heading {
    font-size: 30px;
  }
  .academic-qsm-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .academic-qsm-content {
    text-align: center;
  }
  .academic-qsm-image img {
    width: 140px;
    height: 140px;
  }
}
/* ============================
💫 Animation
============================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --primary-blue: #3f66e0;
  --blue-bg: #f6faff;
  --highlight-bg: #eaf3fd;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --text-soft: #444;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ============================
🌐 Join Section
============================ */
.academic-join-section {
  background: var(--blue-bg);
  padding: 100px 24px;
  font-family: "Segoe UI", sans-serif;
  animation: fadeSlideUp 0.8s ease-out;
}

.academic-join-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================
📌 Headings & Intro
============================ */
.academic-join-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-dark);
  position: relative;
}

.academic-join-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.9;
}

.academic-join-intro {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

/* ============================
📖 Content Blocks
============================ */
.academic-join-content p,
.academic-join-focus p,
.academic-join-call p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.academic-join-focus h3,
.academic-join-call h3,
.academic-join-team h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 20px;
  color: var(--primary-blue);
  text-align: center;
}

/* ============================
💡 Highlight Block
============================ */
.academic-join-highlight {
  background: var(--highlight-bg);
  padding: 20px 24px;
  border-left: 5px solid var(--primary-blue);
  border-radius: 10px;
  font-weight: 600;
  color: #222;
  box-shadow: var(--shadow);
  margin-top: 28px;
}

/* ============================
📣 CTA Button
============================ */
.academic-join-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.academic-join-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
  justify-content: center;
}

.academic-join-button:hover {
  background: #2c4ecf;
  transform: translateY(-2px);
}

/* ============================
👥 Team Grid & Cards
============================ */
.academic-join-team-desc {
  font-size: 16px;
  margin-bottom: 30px;
  color: var(--text-muted);
  text-align: center;
}

.academic-join-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.academic-team-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.academic-team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.academic-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.academic-team-card img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-blue);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(63, 102, 224, 0.15);
  transition: transform 0.3s ease;
}

.academic-team-card:hover img {
  transform: scale(1.05);
}

.academic-team-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
  transition: color 0.3s ease;
}

.academic-team-card:hover h4 {
  color: var(--primary-blue);
}

.academic-team-card p {
  font-size: 14.5px;
  color: #666;
}

/* ============================
📱 Responsive
============================ */
@media (max-width: 768px) {
  .academic-join-heading {
    font-size: 30px;
  }
  .academic-join-intro {
    font-size: 18px;
  }
  .academic-join-team-grid {
    grid-template-columns: 1fr;
  }
  .academic-team-card img {
    width: 100px;
    height: 100px;
  }
  .academic-join-button {
    padding: 12px 24px;
    font-size: 15px;
  }
}
/* ============================
💫 Animation
============================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --primary-color: #004080;
  --accent-color: #007acc;
  --bg-light: #f4f9ff;
  --text-dark: #1f2d3d;
  --text-muted: #5a6574;
  --radius-lg: 12px;
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease-in-out;
}

/* ============================
🌟 Mission Section Header
============================ */
header {
  background: linear-gradient(135deg, var(--primary-color), #005fa3);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid #007acc;
}

header h1 {
  margin: 0 0 14px;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.subheading {
  font-size: 1.3rem;
  font-weight: 500;
  color: #e0ecff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================
📄 Content Container
============================ */
.container {
  padding: 60px 32px;
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.section-block {
  margin-bottom: 60px;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.section-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.subsection {
  margin-bottom: 36px;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  border-left: 6px solid var(--accent-color);
  padding-left: 14px;
}

h3 {
  font-size: 1.4rem;
  color: #1f3a5a;
  margin-bottom: 12px;
  font-weight: 600;
}

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

/* === Accordion Section Container === */
.accordion-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: #1f2d3d;
}

/* === Accordion Box === */
.accordion {
  border: 1px solid #d3d7df;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #f9fbff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

/* === Accordion Header Button with Chevron === */
.accordion-header {
  width: 100%;
  background-color: blue;
  color: white;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Chevron using ::after */
.accordion-header::after {
  content: "▼";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* When active, rotate chevron */
.accordion-header.active::after {
  transform: rotate(180deg);
}

/* === Accordion Content Wrapper === */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #ffffff;
  border-top: 1px solid #e3e6ee;
}

.accordion-content.open {
  max-height: 1500px;
  padding: 20px;
}

/* === Subsections Inside Each Accordion === */
.subsection {
  margin-bottom: 20px;
}

.subsection h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 6px;
}

.subsection p,
.subsection ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.subsection ul {
  padding-left: 20px;
  margin-top: 6px;
}

.subsection ul li {
  margin-bottom: 8px;
}

/* === Responsive Tweaks === */
@media (max-width: 600px) {
  .accordion-header {
    font-size: 1.1rem;
    padding: 16px;
  }
  .accordion-content {
    padding: 0 16px;
  }
  .accordion-content.open {
    padding: 16px;
  }
}
/* ============================
🔘 Styled Lists
============================ */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}

ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-dark);
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* ============================
🖼️ Hero Image
============================ */
.main-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 50px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

/* ============================
💬 Pull Quote
============================ */
.quote {
  background: #e0f0ff;
  padding: 24px 28px;
  margin: 50px auto;
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  color: #1a2d40;
  max-width: 700px;
  border-left: 6px solid var(--accent-color);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

/* ============================
📱 Responsive Adjustments
============================ */
@media (max-width: 768px) {
  .container {
    padding: 32px 16px;
  }
  header h1 {
    font-size: 2rem;
  }
  .subheading {
    font-size: 1.1rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .quote {
    font-size: 1rem;
    padding: 20px;
  }
  ul li {
    padding-left: 24px;
  }
}
/* ============================
🎬 Simple Fade Up Animation
============================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --primary-blue: #3f66e0;
  --light-blue-bg: #eef4ff;
  --dark-text: #1a1a1a;
  --soft-text: #444;
  --bg-gradient-start: #f5f9ff;
  --bg-gradient-end: #eaf3fd;
  --white: #ffffff;
  --radius: 16px;
  --shadow-light: 0 8px 18px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-main: "Segoe UI", sans-serif;
}

/* ================================
📘 Academic Services Section
================================ */
.academic-services-section {
  background: linear-gradient(to right, var(--bg-gradient-start), var(--bg-gradient-end));
  padding: 80px 20px;
  font-family: var(--font-main);
}

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

/* ================================
📝 Section Headings
================================ */
.academic-section-heading {
  font-size: 36px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.academic-section-subtext {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

/* ================================
📦 Service Card Grid
================================ */
.academic-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* ================================
💼 Individual Service Card
================================ */
.academic-service-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  will-change: transform, box-shadow;
  cursor: pointer;
  overflow: hidden;
}

.academic-service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15), 0 0 8px rgba(63, 102, 224, 0.15);
}

.academic-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.academic-service-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0;
  line-height: 1.4;
}

.academic-service-header .arrow {
  font-size: 18px;
  margin-left: 12px;
  transition: transform 0.3s ease;
  color: var(--primary-blue);
  transform-origin: center;
  display: inline-block;
}

.academic-service-card.open .arrow {
  transform: rotate(180deg);
}

/* ================================
📖 Card Details Section
================================ */
.academic-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.academic-service-card.open .academic-card-details {
  max-height: 500px;
  opacity: 1;
}

.academic-card-details p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-top: 12px;
}

/* ================================
🎯 Fade-in Animation
================================ */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.academic-service-card:nth-child(1) {
  animation-delay: 0s;
}

.academic-service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.academic-service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.academic-service-card:nth-child(4) {
  animation-delay: 0.3s;
}

.academic-service-card:nth-child(5) {
  animation-delay: 0.4s;
}

.academic-service-card:nth-child(6) {
  animation-delay: 0.5s;
}

.academic-service-card:nth-child(7) {
  animation-delay: 0.6s;
}

.academic-service-card:nth-child(8) {
  animation-delay: 0.7s;
}

.academic-service-card:nth-child(9) {
  animation-delay: 0.8s;
}

.academic-service-card:nth-child(10) {
  animation-delay: 0.9s;
}

.academic-service-card:nth-child(11) {
  animation-delay: 1s;
}

/* ================================
🚀 Call-to-Action Banner
================================ */
.academic-cta-banner {
  margin-top: 60px;
  background: var(--primary-blue);
  padding: 40px 24px;
  border-radius: 20px;
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 0.8s ease 1.2s forwards;
}

.academic-cta-banner h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.academic-cta-banner blockquote {
  font-style: italic;
  font-size: 16px;
  margin: 0 0 12px;
  color: #e0e0e0;
}

.academic-cta-banner p {
  font-size: 16px;
  margin-bottom: 20px;
}

.academic-cta-button {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: black;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.academic-cta-button:hover {
  background: #222;
  transform: translateY(-2px);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================
📱 Responsive Adjustments
================================ */
@media (max-width: 768px) {
  .academic-section-heading {
    font-size: 28px;
  }
  .academic-section-subtext {
    font-size: 16px;
  }
  .academic-cta-banner h4 {
    font-size: 22px;
  }
  .academic-cta-banner p {
    font-size: 15px;
  }
}
:root {
  --primary-blue: #3f66e0;
  --light-blue-bg: #eef4ff;
  --dark-text: #1a1a1a;
  --soft-text: #444;
  --bg-gradient-start: #f5f9ff;
  --bg-gradient-end: #eaf3fd;
  --white: #ffffff;
  --radius: 16px;
  --shadow-light: 0 8px 18px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-main: "Segoe UI", sans-serif;
}

/* ================================
📘 Academic Services Section
================================ */
.academic-services-section {
  background: linear-gradient(to right, var(--bg-gradient-start), var(--bg-gradient-end));
  padding: 80px 20px;
  font-family: var(--font-main);
}

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

.academic-section-heading {
  font-size: 36px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.academic-section-subtext {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

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

.academic-service-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  will-change: transform, box-shadow;
  cursor: pointer;
  overflow: hidden;
}

.academic-service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15), 0 0 8px rgba(63, 102, 224, 0.15);
}

.academic-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.academic-service-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0;
  line-height: 1.4;
}

.academic-service-header .arrow {
  font-size: 18px;
  margin-left: 12px;
  transition: transform 0.3s ease;
  color: var(--primary-blue);
  transform-origin: center;
  display: inline-block;
}

.academic-service-card.open .arrow {
  transform: rotate(180deg);
}

.academic-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.academic-service-card.open .academic-card-details {
  max-height: 500px;
  opacity: 1;
}

.academic-card-details p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-top: 12px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.academic-service-card:nth-child(1) {
  animation-delay: 0s;
}

.academic-service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.academic-service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.academic-service-card:nth-child(4) {
  animation-delay: 0.3s;
}

.academic-service-card:nth-child(5) {
  animation-delay: 0.4s;
}

.academic-service-card:nth-child(6) {
  animation-delay: 0.5s;
}

.academic-service-card:nth-child(7) {
  animation-delay: 0.6s;
}

.academic-service-card:nth-child(8) {
  animation-delay: 0.7s;
}

.academic-service-card:nth-child(9) {
  animation-delay: 0.8s;
}

.academic-service-card:nth-child(10) {
  animation-delay: 0.9s;
}

.academic-service-card:nth-child(11) {
  animation-delay: 1s;
}

.academic-cta-banner {
  margin-top: 60px;
  background: var(--primary-blue);
  padding: 40px 24px;
  border-radius: 20px;
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: slideInUp 0.8s ease 1.2s forwards;
}

.academic-cta-banner h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.academic-cta-banner blockquote {
  font-style: italic;
  font-size: 16px;
  margin: 0 0 12px;
  color: #e0e0e0;
}

.academic-cta-banner p {
  font-size: 16px;
  margin-bottom: 20px;
}

.academic-cta-button {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  background: black;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.academic-cta-button:hover {
  background: #222;
  transform: translateY(-2px);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.academic-about-section {
  background: #fdfdfd;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #1a1a1a;
}

.academic-about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.academic-about-heading {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

.academic-about-subheading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #3f66e0;
}

.academic-about-history p,
.academic-about-people p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}

.academic-about-highlight {
  font-weight: 600;
  color: #000;
  margin-top: 24px;
  background: #f0f4ff;
  padding: 12px 18px;
  border-left: 4px solid #3f66e0;
  border-radius: 8px;
}

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

.academic-team-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.academic-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.academic-team-card img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 4px solid #3f66e0;
}

.academic-team-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.academic-team-card p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .academic-section-heading {
    font-size: 28px;
  }
  .academic-section-subtext {
    font-size: 16px;
  }
  .academic-cta-banner h4 {
    font-size: 22px;
  }
  .academic-cta-banner p {
    font-size: 15px;
  }
  .academic-about-heading {
    font-size: 28px;
  }
  .academic-about-subheading {
    font-size: 22px;
  }
  .academic-about-team {
    grid-template-columns: 1fr;
  }
  .academic-team-card img {
    width: 100px;
    height: 100px;
  }
}
:root {
  --primary-blue: #3f66e0;
  --light-blue-bg: #eef4ff;
  --dark-text: #1a1a1a;
  --soft-text: #444;
  --bg-light: #f9fafc;
  --radius: 16px;
  --shadow-light: 0 6px 16px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ============================
🏫 Academic About Section
============================ */
.academic-about-section {
  background: var(--bg-light);
  padding: 100px 24px;
  font-family: "Segoe UI", sans-serif;
  animation: fadeSlideUp 0.8s ease-out;
}

.academic-about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================
📌 Section Headings
============================ */
.academic-about-heading {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.academic-about-subheading {
  font-size: 24px;
  color: var(--primary-blue);
  font-weight: 700;
  margin: 40px 0 24px;
  text-align: center;
  line-height: 1.4;
  position: relative;
}

.academic-about-subheading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.9;
}

/* ============================
📖 Paragraph Content
============================ */
.academic-about-history p,
.academic-about-culture p {
  font-size: 17px;
  color: var(--soft-text);
  line-height: 1.75;
  margin-bottom: 24px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================
💡 Highlight Block
============================ */
.academic-about-highlight {
  font-weight: 600;
  color: #222;
  background: var(--light-blue-bg);
  padding: 20px 24px;
  border-left: 5px solid var(--primary-blue);
  border-radius: var(--radius);
  margin: 36px auto 0;
  max-width: 900px;
  box-shadow: var(--shadow-light);
  text-align: center;
  font-size: 1.05rem;
}

/* ============================
👥 Team Grid
============================ */
.academic-about-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

/* ============================
📇 Team Cards
============================ */
.academic-team-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, box-shadow;
}

.academic-team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.academic-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* 🖼️ Avatar Image */
.academic-team-card img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 4px solid var(--primary-blue);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(63, 102, 224, 0.2);
}

.academic-team-card:hover img {
  box-shadow: 0 6px 20px rgba(63, 102, 224, 0.35);
}

/* 🧑 Name + Role */
.academic-team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.academic-team-card:hover h4 {
  color: var(--primary-blue);
}

.academic-team-card p {
  font-size: 14.5px;
  color: #666;
}

/* ============================
📱 Responsive Adjustments
============================ */
@media (max-width: 768px) {
  .academic-about-heading {
    font-size: 30px;
  }
  .academic-about-subheading {
    font-size: 20px;
  }
  .academic-team-card img {
    width: 100px;
    height: 100px;
  }
  .academic-about-highlight {
    font-size: 15.5px;
    padding: 18px;
  }
}
@media (max-width: 480px) {
  .academic-about-highlight {
    font-size: 14.5px;
    padding: 16px;
  }
  .academic-team-card {
    padding: 24px 16px;
  }
  .academic-team-card p {
    font-size: 13.5px;
  }
}
/* ============================
💫 Animations
============================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.6s ease-out;
}

h1, h2 {
  color: #4a3aff;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.highlight {
  background: linear-gradient(90deg, #e8f0fe 0%, #f4f7ff 100%);
  padding: 0.75rem 1rem;
  border-left: 5px solid #4a3aff;
  margin: 1rem 0;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.highlight:hover {
  transform: translateX(4px);
}

.recommendation {
  background: linear-gradient(90deg, #fff7e0 0%, #fffaf0 100%);
  padding: 1rem;
  border-left: 5px solid #ff9800;
  margin-top: 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.recommendation:hover {
  transform: translateX(4px);
}

.graph-section {
  margin-top: 2rem;
}

.graph {
  margin-bottom: 1.5rem;
  text-align: center;
}

.graph img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.graph img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 📱 Mobile Styling for iPhone 12 and up */
@media (max-width: 430px) {
  .container {
    padding: 1rem;
    border-radius: 8px;
  }
  h1, h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  ul {
    padding-left: 1rem;
  }
  li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  .highlight, .recommendation {
    font-size: 0.95rem;
    padding: 0.65rem 0.85rem;
  }
  .graph img {
    border-radius: 6px;
  }
  /* Make dropdown headers more touch-friendly */
  .dropdown-header {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}