 /* Make swiper slides equal height */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* Ensure all cards fill full height */
.course-card {
  display: flex;
  flex-direction: column;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
  margin-bottom: 20px;
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-body {
  flex: 1; /* stretches text area to fill height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  text-align: center;
}

.course-body h4 {
  font-size: 18px;
  font-weight: 600;
}

.price {
  font-size: 16px;
  font-weight: 600;
}

.price.red {
  color: red;
}

.price del {
  color: #888;
  font-size: 14px;
  margin: 0 5px;
}

.price .offer {
  color: orange;
  font-size: 14px;
}

.btn-buy {
  display: inline-block;
  background: #00bfff;
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
}

.free-sessions {
  background-color: #e8f8ff;
  padding-bottom: 20px;
  text-align: center;
}



.video-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.video-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 320px;
  text-align: left;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.video-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 15px 5px 15px;
}

.video-card p {
  font-size: 14px;
  color: #666;
  margin: 0 15px 15px 15px;
}

.introduction-section {
  background-color: #f0faff; /* Light blue background */
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}



.section-title {
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
 
}

.section-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
}

.section-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 300px;
}

.column p {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
}



/* Hero Section Styles */
.hero-section {
  
  position: relative;
  background-size: cover;
  background-position: center;
  height: 90vh;
  color: #fff;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}


.hero-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #00bfff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero-btn i {
  margin: 0 5px;
}

.hero-btn:hover {
  background-color: #009acd;
}
.hero-section h1 {
  color: white;
}

/* ----------------------------book section-------------------------------- */
/* ===== Books Section Styles ===== */
.books-section {
  background-color: #f9f9f9;
  text-align: center;
}



.book-card {
  transition: transform 0.3s ease;
}

.book-card:hover {
  transform: translateY(-10px);
}

.book-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.book-title {
  font-size: 18px;
  font-weight: 600;
  color: #444;
}

.myBooksSwiper {
  padding-bottom: 40px;
}

.swiper-slide {
  width: 250px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
