@import url('./icons.css');

:root {
  --bg-color: #ffffff;
  --bg-color2: #f8fafc;
  --affiliations: #fff1d7;
  --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-color) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

.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: 45px;
  width: auto;
}
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  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;
}

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

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

.course-sub-nav {
  position: sticky;
  top: 82px;
  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: 82px;
    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);
}
.btn-primary:hover {
  opacity: 0.9;
  background-color: var(--primary-hover);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 22px;
}
.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: 0.95rem;
  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);
}
.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: 30px 0 60px;
  text-align: left;
  background: radial-gradient(circle at top, #e0e7ff 0%, var(--bg-color) 50%);
  scroll-margin-top: 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  text-align: left;
}
.hero-ebook {
  display: block;
  width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom:;
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #b8cced;
}
@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: flex-start;
  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: 40px 0;
  }
  .stats-grid {
    gap: 0;
  }
  .stat-item {
    min-width: 50%;
    min-height: 95px;
    flex: 0 0 50%;
    padding: 20px 10px;
    box-sizing: border-box;
    border: none !important;
  }
  .stat-item:last-child {
    flex: 0 0 100%;
  }
  .stat-number,
  .stat-plus {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 0.9rem;
  }
}

/* Affiliations */
.affiliations {
  background-color: var(--affiliations);
  margin: 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);
}

/* Sections */
section {
  padding: 100px 0;
  margin: 0;
}
.section-header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 40px 0;
}
.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);
}

.why-valuation {
  background: var(--blue2);
}
/* 
.why-valuation .card:nth-child(1) { border-bottom: 4px solid #3b82f6; } 
.why-valuation .card:nth-child(2) { border-bottom: 4px solid #10b981; } 
.why-valuation .card:nth-child(3) { border-bottom: 4px solid #f59e0b; } 
.why-valuation .card:nth-child(4) { border-bottom: 4px solid #8b5cf6; } 
.why-valuation .card:nth-child(5) { border-bottom: 4px solid #ec4899; } 
.why-valuation .card:nth-child(6) { border-bottom: 4px solid #14b8a6; }  */

.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 */
.ivcp {
  background: var(--white);
}

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

.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;
}
.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;
}
.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;
}

/* Faculty Section */
.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: 50%;
  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 {
    display: none;
  }
}

.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: 60%;
}

.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: 50%;
  padding: 3px;
  background: #e0f2fe;
  margin-bottom: 6px;
}

.t-image-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
}

.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: 0.95rem;
  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%;
  }
}

/* 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;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: scroll-sponsors 75s linear infinite;
}
.sponsors-marquee-track:hover {
  animation-play-state: running;
}
.sponsor-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 180px;
  padding: 10px;
  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(calc(-50% - 30px));
  } /* -50% for duplicated content, -30px for half the gap */
}

/* 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;
  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-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-muted);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}
.footer-col h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-logo {
  margin-bottom: 15px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  background-color: white;
  padding: 5px;
  border-radius: 4px;
}
.footer-logo2 {
  margin-bottom: 15px;
}
.footer-logo2 img {
  height: 60px;
  width: auto;
  background-color: white;
  padding: 5px;
  border-radius: 4px;
  margin: 0 6px 0 0;
}

.about-col p {
  line-height: 1.6;
  font-size: 0.95rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.footer-col ul li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #8b5cf6;
}
.links-col a {
  color: #cbd5e1;
  transition: color 0.3s;
  text-decoration: none;
}
.links-col a:hover {
  color: #8b5cf6;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1e293b;
  color: #ffffff;
  transition:
    background-color 0.3s,
    transform 0.2s;
}
.social-links a:hover {
  background-color: #8b5cf6;
  transform: translateY(-3px);
}
.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

@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-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-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;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  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;
}

.fee-payment-left .terms {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.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: 0.95rem;
  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;
}
@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;
  }
}

/* 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 #ec8f54;
}
.accordion-item:nth-child(2) {
  border-bottom: 4px solid #49bdd6;
}
.accordion-item:nth-child(3) {
  border-bottom: 4px solid #ec8f54;
}
.accordion-item:nth-child(4) {
  border-bottom: 4px solid #49bdd6;
}

.accordion-header {
  padding: 12px 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color:;
  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:;
}
.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-item.open .accordion-content {
  max-height: 1500px;
  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;
}

/* Message Section*/
.message-leadership-section {
  background-color: var(--white);
  text-align: justify;
}

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

/* About & Contact Sections */
.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-combined-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .about-combined-grid {
    grid-template-columns: 1fr;
  }
}
.about-col {
  flex: 1;
}

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

.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: 450px;
  object-fit: contain;
  display: block;
}

.gallery-caption {
  margin-top: 20px;
  color: #334155;
  text-align: center;
  padding-bottom: 20px;
  font-size: 1.15rem;
  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: auto; 
  }
  .gallery-caption {
    font-size: 0.8rem;
    padding: 10px;
    margin-top: 0;
  }
  .gallery-nav-btn {
    display: none;
  }
  .gallery-pagination {
    bottom: 75px;
  }
  .prev-gallery {
    left: 10px;
  }
  .next-gallery {
    right: 10px;
  }
}

.contact-section {
  background-color: var(--blue2);
}
.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-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: 0.95rem;
}
.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: 0.95rem;
  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: 0.95rem;
}

.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 */
}
