@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Inter", "Hind Siliguri", sans-serif;
}

:root {
  --dark-color: #000000;
  --light-color: #ffffff;
  --accent-color: #fbbf24;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark-color);
}

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

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

.btn {
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 10px 25px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  display: inline-block;
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
}

.btn:hover {
  color: #ffffff;
  background: #000000;
  border: 2px solid #ffd700;
}

.btn.outlined {
  color: var(--accent-color);
  background: var(--dark-color);
}

.btn.outlined:hover {
  background: var(--accent-color);
  color: #000;
}

.btn.light {
  background: var(--dark-color);
  color: var(--light-color);
  border: 2px solid var(--dark-color);
}

.btn.light:hover {
  background: var(--accent-color);
  color: var(--dark-color);
}

img {
  width: 100%;
  aspect-ratio: auto;
  display: flex;
  object-fit: cover;
}

h1 {
  font-size: 60px;
  line-height: 100%;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 16px 0;
  color: #ffffff;
}

h2 {
  font-size: 36px;
  line-height: 120%;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 8px 0;
  color: #ffffff;
}

h3 {
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -1px;
  margin: 4px 0;
  text-shadow: 2px 1px 0px rgb(179, 151, 0, 0.2);
}

p {
  font-size: 16px;
  line-height: 160%;
}

section {
  padding: 45px 0;
}

/* Navbar */
nav {
  position: fixed;
  top: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0px;
  right: 0px;
  margin-inline: auto;
  z-index: 5;
  padding: 16px 32px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
  nav {
    padding-inline: 120px;
  }
}


nav .menu-items {
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 500;
}

nav .menu-items a {
  transition: all 0.3s ease;
  position: relative;
}

nav .menu-items a:hover,
nav .menu-items a.active {
  color: var(--accent-color);
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

nav .menu-items .btn:hover {
  color: var(--light-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  min-width: 180px;
  z-index: 100;
  top: 100%;
  left: 0;
  padding-top: 10px;
  /* Bridge the gap without margin */
}

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

.dropdown-content a {
  color: #ffffff !important;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: left;
}

.dropdown-content a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-color) !important;
  padding-left: 24px;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropbtn::after {
  content: "";
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  margin-bottom: 3px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropbtn::after {
  transform: rotate(-135deg) translateY(-1px);
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.logo-text {
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.logo-highlight {
  text-transform: uppercase;
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  height: 90vh;
  max-height: 720px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top right, #1a1a00 0%, #000 70%);
}

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--accent-color);
}

.hero p {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: var(--accent-color);
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 212, 0, 0.4);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
  border-color: var(--accent-color);
}

/* Services Section */
#services {
  background-color: #121212 !important;
}

section .heading-container h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #fbbf24 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.section-caption {
  color: rgba(255, 255, 255, 0.6);
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-caption {
    white-space: normal;
    padding: 0 20px;
  }
}

section .heading-container {
  max-width: 900px;
  text-align: center;
  margin-bottom: 60px;
  margin-inline: auto;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: -25px;
}

.services-container .service {
  position: relative;
  box-shadow: 0 4px 15px rgba(99, 96, 64, 0.1);
  background-color: #0f0f0f;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ffc1074a;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

/* Stretched Link Pattern */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.services-container .content {
  padding: 12px;
  text-align: center;
  color: #ffffff;
}

.services-container .content p {
  color: #cccccc;
}

.services-container .service:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.2);
}

.services-container img {
  height: 200px;
  aspect-ratio: 2 / 1;
}

.service-btn {
  display: flex;
  margin-top: 15px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  z-index: 2;
}

.service-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

/* Base Price Container (Used on Homepage) */
.price-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px 8px;
  margin: 10px 0;
  align-items: end;
}

.original-price {
  color: #888;
  text-decoration: line-through;
  font-size: 18px;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.save-badge {
  background-color: #11331a;
  color: #2ecc71;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
}

.current-price {
  color: #fbbf24;
  font-size: 30px;
  font-weight: 800;
  grid-column: 1;
  grid-row: 2;
}


/* Coupon Box */
.coupon-box {
  border: 1px solid #4a4116;
  background-color: #1a180e;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.coupon-text {
  color: #fbbf24;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 40px 32px 30px;
}

footer a {
  color: var(--light-color);
}

.social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--light-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
  border-color: var(--accent-color);
}

footer .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer .logo {
  font-size: 22px;
}

footer .copyright {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 14px;
}

/* Mobile Menu */
.menu-icon,
.mobile-menu-items,
.mobile-icons-container {
  display: none;
}

.mobile-menu-items {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-items::-webkit-scrollbar {
  width: 5px;
  display: block;
}

.mobile-menu-items::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.mobile-menu-items::-webkit-scrollbar-thumb {
  background: rgba(251, 191, 36, 0.4);
  border-radius: 10px;
}

/* Standard scrollbar for Firefox/other browsers */
.mobile-menu-items {
  scrollbar-width: thin;
  scrollbar-color: rgba(251, 191, 36, 0.4) transparent;
}

.mobile-menu-items.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-items .close-icon {
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 1001;
  /* Ensure it's above other elements */
  position: relative;
  /* Needed for z-index to work */
}

.mobile-menu-items .close-icon svg {
  fill: #ffffff;
  width: 24px;
  height: 24px;
}

.mobile-menu-items .close-icon:hover {
  transform: rotate(90deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.mobile-menu-links a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
  padding: 8px 16px;
  border-radius: 8px;
}

.mobile-menu-items.active .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered link animation */
.mobile-menu-items.active .mobile-menu-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(6) {
  transition-delay: 0.6s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(7) {
  transition-delay: 0.7s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(8) {
  transition-delay: 0.8s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(9) {
  transition-delay: 0.9s;
}

.mobile-menu-items.active .mobile-menu-links a:nth-child(10) {
  transition-delay: 1s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
  font-weight: 700;
}

.mobile-menu-links .btn {
  font-size: 16px;
  padding: 12px 32px;
  margin-top: 16px;
  background: var(--accent-color);
  color: #000;
}

.mobile-menu-footer {
  text-align: center;
  padding-bottom: 40px;
}

.mobile-menu-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 20px;
}

.mobile-menu-footer .social {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.mobile-menu-footer .social img {
  width: 28px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.mobile-menu-footer .social img:hover {
  opacity: 1;
  transform: translateY(-5px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.25);
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  transform: scale(1.1) translateY(-8px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover svg {
  transform: rotate(15deg);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  nav {
    padding: 14px 20px;
  }

  nav .menu-items {
    display: none;
  }

  .mobile-menu-items {
    display: flex;
  }

  .mobile-icons-container {
    display: block;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
    padding: 2px;
    width: 32px;
    transition: transform 0.3s ease;
  }

  .menu-icon:hover {
    transform: scale(1.1);
  }

  .menu-icon svg {
    fill: var(--accent-color);
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 36px;
    line-height: 120%;
  }

  h2 {
    font-size: 28px;
    line-height: 130%;
  }

  h3 {
    font-size: 20px;
  }

  .container {
    max-width: 700px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  footer .top {
    flex-direction: column;
  }

  footer {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  nav {
    top: 0;
    padding: 12px 16px;
  }

  .logo-img {
    height: 36px;
  }

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

  .container {
    padding: 0 20px;
  }

  section {
    padding: 30px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
    line-height: 150%;
  }

  .hero {
    min-height: 400px;
    max-height: 550px;
    padding-top: 100px;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .hero-btn,
  .btn-outline {
    padding: 12px 28px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-container .service {
    max-width: 100%;
  }

  .price-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  footer {
    padding: 40px 20px;
  }

  footer .top {
    gap: 30px;
  }

  footer .logo {
    font-size: 20px;
  }

  footer .social {
    gap: 20px;
  }

  footer .social img {
    width: 26px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }

  nav {
    padding: 10px 12px;
  }

  .logo-img {
    height: 32px;
  }

  .logo-text {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 24px;
  }

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

  .hero-btn,
  .btn-outline {
    padding: 10px 24px;
    font-size: 15px;
  }

  .hero {
    min-height: 380px;
    max-height: 550px;
    padding-top: 90px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 17px;
  }

  .current-price {
    font-size: 26px;
  }

  .original-price {
    font-size: 16px;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
}

/* Course Page Card Implementation */
.course-detail-container {
  padding: 120px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: #121212;
}

.course-detail-container .service {
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.course-detail-container .service img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.course-detail-container .content {
  padding: 40px !important;
  text-align: left !important;
  color: #ffffff;
}

.course-detail-container h3 {
  font-size: 32px !important;
  margin-bottom: 20px;
  text-align: left;
  color: #ffffff !important;
}

.course-detail-container .content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.course-detail-container .highlight {
  color: var(--accent-color);
}

.course-detail-container .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.course-detail-container .feature-list h4 {
  color: var(--accent-color);
  margin-bottom: 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-detail-container .feature-list ul {
  list-style: none;
  padding: 0;
}

.course-detail-container .feature-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-detail-container .feature-list li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
}

@media (max-width: 768px) {
  .course-detail-container {
    padding: 100px 15px 40px;
  }

  .course-detail-container .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .course-detail-container .content {
    padding: 24px !important;
  }

  .course-detail-container h3 {
    font-size: 24px !important;
  }
}

/* Detailed Syllabus Styles */
.subject-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.subject-lists h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.subject-lists ul {
  list-style: none;
  padding: 0;
}

.subject-lists li {
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.syllabus-coverage {
  margin: 40px 0;
}

.syllabus-coverage h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--accent-color);
  text-align: center;
}

.syllabus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.syllabus-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.syllabus-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.syllabus-card h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.syllabus-card ul {
  list-style: none;
  padding: 0;
}

.syllabus-card li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-size: 14px;
}

.syllabus-card .chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.chapter-tag {
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-color);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.course-features-new {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
}

.course-features-new h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
}

.course-features-new ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.course-features-new li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-features-new li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
}

/* Specific Darker Theme for Batch Odommo (Class 10), Batch Ongkur (Class 9), and Batch Combo */
.batch-odommo,
.batch-ongkur,
.batch-combo,
.batch-ssc26 {
  background-color: #050505 !important;
  border-color: rgba(251, 191, 36, 0.3) !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

.batch-odommo .highlight,
.batch-odommo h4,
.batch-odommo .current-price,
.batch-odommo .coupon-text,
.batch-odommo .chapter-tag,
.batch-ongkur .highlight,
.batch-ongkur h4,
.batch-ongkur .current-price,
.batch-ongkur .coupon-text,
.batch-ongkur .chapter-tag,
.batch-combo .highlight,
.batch-combo h4,
.batch-combo .current-price,
.batch-combo .coupon-text,
.batch-combo .chapter-tag,
.batch-ssc26 .highlight,
.batch-ssc26 h4,
.batch-ssc26 .current-price,
.batch-ssc26 .coupon-text,
.batch-ssc26 .chapter-tag {
  color: var(--accent-color);
}

.batch-odommo .subject-lists,
.batch-ongkur .subject-lists,
.batch-combo .subject-lists {
  background: rgba(251, 191, 36, 0.05) !important;
  border-color: rgba(251, 191, 36, 0.1) !important;
}

.batch-odommo .syllabus-card:hover,
.batch-ongkur .syllabus-card:hover,
.batch-combo .syllabus-card:hover {
  border-color: #fbbf24 !important;
}

.batch-odommo .service-btn,
.batch-ongkur .service-btn,
.batch-combo .service-btn {
  background-color: #fbbf24 !important;
}

.batch-odommo .service-btn:hover,
.batch-ongkur .service-btn:hover,
.batch-combo .service-btn:hover {
  background-color: #f59e0b !important;
}

@media (max-width: 600px) {

  .subject-lists,
  .course-features-new ul {
    grid-template-columns: 1fr;
  }
}


/* Teacher Panel Section */
#teacher {
  background-color: #080808 !important;
  padding: 100px 0;
  position: relative;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.teacher-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 30px 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teacher-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 191, 36, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(251, 191, 36, 0.1);
}

.teacher-img-wrapper {
  width: 120px;
  height: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), transparent);
  margin-bottom: 20px;
  position: relative;
}

.teacher-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(251, 191, 36, 0.2);
  opacity: 0;
  transition: all 0.3s ease;
}

.teacher-card:hover .teacher-img-wrapper::after {
  opacity: 1;
  transform: scale(1.1);
}

.teacher-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(30%);
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.teacher-card:hover .teacher-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.teacher-info {
  width: 100%;
}

.teacher-subject {
  color: #fbbf24;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 20px;
}

.teacher-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.teacher-bio {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 900px) {
  .teachers-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .teachers-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
