/* ============================================
   AcadXL - Main Stylesheet
   Color Theme: Orange (#ff6600)
   ============================================ */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent horizontal scrolling globally */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #000000;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100%;
  position: relative;
  min-height: 100vh;
}

/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10000;
  padding: 0;
  margin: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
}

/* Logo Section */
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-link:hover .logo-image {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Navigation Links */
.navbar-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 40px;
  position: relative;
  overflow: visible;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: visible;
}

.nav-item {
  position: relative;
}

.nav-item-mobile-only {
  display: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
  background: rgba(255, 102, 0, 0.15);
  color: #ff6600;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  margin-top: 0;
  padding-top: 8px;
  background: transparent;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10001;
  pointer-events: none;
}

.dropdown-content {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Bridge the gap between nav link and dropdown */
.nav-item-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
  z-index: 10002;
}

/* Keep dropdown open when hovering over the menu itself */
.dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.dropdown-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
  min-width: 280px;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-column:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dropdown-category {
  font-size: 16px;
  font-weight: 700;
  color: #ff6600;
  text-transform: none;
  letter-spacing: -0.3px;
  margin: 0 0 12px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6600;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-link:hover {
  background: rgba(255, 102, 0, 0.1);
  color: #ff6600;
  transform: translateX(4px);
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #ff6600;
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease;
}

.dropdown-link:hover::before {
  height: 60%;
}

/* Login Button */
.navbar-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-login {
  background: linear-gradient(135deg, #ff6600 0%, #ff5202 100%);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
  white-space: nowrap;
}

.btn-login:hover {
  background: linear-gradient(135deg, #ff5202 0%, #e54615 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
/* ============================================
   Promotional Banner
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 40%, #ff6600 80%, #ff8533 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: visible;
  z-index: 9999;
  margin: 0;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  min-height: 48px;
  display: block;
  visibility: visible;
  transform: translateZ(0);
}

/* Ensure promo banner starts right below fixed navbar with no extra gap */
body > header.navbar {
  margin-bottom: 0;
}

/* Add spacing to body to account for fixed navbar */
body {
  padding-top: 70px;
}

/* First section after navbar - no gap, positioned right below navbar */
body > header.navbar + section.promo-banner {
  margin-top: 0;
  position: relative;
  z-index: 9999;
  display: block;
  visibility: visible;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.1) 30px,
    rgba(255, 255, 255, 0.1) 60px
  );
  pointer-events: none;
  opacity: 0.4;
}

.promo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.promo-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  position: relative;
  z-index: 1;
}

/* Responsive Design for Promo Banner */
@media (max-width: 768px) {
  .promo-banner-content {
    gap: 10px;
    padding: 6px 0;
    min-height: 44px;
  }

  .promo-text-primary {
    font-size: 13px;
    padding: 8px 16px;
    letter-spacing: 0.8px;
  }

  .promo-text-secondary {
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .promo-highlight {
    font-size: 12px;
    padding: 3px 8px;
    margin: 0 2px;
  }

  .promo-phone-link {
    font-size: 13px;
    padding: 6px 14px;
  }

  .promo-icon svg {
    width: 24px;
    height: 24px;
  }

  .promo-sparkles svg {
    width: 18px;
    height: 18px;
  }

  .promo-arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .promo-banner-container {
    padding: 6px 0;
  }

  .promo-banner-content {
    gap: 35px;
    padding: 0;
    min-height: 32px;
  }

  .promo-text-primary {
    font-size: 11px;
    padding: 5px 10px;
    letter-spacing: 0.3px;
    margin-right: 30px;
    line-height: 1.3;
  }

  .promo-text-secondary {
    font-size: 10px;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 1.3;
  }

  .promo-highlight {
    font-size: 10px;
    padding: 2px 5px;
    margin: 0 2px;
  }

  .promo-phone-link {
    font-size: 10px;
    padding: 3px 8px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.promo-banner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.promo-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
  min-height: 48px;
}

.promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.promo-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.promo-icon:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.promo-icon svg path {
  fill: #FFFFFF;
}

.promo-text-primary {
  font-size: 16px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  position: relative;
  padding: 10px 24px;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 40%, #CD853F 50%, #A0522D 60%, #8B4513 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.25), inset 0 -2px 6px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-text-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 2px 6px rgba(255, 255, 255, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
}

.promo-sparkles {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  animation: sparkle 2s ease-in-out infinite;
}

.promo-sparkles svg {
  width: 22px;
  height: 22px;
  animation: rotate 3s linear infinite, sparkle 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.promo-sparkles svg:nth-child(1) {
  animation-delay: 0s;
}

.promo-sparkles svg:nth-child(2) {
  animation-delay: 0.5s;
}

.promo-sparkles svg path {
  fill: #FFFFFF;
}

.promo-text-secondary {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.promo-highlight {
  font-weight: 900;
  color: #1a1a1a;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  padding: 4px 12px;
  border-radius: 8px;
  text-shadow: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-block;
  margin: 0 4px;
  letter-spacing: 0.8px;
  animation: pulse 2s ease-in-out infinite;
}

.promo-phone-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 900;
  font-size: 15px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 40%, #CD853F 50%, #A0522D 60%, #8B4513 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.25), inset 0 -2px 6px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  display: inline-block;
  letter-spacing: 0.5px;
}

.promo-phone-link:hover {
  color: #FFFFFF;
  background: linear-gradient(135deg, #A0522D 0%, #CD853F 40%, #D2691E 50%, #CD853F 60%, #A0522D 100%);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5), inset 0 2px 6px rgba(255, 255, 255, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.35);
}

.promo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  animation: slideRight 1.5s ease-in-out infinite;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

.promo-arrow svg {
  width: 20px;
  height: 20px;
}

/* ===== Promo Banner Mobile Fix ===== */
@media (max-width: 768px) {
  body > header.navbar + section.promo-banner {
    margin-top: 0;
    z-index: 9999;
  }

  .promo-banner {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 40%, #ff6600 80%, #ff8533 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    padding: 0;
    top: 60px;
    margin: 0;
    margin-top: 0;
    position: sticky;
    display: block;
    visibility: visible;
    z-index: 9999;
    transform: translateZ(0);
  }

  .promo-banner::before,
  .promo-banner::after {
    display: block !important;
    opacity: 0.4 !important;
  }

  .promo-banner-wrapper {
    overflow: hidden !important;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .promo-banner-container {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .promo-banner-content {
    flex-direction: row;
    gap: 45px;
    padding: 0;
    text-align: left;
    overflow: visible;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    height: auto;
    min-height: 36px;
    animation: marquee 16s linear infinite;
    animation-delay: 1s;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .promo-text-primary {
    font-size: 12px;
    line-height: 1.3;
    padding: 6px 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transform: translateZ(0);
    will-change: transform;
    margin-right: 35px;
    vertical-align: middle;
  }

  .promo-text-secondary {
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transform: translateZ(0);
    will-change: transform;
    margin-left: 35px;
    margin-right: 35px;
    vertical-align: middle;
  }

  .promo-highlight {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    margin: 0 2px;
    font-size: 11px;
    vertical-align: middle;
  }

  .promo-phone-link {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 11px;
    padding: 4px 10px;
    vertical-align: middle;
  }

  .promo-arrow {
    display: none;
  }

  .promo-icon,
  .promo-sparkles {
    display: none;
  }
}

/* Marquee Animation - Smooth with 1s hold at start */
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  6.25% {
    transform: translate3d(0, 0, 0); /* Hold for 1 second (6.25% of 16s) */
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}




@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.hero-section .hero-container {
  height: auto;
  flex-shrink: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-poster-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-poster-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Slider Arrow Buttons */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 102, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #ff6600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-slider-arrow:hover {
  background: #ff6600;
  color: #ffffff;
  border-color: #ff6600;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.hero-slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-slider-arrow-left {
  left: 20px;
}

.hero-slider-arrow-right {
  right: 20px;
}

.hero-slider-arrow svg {
  width: 24px;
  height: 24px;
}

/* Hero Slider Dots */
.hero-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  width: 100%;
  background: #ffffff;
  position: relative;
  z-index: 10;
  margin: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: #ff6600;
  width: 32px;
  border-radius: 6px;
}

.slider-dot:hover {
  background: #ff6600;
  opacity: 0.7;
}

/* ============================================
   What Do We Offer Section
   ============================================ */
.offer-section {
  background: #f8f9fa;
  padding: 40px 0 40px 0;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* ============================================
   Exam Categories Section
   ============================================ */
.exam-categories-section {
  background: #eee6e6;
  padding: 50px 0 50px 0;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.exam-categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 50%, transparent 100%);
}

.exam-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.exam-section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 1.2;
}

.exam-section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  border-radius: 2px;
}

.exam-section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.exam-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.exam-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}

.exam-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 102, 0, 0.15);
  border-top-color: #ff6600;
}

.exam-card-content {
  display: flex;
  height: 100%;
  position: relative;
  padding: 32px 28px;
  overflow: visible;
  overflow-y: visible;
}

.exam-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 2;
  max-width: 55%;
  padding-right: 28px;
  overflow: visible;
  overflow-y: visible;
  min-width: 0;
}

.exam-card-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
  overflow: hidden;
  overflow-y: hidden;
}

.exam-card-title {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
  max-width: 100%;
}

.exam-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.olympiad-buttons {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  align-items: flex-start !important;
}

.exam-btn {
  background: #ffffff;
  border: 1.5px solid #e0e0e0;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  width: fit-content;
  min-width: auto;
}

.exam-btn:hover {
  background: #ff6600;
  color: #ffffff;
  border-color: #ff6600;
}

.olympiad-btn {
  text-transform: uppercase !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.exam-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.2s ease;
}

.exam-explore-link:hover {
  color: #ff6600;
  gap: 10px;
}

.exam-arrow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.exam-explore-link:hover .exam-arrow-icon {
  background: #ff6600;
  color: #ffffff;
}

.exam-arrow-icon svg {
  width: 12px;
  height: 12px;
}

.exam-icon-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}

.exam-icon-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(255, 102, 0, 0.15) 100%);
  right: -100px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
}

.exam-card:nth-child(2) .exam-icon-bg {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(255, 102, 0, 0.15) 100%);
}

.exam-card:nth-child(3) .exam-icon-bg {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 140, 0, 0.15) 100%);
}

.exam-icon {
  position: relative;
  width: 130px;
  height: 130px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exam-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.exam-card:hover .exam-icon-image {
  transform: scale(1.05);
}

.offer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.offer-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.offer-section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  border-radius: 2px;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.offer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.15);
  border-color: rgba(255, 102, 0, 0.4);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.offer-card:hover .offer-icon {
  background: rgba(255, 102, 0, 0.1);
  transform: scale(1.05);
}

.offer-icon-image {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-icon-image {
  transform: scale(1.05);
}

.offer-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.offer-card-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
  background: #ffffff;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.trust-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


.trust-highlight-text {
  color: #ff6600;
  font-weight: 700;
}

.trust-text {
  text-align: left;
}

.trust-subtitle {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

.trust-subtitle-highlight {
  color: #ff6600;
  display: block;
  position: relative;
}

.trust-subtitle-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.337) 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
  z-index: -1;
  border-radius: 4px;
}

.trust-yellow-text {
  color: #ff6600;
  font-weight: 800;
}

@keyframes underlinePulse {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.05);
  }
}

.rotating-word {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  min-width: 300px;
  width: auto;
  text-align: left;
  height: 1em;
  line-height: 1.2;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.word-item {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  min-width: 100%;
  opacity: 0;
  color: #000000;
  transform: translateY(120%);
  animation: wordRotate 8s ease-in-out infinite;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 1em;
  font-weight: 800;
  margin: 0;
  padding: 0;
  text-align: left;
  vertical-align: baseline;
}

.word-item:nth-child(1) {
  animation-delay: 0s;
  color: #262626;
}

.word-item:nth-child(2) {
  animation-delay: 4s;
  color: #262626;
}

@keyframes wordRotate {
  0% {
    opacity: 0;
    transform: translateY(120%);
  }
  8%, 42% {
    opacity: 1;
    transform: translateY(0);
  }
  50%, 100% {
    opacity: 0;
    transform: translateY(-120%);
  }
}

.trust-description {
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 500;
}

.trust-description-secondary {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.btn-get-started {
  display: inline-block;
  background: linear-gradient(135deg, #ff6600 0%, #ff8c00 100%);
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

/* Trust Illustration */
.trust-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.illustration-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 550px;
  max-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.trust-main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Q&A Section - Dedicated Section */
.qa-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ffffff 100%);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.qa-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.qa-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.qa-section-header {
  text-align: center;
  margin-bottom: 16px;
}

.qa-section-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.qa-section-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
  opacity: 0.95;
}

.qa-main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.qa-conversation-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 240px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Q&A Conversation Container */
.qa-conversation-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px;
}

.qa-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 45%;
  max-width: none;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  z-index: 2;
}

.qa-student-card {
  flex-direction: row;
  justify-content: flex-start;
}

.qa-teacher-card {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.qa-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  z-index: 3;
}

.qa-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.qa-avatar-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6600;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.7);
}

.qa-teacher-badge {
  background: #4A90E2;
}

.qa-message-bubble {
  position: relative;
  padding: 18px 22px;
  border-radius: 22px;
  max-width: 400px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.5s ease-out;
}

.qa-question-bubble {
  background: rgba(255, 255, 255, 0.95);
  color: #333333;
  border-top-left-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.qa-question-bubble::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12px 10px 0;
  border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
}

.qa-answer-bubble {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: #ffffff;
  border-top-right-radius: 4px;
}

.qa-answer-bubble::before {
  content: '';
  position: absolute;
  right: -12px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #ff6600;
}

.qa-message-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.qa-question-bubble .qa-message-text {
  color: #333333;
}

.qa-answer-bubble .qa-message-text {
  color: #ffffff;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Decorative Dots */
.decorative-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.dot-blue {
  background: #4A90E2;
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.dot-orange {
  background: #ff6600;
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.dot-pink {
  background: #FF6B9D;
  bottom: 25%;
  right: 15%;
  animation-delay: 2s;
}

/* Q&A Section Decorative Dots */
.qa-decorative-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  z-index: 0;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.qa-dot-blue {
  background: #4A90E2;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.qa-dot-orange {
  background: #ff6600;
  top: 60%;
  right: 5%;
  animation-delay: 1.5s;
}

.qa-dot-pink {
  background: #FF6B9D;
  bottom: 15%;
  left: 8%;
  animation-delay: 2.5s;
}

.qa-dot-green {
  background: #4CAF50;
  top: 25%;
  right: 3%;
  animation-delay: 3.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   Hidden SEO Content
   ============================================ */
.seo-hidden {
  display: none;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trust-text {
    text-align: center;
  }

  /* Exam Cards Laptop Fixes */
  .exam-card-content {
    padding: 28px 24px;
  }

  .exam-card-left {
    max-width: 52%;
    padding-right: 24px;
  }

  .exam-card-title {
    font-size: 30px;
  }

  .exam-card-right {
    width: 48%;
  }

  .exam-icon {
    width: 110px;
    height: 110px;
  }

  .exam-icon-bg {
    width: 280px;
    height: 280px;
    right: -100px;
  }

  .qa-section {
    padding: 20px 0;
  }

  .qa-section-header {
    margin-bottom: 14px;
  }

  .qa-section-title {
    font-size: 36px;
  }

  .qa-section-subtitle {
    font-size: 16px;
  }

  .qa-conversation-wrapper {
    max-width: 100%;
    min-height: 300px;
    padding: 0 20px;
    gap: 30px;
    flex-direction: column;
  }

  .qa-card {
    width: 100%;
    max-width: 500px;
  }

  .qa-avatar-wrapper {
    width: 190px;
    height: 190px;
  }

  .trust-section {
    max-height: none;
    min-height: auto;
    padding: 40px 0 5px 0;
    margin-top: 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .offer-section {
    padding: 10px 0 60px 0;
    margin-top: -15px;
  }

  .promo-banner {
    padding: 0;
    margin-top: 70px;
  }

  .promo-banner-container {
    padding: 8px 16px;
  }

  .promo-banner-content {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .promo-icon svg {
    width: 24px;
    height: 24px;
  }

  .promo-text-primary {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .promo-sparkles svg {
    width: 16px;
    height: 16px;
  }

  .promo-text-secondary {
    font-size: 13px;
  }

  .promo-arrow svg {
    width: 18px;
    height: 18px;
  }

  .trust-subtitle {
    font-size: 36px;
  }

  .trust-subtitle {
    font-size: 22px;
  }

  .trust-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .illustration-container {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: none;
    padding: 20px;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .trust-main-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
  }

  .trust-description {
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 500;
  }

  .illustration-container {
    max-width: 400px;
    height: 400px;
    max-height: 400px;
    margin: 0 auto;
  }

  .qa-conversation-container {
    max-width: 100%;
    height: auto;
    min-height: 450px;
    gap: 24px;
    padding: 16px;
  }

  .qa-card {
    max-width: 100%;
    gap: 12px;
  }

  .qa-avatar-wrapper {
    width: 100px;
    height: 100px;
  }

  .qa-avatar-badge {
    font-size: 11px;
    padding: 5px 14px;
  }

  .qa-message-bubble {
    max-width: calc(100% - 120px);
    padding: 16px 20px;
  }

  .qa-message-text {
    font-size: 15px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .offer-section-title {
    font-size: 38px;
  }

  .exam-categories-section {
    padding: 60px 0 60px 0;
  }

  .exam-section-title {
    font-size: 40px;
  }

  .exam-section-subtitle {
    font-size: 17px;
  }

  .exam-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Faculties Section Responsive - Tablet */
  .faculties-section {
    padding: 30px 0 30px 0;
  }

  .faculties-container {
    padding: 0 24px;
  }

  .faculties-section-title {
    font-size: 36px;
  }

  .faculties-section-subtitle {
    font-size: 17px;
    margin-bottom: 28px;
    margin-top: 16px;
  }

  .founder-section {
    margin-bottom: 35px;
  }

  .founder-card {
    padding: 36px 28px;
    gap: 32px;
  }

  .founder-image-wrapper {
    width: 280px;
    height: 280px;
  }

  .founder-name {
    font-size: 32px;
  }

  .founder-role {
    font-size: 19px;
  }

  .faculty-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    max-width: 100%;
  }

  .faculty-carousel-track {
    width: 100%;
  }

  /* Testimonials Section Responsive - Tablet */
  .testimonials-section {
    padding: 60px 0 60px 0;
  }

  .testimonials-container {
    padding: 0 24px;
  }

  .testimonials-title {
    font-size: 36px;
  }

  .testimonials-label {
    font-size: 15px;
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* Medium devices (tablets, 600px and up) */
@media (max-width: 900px) and (min-width: 601px) {
  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .exam-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .faculty-card {
    flex: 0 0 calc(50% - 12px);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding-top: 64px;
  }

  .navbar-container {
    padding: 0 24px;
    height: 64px;
    max-width: 100%;
    overflow: hidden;
  }

  .offer-container,
  .trust-container,
  .exam-container {
    padding: 0 24px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  /* Offer Section Mobile Fixes */
  .offer-section {
    padding: 32px 0 40px 0;
    margin-top: 0;
  }

  .offer-section-title {
    font-size: 28px;
    margin-bottom: 32px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 16px;
    text-align: center;
  }

  .offer-section-title::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }

  .offer-card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .offer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
  }

  .offer-icon-image {
    width: 70%;
    height: 70%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .offer-card-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .offer-card-subtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .logo-image {
    height: 44px;
    max-width: 150px;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 16px;
  }

  .navbar-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-link {
    padding: 12px 16px;
    width: 100%;
  }

  /* Mobile Dropdown Styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin: 8px 0 0 0;
    min-width: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    display: none;
    left: 0;
  }

  .nav-item-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 100%;
  }

  .dropdown-column {
    gap: 12px;
    padding-bottom: 14px;
  }

  .dropdown-column:last-child {
    padding-bottom: 0;
  }

  .dropdown-category {
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .dropdown-link {
    padding: 8px 12px;
    font-size: 14px;
  }

  .btn-login {
    padding: 6px 12px;
    font-size: 13px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Professional Mobile Header Cleanup */
  .navbar-actions {
    display: none !important;
  }

  .nav-item-mobile-only {
    display: block !important;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
  }

  .btn-login-mobile {
    background: linear-gradient(135deg, #ff6600 0%, #ff5202 100%) !important;
    color: #ffffff !important;
    text-align: center;
    border-radius: 8px;
    padding: 14px !important;
    font-weight: 600;
    display: block !important;
    margin: 10px 0;
  }

  .hero-section {
    background: #ffffff !important;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: -64px !important;
    padding-top: 0 !important;
    width: 100%;
    position: relative;
  }

  .hero-section .hero-container {
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #ffffff !important;
  }

  .hero-slider-wrapper {
    height: auto !important;
    min-height: auto !important;
    position: relative;
    background: #ffffff !important;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    background: #ffffff !important;
  }

  .hero-slide.active {
    position: relative !important;
    opacity: 1;
    visibility: visible;
    z-index: 2;
    display: block;
  }

  .hero-poster-wrapper {
    width: 100%;
    height: auto !important;
    display: block;
    background: #ffffff !important;
  }

  .hero-poster-image {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: contain !important;
  }

  .hero-slider-dots {
    padding: 15px 0;
    margin: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #f0f0f0;
  }

  .slider-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .slider-dot.active {
    width: 20px !important;
    height: 8px !important;
  }

  /* Professional Faculty Carousel Fix */
  .faculties-section {
    padding: 40px 0 !important;
    background: #ffffff !important;
  }

  .faculties-container {
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .faculty-carousel-container {
    padding: 20px 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .faculty-carousel-track {
    display: flex !important;
    gap: 20px !important;
    padding: 0 !important; /* Zero left-right padding */
    margin: 0 15px !important; /* Add margin instead */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .faculty-card {
    flex: 0 0 80% !important; 
    width: 80% !important;
    max-width: 80% !important;
    margin: 0 !important;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    border: 1px solid #f0f0f0;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .faculty-image-wrapper {
    width: 140px !important;
    height: 140px !important;
    margin: 0 auto 20px !important;
    overflow: hidden !important;
    border-radius: 50% !important;
    border: 2px solid #ff6600 !important;
    background: #ffffff !important;
  }

  .faculty-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* Prevents cropping faces */
    display: block !important;
  }

  .carousel-btn {
    display: flex !important;
    background: transparent !important; /* Fully transparent */
    backdrop-filter: none !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    z-index: 100 !important;
    opacity: 0.7 !important;
    box-shadow: none !important;
    transform: translateY(-50%) !important;
  }

  .carousel-btn:hover {
    opacity: 1 !important;
    background: rgba(255, 102, 0, 0.9) !important;
    border-color: #ff6600 !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3) !important;
  }

  .carousel-btn svg {
    color: #333 !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  }

  .carousel-btn-prev {
    left: 5px !important;
  }

  .carousel-btn-next {
    right: 5px !important;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    background: transparent !important;
    border: none !important;
    opacity: 0.8 !important;
  }

  .hero-slider-arrow svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }

  .hero-slider-arrow-left {
    left: 10px;
  }

  .hero-slider-arrow-right {
    right: 10px;
  }

  .hero-slider-arrow:hover {
    background: transparent !important;
    opacity: 1 !important;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

  .trust-content {
    gap: 0px;
  }

  .trust-section {
    max-height: none;
    min-height: auto;
    padding: 20px 0 5px 0;
    margin-top: 0;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .offer-section {
    padding: 5px 0 60px 0;
    margin-top: -20px;
  }

  .trust-text {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .btn-get-started {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .trust-subtitle {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .trust-subtitle {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .trust-description {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .trust-description-secondary {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .trust-illustration {
    margin-top: -12px;
    padding-top: 0;
  }

  .qa-conversation-container {
    min-height: 400px;
    gap: 20px;
    padding: 12px;
  }

  .qa-card {
    gap: 10px;
  }

  .qa-avatar-wrapper {
    width: 170px;
    height: 170px;
  }

  .qa-avatar-badge {
    font-size: 13px;
    padding: 10px 20px;
  }

  .qa-message-bubble {
    max-width: calc(100% - 190px);
    padding: 14px 18px;
  }

  .qa-message-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .btn-get-started {
    padding: 14px 32px;
    font-size: 15px;
  }

  .trust-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .illustration-container {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: none;
    padding: 20px;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .trust-main-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
  }

  .decorative-dot {
    width: 10px;
    height: 10px;
  }

  .decorative-dot {
    width: 10px;
    height: 10px;
  }

  .offer-section {
    padding: 60px 0;
  }

  .offer-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .exam-categories-section {
    padding: 70px 0 60px 0;
  }

  .exam-section-title {
    font-size: 36px;
  }

  .exam-section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .exam-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .exam-card {
    min-height: 300px;
  }

  .exam-card-content {
    padding: 24px 20px;
  }

  .exam-card-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .exam-card-right {
    width: 40%;
  }

  .exam-icon {
    width: 80px;
    height: 80px;
  }

  .exam-icon-bg {
    width: 120px;
    height: 120px;
  }

  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .offer-card {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding-top: 60px;
  }

  .navbar-container {
    height: 60px;
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  .hero-section {
    margin-top: -60px !important;
    padding-top: 0 !important;
  }

  .offer-container,
  .trust-container,
  .exam-container,
  .qa-section-container {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .qa-section {
    padding: 40px 0;
  }

  .qa-section-header {
    margin-bottom: 28px;
  }

  .qa-section-title {
    font-size: 22px;
  }

  .qa-section-subtitle {
    font-size: 13px;
  }

  .qa-conversation-wrapper {
    min-height: 400px;
    padding: 16px 12px;
    gap: 20px;
    border-radius: 16px;
  }

  .exam-categories-section {
    padding: 50px 0 50px 0;
  }

  .exam-section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .exam-section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .exam-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .exam-card {
    min-height: 180px;
    margin: 0;
  }

  .exam-card-content {
    padding: 16px 14px;
    flex-direction: row;
    min-height: 180px;
    align-items: center;
  }

  .exam-card-left {
    flex: 1;
    max-width: 55%;
    padding-right: 10px;
  }

  .exam-card-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    height: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .exam-icon-wrapper {
    justify-content: flex-end;
    padding-right: 5px;
    width: 100%;
    height: 100%;
  }

  .exam-icon-bg {
    width: 200px;
    height: 200px;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    margin: 0;
  }

  .exam-icon {
    width: 120px;
    height: 120px;
    z-index: 2;
  }

  .exam-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .exam-card-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .exam-buttons {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-bottom: 16px;
    align-items: flex-start !important;
  }

  .olympiad-buttons {
    gap: 8px !important;
  }

  .exam-btn {
    padding: 6px 14px;
    font-size: 13px;
    width: auto;
    max-width: fit-content;
    text-align: left;
  }

  .olympiad-btn {
    font-size: 13px !important;
    font-weight: 500 !important;
  }

  .exam-explore-link {
    font-size: 14px;
  }

  .exam-icon {
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
  }

  .hero-headline {
    font-size: 28px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-slider-arrow {
    width: 36px;
    height: 36px;
    background: transparent !important;
    border: none !important;
    opacity: 0.8 !important;
  }

  .hero-slider-arrow svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }

  .hero-slider-arrow-left {
    left: 8px;
  }

  .hero-slider-arrow-right {
    right: 8px;
  }

  .hero-slider-arrow:hover {
    background: transparent !important;
    opacity: 1 !important;
  }

  .hero-slider-dots {
    padding: 12px 0 !important;
  }

  .slider-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .slider-dot.active {
    width: 20px !important;
    height: 8px !important;
  }

  .btn-explore,
  .btn-get-started {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Trust Section Mobile Fixes */
  .trust-section {
    padding: 32px 0 24px 0;
    margin-top: 0;
    max-height: none;
    min-height: auto;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .trust-container {
    padding: 0 24px;
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    text-align: center;
  }

  .trust-text {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
  }

  .trust-subtitle {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.2px;
    padding: 0 16px;
    text-align: center;
    display: block;
    width: 100%;
  }

  .rotating-word {
    min-width: 200px;
    width: auto;
    display: inline-block;
    text-align: center;
  }

  .word-item {
    white-space: nowrap;
    text-align: center;
  }

  .trust-description {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .trust-description-secondary {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 0 8px;
  }

  .btn-get-started {
    margin-bottom: 0;
    padding: 14px 32px;
    font-size: 15px;
  }

  .trust-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 0;
  }

  .illustration-container {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: none;
    padding: 0 16px;
    margin: 0 auto;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-main-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
    display: block;
  }

  .offer-section {
    padding: 32px 0 40px 0;
    margin-top: 0;
  }

  .qa-section {
    padding: 20px 0;
  }

  .qa-section-container {
    padding: 0 16px;
  }

  .qa-section-header {
    margin-bottom: 14px;
  }

  .qa-section-title {
    font-size: 24px;
  }

  .qa-section-subtitle {
    font-size: 14px;
  }

  .qa-conversation-wrapper {
    min-height: 200px;
    padding: 0 12px;
    gap: 16px;
    flex-direction: column;
  }

  .qa-card {
    width: 100%;
    max-width: 100%;
  }

  .qa-card {
    gap: 10px;
  }

  .qa-avatar-wrapper {
    width: 150px;
    height: 150px;
  }

  .qa-avatar-badge {
    font-size: 12px;
    padding: 8px 16px;
    bottom: -12px;
  }

  .qa-message-bubble {
    max-width: calc(100% - 170px);
    padding: 12px 16px;
    border-radius: 18px;
  }

  .qa-message-text {
    font-size: 13px;
  }

  .qa-conversation-container {
    min-height: 350px;
    gap: 16px;
    padding: 10px;
  }

  .qa-avatar-badge {
    font-size: 10px;
    padding: 4px 10px;
    bottom: -8px;
  }

  .qa-message-bubble {
    max-width: calc(100% - 70px);
    padding: 10px 14px;
    border-radius: 16px;
  }

  .qa-message-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .qa-question-bubble::before {
    left: -10px;
    border-width: 8px 10px 8px 0;
    top: 16px;
  }

  .qa-answer-bubble::before {
    right: -10px;
    border-width: 8px 0 8px 10px;
    top: 16px;
  }

  .btn-get-started {
    padding: 12px 28px;
    font-size: 14px;
    margin-bottom: 0;
  }


  .decorative-dot {
    width: 8px;
    height: 8px;
  }

  .offer-section-title {
    font-size: 28px;
    margin-bottom: 32px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 16px;
    text-align: center;
  }

  .offer-section-title::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .offer-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }

  .offer-card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .offer-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
  }

  .offer-icon-image {
    width: 70%;
    height: 70%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .offer-card-title {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .offer-card-subtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .offer-card-title {
    font-size: 18px;
  }

  .offer-card-subtitle {
    font-size: 13px;
  }

  /* Faculties Section Responsive */
  .faculties-section {
    padding: 28px 0 28px 0;
  }

  .faculties-container {
    padding: 0 16px;
  }

  .faculties-section-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .faculties-section-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
    margin-top: 12px;
  }

  .founder-section {
    margin-bottom: 30px;
  }

  .founder-about-banner {
    padding: 16px 24px;
    margin-bottom: 30px;
  }

  .founder-about-title {
    font-size: 24px;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .founder-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-cta-button {
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-image-wrapper {
    width: 300px;
    height: 300px;
  }

  .founder-name {
    font-size: 28px;
  }

  .founder-role {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .founder-highlights {
    justify-content: center;
  }

  .highlight-item {
    font-size: 13px;
    padding: 6px 12px;
  }

  .faculty-carousel-wrapper {
    gap: 12px;
    margin-bottom: 30px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .faculty-card {
    flex: 0 0 calc(50% - 12px);
    padding: 24px 16px;
  }

  .faculty-image-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }

  .faculty-name {
    font-size: 18px;
  }

  .faculty-role {
    font-size: 14px;
  }

  .faculties-container {
    padding: 0 16px;
  }

  .faculties-section-title {
    font-size: 24px;
  }

  .faculties-section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .faculties-section {
    overflow-x: hidden;
    padding: 30px 0 30px 0;
  }

  .faculties-container {
    padding: 0 16px;
    overflow-x: hidden;
    overflow-x: visible;
  }

  .founder-about-banner {
    padding: 14px 20px;
    margin-bottom: 24px;
  }

  .founder-about-title {
    font-size: 20px;
  }

  .founder-card {
    padding: 24px 16px;
    gap: 16px;
  }

  .founder-image-wrapper {
    width: 260px;
    height: 260px;
  }

  .founder-name {
    font-size: 22px;
  }

  .founder-role {
    font-size: 15px;
  }

  .founder-social-icons {
    justify-content: center;
    gap: 12px;
  }

  .founder-social-icon {
    width: 40px;
    height: 40px;
  }

  .founder-description {
    font-size: 14px;
    text-align: center;
  }

  .founder-cta-button {
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .founder-cta-text {
    font-size: 14px;
  }

  .highlight-item {
    font-size: 12px;
    padding: 5px 10px;
  }

  .faculty-carousel-wrapper {
    gap: 8px;
    margin-bottom: 30px;
    overflow: visible;
  }

  .faculty-carousel-container {
    overflow: visible !important;
    padding: 0;
  }

  .faculty-carousel-track {
    gap: 16px;
    padding: 0 8px;
  }

  .faculty-card {
    flex: 0 0 85% !important;
    width: 85%;
    min-width: 280px;
    max-width: 85%;
    padding: 28px 20px;
    box-sizing: border-box;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .faculty-image-wrapper {
    width: 130px;
    height: 130px;
    margin-bottom: 16px;
  }

  .faculty-name {
    font-size: 18px;
  }

  .faculty-role {
    font-size: 14px;
  }

  /* Testimonials Section Responsive - Mobile */
  /* Testimonials Section Mobile Fixes */
  .testimonials-section {
    padding: 40px 0 40px 0;
    display: block;
    visibility: visible;
  }

  .testimonials-container {
    padding: 0 16px;
    overflow-x: hidden;
  }

  .testimonials-header {
    margin-bottom: 32px;
    padding: 0 8px;
  }

  .testimonials-label {
    font-size: 13px;
    margin-bottom: 12px;
    padding: 0 16px;
  }

  .testimonials-title {
    font-size: 28px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 8px;
  }

  .testimonials-title::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .testimonials-carousel-wrapper {
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    padding: 0 8px;
  }

  .testimonial-carousel-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
  }

  .testimonial-carousel-btn-prev {
    left: 0;
  }

  .testimonial-carousel-btn-next {
    right: 0;
  }

  .testimonial-carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .testimonials-carousel-container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    padding: 0;
    position: relative;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .testimonials-carousel-container::-webkit-scrollbar {
    display: none;
  }

  .testimonials-carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .testimonials-carousel-track {
    width: auto;
    gap: 16px;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition: none;
    scroll-snap-align: start;
  }

  .testimonial-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .testimonial-carousel-btn {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
  }

  .testimonial-card {
    flex: 0 0 85% !important;
    width: 85% !important;
    min-width: 280px;
    max-width: 85%;
    margin: 0;
    box-sizing: border-box;
  }

  .testimonial-info {
    padding: 16px 14px;
  }

  .testimonial-name {
    font-size: 17px;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .testimonial-institution {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .achievement-rank {
    font-size: 13px;
    padding: 5px 14px;
  }

  .achievement-exam {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 32px 0 32px 0;
  }

  .testimonials-container {
    padding: 0 12px;
  }

  .testimonials-header {
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .testimonials-title {
    font-size: 24px;
    padding: 0 4px;
  }

  .testimonials-label {
    font-size: 11px;
    padding: 0 12px;
  }

  .testimonials-label::before,
  .testimonials-label::after {
    width: 15px;
  }

  .testimonials-label::before {
    left: -15px;
  }

  .testimonials-label::after {
    right: -15px;
  }

  .testimonials-carousel-wrapper {
    gap: 6px;
    margin-bottom: 20px;
    padding: 0 4px;
  }

  .testimonial-carousel-btn {
    width: 36px;
    height: 36px;
    display: none;
  }

  .testimonial-carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .testimonials-carousel-container {
    padding: 0;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .testimonials-carousel-container::-webkit-scrollbar {
    display: none;
  }

  .testimonials-carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .testimonials-carousel-track {
    gap: 12px;
    display: flex;
    flex-wrap: nowrap;
  }

  .testimonial-card {
    flex: 0 0 90% !important;
    width: 90% !important;
    min-width: 260px;
    max-width: 90%;
    margin: 0;
    box-sizing: border-box;
  }

  .testimonial-video-wrapper {
    padding-top: 60%;
  }

  .testimonial-info {
    padding: 12px 10px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-institution {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .achievement-rank {
    font-size: 11px;
    padding: 4px 10px;
  }

  .achievement-exam {
    font-size: 10px;
  }

  .faculties-section {
    padding: 40px 0 40px 0;
    overflow-x: hidden;
  }

  .faculties-container {
    overflow-x: hidden;
    padding: 0 16px;
  }

  .founder-section {
    margin-bottom: 30px;
  }

  .founder-card {
    padding: 20px 16px;
    gap: 16px;
  }

  .founder-image-wrapper {
    width: 280px;
    height: 280px;
  }

  .founder-name {
    font-size: 20px;
  }

  .founder-role {
    font-size: 14px;
  }

  .highlight-item {
    font-size: 11px;
    padding: 4px 10px;
  }

  .faculty-carousel-wrapper {
    gap: 0;
    margin-bottom: 30px;
    overflow: hidden;
    width: 100%;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .carousel-btn {
    position: absolute;
    z-index: 10;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
 .carousel-btn:hover {
    transform: translateY(-50%) scale(1.1) !important;
  }

  .carousel-btn:active {
    transform: translateY(-50%) scale(0.95) !important;
  }
  
  .carousel-btn-prev {
    left: 8px;
  }

  .carousel-btn-next {
    right: 8px;
  }

  .faculty-carousel-container {
    overflow: hidden;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .faculty-carousel-track {
    gap: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .faculty-card {
    flex: 0 0 85% !important;
    width: 85% !important;
    min-width: 85% !important;
    max-width: 85% !important;
    padding: 28px 20px;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .faculty-image-wrapper {
    width: 130px;
    height: 130px;
    margin-bottom: 16px;
  }

  .faculty-name {
    font-size: 18px;
  }

  .faculty-role {
    font-size: 14px;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text,
.hero-image {
  animation: fadeInUp 0.8s ease-out;
}

/* Entrance Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay for cards */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* ============================================
   Scroll Animations - DISABLED
   ============================================ */
/* All scroll animations have been disabled for simple scrolling */
.scroll-fade-in,
.scroll-fade-in.visible,
.scroll-fade-in-delay,
.scroll-fade-in-delay.visible,
.scroll-fade-in-delay-2,
.scroll-fade-in-delay-2.visible,
.scroll-scale-in,
.scroll-scale-in.visible,
.scroll-slide-left,
.scroll-slide-left.visible,
.scroll-slide-right,
.scroll-slide-right.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-image {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* ============================================
   App Promotion Section
   ============================================ */
.app-promotion-section {
  background: #ffffff;
  padding: 40px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.app-promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 50%, transparent 100%);
}

.app-promotion-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
}

.app-promotion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Side: Features */
.app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 102, 0, 0.1);
  color: #ff6600;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
}

.app-badge-icon {
  font-size: 18px;
}

.app-promotion-title {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.app-promotion-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.app-feature-item:hover {
  background: #ffffff;
  border-color: rgba(255, 102, 0, 0.3);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.1);
  transform: translateX(4px);
}

.app-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.app-feature-content {
  flex: 1;
}

.app-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.app-feature-description {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.app-download-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.app-download-btn-playstore {
  background: #000000;
  color: #ffffff;
}

.app-download-btn-playstore:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.app-download-btn-appstore {
  background: #ffffff;
  color: #000000;
  border-color: #e9ecef;
}

.app-download-btn-appstore:hover {
  background: #f8f9fa;
  border-color: #ff6600;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Right Side: Video */
.app-video-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.app-video-container {
  position: relative;
  width: 100%;
  max-width: 750px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: #000000;
}

.app-promotion-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.app-video-fallback {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.app-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
  border-radius: 20px;
  z-index: 1;
}

/* Responsive Design for App Promotion Section */
@media (max-width: 1024px) {
  .app-promotion-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-video-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .app-promotion-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .app-promotion-section {
    padding: 30px 0;
  }

  .app-promotion-container {
    padding: 0 24px;
  }

  .app-promotion-content {
    gap: 40px;
  }

  .app-promotion-title {
    font-size: 28px;
  }

  .app-promotion-subtitle {
    font-size: 15px;
  }

  .app-feature-item {
    padding: 16px;
  }

  .app-feature-title {
    font-size: 17px;
  }

  .app-feature-description {
    font-size: 13px;
  }

  .app-download-buttons {
    flex-direction: column;
  }

  .app-download-btn {
    width: 100%;
    justify-content: center;
  }

  .app-video-container {
    max-width: 550px;
  }
}

@media (max-width: 480px) {
  .app-promotion-section {
    padding: 24px 0;
  }

  .app-promotion-container {
    padding: 0 16px;
  }

  .app-promotion-title {
    font-size: 24px;
  }

  .app-promotion-subtitle {
    font-size: 14px;
  }

  .app-features {
    gap: 16px;
  }

  .app-feature-item {
    padding: 14px;
    gap: 12px;
  }

  .app-feature-icon {
    width: 36px;
    height: 36px;
  }

  .app-feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .app-video-container {
    max-width: 450px;
    border-radius: 16px;
  }
}

/* ============================================
   Parent Partnership Section
   ============================================ */
.parent-partnership-section {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f9ff 50%, #ffffff 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.parent-partnership-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.parent-partnership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Left Side: Text Content */
.parent-partnership-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.parent-partnership-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.parent-partnership-subtitle {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
  margin-bottom: 4px;
}

.parent-partnership-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff6600;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.parent-partnership-btn:hover {
  background: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 102, 0, 0.4);
}

.parent-partnership-btn svg {
  width: 20px;
  height: 20px;
}

/* Right Side: Mobile Mockup */
.parent-partnership-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-mockup-front {
  position: relative;
  z-index: 3;
  transform: rotateY(-5deg) rotateX(2deg);
}

.phone-mockup-back {
  position: absolute;
  left: 40%;
  top: 10%;
  z-index: 1;
  opacity: 0.6;
  transform: rotateY(5deg) rotateX(-2deg) scale(0.9);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.phone-header svg {
  color: #1a1a1a;
}

.phone-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.phone-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.phone-tab {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.phone-tab.active {
  background: #ff6600;
  color: #ffffff;
}

.phone-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
}

.phone-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phone-card-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.phone-card-icon {
  font-size: 24px;
}

.phone-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.phone-card-subtitle {
  font-size: 12px;
  color: #666;
}

.phone-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-progress-bar {
  flex: 1;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.phone-progress-fill {
  height: 100%;
  background: #ff6600;
  border-radius: 4px;
}

.phone-progress-text {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

.phone-section {
  margin-bottom: 20px;
}

.phone-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.phone-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 8px;
}

.phone-item-icon {
  font-size: 20px;
}

.phone-item-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-item-title {
  font-size: 14px;
  color: #1a1a1a;
}

.phone-item-btn {
  background: #ff6600;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* Decorative Elements */
.parent-partnership-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-icon {
  position: absolute;
  font-size: 48px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.decoration-lightbulb {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.decoration-planet {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.decoration-plane {
  top: 50%;
  right: 5%;
  animation-delay: 4s;
}

.decoration-line {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 300px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #ff6600 0px,
    #ff6600 10px,
    transparent 10px,
    transparent 20px
  );
  transform: rotate(-15deg);
  opacity: 0.4;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design for Parent Partnership Section */
@media (max-width: 1024px) {
  .parent-partnership-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .parent-partnership-mockup {
    justify-content: center;
  }

  .parent-partnership-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .parent-partnership-section {
    padding: 30px 0;
  }

  .parent-partnership-container {
    padding: 0 24px;
  }

  .parent-partnership-title {
    font-size: 32px;
  }

  .parent-partnership-subtitle {
    font-size: 16px;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .phone-mockup-back {
    display: none;
  }
}

@media (max-width: 480px) {
  .parent-partnership-section {
    padding: 28px 0;
  }

  .parent-partnership-container {
    padding: 0 16px;
  }

  .parent-partnership-title {
    font-size: 28px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }
}

/* ============================================
   Videos Section
   ============================================ */
.videos-section {
  background: #f8f9fa;
  padding: 35px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.videos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 50%, transparent 100%);
}

.videos-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
}

.videos-header {
  text-align: center;
  margin-bottom: 24px;
}

.videos-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ff6600;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  width: 100%;
}

.videos-section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  border-radius: 2px;
}

.videos-section-subtitle {
  font-size: 18px;
  color: #666;
  margin: 20px 0 16px 0;
  line-height: 1.6;
}

.youtube-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
  margin-top: 8px;
}

.youtube-button:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.youtube-button svg {
  width: 24px;
  height: 24px;
}

.youtube-subscribers {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.videos-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.video-carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  background: #ffffff;
  color: #333;
  display: none; /* Hide buttons for auto-scroll */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-carousel-btn:hover {
  border-color: #ff6600;
  color: #ff6600;
  background: rgba(255, 102, 0, 0.05);
  transform: scale(1.1);
}

.video-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.video-carousel-btn svg {
  width: 24px;
  height: 24px;
}

.videos-carousel-container {
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.videos-carousel-track {
  display: flex;
  gap: 24px;
  animation: slideVideos 40s linear infinite;
  will-change: transform;
}

@keyframes slideVideos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

.videos-carousel-track:hover {
  animation-play-state: paused;
}

.video-card {
  flex: 0 0 380px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background: #000000;
  display: block;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1;
  max-width: none !important;
}

.video-thumbnail-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1;
  max-width: none !important;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 102, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-play-overlay svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  margin-left: 3px; /* Slight offset for visual centering */
}

.video-card:hover .video-play-overlay {
  background: rgba(255, 102, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.video-info {
  padding: 16px;
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-date {
  font-size: 13px;
  color: #ff0000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.video-date::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  display: inline-block;
  animation: blink-dot 1.5s ease-in-out infinite;
}

@keyframes blink-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.videos-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.video-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.video-carousel-dot:hover {
  background: #ff6600;
  transform: scale(1.2);
}

.video-carousel-dot.active {
  background: #ff6600;
  width: 24px;
  border-radius: 5px;
}

/* Responsive Design for Videos Section */
@media (max-width: 1200px) {
  .video-card {
    flex: 0 0 340px;
  }
}

@media (max-width: 1024px) {
  .videos-section {
    padding: 40px 0;
  }

  .videos-container {
    padding: 0 24px;
  }

  .videos-section-title {
    font-size: 42px;
  }

  .video-card {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {
  .videos-section {
    padding: 28px 0;
  }

  .videos-section-title {
    font-size: 36px;
  }

  .videos-section-subtitle {
    font-size: 16px;
  }

  .youtube-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  .videos-carousel-wrapper {
    gap: 8px;
  }

  .video-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .video-carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .videos-carousel-track {
    gap: 16px;
  }

  .video-card {
    flex: 0 0 280px;
  }

  .video-info {
    padding: 14px;
  }

  .video-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .videos-section {
    padding: 24px 0;
  }

  .videos-container {
    padding: 0 16px;
  }

  .videos-section-title {
    font-size: 28px;
  }

  .videos-section-subtitle {
    font-size: 15px;
    margin: 24px 0 20px 0;
  }

  .youtube-button {
    padding: 10px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .youtube-button svg {
    width: 20px;
    height: 20px;
  }

  .youtube-subscribers {
    font-size: 12px;
    padding: 3px 8px;
  }

  .videos-carousel-wrapper {
    margin-top: 30px;
  }

  .video-carousel-btn {
    width: 36px;
    height: 36px;
  }

  .video-carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .videos-carousel-track {
    gap: 12px;
  }

  .video-card {
    flex: 0 0 85%;
  }

  .video-info {
    padding: 12px;
  }

  .video-title {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .video-date {
    font-size: 12px;
  }

  .videos-carousel-dots {
    margin-top: 24px;
  }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
  background: #ffffff;
  padding: 80px 0 80px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 50%, transparent 100%);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-label {
  font-size: 16px;
  font-weight: 700;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
  padding: 0 20px;
}

.testimonials-label::before,
.testimonials-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ff6600 100%);
}

.testimonials-label::before {
  left: -30px;
  transform: translateY(-50%);
}

.testimonials-label::after {
  right: -30px;
  transform: translateY(-50%) rotate(180deg);
}

.testimonials-title {
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  border-radius: 2px;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.testimonials-carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 0;
}

.testimonials-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: auto;
  flex-wrap: nowrap;
}

.testimonial-card {
  flex: 0 0 calc(25% - 18px);
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 0;
  max-width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.2);
  border-color: rgba(255, 102, 0, 0.3);
}

.testimonial-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  background: #000;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
  transform: translateZ(0);
}

.testimonial-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #000;
  z-index: 1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  transform: translateZ(0);
}




.testimonial-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  max-width: none !important;
  pointer-events: none;
}

.testimonial-video.playing ~ .testimonial-poster,
.testimonial-video-placeholder:has(.testimonial-video.playing) .testimonial-poster {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.testimonial-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #000;
  z-index: 2;
  border-radius: 16px 16px 0 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  max-width: none !important;
  pointer-events: auto;
}

.testimonial-video[poster] {
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial-video::-webkit-media-controls {
  display: none !important;
}

.testimonial-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.testimonial-video::-webkit-media-controls-panel {
  display: none !important;
}

.testimonial-video::-webkit-media-controls-play-button {
  display: none !important;
}

.testimonial-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.testimonial-video.playing {
  z-index: 3;
}

.testimonial-video.playing ~ .play-button-overlay {
  display: none;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 2;
}

.testimonial-video-placeholder:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-video-placeholder:hover .play-button-overlay circle {
  fill: rgba(255, 102, 0, 1);
}

.testimonial-info {
  padding: 10px 14px;
  text-align: center;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 3px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.testimonial-institution {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.testimonial-achievement {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.achievement-rank {
  background: #f8f9fa;
  color: #333;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.testimonial-card:hover .achievement-rank {
  border-color: #ff6600;
  background: #fff5f0;
  color: #ff6600;
}

.achievement-exam {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}

/* Testimonial Carousel Navigation Buttons */
.testimonial-carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  visibility: visible;
  opacity: 1;
}

.testimonial-carousel-btn-prev {
  left: 8px;
}

.testimonial-carousel-btn-next {
  right: 8px;
}

.testimonial-carousel-btn:hover {
  background: #ff6600;
  border-color: #ff6600;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.testimonial-carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonial-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.testimonial-carousel-btn:disabled:hover {
  background: #ffffff;
  border-color: #e0e0e0;
  color: #333;
  transform: translateY(-50%);
}

/* Testimonials Carousel Dots */
.testimonials-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonials-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cccccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonials-carousel-dot.active {
  background: #ff6600;
  width: 32px;
  border-radius: 6px;
}

.testimonials-carousel-dot:hover {
  background: #ff6600;
  opacity: 0.7;
}

/* ============================================
   Know Your Faculties Section
   ============================================ */
.faculties-section {
  background: #f8f9fa;
  padding: 35px 0 35px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  display: block;
  visibility: visible;
}

.faculties-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 50%, transparent 100%);
}

.faculties-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.faculties-section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 1.2;
}


.faculties-section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
  margin-top: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Founder Section - Special Treatment */
.founder-section {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}

.founder-card {
  background: transparent;
  border-radius: 24px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.founder-image-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6600;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.founder-content {
  flex: 1;
  color: #000000;
  z-index: 1;
}

.founder-name {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
}

.founder-role {
  font-size: 20px;
  margin-bottom: 20px;
  color: #666;
}

.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.highlight-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item.highlight-orange {
  color: #ff6600;
  border-color: #ff6600;
  background: rgba(255, 102, 0, 0.05);
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.highlight-item:hover {
  border-color: #ff6600;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.highlight-item:hover::before {
  left: 100%;
}

/* Founder About Banner */
.founder-about-banner {
  background: #ff6600;
  border-radius: 16px;
  padding: 20px 40px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.founder-about-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Founder Social Icons */
.founder-social-icons {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}

.founder-social-icon {
  width: 48px;
  height: 48px;
  background: #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.founder-social-icon:hover {
  background: #ff6600;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.founder-social-icon svg {
  width: 24px;
  height: 24px;
}

/* Founder Description */
.founder-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 18px 0;
  max-width: 700px;
}

/* Founder CTA Button */
.founder-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff5e6;
  border-left: 4px solid #ff6600;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.founder-cta-button:hover {
  background: #ffe6cc;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.founder-cta-emoji {
  font-size: 20px;
}

.founder-cta-text {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.founder-cta-link {
  color: #ff6600;
  font-weight: 700;
  text-decoration: underline;
}

.founder-cta-icon {
  font-size: 18px;
  margin-left: auto;
}

/* Faculty Carousel */
.faculty-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.faculty-carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 0;
  display: block;
}

.faculty-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: auto;
  align-items: stretch;
  flex-wrap: nowrap;
}

.faculty-card {
  flex: 0 0 calc(25% - 18px);
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 0;
  width: auto;
  max-width: 100%;
}

.faculty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.2);
  border-color: rgba(255, 102, 0, 0.3);
}

.faculty-card:hover::before {
  transform: scaleX(1);
}

.faculty-image-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.faculty-card:hover .faculty-image-wrapper {
  border-color: #ff6600;
  transform: scale(1.05);
}

.faculty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faculty-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.faculty-role {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* Carousel Navigation Buttons */
.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: #ff6600;
  border-color: #ff6600;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn:disabled:hover {
  background: #ffffff;
  border-color: #e0e0e0;
  color: #333;
  transform: none;
}

/* Carousel Dots Indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cccccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #ff6600;
  width: 32px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: #ff6600;
  opacity: 0.7;
}

/* ============================================
   News Articles Section (MB Sir)
   ============================================ */
.news-articles-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f0f2f5 50%, #ffffff 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.news-articles-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.news-articles-header {
  text-align: center;
  margin-bottom: 30px;
}

.news-articles-label {
  font-size: 14px;
  font-weight: 700;
  color: #ff6600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px 0;
}

.news-articles-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.news-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.news-slider-track {
  display: flex;
  gap: 24px;
  animation: slideNews 30s linear infinite;
  will-change: transform;
}

@keyframes slideNews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

.news-slider-track:hover {
  animation-play-state: paused;
}

.news-article-card {
  flex: 0 0 320px;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.news-article-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 102, 0, 0.25);
  border-color: rgba(255, 102, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.news-article-thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}

.news-article-thumbnail img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 8px;
}

.news-article-card:hover .news-article-thumbnail img {
  transform: scale(1.1);
}

.news-article-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 102, 0, 0.95);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-article-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
}

.news-article-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-article-card:hover .news-article-title {
  color: #ff6600;
}

.news-article-excerpt {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive Design for News Articles Section */
@media (max-width: 1024px) {
  .news-articles-container {
    padding: 0 24px;
  }

  .news-articles-title {
    font-size: 32px;
  }

  .news-article-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  .news-articles-section {
    padding: 30px 0;
  }

  .news-articles-container {
    padding: 0 20px;
  }

  .news-articles-header {
    margin-bottom: 24px;
  }

  .news-articles-title {
    font-size: 28px;
  }

  .news-article-card {
    flex: 0 0 260px;
  }

  .news-article-thumbnail {
    padding: 6px;
  }

  .news-article-thumbnail img {
    max-height: 240px;
  }

  .news-article-content {
    padding: 16px;
  }

  .news-article-title {
    font-size: 16px;
  }

  .news-article-excerpt {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .news-articles-section {
    padding: 24px 0;
  }

  .news-articles-container {
    padding: 0 16px;
  }

  .news-articles-header {
    margin-bottom: 20px;
  }

  .news-articles-label {
    font-size: 12px;
  }

  .news-articles-title {
    font-size: 24px;
  }

  .news-article-card {
    flex: 0 0 240px;
  }

  .news-article-thumbnail {
    padding: 4px;
  }

  .news-article-thumbnail img {
    max-height: 200px;
  }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 50%, transparent 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ff6600;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  width: 100%;
}

.faq-section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  border-radius: 2px;
}

.faq-section-subtitle {
  font-size: 18px;
  color: #666;
  margin: 32px 0 0 0;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.12);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: #ff6600;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2);
  transform: translateY(-2px);
}

.faq-item-hidden {
  display: none;
}

.faq-item-hidden.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.faq-question-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
  color: #ff6600;
}

.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 28px 24px 28px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer-text {
  margin: 0;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.reimagine-subtitle {
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 40px 0;
  line-height: 1.6;
  opacity: 0.95;
}

.reimagine-cta-btn {
  background: #ff6600;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.3);
}

.reimagine-cta-btn:hover {
  background: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 102, 0, 0.4);
}

/* Dashed Line Decoration */
.reimagine-dashed-line {
  position: absolute;
  bottom: -50px;
  left: -20px;
  width: 400px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #ffffff 0px,
    #ffffff 10px,
    transparent 10px,
    transparent 20px
  );
  transform: rotate(15deg);
  opacity: 0.6;
  z-index: 1;
}

/* Right Side: Illustration */
.reimagine-illustration {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reimagine-platform {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  background: #e8e8e8;
  border-radius: 20px;
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

/* Teacher */
.reimagine-teacher {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.teacher-figure {
  width: 80px;
  height: 120px;
  background: linear-gradient(135deg, #87ceeb 0%, #4682b4 100%);
  border-radius: 8px;
  position: relative;
}

.teacher-figure::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #8b4513;
  border-radius: 50%;
}

/* Students */
.reimagine-students {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 120px;
  z-index: 2;
}

.student-figure {
  width: 60px;
  height: 90px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  border-radius: 8px;
  position: relative;
}

.student-figure::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #8b4513;
  border-radius: 50%;
}

.student-right {
  position: relative;
}

.student-right::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #ff6600;
  border-radius: 50%;
}

/* Table */
.reimagine-table {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 60px;
  background: #87ceeb;
  border-radius: 8px;
  z-index: 1;
}

.reimagine-books {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #ff6600 0%, #ffd700 100%);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.reimagine-pen-holder {
  position: absolute;
  top: -25px;
  right: 30px;
  width: 8px;
  height: 25px;
  background: #333;
  border-radius: 4px;
}

/* Digital Screen */
.reimagine-screen {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 200px;
  background: #1a1a2e;
  border-radius: 12px;
  padding: 15px;
  z-index: 4;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: #0f0f1e;
  border-radius: 8px;
  padding: 10px;
  position: relative;
}

.screen-graph {
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, transparent 0%, #ff4444 20%, #ff4444 40%, transparent 60%);
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative;
}

.screen-graph::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #333 0px, #333 5px, transparent 5px, transparent 10px);
}

.screen-charts {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.screen-chart {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(#ff6600 0deg 180deg, #333 180deg 360deg);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  height: 40px;
}

.screen-grid::before {
  content: '';
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}

.screen-grid::after {
  content: '▢▢▢▢▢▢▢▢';
  color: #ffffff;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Decorative Elements */
.reimagine-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.decoration-molecule {
  position: absolute;
  top: 10%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.decoration-planet {
  position: absolute;
  top: 5%;
  right: 15%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.decoration-dna {
  position: absolute;
  bottom: 20%;
  right: 10%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 2s;
}

.decoration-network {
  position: absolute;
  bottom: 15%;
  right: 5%;
  animation: float 9s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reimagine-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .reimagine-title {
    font-size: 48px;
  }

  .reimagine-subtitle {
    font-size: 18px;
  }

  .reimagine-illustration {
    height: 400px;
  }

  .reimagine-platform {
    max-width: 500px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .reimagine-section {
    padding: 60px 0;
  }

  .reimagine-container {
    padding: 0 24px;
  }

  .reimagine-content {
    gap: 40px;
  }

  .reimagine-title {
    font-size: 36px;
  }

  .reimagine-subtitle {
    font-size: 16px;
  }

  .reimagine-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
  }

  .reimagine-illustration {
    height: 300px;
  }

  .reimagine-platform {
    max-width: 400px;
    height: 280px;
  }

  .reimagine-dashed-line {
    width: 300px;
    bottom: -30px;
  }
}

@media (max-width: 480px) {
  .reimagine-section {
    padding: 40px 0;
  }

  .reimagine-container {
    padding: 0 16px;
  }

  .reimagine-title {
    font-size: 28px;
  }

  .reimagine-subtitle {
    font-size: 14px;
  }

  .reimagine-illustration {
    height: 250px;
  }

  .reimagine-platform {
    max-width: 320px;
    height: 220px;
  }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  background: #ffffff;
  padding: 80px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 50%, transparent 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ff6600;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  width: 100%;
}

.faq-section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8c00 100%);
  border-radius: 2px;
}

.faq-section-subtitle {
  font-size: 18px;
  color: #666;
  margin: 32px 0 0 0;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.12);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: #ff6600;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2);
  transform: translateY(-2px);
}

.faq-item-hidden {
  display: none;
}

.faq-item-hidden.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-question {
  width: 100%;
  padding: 26px 32px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question::before {
  background: #ff6600;
}

.faq-question:hover {
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.03) 0%, transparent 100%);
}

.faq-item.active .faq-question {
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.08) 0%, rgba(255, 102, 0, 0.02) 100%);
  color: #ff6600;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  flex: 1;
  transition: color 0.3s ease;
  letter-spacing: -0.2px;
}

.faq-item.active .faq-question-text {
  color: #ff6600;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #666;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  color: #ff6600;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 28px 32px;
}

.faq-answer p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0;
  padding-top: 4px;
}

.faq-show-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.faq-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #ffffff;
  border: 2px solid #ff6600;
  border-radius: 12px;
  color: #ff6600;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.1);
}

.faq-show-more-btn:hover {
  background: #ff6600;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.25);
}

.faq-show-more-btn:active {
  transform: translateY(0);
}

.faq-show-more-icon {
  transition: transform 0.3s ease;
}

.faq-show-more-btn.expanded .faq-show-more-icon {
  transform: rotate(180deg);
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    padding: 0 24px;
  }

  .faq-section-title {
    font-size: 36px;
  }

  .faq-section-subtitle {
    font-size: 16px;
  }

  .faq-question {
    padding: 22px 24px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-show-more-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-section-title {
    font-size: 28px;
  }

  .faq-section-subtitle {
    font-size: 15px;
    margin-top: 24px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    padding: 20px 20px;
    gap: 16px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-show-more-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .faq-show-more-wrapper {
    margin-top: 28px;
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 0 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 1.3fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-about {
  max-width: 100%;
}

.footer-logo {
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #b0b0b0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #ff6600;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: -0.3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ff6600;
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ff6600;
}

.footer-contact li span {
  flex: 1;
}

/* Footer Contact Section */
.footer-contact-section {
  padding: 30px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.3;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.footer-contact-card {
  text-align: center;
  padding: 20px 16px;
  border-radius: 12px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-card:hover {
  background: #1a1a1a;
  border-color: rgba(255, 102, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.1);
}

.footer-contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  color: #ff6600;
  transition: all 0.3s ease;
}

.footer-contact-card:hover .footer-contact-icon {
  background: rgba(255, 102, 0, 0.2);
  transform: scale(1.1);
}

.footer-contact-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 6px 12px;
  border-radius: 8px;
  width: fit-content;
}

.footer-contact-item:hover {
  color: #ff6600;
  background: rgba(255, 102, 0, 0.1);
  transform: translateX(4px);
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: #ff6600;
  transition: all 0.3s ease;
}

.footer-contact-item:hover svg {
  transform: scale(1.1);
}

.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: #808080;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6600;
}

.footer-separator {
  color: #808080;
  font-size: 14px;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-contact-card {
    padding: 18px 14px;
  }

  .footer-contact-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .footer-contact-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-contact-item {
    font-size: 13px;
    padding: 5px 10px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0 0;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-contact-section {
    padding: 24px 30px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-contact-card {
    padding: 16px 14px;
  }

  .footer-contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .footer-contact-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-contact-item {
    font-size: 13px;
    padding: 5px 10px;
  }

  .footer-logo-image {
    height: 42px;
  }

  .footer-heading {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-content {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-logo-image {
    height: 36px;
  }

  .footer-description {
    font-size: 14px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-links a,
  .footer-contact li {
    font-size: 14px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-copyright,
  .footer-legal a {
    font-size: 13px;
  }

  .footer-contact-section {
    padding: 32px 30px;
  }

  .footer-contact-grid {
    gap: 20px;
  }

  .footer-contact-card {
    padding: 20px 16px;
  }

  .footer-contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .footer-contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .footer-contact-title {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .footer-contact-item {
    font-size: 13px;
    padding: 6px 10px;
    gap: 8px;
  }

  .footer-contact-item svg {
    width: 14px;
    height: 14px;
  }
}

/* ============================================
   Floating Social Media Button
   ============================================ */
.floating-social-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-social-trigger {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  border: 2px solid #ff6600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 102, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.floating-social-trigger:hover {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-color: #ff8533;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.3);
  transform: scale(1.1);
}

.floating-social-trigger svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.floating-social-trigger:hover svg {
  transform: rotate(180deg);
}

.floating-social-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 4px;
  padding: 4px 0;
}

/* Show menu when hovering trigger button */
.floating-social-trigger:hover ~ .floating-social-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Keep menu visible when hovering over menu itself */
.floating-social-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Keep menu visible when hovering over container (bridge gap) */
.floating-social-btn:hover .floating-social-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-social-link {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Facebook - Blue */
.floating-social-link[aria-label="Facebook"] {
  background: #1877F2;
  border-color: #1877F2;
}

.floating-social-link[aria-label="Facebook"] svg {
  fill: #ffffff;
}

/* Instagram - Gradient */
.floating-social-link[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

.floating-social-link[aria-label="Instagram"] svg {
  fill: #ffffff;
}

/* YouTube - Red */
.floating-social-link[aria-label="YouTube"] {
  background: #FF0000;
  border-color: #FF0000;
}

.floating-social-link[aria-label="YouTube"] svg {
  fill: #ffffff;
}

/* Telegram - Blue */
.floating-social-link[aria-label="Telegram"] {
  background: #0088cc;
  border-color: #0088cc;
}

.floating-social-link[aria-label="Telegram"] svg {
  fill: #ffffff;
}

/* LinkedIn - Blue */
.floating-social-link[aria-label="LinkedIn"] {
  background: #0077b5;
  border-color: #0077b5;
}

.floating-social-link[aria-label="LinkedIn"] svg {
  fill: #ffffff;
}

/* WhatsApp - Green */
.floating-social-link[aria-label="WhatsApp"] {
  background: #25D366;
  border-color: #25D366;
}

.floating-social-link[aria-label="WhatsApp"] svg {
  fill: #ffffff;
}

.floating-social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-social-link svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.floating-social-link:hover svg {
  transform: scale(1.2);
}

.floating-social-link span {
  display: none;
}

/* Responsive adjustments for floating social button */
@media (max-width: 768px) {
  .floating-social-btn {
    right: 15px;
    bottom: 15px;
  }

  .floating-social-trigger,
  .floating-social-link {
    width: 40px;
    height: 40px;
  }

  .floating-social-trigger svg,
  .floating-social-link svg {
    width: 16px;
    height: 16px;
  }

  .floating-social-menu {
    gap: 10px;
  }
}

/* ============================================
   Floating Enquiry Button
   ============================================ */
.floating-enquiry-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  border: 2px solid #ff6600;
  border-radius: 50px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 102, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-direction: row;
  overflow: hidden;
  width: 56px;
  min-width: 56px;
}

.floating-enquiry-btn:hover {
  width: auto;
  padding: 18px 28px;
  gap: 10px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border-color: #ff8533;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 102, 0, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.floating-enquiry-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke-width: 2.5;
  opacity: 1;
  transition: opacity 0.3s ease 0.1s;
}

.floating-enquiry-btn span {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease 0.1s, width 0s ease 0.4s;
}

.floating-enquiry-btn:hover span {
  opacity: 1;
  width: auto;
  transition: opacity 0.3s ease 0.1s, width 0s ease 0s;
}

/* Enquiry Modal */
.enquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001; /* Higher than fixed navbar (10000) */
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-modal.active {
  display: flex;
}

.enquiry-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.enquiry-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 10000;
}

.enquiry-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.enquiry-modal-close:hover {
  background: #ff6600;
  color: #ffffff;
  transform: rotate(90deg);
}

.enquiry-modal-header {
  padding: 40px 40px 30px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.enquiry-modal-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  letter-spacing: -0.5px;
}

.enquiry-modal-subtitle {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.enquiry-form {
  padding: 30px 40px 40px;
}

.enquiry-form-group {
  margin-bottom: 24px;
}

.enquiry-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.enquiry-form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333333;
}

.enquiry-form-input:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

.enquiry-form-input::placeholder {
  color: #999999;
}

.enquiry-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.enquiry-form-submit {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.enquiry-form-submit:hover {
  background: linear-gradient(135deg, #ff8533 0%, #ff6600 100%);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.4);
  transform: translateY(-2px);
}

.enquiry-form-submit:active {
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Offline Courses Modal */
.offline-courses-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.offline-courses-modal.active {
  display: flex;
}

.offline-courses-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.offline-courses-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

.offline-courses-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.offline-courses-modal-close:hover {
  background: #ff6600;
  color: #ffffff;
  transform: rotate(90deg);
}

.offline-courses-modal-header {
  padding: 24px 32px 20px;
  text-align: center;
  border-bottom: 2px solid #f5f5f5;
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
  flex-shrink: 0;
}

.offline-courses-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.offline-courses-modal-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.offline-courses-modal-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
}

.offline-courses-modal-subtitle {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.offline-courses-modal-body {
  padding: 20px 32px 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.offline-courses-modal-body::-webkit-scrollbar {
  width: 6px;
}

.offline-courses-modal-body::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}

.offline-courses-modal-body::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 10px;
}

.offline-courses-modal-body::-webkit-scrollbar-thumb:hover {
  background: #ff8533;
}

.offline-courses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: stretch;
}

.course-category {
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 16px;
  border: 2px solid #ffe8d6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.course-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6600 0%, #ff8533 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.course-category:hover {
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.12);
  border-color: #ff6600;
  transform: translateY(-2px);
}

.course-category:hover::before {
  transform: scaleX(1);
}

.course-category:last-child {
  margin-bottom: 0;
}

.course-category-header {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.course-category-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  padding-bottom: 8px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid #ff6600;
  display: block;
  width: 100%;
  text-align: left;
  line-height: 1.2;
}

.course-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 0;
  margin-top: 12px;
  width: 100%;
  align-items: stretch;
}

.course-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f0f0f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  gap: 12px;
}

.course-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.course-item:hover {
  background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
  border-color: #ff6600;
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.course-item:hover::before {
  transform: scaleY(1);
}

.course-item-text {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  letter-spacing: -0.2px;
  flex: 1;
  text-align: left;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.course-item svg {
  color: #ff6600;
  opacity: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  width: 16px;
  height: 16px;
  display: block;
  align-self: center;
}

.course-item:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design for Offline Courses Modal */
@media (max-width: 768px) {
  .offline-courses-modal-content {
    max-width: 95%;
    max-height: 95vh;
  }

  .offline-courses-modal-header {
    padding: 20px 20px 16px;
  }

  .offline-courses-modal-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }

  .offline-courses-modal-icon img {
    width: 40px;
    height: 40px;
  }

  .offline-courses-modal-title {
    font-size: 22px;
  }

  .offline-courses-modal-subtitle {
    font-size: 13px;
  }

  .offline-courses-modal-body {
    padding: 16px 20px 20px;
  }

  .offline-courses-list {
    gap: 14px;
  }

  .course-category {
    padding: 14px;
  }

  .course-category-title {
    font-size: 17px;
    padding-bottom: 6px;
  }

  .course-items {
    margin-left: 0;
    margin-top: 10px;
    gap: 6px;
    width: 100%;
    align-items: stretch;
  }

  .course-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .course-item:hover {
    transform: translateX(4px);
  }

  .course-item-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .offline-courses-modal {
    padding: 10px;
  }

  .offline-courses-modal-content {
    max-width: 100%;
    border-radius: 20px;
  }

  .offline-courses-modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }

  .offline-courses-modal-header {
    padding: 18px 16px 14px;
  }

  .offline-courses-modal-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .offline-courses-modal-icon img {
    width: 36px;
    height: 36px;
  }

  .offline-courses-modal-title {
    font-size: 20px;
  }

  .offline-courses-modal-subtitle {
    font-size: 12px;
  }

  .offline-courses-modal-body {
    padding: 14px 16px 18px;
  }

  .offline-courses-list {
    gap: 12px;
  }

  .course-category {
    padding: 12px;
  }

  .course-category-header {
    margin-bottom: 10px;
  }

  .course-category-title {
    font-size: 16px;
    padding-bottom: 6px;
  }

  .course-items {
    margin-left: 0;
    margin-top: 10px;
    gap: 5px;
    width: 100%;
    align-items: stretch;
  }

  .course-item {
    padding: 9px 12px;
    gap: 8px;
  }

  .course-item:hover {
    transform: translateX(3px);
  }

  .course-item-text {
    font-size: 12px;
  }
}

/* Responsive Design for Enquiry Button */
@media (max-width: 768px) {
  .floating-enquiry-btn {
    right: 15px;
    padding: 16px;
    font-size: 14px;
    border-width: 2px;
    gap: 0;
    width: 52px;
    min-width: 52px;
  }

  .floating-enquiry-btn:hover {
    padding: 16px 20px;
    gap: 8px;
  }

  .floating-enquiry-btn svg {
    width: 20px;
    height: 20px;
  }

  .floating-enquiry-btn span {
    font-size: 12px;
  }

  .enquiry-modal-content {
    max-width: 95%;
    max-height: 95vh;
  }

  .enquiry-modal-header {
    padding: 30px 24px 20px;
  }

  .enquiry-modal-title {
    font-size: 24px;
  }

  .enquiry-modal-subtitle {
    font-size: 14px;
  }

  .enquiry-form {
    padding: 20px 24px 30px;
  }

  .enquiry-form-group {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .floating-enquiry-btn {
    right: 10px;
    padding: 14px;
    font-size: 13px;
    border-width: 2px;
    gap: 0;
    width: 48px;
    min-width: 48px;
  }

  .floating-enquiry-btn:hover {
    padding: 14px 18px;
    gap: 6px;
  }

  .floating-enquiry-btn svg {
    width: 18px;
    height: 18px;
  }

  .floating-enquiry-btn span {
    font-size: 13px;
  }

  .enquiry-modal {
    padding: 10px;
  }

  .enquiry-modal-content {
    max-width: 100%;
    border-radius: 20px;
  }

  .enquiry-modal-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}
