/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero/Slider Section */
.slider-container {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  background-image: url("../images/home-banner.jpg");
  background-position: right center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 47vw;
  background-color: #f1f8ff;
  padding: 8vw 0 10vw 0;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}







.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 200px;
  padding: 20px 0;
}

.hero-text {
  max-width: 50%;
  padding-right: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 24px;
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.8;
}

.hero-search {
  margin-top: 24px;
}

.search-form {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 3;
}

.search-wrapper {
  display: flex;
  background: white;
  border-radius: 25px;
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
}

.search-wrapper:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 14px;
  background: transparent;
  color: #4a5568;
  font-weight: 400;
}

.search-input::placeholder {
  color: #a0aec0;
  font-weight: 400;
  font-size: 14px;
}

.search-button {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
  text-transform: capitalize;
}

.search-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(96, 165, 250, 0.4);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
}

/* EFA Logo Styles */
.navbar-brand {
  flex-shrink: 0;
  margin-right: 24px;
}

.brand-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.efa-logo {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 8px;
  padding: 8px 16px;
  position: relative;
}

.efa-text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: lowercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  /* color: #374151; */
  font-size: 15px;
  /* font-weight: 500; */
  /* padding: 8px 16px; */
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
  /* border-radius: 6px; */

  color: #000;
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 7px 25px;
  font-weight: 600;
  line-height: 1.6;
}

.nav-link:hover {
  color: #fff;
  background-color: #27aeff;
  border-radius: 50px;
}

/* Categories Button Styling */
.categories-btn {
  /* background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px 0 rgba(59, 130, 246, 0.3);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px; */

  /* background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%); */
  /* color: #ffffff !important; */
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px 0 rgba(59, 130, 246, 0.3);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f1f1f1;
  padding: 7px 25px;
  font-weight: 600;
  border-radius: 50px;
  color: #000;
  line-height: 1.6;
  transition: all ease 0.2s;
}

.categories-btn:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px 0 rgba(59, 130, 246, 0.4);
  background: #27aeff;
}

.dropdown-toggle .fa-chevron-down {
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease-in-out;
}

.dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 600px;
  border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  display: flex;
  padding: 20px;
  gap: 30px;
}

.dropdown-section {
  flex: 1;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  text-decoration: none;
  color: #495057;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 400;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #212529;
  transform: translateX(5px);
}

.dropdown-item i:first-child {
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.dropdown-item .fa-chevron-right {
  font-size: 12px;
  color: #adb5bd;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dropdown-item:hover .fa-chevron-right {
  opacity: 1;
}

/* Popular Courses Section */
.popular-courses {
  border-left: 1px solid #e9ecef;
  padding-left: 30px;
}

.popular-courses h6 {
  color: #6c757d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-course-item {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #495057;
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-bottom: 4px;
  font-size: 14px;
  background-color: #f8f9fa;
  border: 1px solid transparent;
}

.popular-course-item:hover {
  background-color: #e9ecef;
  color: #212529;
  border-color: #4facfe;
  transform: translateX(3px);
}

/* Submenu Styling */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  min-width: 220px;
  border: 1px solid #e9ecef;
  padding: 8px 0;
  margin-left: 15px;
  pointer-events: none;
  /* Ensure submenu is completely isolated */
  max-height: 300px;
  overflow-y: auto;
}

/* Only show submenu when hovering over the specific category item */
.has-submenu:hover .submenu {
  /* CSS hover is overridden by JavaScript for better control */
}

.submenu-item {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #495057;
  transition: all 0.2s ease;
  font-size: 14px;
  border-left: 3px solid transparent;
}

.submenu-item:hover {
  background-color: #f8f9fa;
  color: #4facfe;
  border-left-color: #4facfe;
  padding-left: 25px;
}

/* Enhanced dropdown item styling for submenu parents */
.has-submenu .fa-chevron-right {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.has-submenu:hover .fa-chevron-right {
  transform: rotate(0deg);
  color: #4facfe;
}

/* Submenu arrow indicator */
.has-submenu::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid #adb5bd;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: border-left-color 0.2s ease;
}

.has-submenu:hover::after {
  border-left-color: #4facfe;
}

/* Submenu positioning adjustments */
.dropdown-section .has-submenu:nth-last-child(-n + 3) .submenu {
  top: auto;
  bottom: 0;
}

/* Ensure submenus don't go off screen */
@media (max-width: 1200px) {
  .submenu {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 15px;
  }
}

/* Right Side Navigation */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-item {
  display: flex;
  align-items: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-login {
  /* color: #374151;
  background-color: transparent;
  border-color: transparent;
  padding: 8px 12px; */

  color: #374151;
  background-color: transparent;
  border-color: transparent;
  border-radius: 50px;
  color: #000;
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 7px 25px;
  font-weight: 600;
  line-height: 1.6;
}

.btn-login:hover {
  color: #fff;
  background-color: #27aeff;
}

.btn-signup {
  /* background-color: #f3f4f6;
  color: #374151;
  border-color: #e5e7eb; */
  color: #374151;
  background-color: transparent;
  border-color: transparent;
  border-radius: 50px;
  color: #000;
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 7px 25px;
  font-weight: 600;
  line-height: 1.6;
}

.btn-signup:hover {
  /* background-color: #e5e7eb;
  border-color: #d1d5db; */
  color: #fff;
  background-color: #27aeff;
}

/* Cart Styles */
.cart-item {
  margin-left: 8px;
}

.cart-link {
  /* display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #374151;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  position: relative; */

  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #374151;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 111;
  background-color: #fff;
  width: 50px;
  height: 50px;
  padding: 10px 7px !important;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 10%) !important;
  border-radius: 50%;
  color: #000;
  position: relative;
}

.cart-link:hover {
  color: #1f2937;
  background-color: #f9fafb;
}

.cart-link i {
  font-size: 25px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -12px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  border: 2px solid white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
  color: #6c757d;
  font-size: 18px;
  border-radius: 6px;
  transition: all 0.15s ease-in-out;
}

.mobile-menu-toggle:hover {
  color: #495057;
  background-color: #f8f9fa;
}

/* Main Content */
.main-content {
  margin-top: 64px;
  min-height: calc(100vh - 64px);
  background-color: #ffffff;
}

.content-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 16px;
  text-align: center;
}

.content-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}

.content-wrapper p {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 32px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1020;
}

.mobile-menu-content {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-item {
  text-decoration: none;
  color: #495057;
  padding: 12px 16px;
  border-radius: 6px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.15s ease-in-out;
  font-size: 16px;
}

.mobile-menu-item:hover {
  background-color: #e9ecef;
  color: #212529;
}

.btn-login-mobile {
  background-color: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
}

.btn-signup-mobile {
  background-color: #0d6efd;
  color: #ffffff;
  border: 1px solid #0d6efd;
}

/* Mobile Categories Styling */
.mobile-categories {
  margin-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 20px;
}

.mobile-categories-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 15px;
}

.mobile-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: #495057;
  background-color: #f8f9fa;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
  border: 1px solid transparent;
}

.mobile-category-item:hover {
  background-color: #e9ecef;
  color: #212529;
  border-color: #4facfe;
  transform: translateY(-1px);
}

.mobile-category-item i {
  font-size: 14px;
  width: 16px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .navbar-container {
    padding: 0 12px;
  }

  .navbar-right {
    gap: 12px;
  }

  /* Hide dropdown on mobile */
  .dropdown-menu {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-container {
    height: 56px;
    padding: 0 8px;
  }

  .efa-text {
    font-size: 20px;
  }

  .efa-logo {
    padding: 6px 12px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  .cart-link {
    width: 36px;
    height: 36px;
  }

  .cart-link i {
    font-size: 16px;
  }

  .main-content {
    margin-top: 56px;
  }

  .mobile-menu-overlay {
    top: 56px;
  }

  .content-wrapper {
    padding: 32px 16px;
  }

  .content-wrapper h1 {
    font-size: 2rem;
  }

  .content-wrapper p {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-right .btn {
    display: none;
  }

  .navbar-right {
    gap: 8px;
  }

  .mobile-menu-content {
    padding: 16px;
  }

  .content-wrapper h1 {
    font-size: 1.75rem;
  }

  .content-wrapper p {
    font-size: 1rem;
  }
}

/* Animation for mobile menu */
.mobile-menu-overlay.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Focus styles for accessibility */
.nav-link:focus,
.btn:focus,
.cart-link:focus,
.mobile-menu-toggle:focus {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-menu-content {
  background-color: white;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-search {
  margin-bottom: 20px;
}

.mobile-search-input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 16px;
  margin-bottom: 10px;
}

.mobile-search-btn {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-item {
  text-decoration: none;
  color: #333;
  padding: 15px;
  border-radius: 6px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-item:hover {
  background-color: #e9ecef;
}

.btn-login-mobile {
  background-color: #007bff;
  color: white;
}

.btn-signup-mobile {
  background-color: #28a745;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-container {
    padding: 10px 15px;
  }

  .navbar-search {
    display: none;
  }

  .navbar-right .navbar-item:not(:last-child) {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* .slider-container {
    padding: 40px 0 30px 0;
    min-height: 220px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  } */

  .hero-text {
    max-width: 100%;
    padding-right: 15px;
    text-align: center;
  }

  .hero-content {
    min-height: 180px;
    padding: 15px 0;
  }

  .search-wrapper {
    padding: 3px;
    border-radius: 20px;
  }

  .search-input {
    padding: 10px 16px;
    font-size: 13px;
  }

  .search-button {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 18px;
  }

  .cart-text,
  .notification-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 8px 10px;
    height: 60px;
  }

  .brand-text {
    font-size: 20px;
  }

  .hero-section {
    padding: 100px 15px 50px;
    margin-top: 60px;
  }

  /* .slider-container {
    padding: 30px 0 25px 0;
    min-height: 200px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  } */

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .hero-content {
    min-height: 160px;
    padding: 20px 0;
  }

  .search-form {
    max-width: 90%;
    margin: 0 auto;
  }

  .search-wrapper {
    flex-direction: row;
    gap: 4px;
    padding: 3px;
    border-radius: 18px;
  }

  .search-input {
    padding: 10px 14px;
    font-size: 12px;
    text-align: left;
  }

  .search-button {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 15px;
  }

  .mobile-menu-overlay {
    top: 60px;
  }
}

/* Animation for mobile menu */
.mobile-menu-overlay.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Categories Swiper Section */
.categories-swiper-section {
  padding: 80px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.2;
}


.section-subtitle {
  font-size: 1.125rem;
  color: #718096;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Swiper Styles */
.categories-swiper {
  padding: 20px 0 60px 0;
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  overflow: visible;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  text-align: left;
  height: 88px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  gap: 18px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.category-icon i {
  font-size: 24px;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a202c;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  letter-spacing: -0.01em;
}

/* Remove description and course count styles */

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
  color: #3b82f6;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  margin-top: 0;
  top: auto;
  bottom: auto;
  position: absolute;
  z-index: 10;
}

.swiper-button-prev {
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #3b82f6;
  color: white;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-50%) scale(1.05);
}

/* Swiper Pagination - Hidden */
.swiper-pagination {
  display: none !important;
}

/* Responsive Design for Swiper */
@media (max-width: 768px) {
  .categories-swiper-section {
    padding: 60px 0;
  }
  
  .categories-swiper {
    margin: 0 auto;
    max-width: 100%;
    overflow: visible;
  }
  
  .swiper-button-prev {
    left: -60px;
    width: 46px;
    height: 46px;
  }
  
  .swiper-button-next {
    right: -60px;
    width: 46px;
    height: 46px;
  }
  
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .category-card {
    height: 78px;
    padding: 12px 16px;
    gap: 14px;
  }
  
  .category-icon {
    width: 42px;
    height: 42px;
  }
  
  .category-icon i {
    font-size: 24px;
  }
  
  .category-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .categories-swiper-section {
    padding: 40px 0;
  }
  
  .categories-swiper {
    margin: 0 auto;
    max-width: 100%;
    overflow: visible;
  }
  
  .swiper-button-prev {
    left: -50px;
    width: 42px;
    height: 42px;
  }
  
  .swiper-button-next {
    right: -50px;
    width: 42px;
    height: 42px;
  }
  
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 14px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .category-card {
    height: 68px;
    padding: 10px 12px;
    gap: 12px;
  }
  
  .category-icon {
    width: 36px;
    height: 36px;
  }
  
  .category-icon i {
    font-size: 20px;
  }
  
  .category-title {
    font-size: 0.85rem;
  }
}

/* Courses Section */
.courses-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.courses-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.courses-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.courses-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
}

.courses-section .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
}

.course-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 20px;
  object-position: 50% 50%;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-badge.new {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.course-badge.popular {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.course-badge.featured {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.course-content {
  padding: 16px;
}

.course-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-provider {
  font-size: 12px;
  color: #9ca3af;
  margin: 0 0 12px 0;
  font-weight: 400;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.course-rating .stars {
  display: flex;
  gap: 2px;
}

.course-rating .stars i {
  font-size: 14px;
  color: #fbbf24;
}

.course-rating .stars .far {
  color: #d1d5db;
}

.rating-number {
  font-size: 11px;
  font-weight: 500;
  color: #374151;
}

.course-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.original-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

.course-badge-bottom {
  background: #dbeafe;
  color: #1e40af;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.course-category {
  color: #6c5ce7;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}



.course-description {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.course-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffc107;
  font-size: 14px;
}

.star.empty {
  color: #dee2e6;
}

.rating-text {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
}

.course-duration {
  color: #6c757d;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e74c3c;
}

.original-price {
  font-size: 1rem;
  color: #6c757d;
  text-decoration: line-through;
}

.course-level {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.view-all-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #5f4dee, #9085e8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
  color: white;
  text-decoration: none;
}

/* Courses Section Responsive */
@media (max-width: 768px) {
  .courses-section {
    padding: 60px 0;
  }

  .courses-section .container {
    padding: 0;
  }

  .courses-section .section-title {
    font-size: 2rem;
  }

  .courses-section .section-subtitle {
    font-size: 1rem;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
    margin: 0;
    padding: 0;
  }

  .course-card {
    border-radius: 12px;
    margin: 0;
    padding: 0;
  }

  .course-image {
    border-radius: 12px 12px 0 0;
    height: 50px;
  }

  .course-image img {
    border-radius: 12px 12px 0 0;
  }

  .course-content {
    padding: 16px;
  }

  .course-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .course-provider {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .course-rating {
    margin-bottom: 8px;
  }

  .stars {
    font-size: 0.8rem;
  }

/*  */

  .course-price {
    margin-bottom: 8px;
  }

  .current-price {
    font-size: 1.1rem;
  }

  .original-price {
    font-size: 0.8rem;
  }

  .course-badge-bottom {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .courses-section {
    padding: 40px 0;
  }

  .courses-section .container {
    padding: 0;
  }

  .courses-section .section-title {
    font-size: 1.75rem;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
    margin: 0;
    padding: 0;
  }

  .course-card {
    margin: 2px;
    padding: 0;
  }

  .course-image {
    height: 50px;
  }

  .course-content {
    padding: 12px;
  }

  .course-title {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .course-provider {
    font-size: 0.8rem;
  }

  .stars {
    font-size: 0.75rem;
  }
/* 
  .rating-number {
    font-size: 0.8rem;
  } */

  .current-price {
    font-size: 0.75rem;
  }

  .original-price {
    font-size: 0.75rem;
  }

  .course-badge-bottom {
    font-size: 0.7rem;
    padding: 3px 6px;
  }

  .view-all-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Add-on Features Section */
.addon-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.addon-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.addon-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.addon-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.addon-section .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.feature-link {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Responsive Design for Add-on Section */
@media (max-width: 768px) {
  .addon-section {
    padding: 60px 0;
  }

  .addon-section .section-title {
    font-size: 2rem;
  }

  .addon-section .section-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .feature-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .addon-section {
    padding: 40px 0;
  }

  .addon-section .section-title {
    font-size: 1.75rem;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .feature-title {
    font-size: 1.2rem;
  }
}

/* New Courses Added Section */
.new-courses-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.new-courses-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.new-courses-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.new-courses-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.2;
}

.new-courses-section .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.new-courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Courses Page Specific Grid - 3 columns */
.courses-page .new-courses-grid {
  grid-template-columns: repeat(3, 1fr);
}

.new-course-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  cursor: pointer;
  position: relative;
}

.new-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.new-course-card::after {
  content: 'NEW';
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.new-course-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
}

.new-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  object-position: 50% 50%;
}

.new-course-card:hover .new-course-image img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.new-course-content {
  padding: 16px;
}

.new-course-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.new-course-provider {
  font-size: 12px;
  color: #9ca3af;
  margin: 0 0 12px 0;
  font-weight: 400;
}

.new-course-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.new-course-rating .stars {
  display: flex;
  gap: 2px;
}

.new-course-rating .stars i {
  font-size: 14px;
  color: #fbbf24;
}

.new-course-rating .stars .far {
  color: #d1d5db;
}

.new-rating-number {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.new-course-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.new-current-price {
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
}

.new-original-price {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

.new-course-badge-bottom {
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

/* View More New Courses Button */
.view-more-container {
  text-align: center;
  margin-top: 40px;
}

.view-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  color: white;
  text-decoration: none;
}

/* Courses Page Specific Overrides */
.courses-page .new-course-card::after {
  display: none;
}

/* Responsive Design for New Courses Section */
@media (max-width: 1200px) {
  .new-courses-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* Courses page stays at 3 columns */
  .courses-page .new-courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .new-courses-section {
    padding: 60px 0;
  }

  .new-courses-section .container {
    padding: 0 2px;
  }

  .new-courses-section .section-title {
    font-size: 2rem;
  }

  .new-courses-section .section-subtitle {
    font-size: 1rem;
  }

  .new-courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
    margin-bottom: 40px;
  }

  .new-course-content {
    padding: 14px;
  }

  .new-course-title {
    font-size: 13px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
  }

  .new-course-provider {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .new-course-rating {
    margin-bottom: 8px;
  }

  .new-course-rating .stars i {
    font-size: 12px;
  }

  .new-rating-number {
    font-size: 12px;
  }

  .new-current-price {
    font-size: 16px;
  }

  .new-original-price {
    font-size: 12px;
  }

  .new-course-badge-bottom {
    font-size: 9px;
    padding: 3px 6px;
  }

  .new-course-image {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .new-courses-section {
    padding: 40px 0;
  }

  .new-courses-section .section-title {
    font-size: 1.75rem;
  }

  .new-courses-section .container {
    padding: 0 2px;
  }

  .new-courses-grid {
    gap: 12px 0;
  }

  .new-course-card {
    border-radius: 16px;
  }

  .new-course-content {
    padding: 12px;
  }

  .new-course-title {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .new-course-provider {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .new-course-rating {
    margin-bottom: 6px;
  }

  .new-course-rating .stars i {
    font-size: 11px;
  }

  .new-rating-number {
    font-size: 11px;
  }

  .new-current-price {
    font-size: 11px;
  }
    
  .new-original-price {
    font-size: 11px;
  }

  .new-course-badge-bottom {
    font-size: 8px;
    padding: 2px 5px;
  }

  .new-course-image {
    height: 120px;
  }

  .new-course-image img {
    border-radius: 16px;
  }

  .view-more-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Registration Page Styles */
.register-section {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 100px 0 50px;
  display: flex;
  align-items: center;
}

.register-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.register-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 600px;
}

.register-image {
  position: relative;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.register-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.register-form-container {
  padding: 50px 40px;
  display: flex;
  align-items: center;
}

.register-form-wrapper {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.register-header {
  margin-bottom: 30px;
}

.register-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}

.register-header p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.social-login {
  margin-bottom: 20px;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #ff6b6b;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.google-btn:hover {
  background: #ff5252;
  transform: translateY(-1px);
}

.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e9ecef;
}

.divider span {
  background: white;
  padding: 0 15px;
  color: #6c757d;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: #74b9ff;
  box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

.form-group input::placeholder {
  color: #adb5bd;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  margin: 10px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #495057;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #74b9ff;
  border-color: #74b9ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 11px;
  font-weight: bold;
}

.terms-link {
  color: #74b9ff;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

.register-btn {
  background: #74b9ff;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.register-btn:hover {
  background: #0984e3;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
}

.login-link {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.login-link p {
  color: #6c757d;
  font-size: 13px;
  margin: 0;
}

.login-link a {
  color: #74b9ff;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Login Page Specific Styles */
.login-links {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.login-links p {
  color: #6c757d;
  font-size: 13px;
  margin: 8px 0;
}

.signup-link,
.forgot-link {
  color: #74b9ff;
  text-decoration: none;
  font-weight: 500;
}

.signup-link:hover,
.forgot-link:hover {
  text-decoration: underline;
}

/* Forgot Password Page Specific Styles */
.forgot-links {
  text-align: center;
  margin-top: 20px;
}

.login-btn-link {
  display: inline-block;
  background: #74b9ff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.login-btn-link:hover {
  background: #0984e3;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
  text-decoration: none;
  color: white;
}

/* Terms & Conditions Page Styles */
.terms-section {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 100px 0 50px;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.terms-header {
  text-align: center;
  padding: 40px 40px 20px;
  border-bottom: 2px solid #e9ecef;
}

.terms-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.last-updated {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.terms-content {
  padding: 40px;
}

.terms-article {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f3f4;
}

.terms-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.terms-article h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.terms-article p {
  color: #495057;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.terms-article ul {
  color: #495057;
  font-size: 15px;
  line-height: 1.6;
  margin: 15px 0;
  padding-left: 25px;
}

.terms-article li {
  margin-bottom: 8px;
}

.terms-footer {
  padding: 30px 40px 40px;
  border-top: 2px solid #e9ecef;
  text-align: center;
}

.terms-footer p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 25px;
  font-style: italic;
}

.back-to-site {
  text-align: center;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #74b9ff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #0984e3;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
  text-decoration: none;
  color: white;
}

/* Terms Page Responsive */
@media (max-width: 768px) {
  .terms-container {
    margin: 20px;
    border-radius: 10px;
  }

  .terms-header {
    padding: 30px 20px 15px;
  }

  .terms-header h1 {
    font-size: 2rem;
  }

  .terms-content {
    padding: 30px 20px;
  }

  .terms-article {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .terms-article h2 {
    font-size: 1.2rem;
  }

  .terms-article p,
  .terms-article ul {
    font-size: 14px;
  }

  .terms-footer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 80px 0 30px;
  }

  .terms-container {
    margin: 10px;
  }

  .terms-header {
    padding: 25px 15px 10px;
  }

  .terms-header h1 {
    font-size: 1.75rem;
  }

  .terms-content {
    padding: 20px 15px;
  }

  .terms-article h2 {
    font-size: 1.1rem;
  }

  .terms-footer {
    padding: 15px;
  }

  .back-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Registration Page Responsive */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 30px;
  }

  .register-container {
    padding: 0 16px;
  }

  .register-content {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .register-image {
    height: 200px;
    order: 2;
  }

  .register-image-overlay h2 {
    font-size: 1.8rem;
  }

  .register-image-overlay p {
    font-size: 1rem;
  }

  .register-form-container {
    padding: 40px 30px;
    order: 1;
  }

  .register-header h1 {
    font-size: 2rem;
  }

  .social-buttons {
    gap: 10px;
  }

  .social-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .phone-input {
    flex-direction: column;
    gap: 12px;
  }

  .country-code {
    flex: none;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 0 20px;
  }

  .register-container {
    padding: 0 12px;
  }

  .register-form-container {
    padding: 30px 20px;
  }

  .register-header h1 {
    font-size: 1.75rem;
  }

  .social-btn {
    font-size: 12px;
    gap: 8px;
  }

  .form-group input,
  .form-group select {
    padding: 10px 14px;
    font-size: 13px;
  }

  .register-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Terms and Conditions Simple Layout - Matching EFA Website */
.terms-main {
    margin-top: 80px;
    padding: 40px 0;
    background: #ffffff;
    min-height: calc(100vh - 80px);
}

.terms-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-wrapper h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
}

.terms-content-simple {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.terms-content-simple p {
    margin-bottom: 16px;
    text-align: left;
}

.terms-content-simple p strong {
    color: #333;
    font-weight: 600;
    font-size: 17px;
}

.terms-content-simple br {
    line-height: 1.5;
}

@media (max-width: 768px) {
    .terms-main {
        margin-top: 70px;
        padding: 20px 0;
    }
    
    .terms-wrapper {
        padding: 0 15px;
    }
    
    .terms-wrapper h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .terms-content-simple {
        font-size: 15px;
    }
}

/* About Page Styles */
.about-main {
    margin-top: 80px;
    padding: 40px 0;
    background: #ffffff;
    min-height: calc(100vh - 80px);
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.about-content {
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.about-content p {
    margin-bottom: 20px;
    text-align: left;
    font-size: 17px;
    line-height: 1.7;
}

/* Office Images Gallery */
.office-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.office-image {
    text-align: center;
}

.office-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Mission Section */
.mission-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.mission-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* Sanskrit Quote */
.sanskrit-quote {
    text-align: center;
    margin: 30px 0 40px;
    padding: 25px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    border-radius: 15px;
    font-style: italic;
}

.sanskrit-quote p {
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Values Container */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.values-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.values-section h3 {
    font-size: 1.5rem;
    color: #74b9ff;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.values-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-section li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #e9ecef;
}

.values-section li:last-child {
    border-bottom: none;
}

.values-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 12px;
    color: #74b9ff;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-main {
        margin-top: 70px;
        padding: 20px 0;
    }
    
    .about-wrapper {
        padding: 0 15px;
    }
    
    .about-wrapper h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-content {
        font-size: 15px;
    }
    
    .office-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 30px 0;
    }
    
    .office-image img {
        height: 200px;
    }
    
    .mission-section h2 {
        font-size: 1.8rem;
    }
    
    .sanskrit-quote {
        padding: 20px;
        margin: 25px 0 30px;
    }
    
    .sanskrit-quote p {
        font-size: 16px;
    }
    
    .values-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .values-section {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .about-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .about-content {
        font-size: 14px;
    }
    
    .mission-section h2 {
        font-size: 1.6rem;
    }
    
    .sanskrit-quote p {
        font-size: 15px;
    }
}

/* Customer Care Page Styles - Fresh Start */
.customer-care-main {
    margin-top: 80px;
    padding: 60px 0;
    background: #ffffff;
    min-height: calc(100vh - 80px);
}

.customer-care-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.customer-care-container h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin-bottom: 60px;
    text-align: left;
}

.contact-column {
    flex: 1;
    max-width: 280px;
}

.contact-column h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.timing {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.contact-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-media-section {
    text-align: center;
}

.social-media-section h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .customer-care-main {
        margin-top: 70px;
        padding: 40px 0;
    }
    
    .customer-care-container {
        padding: 0 15px;
    }
    
    .customer-care-container h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .contact-column {
        max-width: 100%;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .customer-care-container h1 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Become Instructor Page Styles */
.instructor-section {
    min-height: 100vh;
    background: #f8f9fa;
    padding: 100px 0 50px;
    display: flex;
    align-items: center;
}

.instructor-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.instructor-image {
    position: relative;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.instructor-form-container {
    padding: 50px 40px;
    display: flex;
    align-items: center;
}

.instructor-form-wrapper {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.instructor-header {
    margin-bottom: 30px;
    text-align: left;
}

.instructor-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.instructor-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.instructor-form .form-group {
    display: flex;
    flex-direction: column;
}

.instructor-form .form-group input {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.instructor-form .form-group input:focus {
    outline: none;
    border-color: #74b9ff;
    box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

.instructor-form .form-group input::placeholder {
    color: #adb5bd;
}

.instructor-form .checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin: 10px 0;
}

.instructor-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
    line-height: 1.4;
}

.instructor-form .checkbox-label input[type="checkbox"] {
    display: none;
}

.instructor-form .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.instructor-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #74b9ff;
    border-color: #74b9ff;
}

.instructor-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.instructor-form .terms-link {
    color: #74b9ff;
    text-decoration: none;
}

.instructor-form .terms-link:hover {
    text-decoration: underline;
}

.instructor-btn {
    background: #74b9ff;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.instructor-btn:hover {
    background: #0984e3;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3);
}

/* Responsive Design for Instructor Page */
@media (max-width: 768px) {
    .instructor-section {
        padding: 80px 0 30px;
    }

    .instructor-container {
        padding: 0 16px;
    }

    .instructor-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .instructor-image {
        height: 200px;
        order: 1;
    }

    .instructor-form-container {
        padding: 40px 30px;
        order: 2;
    }

    .instructor-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .instructor-section {
        padding: 70px 0 20px;
    }

    .instructor-container {
        padding: 0 12px;
    }

    .instructor-form-container {
        padding: 30px 20px;
    }

    .instructor-header h1 {
        font-size: 1.6rem;
    }

    .instructor-form .form-group input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .instructor-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Footer Styles */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 40px 0 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-tagline {
font-size: 14px;
    color: #495057;
    margin: 0;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #495057;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #74b9ff;
    text-decoration: none;
}

.footer-copyright {
    text-align: right;
    flex-shrink: 0;
    max-width: 250px;
}

.copyright-text {
    font-size: 14px;
    color: #495057;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.copyright-disclaimer {
    font-size: 12px;
    color: #495057;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .footer-column {
        gap: 12px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-container {
        padding: 0 16px;
        gap: 25px;
    }
    
    .footer-links {
        gap: 20px;
    }
}

/* Courses Page Styles */
.courses-page {
    margin-top: 80px;
    padding: 40px 0;
    background: #ffffff;
    min-height: calc(100vh - 80px);
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.courses-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.courses-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #74b9ff;
    color: white;
    border-color: #74b9ff;
}

.sort-and-view {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-dropdown {
    padding: 8px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
    color: #495057;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.sort-dropdown:focus {
    border-color: #74b9ff;
}

.view-toggles {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: #74b9ff;
    color: white;
    border-color: #74b9ff;
}

.courses-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Categories Sidebar */
.categories-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.categories-sidebar h3 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    display: block;
    padding: 5px 0;
}

.category-link:hover,
.category-link.active {
    color: #74b9ff;
}

/* Courses Grid Container */
.courses-grid-container {
    flex: 1;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transition: all 0.3s ease;
}

.courses-grid.list-view {
    grid-template-columns: 1fr;
}

.courses-grid.list-view .course-card {
    display: flex;
    align-items: center;
    text-align: left;
}

.courses-grid.list-view .course-image {
    width: 200px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 20px;
}

.courses-grid.list-view .course-content {
    flex: 1;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    cursor: pointer;
    height: fit-content;
    max-width: 320px;
}

.course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.course-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.02);
}

.course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.course-badge.free {
    background: #059669;
    color: white;
}

.course-badge.discount {
    background: #3b82f6;
    color: white;
}

.course-badge.new {
    background: #f59e0b;
    color: white;
}

.course-badge.popular {
    background: #ef4444;
    color: white;
}

.course-badge.featured {
    background: #8b5cf6;
    color: white;
}

.course-badge.hot {
    background: #f97316;
    color: white;
}

.course-content {
    padding: 20px;
    text-align: left;
}

.course-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    min-height: 44px;
}

.course-instructor {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 12px 0;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    text-align: left;
}

.course-rating .stars {
    display: flex;
    gap: 2px;
}

.course-rating .stars i {
    font-size: 14px;
    color: #fbbf24;
}

.course-rating .stars .far {
    color: #d1d5db;
}

.rating-number {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

/* Responsive Design for Courses Page */
@media (max-width: 1024px) {
    .courses-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .categories-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        padding: 20px;
    }
    
    .categories-sidebar > div {
        flex: 1;
        min-width: 200px;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .courses-page {
        margin-top: 70px;
        padding: 20px 0;
    }
    
    .courses-container {
        padding: 0 16px;
    }
    
    .courses-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .courses-header h1 {
        font-size: 2rem;
    }
    
    .courses-controls {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }
    
    .sort-and-view {
        gap: 10px;
    }
    
    .categories-sidebar {
        padding: 15px;
        gap: 20px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .courses-grid.list-view .course-card {
        flex-direction: column;
        text-align: center;
    }
    
    .courses-grid.list-view .course-image {
        width: 100%;
        height: 180px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .courses-header h1 {
        font-size: 1.75rem;
    }
    
    .courses-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .sort-and-view {
        justify-content: space-between;
    }
    
    .categories-sidebar {
        flex-direction: column;
        gap: 15px;
    }
    
    .course-content {
        padding: 15px;
    }
    
    .course-title {
        font-size: 15px;
    }
    
    .current-price {
        font-size: 16px;
    }
}

/* EFA Course Page - Exact Match */
.efa-course-container {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 20px;
}

.efa-course-layout {
    display: flex;
    gap: 80px;
}

.efa-left-content {
    flex: 2;
    max-width: 900px;
}

.efa-right-sidebar {
    flex: 1;
    max-width: 350px;
}

.efa-course-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1a1a1a;
}

.efa-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.efa-breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.efa-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.efa-bestseller {
    background: #ff6b35;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.efa-rating {
    font-weight: 600;
    color: #1a1a1a;
}

.efa-stars {
    color: #ffc107;
    font-size: 14px;
}

.efa-rating-count, .efa-students {
    color: #666;
    font-size: 14px;
}

.efa-creator {
    font-size: 14px;
    margin-bottom: 8px;
}

.efa-creator a {
    color: #007bff;
    text-decoration: none;
}

.efa-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.efa-learn-section {
    margin-bottom: 30px;
}

.efa-learn-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.efa-learn-list {
    list-style: none;
    padding: 0;
}

.efa-learn-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.efa-learn-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.efa-certificate {
    margin: 30px 0;
    text-align: left;
}

.efa-certificate h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.efa-certificate img {
    max-width: 300px;
    height: auto;
}

.efa-content-section,
.efa-requirements {
    margin: 30px 0;
}

.efa-content-section h3,
.efa-requirements h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.efa-content-summary {
    font-weight: 500;
    margin-bottom: 20px;
}

.efa-requirements ul {
    list-style: disc;
    padding-left: 20px;
}

.efa-requirements li {
    margin-bottom: 5px;
}

.efa-logo-section {
    text-align: center;
    margin: 40px 0 20px;
}

.efa-news {
    text-align: center;
    margin: 20px 0 30px;
}

.efa-news h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
}

.efa-featured-review {
    margin: 30px 0;
}

.efa-featured-review h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.efa-review-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.efa-review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.efa-review-card h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.efa-review-date {
    color: #666;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

/* Right Sidebar */
.efa-course-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.efa-course-image {
    width: 100%;
    height: auto;
    display: block;
}

.efa-pricing {
    padding: 20px;
}

.efa-price-row {
    margin-bottom: 10px;
}

.efa-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.efa-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.efa-discount {
    margin-bottom: 15px;
}

.efa-discount span:first-child {
    color: #007bff;
    font-weight: 500;
    margin-right: 8px;
}

.efa-discount-badge {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.efa-timer {
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 20px;
}

.efa-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.efa-add-cart,
.efa-buy-now {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.efa-add-cart {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.efa-buy-now {
    background: #007bff;
    color: white;
}

.efa-final-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 15px;
}

.efa-final-buy {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.efa-guarantee {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.efa-gift {
    text-align: center;
}

.efa-gift a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.efa-includes {
    padding: 20px;
    border-top: 1px solid #eee;
}

.efa-includes h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.efa-includes ul {
    list-style: none;
    padding: 0;
}

.efa-includes li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #495057;
}

.efa-feature-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.efa-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.efa-icon {
    font-size: 24px;
    margin-top: 5px;
}

.efa-feature h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.efa-feature h5 {
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.efa-feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.efa-celebration {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-align: center;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.efa-celebration h6 {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.efa-celebration h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .efa-course-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .efa-right-sidebar {
        max-width: 100%;
        order: -1;
    }
}

@media (max-width: 768px) {
    .efa-course-container {
        padding: 15px;
    }
    
    .efa-course-title {
        font-size: 1.8rem;
    }
    
    .efa-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
.course-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    margin-top: 80px;
}

.course-header-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-info {
    flex: 2;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #6c757d;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.course-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #212529;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.bestseller {
    background: #ff6b35;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-score {
    font-weight: 600;
    color: #212529;
    font-size: 14px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-count {
    color: #6c757d;
    font-size: 14px;
}

.students {
    color: #6c757d;
    font-size: 14px;
}

.instructor-info {
    margin-bottom: 10px;
    font-size: 14px;
}

.instructor-name {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.course-details {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #6c757d;
    flex-wrap: wrap;
}

.course-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-preview-card {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    position: sticky;
    top: 20px;
    height: fit-content;
    max-width: 350px;
}

.preview-image {
    position: relative;
    aspect-ratio: 16/9;
    background: #f8f9fa;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 16px;
    color: #007bff;
    margin-left: 2px;
}

.course-price-section {
    padding: 15px;
}

.pricing {
    text-align: left;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    display: inline;
}

.original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount-info {
    margin-bottom: 10px;
}

.discount-text {
    color: #007bff;
    font-weight: 500;
    margin-right: 5px;
}

.discount-percent {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.time-left {
    text-align: left;
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 15px;
}

.time-left i {
    margin-right: 5px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-cart, .btn-buy {
    flex: 1;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-cart {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-cart:hover {
    background: #e9ecef;
}

.btn-buy {
    background: #007bff;
    color: white;
}

.btn-buy:hover {
    background: #0056b3;
}

.pricing-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.final-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
}

.final-price .original {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 8px;
}

.btn-buy-final {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.btn-buy-final:hover {
    background: #0056b3;
}

.guarantee {
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding: 15px 0;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.guarantee i {
    margin-right: 8px;
    color: #28a745;
}

.gift-option {
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.gift-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.gift-link i {
    margin-right: 5px;
}

.course-includes {
    padding: 0 15px 15px;
}

.course-includes h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #212529;
}

.course-includes ul {
    list-style: none;
    padding: 0;
}

.course-includes li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #495057;
}

.course-includes i {
    width: 16px;
    color: #007bff;
    font-size: 12px;
}

.certificate-section {
    margin: 30px 0;
    text-align: center;
}

.certificate-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #212529;
}

.certificate-image img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-section {
    margin: 40px 0;
    text-align: center;
}

.efa-logo-section {
    margin-bottom: 15px;
}

.efa-logo-section img {
    height: 40px;
}

.news-section h3 {
    font-size: 1.5rem;
    color: #212529;
}

.featured-review {
    margin: 30px 0;
}

.featured-review h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #212529;
}

.review-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: flex-start;
}

.reviewer-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.review-date {
    color: #6c757d;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.sidebar {
    flex: 1;
    max-width: 300px;
}

.sidebar > div {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 24px;
    color: #007bff;
    margin-top: 5px;
}

.feature-content h4 {
    margin-bottom: 5px;
    color: #212529;
    font-size: 1.1rem;
}

.feature-content p {
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.feature-content small {
    color: #6c757d;
    line-height: 1.4;
}

.celebration-section {
    text-align: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 8px;
}

.celebration-content h6 {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.celebration-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.course-specifications h4 {
    margin-bottom: 15px;
    color: #212529;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.spec-item:first-child {
    font-weight: 600;
}

.report-course h4 {
    margin-bottom: 15px;
    color: #212529;
}

.report-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 10px;
}

.report-course textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 10px;
    min-height: 60px;
    resize: vertical;
}

.report-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.report-btn:hover {
    background: #c82333;
}

.share-url {
    display: flex;
    margin-bottom: 15px;
}

.share-url input {
    flex: 1;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 12px;
}

.share-url button {
    padding: 8px 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.share-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.course-content {
    padding: 60px 0;
}

.content-wrapper {
    display: flex;
    gap: 60px;
}

.main-content {
    flex: 2;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 40px;
}

.tab-button {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button.active {
    color: #007bff;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #007bff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.what-learn,
.requirements,
.description {
    margin-bottom: 40px;
}

.what-learn h3,
.requirements h3,
.description h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #212529;
}

.learn-list,
.requirements-list {
    list-style: none;
    padding: 0;
}

.learn-list li,
.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.learn-list i {
    color: #28a745;
    margin-top: 2px;
}

.requirements-list li::before {
    content: '•';
    color: #007bff;
    font-weight: bold;
    margin-top: 2px;
}

.curriculum-summary {
    margin-bottom: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 500;
}

.curriculum-sections {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.section {
    border-bottom: 1px solid #e9ecef;
}

.section:last-child {
    border-bottom: none;
}

.section-header {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.section-header:hover {
    background: #e9ecef;
}

.section-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 16px;
}

.section-header i {
    transition: transform 0.3s ease;
}

.section-content {
    display: none;
    padding: 0 20px 20px;
}

.lesson {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
}

.lesson:last-child {
    border-bottom: none;
}

.lesson i {
    color: #007bff;
    margin-right: 10px;
}

.lesson .duration {
    color: #6c757d;
    font-size: 14px;
}

.instructor-profile {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.instructor-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.instructor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-details h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.instructor-details p {
    color: #6c757d;
    margin-bottom: 15px;
}

.instructor-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stat i {
    color: #007bff;
    width: 16px;
}

.instructor-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.instructor-bio {
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructor-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.reviews-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.overall-rating {
    text-align: center;
}

.overall-rating .rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    display: block;
}

.overall-rating .rating-text {
    margin: 10px 0;
    color: #6c757d;
}

.rating-breakdown {
    flex: 1;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review {
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.review-date {
    color: #6c757d;
    font-size: 14px;
}

.review-text {
    line-height: 1.6;
    color: #495057;
}

.sidebar {
    flex: 1;
}

.sidebar > div {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.sidebar h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #212529;
}

.sidebar p {
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 15px;
}

.sample-videos ul {
    list-style: none;
    padding: 0;
}

.sample-videos li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sample-videos li:hover {
    color: #007bff;
}

.sample-videos li:last-child {
    border-bottom: none;
}

.sample-videos i {
    color: #007bff;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.telegram {
    background: #0088cc;
}

/* Course Detail Footer Styles - Removed to prevent conflicts */
/* .footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
} */

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design for Course Detail Page */
@media (max-width: 1024px) {
    .course-header-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .course-preview-card {
        position: static;
        order: -1;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .course-header {
        padding: 20px 0;
    }
    
    .course-header h1 {
        font-size: 1.8rem;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .course-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .tabs {
        overflow-x: auto;
        border-bottom: 1px solid #e9ecef;
    }
    
    .tab-button {
        padding: 12px 20px;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .instructor-header {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-stats {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .course-header h1 {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .section-header {
        padding: 15px;
    }
    
    .sidebar > div {
        padding: 20px;
    }
}

/* EFA Course Page Exact Layout - New Structure */
.course-container {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.course-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.left-content {
    flex: 2;
    max-width: 700px;
}

.right-sidebar {
    flex: 1;
    max-width: 350px;
    position: sticky;
    top: 20px;
}

/* Course Header */
.course-header {
    margin-bottom: 30px;
}

.course-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #1a1a1a;
}

.course-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.course-breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.course-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.badge-bestseller {
    background: #ff6b35;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.rating {
    font-weight: 600;
    color: #1a1a1a;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-count, .students-count {
    color: #666;
    font-size: 14px;
}

.course-author {
    font-size: 14px;
    margin-bottom: 8px;
}

.course-author a {
    color: #007bff;
    text-decoration: none;
}

.course-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* What You'll Learn */
.learn-section {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.learn-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.learn-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learn-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #333;
}

.learn-points li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

/* Certificate */
.certificate-section {
    margin-bottom: 30px;
    text-align: center;
}

.certificate-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: left;
}

.certificate-img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Course Content */
.course-content {
    margin-bottom: 30px;
}

.course-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-summary {
    font-weight: 500;
    margin-bottom: 20px;
    color: #666;
}

.course-modules {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.module {
    border-bottom: 1px solid #e9ecef;
}

.module:last-child {
    border-bottom: none;
}

.module-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
}

.module-info {
    color: #666;
    font-size: 14px;
    font-weight: normal;
}

.lesson {
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #333;
    border-left: 3px solid transparent;
}

.lesson:hover {
    background: #f8f9fa;
    border-left-color: #007bff;
}

.lesson-duration {
    color: #666;
    font-size: 14px;
}

/* Requirements */
.requirements-section {
    margin-bottom: 30px;
}

.requirements-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.requirements-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.requirements-list li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #333;
}

/* Instructor */
.instructor-section {
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.instructor-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.instructor-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.instructor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.instructor-info h4 {
    margin: 0 0 5px 0;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.instructor-info p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.instructor-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

/* Reviews */
.reviews-section {
    margin-bottom: 30px;
}

.reviews-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

/* .rating-number {
    font-size: 2rem;

    font-weight: 700;
    color: #1a1a1a;
} */

.review-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 15px;
}

.review-date {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.review-content p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

/* Right Sidebar */
.course-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.course-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Pricing */
.pricing-section {
    padding: 25px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.timer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-add-cart, .btn-buy-now, .btn-buy-bottom {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-cart {
    background: #f8f9fa;
    color: #1a1a1a;
    border: 2px solid #e9ecef;
}

.btn-add-cart:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.btn-buy-now, .btn-buy-bottom {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 2px solid #007bff;
}

.btn-buy-now:hover, .btn-buy-bottom:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.bottom-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.bottom-current {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.bottom-original {
    color: #999;
    text-decoration: line-through;
    margin-right: auto;
    font-size: 14px;
}

.guarantee {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.gift-option {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #e3f2fd;
    border-radius: 6px;
    border: 1px solid #bbdefb;
}

.gift-option a {
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.gift-option a:hover {
    text-decoration: underline;
}

/* Course Includes */
.includes-section {
    padding: 25px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.includes-section h4 {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.includes-list i {
    color: #007bff;
    width: 18px;
    font-size: 16px;
}

/* Feature Boxes */
.feature-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 50%;
    border: 2px solid #e9ecef;
}

.feature-content h4 {
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-content h5 {
    margin: 0 0 12px 0;
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Celebration Box */
.celebration-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 40px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.celebration-box h6 {
    margin: 0 0 15px 0;
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.celebration-box h2 {
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .course-layout {
        flex-direction: column;
        gap: 25px;
    }
    
    .left-content, .right-sidebar {
        max-width: 100%;
    }
    
    .right-sidebar {
        position: static;
    }
    
    .course-title {
        font-size: 1.8rem;
    }
    
    .course-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-main {
        justify-content: center;
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-stats {
        justify-content: center;
    }
    
    .learn-section, .instructor-section {
        padding: 20px;
    }
    
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .review-item {
        flex-direction: column;
    }
    
    .overall-rating {
        flex-direction: column;
        text-align: center;
    }
}

/* Become an Instructor Section */
.become-instructor-section {
    padding: 60px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.become-instructor-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.become-instructor-content {
    background: linear-gradient(135deg, #4461f2 0%, #3b82f6 100%);
    background-image: url('../images/become_instructor_banner.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 50px;
    padding: 100px 70px;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.become-instructor-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.instructor-text {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.instructor-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.instructor-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #4461f2;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-transform: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.instructor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    background-color: #f8fafc;
    color: #3b4ef2;
    text-decoration: none;
}

/* Responsive Design for Become an Instructor */
@media (max-width: 1024px) {
    .become-instructor-section .container {
        padding: 0 30px;
    }
    
    .become-instructor-content {
        padding: 50px 40px;
        min-height: 280px;
    }
    
    .instructor-title {
        font-size: 3.25rem;
    }
    
    .instructor-text {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .become-instructor-section {
        padding: 50px 0;
        margin: 40px 0;
    }
    
    .become-instructor-section .container {
        padding: 0 20px;
    }
    
    .become-instructor-content {
        text-align: center;
        padding: 40px 30px;
        border-radius: 15px;
        min-height: 250px;
        background-position: center;
    }
    
    .become-instructor-content::before {
        background: linear-gradient(135deg, rgba(68, 97, 242, 0.95) 0%, rgba(59, 130, 246, 0.9) 100%);
    }
    
    .instructor-text {
        max-width: 100%;
    }
    
    .instructor-title {
        font-size: 2.75rem;
        margin-bottom: 30px;
    }
    
    .instructor-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .become-instructor-section .container {
        padding: 0 15px;
    }
    
    .become-instructor-content {
        padding: 30px 20px;
        min-height: 220px;
    }
    
    .instructor-title {
        font-size: 2.25rem;
    }
    
    .instructor-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Newly Registered Tutors Section */
.tutors-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.tutors-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.tutors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tutor-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tutor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tutor-avatar {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* TM Logo Avatar */
.tm-logo {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    position: relative;
}

.tm-logo .logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.tm-logo .logo-decoration {
    position: absolute;
    bottom: -10px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #00bcd4;
    border-radius: 50%;
    z-index: 1;
}

/* Cake Academy Logo */
.cake-logo {
    background: #8bc34a;
    position: relative;
}

.cake-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.cake-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #4a5d2a;
    border-radius: 50%;
    z-index: 3;
}

.cake-petal {
    position: absolute;
    width: 12px;
    height: 20px;
    background: #4a5d2a;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    z-index: 2;
}

.cake-petal:nth-child(2) { transform: translate(-50%, -50%) rotate(0deg); }
.cake-petal:nth-child(3) { transform: translate(-50%, -50%) rotate(45deg); }
.cake-petal:nth-child(4) { transform: translate(-50%, -50%) rotate(90deg); }
.cake-petal:nth-child(5) { transform: translate(-50%, -50%) rotate(135deg); }
.cake-petal:nth-child(6) { transform: translate(-50%, -50%) rotate(180deg); }
.cake-petal:nth-child(7) { transform: translate(-50%, -50%) rotate(225deg); }
.cake-petal:nth-child(8) { transform: translate(-50%, -50%) rotate(270deg); }
.cake-petal:nth-child(9) { transform: translate(-50%, -50%) rotate(315deg); }

/* Photo Avatar */
.photo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* RS Logo Avatar */
.rs-logo {
    background: #ff5722;
}

.rs-logo .logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.tutor-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.tutor-rating {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.tutor-rating .stars {
    color: #ffc107;
    font-size: 14px;
}

.tutor-rating .stars i {
    margin-right: 2px;
}

.tutor-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.4;
    min-height: 40px;
}

.profile-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

/* Responsive Design for Tutors */
@media (max-width: 1200px) {
    .tutors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .tutors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .tutor-card {
        padding: 25px 15px;
    }
    
    .avatar-circle {
        width: 70px;
        height: 70px;
    }
    
    .tm-logo .logo-text,
    .rs-logo .logo-text {
        font-size: 20px;
    }
    
    .tutor-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tutors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tutors-section {
        padding: 40px 0;
    }
    
    .tutors-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}
