:root {
  --bg-color: #ffffff;
  --bg-color2: #f8fafc;
  --affiliations: #fff1d7;
  --bg-yellow: #fff9e6;
  --text-main: #0f172a;
  --text-muted: #475569;
  --primary: #2563eb;
  --white: #ffffff;
  --lightwhite: #ccc;
  --border: #e2e8f0;
  --blue2: #eef7ff;
  --font-family: system-ui, -apple-system, sans-serif;
  --primary-hover: #0248af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}
.nav-links a.active {
  color: var(--primary) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.nav-links a[href="#crg"].active,
.nav-links a[href="#foir-centre"].active {
  border-bottom: none !important;
}

.nav-links a:hover {
  font-weight: 600;
}
@media (max-width: 768px) {
  .nav-links a.active {
    border-bottom: 0px solid var(--primary);
  }
}

@media (max-width: 992px) {
  .nav-links a.active {
    border-bottom: 0px solid var(--primary);
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  .nav-container {
    height: 60px;
  }
  .logo img {
    height: 60px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.nav-links a:not(.btn) {
  color: var(--text-muted);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* Padding */
.pad10 {
  padding: 0 10px;
}
.pad20 {
  padding: 0 20px;
}
.text-center {
  text-align: center;
}

.icon-arrow-right {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 4px;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.important {
    background-color: red;
    padding: 0 5px !important;
    border-radius: 4px;
    font-size: 0.8rem;
    margin: 0 1px;
    text-transform: uppercase;
    animation: fadeBlink 1.5s linear infinite;
}
.highlight {
    background-color: hsl(59, 100%, 50%);
    padding: 0 5px !important;
    border-radius: 4px;
    font-size: 0.8rem;
    margin: 0 1px;
    text-transform: uppercase;
    animation: fadeBlink 1.5s linear infinite;
    color: #000000;
}

/* Sponsors Section */
.sponsors-section {
  background-color: var(--white);
  overflow: hidden;
  margin: 0;
}
.sponsors-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--white);
  padding: 20px 0;
}
.sponsors-marquee-container::before,
.sponsors-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.sponsors-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.sponsors-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}
.sponsors-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-sponsors 45s linear infinite;
}
.sponsor-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 180px;
  padding: 10px;
  margin-right: 20px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.sponsor-logo:hover {
  transform: scale(1.1);
}
.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.2s ease;
}
.sponsor-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-sponsors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Course Sub Nav */
#course-fee {
  margin-bottom: -40px;
}

#important-dates {
  margin: 60px 0 -30px;
}

.course-sub-nav {
  position: sticky;
  top: 80px;
  background: #f2f2f2;
  z-index: 900;
  padding: 0;
  border-bottom: 1px solid var(--border);
  margin: 20px -24px 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border-radius: 0 0 30px 30px;
  max-width: 700px;
  margin: auto;
}

@media (max-width: 768px) {
  .course-sub-nav {
    position: sticky;
    top: 77px;
    background: #f2f2f2;
    z-index: 900;
    padding: 0 10px;
    margin: 20px -24px 40px !important;
    box-shadow: 0px 5px 50px 10px rgba(0, 0, 0, 0.05);
    margin: auto;
    border-radius: 0 0 0 0 !important;
    border-bottom: 2px solid #ccc;
  }
}

.sub-nav-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sub-nav-container a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  padding: 5px 8px;
  border-radius: 4px;
}

.sub-nav-container a:hover,
.sub-nav-container a.active {
  color: var(--primary);
  background: #f1f5f9;
}

@media (max-width: 768px) {
  .sub-nav-container {
    gap: 15px;
  }
  .sub-nav-container a {
    font-size: 0.8rem;
    padding: 5px 3px;
  }
}
mark {
  background-color: #ffcc00; /* Custom yellow */
  color: black;
  padding: 0 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  margin: 6px 0;
}
.btn-primary:hover {
  opacity: 0.9;
  background-color: var(--primary-hover);
}
.btn-outline {
  background-color: transparent;
  color: var(--text-muted);
  border: 2px solid var(--text-muted);
  margin: 6px 0;
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-btn {
  display: none;
}
@media (max-width: 768px) {
  .mobile-btn {
    display: block;
  }
}

/* Announcement Bar */
.announcement-bar {
  position: relative;
  margin-top: 80px;
  width: 100%;
  background-color: #1e293b;
  color: #f8fafc;
  padding: 5px 0;
  font-size: 1rem;
  font-weight: 500;
  z-index: 999;
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid #334155;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .announcement-bar {
    margin-top: 80px;
  }
}
.announcement-bar:hover .marquee-content {
  animation-play-state: running;
}
.marquee-content {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  align-items: center;
  animation: scroll-rtl 40s linear infinite;
}
.marquee-content span {
  white-space: nowrap;
  padding: 0 20px;
}
.marquee-content .separator {
  color: #8b5cf6;
  font-size: 1.2rem;
  padding: 0;
}
.badge img {
  height: 25px !important;
  vertical-align: bottom;
}
@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero */
.hero {
  padding: 40px 0 60px;
  text-align: left;
  background: var(--blue2);
  scroll-margin-top: 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-pretext {
  padding: 15px;
  color: var(--text-muted);
}

.hero-ebook {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  max-height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
}
.slide {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  text-align: center;
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
}
.slide-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}
.slide-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.slide:hover .slide-image img {
  transform: scale(1.08);
}
.slide-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.slide-content-inner {
  margin: 10px 0;
  justify-content: center;
}
.slide h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}
.slide p {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 280px;
}
.slide-content-inner p {
  color: var(--text-muted);
  margin-bottom: 0px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 280px;
}
.slide-content-inner div {
  justify-content: center;
}
.slide .btn {
  width: 100%;
  font-weight: 600;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #b8cced;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
    align-items: flex-start;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .badge {
    margin-bottom: 20px;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}
.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 800px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 0;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .badge {
    margin: 12px auto 12px auto;
  }
}

/* Stats Section */
.stats-section {
  padding: 40px 0 40px;
  text-align: center;
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.stat-item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.stat-value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
}
.stat-plus {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-left: 4px;
}
.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .stat-item {
    min-width: 45%;
    border: none !important;
  }
  .stat-item:not(:last-child) {
    border: none !important;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 30px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .stat-item {
    text-align: center;
    padding: 15px 10px;
    box-sizing: border-box;
    border: none !important;
  }
  .stat-number,
  .stat-plus {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 0.9rem;
  }
}

/* Evolving Role Combined Section */
.evolving-role-combined {
  background-color: var(--bg-yellow);
  padding: 100px 0;
}
.affiliations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}
.affiliation-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.affiliation-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
.affiliation-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.affiliation-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
.affiliation-logos img:hover {
  transform: scale(1.1);
}

.affiliation-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.affiliation-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 100%;
}

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

.affiliation-image-box {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 4px;
  padding: 5px;
  background: #fff;
}

.affiliation-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.affiliation-quote {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.5;
  text-align: justify;
}

.affiliation-author h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 5px;
}

.affiliation-author p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0 !important;
}

.affiliation-partners {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 50px;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
  .affiliation-cards-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 10px 30px;
    margin-left: -24px;
    margin-right: -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .affiliation-cards-container::-webkit-scrollbar {
    display: none;
  }
  .affiliation-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
}

.featured-quote-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  padding: 40px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.featured-quote-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.featured-quote-img {
  flex: 0 0 300px;
  border-radius: 4px;
  padding: 8px;
  background: #fff;
}

.featured-quote-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.featured-quote-text {
  flex: 1;
  position: relative;
}

.quote-icon-top {
  font-size: 80px;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: serif;
  line-height: 1;
}

.quote-paragraph {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.featured-author h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--primary);
  font-weight: 700;
}

.featured-author p {
  font-size: 1rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .featured-quote-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .featured-quote-img {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 auto;
  }
  
  .quote-paragraph {
    font-size: 1.1rem;
  }
  
  .quote-icon-top {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Sections */
section {
  padding: 100px 0;
  margin: 0;
  scroll-margin-top: 0px;
}
.section-header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 40px 0;
}
.section-header.left-align h2 {
  text-align: left;
}
.section-header.left-align .divider {
  margin: 20px 0;
}

.centre-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.badge-crg {
  background-color: #dbeafe;
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.badge-foir {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

@keyframes badgeEnlargePulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.45);
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.35);
  }
  65% {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.centre-badge.badge-enlarge {
  animation: badgeEnlargePulse 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: left center;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0f3d6e;
  text-align: center;
  line-height: 2rem;
  font-weight: 700;
}
.section-header .divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 20px auto;
}
.divider-inner {
  width: 60px;
  height: 3px;
  background-color: var(--lightwhite);
  margin: 0 auto;
}

.section-header p {
  margin-top: 15px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}


.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}
.card p {
  color: var(--text-muted);
}

.card-number {
  position: absolute;
  top: -5px;
  right: 15px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(15, 61, 110, 0.04);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  text-style: italic;
}

/* Course Overview */
.icap {
  background: var(--white);
}

.sub-section {
  margin-top: 40px;
  padding: 40px 0 20px 0;
  border-top: 0px solid var(--border);
  scroll-margin-top: 100px;
}

.sub-section:first-of-type {
  margin-top: 60px;
  padding-top: 0;
  border-top: none;
}

.sub-section .section-header {
  margin-bottom: 40px;
}

.sub-section .section-header h3 {
  font-size: 2rem;
  color: var(--text-main);
  text-align: center;
}

@media (max-width: 768px) {
  .sub-section .section-header h3 {
    font-size: 1.7rem;
    font-weight: 700;
  }
}

.sub-section .section-header p {
  text-align: center;
  max-width: 800px;
  margin: 10px auto 0;
}

.sub-section .section-header .divider {
  margin: 15px auto;
}

/* Course Flow Redesign */
.course-overview-section {
  padding: 40px 0;
  margin-top: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.course-flow {

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connecting Line */
.course-flow::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  z-index: 0;
}

.course-flow-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.flow-icon-container {
  width: 110px;
  height: 110px;
  margin: 0 auto 30px;
  background: var(--primary);
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 10px var(--primary);
}

.flow-icon {
  font-size: 2.2rem;
  color: var(--white);
}

.flow-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.3;
}

.flow-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .course-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
  }
  .course-flow::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .course-flow {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .course-overview-section {
    padding: 60px 20px;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-icon {
  flex-shrink: 0;
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}
.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-main);
  font-weight: 600;
}
.feature-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.faculty-section {
  background: var(--blue2);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.faculty-card-new {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  border-left: 0px solid #0056b3;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

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

.faculty-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .faculty-image-container {
    margin-right: 0px;
    margin-top: 16px;
  }
}

.faculty-avatar-new {
  width: 75px;
  height: 75px;
  border-radius: 4px;
  background-color: #0056b3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  object-fit: cover;
  margin-bottom: 4px;
  filter: grayscale();
}

.faculty-linkedin-btn {
  color: #0077b5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    transform 0.2s;
  padding: 2px;
}

.faculty-linkedin-btn:hover {
  color: #005582;
  transform: scale(1.1);
}
.faculty-info-new {
  vertical-align: top;
}

.faculty-info-new h4 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  color: #333;
  line-height: 1rem;
  padding: 5px 0;
}

.faculty-info-new p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .faculty-card-new {
    flex-direction: column;
    padding: 16px 12px;
    align-items: center;
    text-align: center;
  }
  .faculty-avatar-new {
    margin-right: 0;
    margin-bottom: 12px;
    width: 60px;
    height: 60px;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
  color: #333;
  overflow: hidden;
}
.testimonials-section .section-header.light h2 {
  color: #1e293b;
}
.testimonials-section .section-header .divider {
  background-color: var(--primary);
}

.testimonial-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
/*.filter-btn { background-color: transparent; color: #475569; border: 1px solid #cbd5e1; padding: 6px 16px; border-radius: 9999px; cursor: pointer; transition: all 0.2s ease; font-weight: 600; } */
/*.filter-btn:hover, .filter-btn.active { background-color: var(--primary); color: #ffffff; border-color: var(--primary); }*/
.filter-btn[data-filter="all"].active,
.filter-btn[data-filter="all"]:hover {
  background-color: #1e293b;
  border-color: #1e293b;
  color: #ffffff;
}

.testimonial-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.testimonial-grid {
  display: flex;
  transition: transform 0.6s ease-in-out;
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  color: #333333;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  opacity: 0.5;
  transition:
    opacity 0.3s ease,
    transform 0.2s ease;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonial-card.active-slide {
  opacity: 1;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px;
}

@media (max-width: 992px) {
  .slider-controls {
    /* Always show controls since there is no swipe */
    display: flex;
  }
}

.slider-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s ease;
}

.slider-btn:hover:not(:disabled) {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.slider-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.pagination-ellipsis {
  color: #475569;
  font-size: 1rem;
  line-height: 10px;
  display: flex;
  align-items: center;
  padding: 0 2px;
}

.slider-bullet.active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

.t-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.t-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.t-image-container {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  padding: 3px;
  margin-bottom: 6px;
}

.t-image-container img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.t-info {
  display: flex;
  flex-direction: column;
}

.t-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #1e3a8a;
}
.t-batch {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 5px;
}

.t-stars {
  display: flex;
  gap: 2px;
}
.t-stars svg {
  width: 16px;
  height: 16px;
}

.t-text {
  font-size: 1rem;
  line-height: 1.2;
  color: #475569;
  font-style: italic;
  position: relative;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* Global Advisory Board */
.advisory-board-section {
  background-color: var(--blue2);
  padding: 100px 0;
}

/* FAQ Section */
.faq-section {
  background: var(--blue2);
  padding: 100px 0;
}

.faq-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.faq-filter-btn {
  padding: 7px 14px;
  border-radius: 30px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn {
  padding: 7px 14px;
  border-radius: 30px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.faq-filter-btn:hover {
  background: rgba(13, 148, 136, 0.05);
}

.faq-filter-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}
.filter-btn:hover {
  background: rgba(13, 148, 136, 0.05);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.faq-category-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.faq-category-content.active {
  display: block;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
  color: var(--text-dark);
}
.faq-question:hover {
  background-color: #f8fafc;
  color: var(--primary);
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
  color: var(--primary);
}
.faq-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}
.faq-text {
  flex-grow: 1;
  padding-right: 15px;
  line-height: 1.4;
}
.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #94a3b8;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0px 25px;
  color: var(--text-muted);
}
.faq-answer-bullets {
  list-style-type: disc !important;
  margin: 15px 0 10px 20px !important;
  padding: 0 !important;
}
.faq-answer-bullets li {
  margin-bottom: 12px !important;
  padding-left: 5px !important;
  line-height: 1.6 !important;
  display: list-item !important;
}
.faq-answer-bullets li:last-child {
  margin-bottom: 0 !important;
}
.faq-answer-numbered {
  list-style-type: decimal !important;
  margin: 15px 0 10px 20px !important;
  padding: 0 !important;
}
.faq-answer-numbered li {
  margin-bottom: 12px !important;
  padding-left: 5px !important;
  line-height: 1.6 !important;
  display: list-item !important;
}
.faq-answer-numbered li:last-child {
  margin-bottom: 0 !important;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 10px 25px 25px;
  border-top: 1px solid #f1f5f9;
}
.faq-item.active .faq-question {
  background-color: #f8fafc;
  color: var(--primary);
}

/* About Combined Section */

.about-col p {
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1rem;
}
.footer-col p { 
  color: rgb(148, 163, 184);
}
/* Footer */
.footer {
  background-color: #0b1021;
  color: #94a3b8;
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 40px;
  text-align: left;
}
.footer-col h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer-accent-line {
  width: 48px;
  height: 3px;
  background-color: #8b5cf6;
  margin: 22px 0;
  border-radius: 2px;
}
.footer-logo2 {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-img-badge {
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-img-badge img {
  height: 48px;
  width: auto;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.4;
}
.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
}
.social-icons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-icon-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
}
.footer-contact-list svg,
.footer-contact-list .custom-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: #8b5cf6;
}
.footer-last-updated {
  margin-top: 25px;
  font-size: 0.82rem;
  color: #64748b;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}
.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 15px 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border);
    gap: 5px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }
  .nav-links a:not(.btn):hover {
    background-color: #f1f5f9;
  }
  .nav-links a:not(.btn):active {
    background-color: #dbeafe;
  }
  .nav-links .btn {
    width: 100%;
    margin: 5px auto 0;
    padding: 10px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-centres-grid,
  .about-combined-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .affiliations-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .affiliation-title {
    text-align: center;
  }
  .affiliation-logos {
    justify-content: center;
  }
  .hero-buttons {
    gap: 10px;
  }
  .testimonial-filters {
    gap: 6px;
  }
  .filter-btn {
    padding: 5px 10px;
  }
  .faq-filter-btn {
    padding: 5px 10px;
  }
  .category-btn {
    padding: 5px 10px !important;
  }
  .about-centres-grid,
  .about-combined-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    border-top: 2px solid #f2f2f2;
    margin: 10px 0;
  }
  .quote-text {
    font-size: 1rem !important;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Course Fee Redesign */

.fee-payment-section {
  background-color: #f2f2f2;
  padding: 30px 30px 10px;
  border-radius: 12px;
  align-items: center;
  margin: 40px 0 40px;
  gap: 30px;
  scroll-margin-top: 140px;
}

.fee-payment-left {
  flex: 1;
}

.fee-payment-left p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.fee-payment-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.fee-payment-left ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 0 10px;
}

.terms {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
  line-height: 1.6;
}



.fee-payment-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 250px;
}

.fee-payment-right .btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .fee-payment-section {
    flex-direction: column;
    text-align: left;
    padding: 30px 20px;
    margin: 0 0 40px;
    scroll-margin-top: 140px;
  }
  .fee-payment-left ul li {
    justify-content: left;
  }
}

.fee-announcement {
  background-color: #fffbeb;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  border: 1px solid #fef3c7;
  display: none;
}

.batch-info {
  font-weight: 700;
  color: #92400e;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.discount-info {
  color: #b45309;
  font-weight: 500;
}

.fee-categories {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.fee-tab-input {
  display: none;
}

.fee-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

#tab-individual:checked ~ .fee-details-content .individual,
#tab-student:checked ~ .fee-details-content .student,
#tab-corporate:checked ~ .fee-details-content .corporate,
#tab-international:checked ~ .fee-details-content .international {
  display: block;
}

#tab-individual:checked ~ .fee-categories label[for="tab-individual"],
#tab-student:checked ~ .fee-categories label[for="tab-student"],
#tab-corporate:checked ~ .fee-categories label[for="tab-corporate"],
#tab-international:checked ~ .fee-categories label[for="tab-international"] {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.category-btn {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 7px 14px;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.category-btn:hover {
  background-color: rgba(13, 148, 136, 0.05);
}

@media (max-width: 768px) {
}

@media (max-width: 768px) {
  .fee-announcement {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* Course Fee Details Styling */
.fee-details-content {
  margin-top: 20px;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.fee-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .fee-grid,
  .fee-grid-4 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 24px 20px;
    margin-left: -24px;
    margin-right: -24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fee-grid::-webkit-scrollbar,
  .fee-grid-4::-webkit-scrollbar {
    display: none;
  }
  .fee-card,
  .fee-card-special {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
}

.fee-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.fee-badge-container {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.fee-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-gray {
  background-color: #f1f5f9;
  color: #475569;
}

.main-price {
  color: var(--text-main);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.main-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Installments Section */

/* Removed .inst-label as it is replaced by .fee-badge-container */

.inst-timing {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pay-fees-btn {
  padding: 14px 48px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.3);
  min-width: 300px;
}

.payment-powered {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  opacity: 0.8;
  width: 300px;
  text-align: center;
}

@media (max-width: 768px) {
  .pay-fees-btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .fee-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fee-card-special .new-price {
    font-size: 2rem !important;
  }
}

.fee-description {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.fee-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.fee-link:hover {
  text-decoration: underline;
}

/* Inclusions Section */

.inclusions-header {
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 0px;
}

.inclusions-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0px;
}

.inclusions-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 0px;
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.4;
}

.inclusion-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Corporate Table */
.corporate-table-container {
  overflow-x: auto;
  margin-bottom: 32px;
}

/* Important Dates Table */
.important-dates-table-container {
  overflow-x: auto;
  margin-bottom: 32px;
}

.important-dates-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  color: var(--text-main);
}

.important-dates-table th {
  text-align: left;
  color: var(--white);
  font-weight: 500;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.important-dates-table td {
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.important-dates-table tr:last-child td {
  border-bottom: none;
}

/* Student Specific */

/* Fee Footer */
.fee-footer {
  display: none;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .inclusions-grid, .inclusions-grid-4, .inclusions-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .inclusions-grid, .inclusions-grid-4, .inclusions-grid-2 {
    grid-template-columns: 1fr;
  }
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.2s ease,
    background-color 0.3s ease;
  z-index: 9999;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #3b82f6;
}
.back-to-top svg {
  width: 24px;
  height: 24px;
}
.back-to-top .custom-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 1024px) {
  .back-to-top {
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
  .back-to-top .custom-icon {
    width: 20px;
    height: 20px;
  }
}

/* Accordion Styles */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--primary);
  transition: transform 0.2s ease;
  margin: 0 0 10px 0;
  padding: 5px 0;
}
.accordion-item:hover {
}

/* Specific left border colors for each level */
.accordion-item:nth-child(1) {
  border-bottom: 4px solid var(--primary);
}
.accordion-item:nth-child(2) {
  border-bottom: 4px solid var(--primary);
}
.accordion-item:nth-child(3) {
  border-bottom: 4px solid var(--primary);
}
.accordion-item:nth-child(4) {
  border-bottom: 4px solid var(--primary);
}

.accordion-header {
  padding: 12px 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background-color 0.2s ease;
}
.accordion-header::-webkit-details-marker {
  display: none;
}
.accordion-header:hover {
  background-color: var(--light-bg);
}
.accordion-header .duration {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  text-align: right;
  padding: 4px 12px;
  border-radius: 9999px;
}
.header-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  line-height: 1.6;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.accordion-content h4 {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.accordion-content p {
  font-size: 1rem;
}
.accordion-item.open .accordion-content {
  padding: 16px 24px 24px 24px;
  border-top: 1px solid var(--border);
}
.accordion-content ul {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.accordion-item.open .accordion-header {
  border-bottom: 1px solid var(--border);
}

/* Hero Slider */
.slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  max-height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
}
.slide {
  min-width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  text-align: center;
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
}
.slide-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
}
.slide-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.slide:hover .slide-image img {
  transform: scale(1.08);
}
.slide-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.slide-content-inner {
  margin: 10px 0;
  justify-content: center;
}
.slide h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}
.slide p {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 280px;
}
.slide-content-inner p {
  color: var(--text-muted);
  margin-bottom: 0px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 280px;
}
.slide-content-inner div {
  justify-content: center;
}
.slide .btn {
  width: 100%;
  font-weight: 600;
}
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.dot.active {
  background: var(--primary);
  width: 16px;
  border-radius: 10px;
}

/* Testimonial Stars */

.card-hidden {
  display: none !important;
}

/* FAQ Section Header */
.faq-header-p {
  text-align: center;
}

/* 3. Leadership Message Section */
.leadership-message-section,
.message-leadership-section {
  background-color: var(--bg-color2);
  text-align: justify;
}

.leadership-message-grid,
.message-leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .leadership-message-grid,
  .message-leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* 4. About Centres Section */
.about-centres-section,
.about-combined-section {
  background-color: var(--white);
  text-align: justify;
}
.hidden-message {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease-out,
    opacity 0.4s ease-out,
    margin-top 0.4s ease-out;
}
.hidden-message.show {
  max-height: 1500px;
  opacity: 1;
  margin-top: 10px;
}
.about-centres-grid,
.about-combined-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .about-centres-grid,
  .about-combined-grid {
    grid-template-columns: 1fr;
  }
}
.about-col {
  flex: 1;
}

/* Gallery Slider Section */
.gallery-section {
  padding: 0;
  margin: 60px 0;
  width: 100%;
  overflow: hidden;
  background-color: var(--white);
  position: relative;
}

.gallery-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  margin-top: 15px;
  color: #334155;
  text-align: center;
  padding-bottom: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 5;
}

.gallery-nav-btn {
  position: absolute;
  top: calc(50% - 35px);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition:
    background 0.3s,
    transform 0.3s ease;
  color: var(--primary);
}
.gallery-nav-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}
.prev-gallery {
  left: 20px;
}
.next-gallery {
  right: 20px;
}

.gallery-pagination {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (max-width: 992px) {
  .gallery-slide img {
    height: 320px;
    object-fit: cover;
  }
  .gallery-caption {
    font-size: 0.9rem;
    padding: 10px;
    margin-top: 0;
  }
  .gallery-nav-btn {
    display: none;
  }
  .gallery-pagination {
    bottom: 150px;
  }
  .prev-gallery {
    left: 10px;
  }
  .next-gallery {
    right: 10px;
  }
}

/* 8. Contact Info Section */
.contact-info-section,
.contact-section {
  background-color: #ffffff;
}
.contact-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 200px;
  transition: transform 0.2s ease;
}
.contact-item:hover {
  transform: translateY(-5px);
}
.contact-icon {
  background: #e0f2fe;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
}
.contact-icon .custom-icon {
  width: 24px;
  height: 24px;
}
.contact-item h4 {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.contact-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  white-space: nowrap;
}
.contact-item p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Ebook Promo Section */

/* Quote Section */
.quote-content {
  max-width: 900px;
  margin: 40px auto 60px;
  text-align: center;
}
.quote-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 30px;
}
.quote-author h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.quote-author p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .quote-author p {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin: 0 !important;
  }
  .quote-author h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
  }
}

/* Super Early Bird Special Card Design */
.fee-card-special {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  height: 100%; /* Ensure same height in grid */
  border: 1px solid var(--card-border) !important;
}

.fee-card-special.variant-green {
  --card-primary: #00c853;
  --card-header-bg: #e8f5e9;
  --card-border: #00c853;
}
.fee-card-special.variant-orange {
  --card-primary: #f59e0b;
  --card-header-bg: #fff7ed;
  --card-border: #f59e0b;
}
.fee-card-special.variant-gray {
  --card-primary: #64748b;
  --card-header-bg: #f8fafc;
  --card-border: #cbd5e1;
}
.fee-card-special.variant-blue {
  --card-primary: #2563eb;
  --card-header-bg: #eff6ff;
  --card-border: #2563eb;
}

.fee-card-special .card-header {
  background-color: var(--card-header-bg);
  padding: 16px; /* Match horizontal padding of other cards */
  position: relative;
  border-bottom: 1px solid var(--card-primary);
}

.fee-card-special .card-header h3 {
  color: var(--card-primary);
  font-size: 1.2rem; /* Match .card h3 */
  font-weight: 800;
  font-style: italic;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}

.fee-card-special .card-header .discount-badge {
  color: #475569;
  font-size: 1.1rem; /* Match .discount-text */
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

.fee-card-special .card-header .card-icon {
  position: absolute;
  top: 15px;
  right: 5px;
  width: 45px;
  height: 45px;
  opacity: 0.8;
}

.fee-card-special .card-header .card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--card-primary);
}

.fee-card-special .card-body {
  padding: 16px; /* Match .fee-card padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fee-card-special .price-label {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  font-size: 1rem;
}

.fee-card-special .new-price {
  color: var(--text-main);
  font-size: 2.25rem; /* Match .main-price */
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

.fee-card-special .gst-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 30px;
}

.fee-card-special .breakdown {
  margin-top: auto;
  padding-top: 5px;
}

.fee-card-special .breakdown-row {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1rem;
}

.fee-card-special .breakdown-row.discount {
  color: var(--card-primary);
}

.fee-card-special .dashed-line {
  border-top: 1px dashed #cbd5e1;
  margin: 8px 0;
}

.fee-card-special .card-footer {
  background-color: #f1f5f9;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  color: var(--text-main);
  font-size: 0.875rem; /* Match .validity-text */
}


@media (min-width: 769px) {
  .fee-tab-content.individual .fee-grid {
    display: flex;
    justify-content: center;
  }
  .fee-tab-content.individual .fee-card-special {
    width: 100%;
    max-width: 380px;
  }
}



 .promo-video-container {
            max-width: 500px;
            width: 50%;
            margin: 50px auto;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .promo-video-container a {
            display: block;
            position: relative;
            text-decoration: none;
        }

        .promo-video-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .promo-video-container a:hover img {
            transform: scale(1.02);
        }

        /* Play button overlay */
        .promo-video-container a::after {
            content: "▶";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            font-family: Arial, sans-serif;
            
            padding-left: 5px;
            transition: all 0.2s ease;
            pointer-events: none;
        }

        .promo-video-container a:hover::after {
            background: #ff0000;
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Responsive */
        @media (max-width: 600px) {
            .promo-video-container a::after {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

/* 7. Activities Section */
.activities-section,
.other-activities-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.foir-acts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.foir-acts .fa {
    background: #ffffff;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px;
    padding: 26px 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.foir-acts .fa .act-badges {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 14px;
}

.foir-acts .fa .act-badges .centre-badge {
    margin-bottom: 0;
    font-size: 0.58rem;
    padding: 2px 8px;
    letter-spacing: 0.4px;
}

.foir-acts .fa .act-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(2, 72, 175, 0.08);
    color: var(--primary, #0248af);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.foir-acts .fa:hover .act-icon-wrapper {
    background: var(--primary, #0248af);
    color: #ffffff;
    transform: translateY(-2px);
}

.foir-acts .fa .act-icon-wrapper .custom-icon {
    width: 22px;
    height: 22px;
}

.foir-acts .fa:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
    border-color: #cbd5e1;
    border-top-color: var(--primary-hover, #0248af);
}

.foir-acts .fa b {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.foir-acts .fa span {
    display: block;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .foir-acts {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .foir-acts {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* 6. Certificate Programs Section */
.certificate-programs-section,
.courses-section {
    padding: 80px 0;
    background-color: var(--bg-color2, #f8fafc);
    scroll-margin-top: 20px ;
}

.pathway-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 auto 48px auto;
    padding: 14px 28px;
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 9999px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.pathway-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main, #0f172a);
}

.pathway-step .step-num {
    background: var(--primary, #2563eb);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    letter-spacing: 0.5px;
}

.pathway-step.pathway-final {
    color: var(--text-muted, #475569);
    font-weight: 700;
}

.pathway-arrow {
    color: var(--primary, #2563eb);
    font-weight: 700;
    font-size: 1.1rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: stretch;
}

.course-card {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 16px;
    padding: 36px 30px 28px 30px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card-fcrg {
    border-top: 5px solid var(--primary, #2563eb);
}

.course-card-ria {
    border-top: 5px solid #0f2b57;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
    border-color: #cbd5e1;
}

.course-card-top {
    margin-bottom: 20px;
}

.course-card-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
}

.course-badge-fcrg {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.course-badge-ria {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.course-card-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
}

.course-code-tag {
    color: var(--primary, #2563eb);
    font-weight: 800;
}

.course-card-text {
    font-size: 1rem;
    color: var(--text-muted, #475569);
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.course-pill-tag {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.course-pill-tag:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.course-accordions-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.card-accordion-item {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-accordion-item.open {
    border-color: var(--primary, #2563eb);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.card-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    background: #f8fafc;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-main, #0f172a);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.card-accordion-header:hover {
    background: #f1f5f9;
    color: var(--primary, #2563eb);
}

.card-accordion-title {
    flex-grow: 1;
    padding-right: 12px;
}

.card-accordion-icon {
    font-size: 0.85rem;
    color: var(--text-muted, #475569);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.card-accordion-item.open .card-accordion-icon {
    transform: rotate(180deg);
    color: var(--primary, #2563eb);
}

.card-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0 18px;
}

.card-accordion-item.open .card-accordion-body {
    max-height: 400px;
    opacity: 1;
    padding: 14px 18px 18px;
    border-top: 1px solid var(--border, #e2e8f0);
}

.card-accordion-content p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-muted, #475569);
    line-height: 1.6;
}

.course-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: none;
}

.course-card-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    text-align: center;
    padding: 10px 8px;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

.course-card-actions .btn-full {
    flex: 1 1 100%;
    width: 100%;
}

.course-card-actions .btn-break {
    flex-basis: 100%;
    width: 100%;
    height: 0;
    border: none;
    margin: 4px 0;
}

.course-card-actions .btn-outline {
    border: none;
    color: #475569;
    background-color: #f1f5f9;
}

.course-card-actions .btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
}

.course-coming-soon {
    width: 100%;
    padding: 12px 20px;
    background-color: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pathway-flow {
        border-radius: 20px;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .course-card {
        padding: 24px 20px;
    }

    .course-card-actions {
        flex-direction: column;
    }

    .course-card-actions .btn {
        width: 100%;
    }
}

/* Coming Soon Button Tooltip & Toast Popup */
.coming-soon-btn {
    position: relative;
    cursor: pointer;
}

.coming-soon-btn[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #0f172a;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.825rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 1000;
}

.coming-soon-btn[data-tooltip]::after {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 1000;
}

.coming-soon-btn[data-tooltip]:hover::before,
.coming-soon-btn[data-tooltip]:hover::after,
.coming-soon-btn[data-tooltip]:focus::before,
.coming-soon-btn[data-tooltip]:focus::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* FAQ Section */
.faq-section {
    background-color: var(--blue2);
    padding: 90px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 35px;
}

.faq-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #0b2545;
    margin-bottom: 10px;
}

.faq-accent-line {
    width: 44px;
    height: 3px;
    background-color: #2563eb;
    border-radius: 3px;
    margin: 0 auto;
}

.faq-accordion-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.faq-item.active {
    border-color: #93c5fd;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.faq-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}

.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-chevron {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.2s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    stroke: #2563eb;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px 0 60px;
}

.faq-answer p {
    overflow: hidden;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    padding-bottom: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-contact-note {
    text-align: center;
    margin-top: 36px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.faq-contact-note a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.faq-contact-note a:hover {
    color: #1d4ed8;
}

@media (max-width: 640px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-question {
        padding: 16px 18px;
    }
    .faq-answer {
        padding: 0 18px 0 50px;
    }
    .faq-title {
        font-size: 0.95rem;
    }
}


