/* ============================================================
   HERO BANNER REFACTOR (FULL WIDTH)
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&family=Playfair+Display:wght@700&display=swap");
.styleMD h2,
.page-home-venus h2 {
  color: #e86459 !important;
  font-weight: bold !important;
}
.styleMD h2 .text-primary-custom,
.page-home-venus h2 .text-primary-custom {
  font-weight: bold !important;
}
.hero-section {
  padding: 100px 0 !important;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-subtitle {
  font-family: "Dancing Script", cursive;
  color: #f46c62;
  font-size: 45px;
  text-align: center;
  margin-bottom: 5px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 76px;
  font-weight: 700;
  color: #aa3427;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.hero-highlight {
  font-family: "Dancing Script", cursive;
  color: #f46c62;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-desc {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  max-width: 500px;
  line-height: 1.6;
}

.hero-features-box {
  background: white;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  max-width: 380px;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-features-box .feature-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 0;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-features-box .feature-item:not(:last-child) {
  border-bottom: 1px solid #fedace;
}

.hero-features-box .feature-item:hover {
  background: #fffafa;
  transform: translateX(8px);
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.03);
}

.hero-features-box .feature-item .text-muted {
  color: #333 !important;
  font-size: 16px;
}

.hero-features-box .feature-icon i {
  transition: transform 0.4s ease;
}

.hero-features-box .feature-item:hover .feature-icon i {
  transform: scale(1.2);
}

.hero-section .venus-btn-primary,
.hero-section .venus-btn-outline {
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-section .venus-btn-primary::after,
.hero-section .venus-btn-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  z-index: -1;
  animation: heroButtonPulseEffect 2s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
}

.hero-section .venus-btn-primary::after {
  background: var(--venus-primary-color);
  box-shadow: 0 0 10px var(--venus-primary-color);
}

.hero-section .venus-btn-outline::after {
  background: var(--venus-primary-color);
  opacity: 0.4;
}

@keyframes heroButtonPulseEffect {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.15, 1.4);
    opacity: 0;
  }
}

.hero-section .venus-btn-primary:hover,
.hero-section .venus-btn-outline:hover {
  transform: translateY(-3px);
}

.hero-section .venus-btn-primary:hover {
  box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4) !important;
}

.hero-section .venus-btn-outline:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.hero-section .venus-btn-primary:hover::after,
.hero-section .venus-btn-outline:hover::after {
  animation: none;
  opacity: 0;
}

.hero-section .venus-btn-primary i {
  transition: transform 0.3s ease;
}

.hero-section .venus-btn-primary:hover i {
  transform: translateX(5px);
}

.hero-features-box .feature-icon {
  width: 50px;
  height: 50px;
  background: #feeae1;
  color: #f46c62;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.hero-features-box .feature-text h6 {
  font-size: 18px;
  color: #aa3427 !important;
}

/* ============================================================
   FEATURED TITLE REFACTOR
   ============================================================ */
.section-venus-featured {
  background-color: #fef6f5;
}
.venus-featured-title-wrap {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0;
}

.featured-title-sub1 {
  font-family: "Dancing Script", cursive;
  color: var(--venus-primary-color);
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  margin-bottom: 5px;
}

.featured-title-main {
  font-family: inherit; /* Use default theme font or explicitly set if needed */
  color: var(--venus-primary-color);
  font-size: 60px !important;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 15px;
}

.featured-title-sub2 {
  display: none;
  color: #333;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 0;
}

/* ============================================================
   ABOUT SECTION REFACTOR
   ============================================================ */
.about-section {
  padding: 0 !important;
  overflow: hidden;
}

.about-bg-wrap {
  position: relative;
  /*background: linear-gradient(105deg, #fff5f7 0%, #fff0f4 40%, #fde8ee 100%);*/
  background: url(https://hocvienvenusaau.com/wp-content/uploads/2026/06/background-venus-academy-01-update.jpg)
  no-repeat center center;
  padding: 60px 0;
}

.about-bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
          ellipse at 20% 50%,
          rgba(255, 204, 220, 0.3) 0%,
          transparent 60%
  );
  pointer-events: none;
}

/* --- Blob image wrap --- */
.about-img-blob-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img-blob {
  /*border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;*/
  overflow: hidden;
  /*box-shadow: 0 20px 60px rgba(200, 60, 100, 0.15);*/
  /*aspect-ratio: 1 / 1.1;*/
  /*max-width: 535px;*/
  margin: 0 auto;
  display: block;
}

.about-main-img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  /*object-position: center top;*/
  display: block;
}

/* --- Badge circle --- */
.about-badge-circle {
  position: absolute;
  top: 7%;
  right: 40px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f79b8b 0%, #df4b3e 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255, 77, 109, 0.4);
  border: 4px solid #fff;
  z-index: 10;
  animation: heroFloat 5s ease-in-out infinite;
}

.about-badge-icon {
  font-size: 28px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.about-badge-top {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-badge-number {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 3px;
}

.about-badge-bottom {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: normal;
  text-align: center;
  padding: 0 5px;
}

/* --- Content side --- */
.about-content-wrap {
  padding-left: 30px;
}

.about-subtitle {
  font-family: "Dancing Script", cursive;
  color: var(--venus-primary-color);
  font-size: 40px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: center;
}

.about-deco {
  font-size: 25px;
  opacity: 1;
}

.about-title {
  color: #e86459;
  font-size: 56px !important;
  font-weight: bold !important;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 10px;
}

.about-subheading {
  display: none;
  font-size: 30px !important;
  font-weight: 700;
  color: #472a20;
  text-transform: uppercase;
  text-align: center;
  justify-content: center;
  margin-bottom: 15px;
}

.about-divider {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.7;
  text-align: center;
}

.about-p1 {
  color: #333;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.about-p2 {
  color: #333;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-content-wrap {
    padding-left: 0;
    margin-top: 20px;
  }

  .about-img-blob {
    max-width: 100%;
  }

  .about-title {
    font-size: 2.4rem;
  }
}

/* ============================================================
   STATISTICS SECTION REFACTOR
   ============================================================ */
.stats-section {
  padding: 0 !important;
}

.stats-bar {
  background: #fdf5f2;
  border-radius: 20px;
  padding: 20px 0;
  margin: 20px auto;
  max-width: 1300px;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-width: 170px;
}

.stat-icon-wrap {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--venus-primary-color);
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.12);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 26px;
  font-weight: bold;
  color: var(--venus-primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.stats-divider {
  width: 1px;
  height: 50px;
  background: rgba(200, 60, 100, 0.2);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-bar {
    border-radius: 20px;
    padding: 20px;
    margin: 10px 15px;
  }

  .stats-row {
    gap: 15px;
  }

  .stats-divider {
    display: none;
  }

  .stat-item {
    min-width: calc(50% - 15px);
    flex: unset;
  }
}

/* ============================================================
   COURSES TABS HEADER REFACTOR
   ============================================================ */
.venus-courses-section-header {
  margin-bottom: 2rem !important;
}

/* ============================================================
   COURSE CARDS REFACTOR
   ============================================================ */
.venus-course-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(255, 77, 109, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #ffeff3;
}

.venus-course-card-wrap {
  margin-bottom: 0;
  height: 100%;
}

.venus-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 77, 109, 0.15);
}

.venus-course-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.5/1;
}

.venus-course-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.venus-course-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venus-course-card:hover .venus-course-img-link img {
  transform: scale(1.05);
}

.venus-badge {
  position: absolute;
  top: 15px;
  z-index: 10;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  width: fit-content;
}

.venus-badge-category {
  left: 15px;
  background-color: var(--venus-primary-color);
}

.venus-badge-sale {
  right: 15px;
  background-color: #ff3366; /* slightly different red/pink to stand out */
}

.venus-course-body {
  padding: 10px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 275px;
}

.venus-course-cat {
  color: #e86459;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.venus-course-title-link {
  text-decoration: none;
}

.venus-course-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  height: 43px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.venus-course-title-link:hover .venus-course-title {
  color: var(--venus-primary-color);
}

.venus-course-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 5px 0;
  flex: 1;
}

.venus-course-meta-list li {
  font-size: 15px;
  color: #333;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.venus-course-meta-list li i {
  color: #e86459 !important;
  font-weight: 900;
  width: 20px;
  margin-right: 8px;
}

.venus-meta-label {
  font-weight: 400;
  margin-right: 5px;
}

.venus-course-footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.venus-course-btn {
  background: transparent;
  color: var(--venus-primary-color) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--venus-primary-color);
}

.venus-course-btn:hover {
  background: #e86459;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 77, 109, 0.2);
  border: 1px solid #e86459;
}

.venus-courses-cta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: 720px;
  background: #ffece1;
  font-size: 18px;
  color: #9b3c39;
  font-weight: 400;
  border-radius: 60px;
  border: 1.5px solid #fde1d1;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(255, 77, 109, 0.08);
  margin: 0 auto;
}

/* ============================================================
   SEARCH, FILTER AND SORT BAR
   ============================================================ */
.venus-sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  border: 1px solid #ffe6eb;
  border-radius: 12px;
  padding: 15px;
  background: #ffffff;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.03);
}

.venus-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.venus-search-input {
  height: 45px;
  box-sizing: border-box;
  padding: 10px 45px 10px 20px;
  border: 1px solid #eaeaec;
  border-radius: 30px;
  width: 280px;
  background: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.venus-search-input:focus {
  border-color: var(--venus-primary-color);
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1);
}

.venus-search-wrap i {
  position: absolute;
  right: 18px;
  left: auto;
  color: #94a3b8;
  font-size: 1rem;
}

.venus-filter-item select {
  height: 45px;
  box-sizing: border-box;
  padding: 10px 35px 10px 15px;
  border: 1px solid #ffeff3;
  border-radius: 20px;
  background-color: #fcf8f9;
  font-size: 0.95rem;
  color: #475569;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 0;
  transition: border-color 0.3s;
}

.venus-filter-item select:focus {
  border-color: var(--venus-primary-color);
}

.venus-clear-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  box-sizing: border-box;
  border: 1px solid #ffeff3;
  border-radius: 8px;
  background: #ffffff;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.venus-clear-filters:hover {
  border-color: var(--venus-primary-color);
  color: var(--venus-primary-color);
  background: #fff0f4;
}

.venus-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.venus-sort-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

.venus-sort-select {
  height: 45px;
  box-sizing: border-box;
  padding: 10px 40px 10px 20px;
  border: 1px solid #ffe6eb;
  border-radius: 30px;
  background-color: #fffafb;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .venus-sort-bar {
    gap: 12px;
  }
  .venus-search-wrap,
  .venus-search-input {
    width: 100%;
  }
  .venus-filter-item select {
    width: 100%;
  }
  .venus-filter-item:not(:has(button)) {
    width: 100%;
  }
  .venus-filter-item {
    flex: 1 1 100%;
  }
  .venus-sort-wrap {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}

.section-venus-courses {
  background-color: #fff;
  /* background: url(https://hocvienvenusaau.com/wp-content/uploads/2026/06/bg-khoa-hoc-venus-v2.jpg) no-repeat center center;*/
}

.venus-section-main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--venus-primary-color);
}

.venus-section-main-title h2 {
  font-size: 56px;
  font-weight: bold !important;
  text-transform: uppercase;
  color: #e86459 !important;
  margin: 0;
  width: auto;
}

.venus-title-deco {
  font-size: 25px;
  color: #ff9fb4; /* Lighter pink for the 4-point star decorations */
}

.venus-section-subtitle {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 12px;
}

.venus-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--venus-primary-color);
}

.venus-title-divider .divider-line {
  display: block;
  width: 100px;
  height: 1px;
  background-color: var(--venus-primary-color);
}

.venus-title-divider i {
  font-size: 24px;
  font-weight: 900 !important;
}

@media (max-width: 768px) {
  .venus-section-main-title h2 {
    font-size: 1.6rem;
  }
  .venus-title-deco {
    font-size: 0.7rem;
  }
}

.venus-hero-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.venus-hero-container .row {
  max-width: 100% !important;
}

@media (min-width: 992px) {
  .venus-hero-container {
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .venus-hero-container {
    max-width: 80%;
  }
}

@media (min-width: 1600px) {
  .venus-hero-container {
    max-width: 95%;
  }
}

/* --- SECTION 3: FEATURED COURSES --- */
.featured-section {
  padding: 40px 0 0 !important;
  background-color: var(--venus-bg-light);
}

.course-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.course-card .card-body {
  padding: 20px;
}

.course-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-meta {
  font-size: 0.9rem;
  color: var(--venus-text-gray);
  margin-bottom: 15px;
}

.course-meta i {
  color: var(--venus-primary-color);
  margin-right: 5px;
}

.course-price {
  color: var(--venus-primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.owl-carousel {
  position: relative;
}

.owl-nav button {
  background: #fff !important;
  color: #e86459 !important;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem !important;
  z-index: 10;
}

.owl-nav button.owl-prev {
  left: -50px;
}

.owl-nav button.owl-next {
  right: -68px;
}

.owl-nav button:hover {
  background: var(--venus-primary-color) !important;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
}

@media (max-width: 991px) {
  .owl-nav button.owl-prev {
    left: -10px;
  }

  .owl-nav button.owl-next {
    right: -10px;
  }
}

/* --- SECTION 6: ALL COURSES (TABS) --- */
.all-courses-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.courses-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff9f6;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffdecc;
  box-shadow: 0 10px 30px rgba(255, 100, 50, 0.08);
}

.courses-nav .venus-tab-btn {
  background: transparent;
  color: #e55a4b;
  border: none;
  border-bottom: 1px solid #ffdecc;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: left;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  position: relative;
  text-transform: uppercase;
}

.courses-nav .venus-tab-btn:last-child {
  border-bottom: none;
}

.courses-nav .venus-tab-btn i {
  font-size: 1.4rem;
  width: 34px;
  margin-right: 10px;
  text-align: center;
  opacity: 1;
}

.courses-nav .venus-tab-btn img.venus-tab-icon-img {
  width: 34px;
  height: 28px;
  object-fit: contain;
  margin-right: 15px;
  opacity: 1;
}

.courses-nav .venus-tab-btn.active {
  background: linear-gradient(135deg, #f26f63 0%, #eb5b4d 100%);
  color: #fff !important;
  border-bottom-color: transparent;
}

.courses-nav .venus-tab-btn.active i,
.courses-nav .venus-tab-btn.active img.venus-tab-icon-img {
  color: #fff;
  opacity: 1;
}

.courses-nav .venus-tab-btn:hover:not(.active) {
  background: #ed6053de;
  color: #fff !important;
}

.courses-nav .venus-tab-btn::after {
  display: none !important;
}

.venus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.course-list-card {
  height: 100%;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #fff;
}

.course-list-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--venus-primary-color);
}

.course-list-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.course-list-card:hover img {
  transform: scale(1.1);
}

.course-list-card .card-body {
  padding: 18px;
}

.course-list-card .venus-text-primary {
  color: var(--venus-text-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  transition: color 0.3s;
}

.course-list-card:hover .venus-text-primary {
  color: var(--venus-primary-color);
}

.course-list-card .venus-list {
  padding-left: 0;
  list-style: none;
  margin-top: 15px;
}

.course-list-card .venus-list li {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 0.85rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.course-list-card .venus-list li i {
  width: 22px;
  font-size: 1rem;
  color: var(--venus-primary-color);
}

.course-list-card .venus-meta-label {
  font-weight: 700;
  color: #333;
  margin-right: 5px;
  min-width: 85px;
  /* Cố định độ rộng label để các giá trị thẳng hàng */
}

.course-list-card .venus-list li .woocommerce-Price-amount {
  font-weight: 700;
  color: var(--venus-primary-color);
  font-size: 1.05rem;
}

/* Button in card */
.course-list-card .venus-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 50px;
  background: var(--venus-primary-color);
  /* Mặc định là màu chủ đạo */
  color: #fff;
  /* Chữ trắng mặc định */
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 77, 109, 0.2);
}

.course-list-card .venus-btn-outline:hover {
  background: var(--venus-primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4);
}

.venus-sort-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  align-items: center;
}

.venus-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.venus-search-wrap i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.venus-sort-bar .venus-search-input {
  width: 100%;
  border: 1px solid var(--venus-border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  border-radius: 20px;
  height: 45px;
  outline: none;
  padding: 10px 15px 10px 15px;
  margin-bottom: 0;
  transition: border-color 0.3s;
}

.venus-sort-bar .venus-search-input:focus {
  border-color: var(--venus-primary-color);
}

/* --- SECTION 7: INSTRUCTORS --- */
.instructors-section {
  background: url(https://hocvienvenusaau.com/wp-content/uploads/2026/06/bg-giang-vien-venus.jpg)
  no-repeat top center;
  background-size: cover;
  padding: 40px 0;
  background-color: #fef1ea;
}
.instructors-section h2 {
  font-size: 56px !important;
}
.instructors-des {
  color: #333 !important;
  font-size: 18px;
  font-weight: 500;
}
.instructors-carousel {
  padding: 15px 0;
  /* Add padding to prevent clipping when scaling center item */
}

.instructors-carousel .owl-stage-descants {
  display: flex;
  align-items: center;
}

.instructor-card {
  text-align: center;
  padding: 0;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  margin: 0;
  /* Removed vertical margin since we have carousel padding */
  transition: all 0.5s ease;
  opacity: 1;
  /* Set to full visibility as requested */
  transform: scale(0.9);
}

/* Center Highlight Effect */
.instructors-carousel .owl-item.center .instructor-card {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 15px 35px rgba(255, 77, 109, 0.25);
  border: 2px solid var(--venus-primary-color);
  z-index: 2;
}

.instructors-carousel .owl-item.center .instructor-icon {
  background: var(--venus-primary-color);
  color: #fff;
  border-color: #fff;
}

.instructors-carousel .owl-item.center .instructor-name {
  color: var(--venus-primary-color);
}

.instructor-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.instructor-info {
  padding: 20px;
  position: relative;
}

.instructor-icon {
  width: 70px;
  height: 70px;
  background: var(--venus-bg-light);
  color: #e86459;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: -45px auto 10px auto;
  position: relative;
  border: 3px solid #fff;
  transition: all 0.3s ease;
}

.instructor-name {
  font-size: 17px !important;
  font-weight: 700 !important;
  margin-bottom: 5px !important;
  transition: color 0.3s ease;
}

.instructor-title {
  color: #333;
  font-size: 16px;
  line-height: 1.4;
}

.instructor-stats {
  margin: 15px auto 0 auto;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}

.instructor-stats div {
  display: flex;
  align-items: center;
}

.instructor-stats i {
  width: 25px;
  font-size: 1.1rem;
  margin-right: 5px;
  text-align: center;
}

.instructor-stats .fa-star {
  color: #ff6b6b; /* pinkish/red star from mockup */
}

.instructor-stats .fa-user-tie {
  color: #ff6b6b; /* pinkish/red user from mockup */
}

.instructor-socials {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.instructor-social-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  font-size: 1.1rem;
  transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
  text-decoration: none;
}

.instructor-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.instructor-social-link.fa-facebook,
.instructor-social-link:has(.fa-facebook) {
  background: #1877f2;
}

.instructor-social-link.fa-instagram,
.instructor-social-link:has(.fa-instagram) {
  background: radial-gradient(
          circle at 30% 107%,
          #fdf497 0%,
          #fdf497 5%,
          #fd5949 45%,
          #d6249f 60%,
          #285aeb 90%
  );
}

.instructor-social-link.fa-youtube,
.instructor-social-link:has(.fa-youtube) {
  background: #ff0000;
}

.instructor-social-link.fa-tiktok,
.instructor-social-link:has(.fa-tiktok) {
  background: #000000;
}

.instructor-social-link.fa-twitter,
.instructor-social-link:has(.fa-twitter),
.instructor-social-link.fa-x-twitter,
.instructor-social-link:has(.fa-x-twitter) {
  background: #000000;
}

.instructor-social-link.fa-linkedin,
.instructor-social-link:has(.fa-linkedin) {
  background: #0077b5;
}

/* --- SECTION 10: TESTIMONIALS --- */
.testimonials-carousel {
  padding: 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  margin: 0;
  transition: all 0.5s ease;
  transform: scale(0.9);
  border: 1px solid #eee;
  opacity: 1;
}

.testimonials-carousel .owl-item.center .testimonial-card {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--venus-primary-color);
}

/* --- SECTION 11: NEWS & EVENTS --- */
.section-news-events {
  padding: 40px 0 0 !important;
}
.news-events-section {
  padding: 40px 0;
  background-color: var(--venus-bg-light);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
}

.news-header-icon {
  width: 80px;
  height: 80px;
  background: var(--venus-bg-light);
  color: #e86459;
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.venus-news_des {
  max-width: 330px;
}
.news-main-card {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: stretch;
}

.news-main-card img {
  width: 100%;
  min-height: 220px;
  max-height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}

.news-main-content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.news-tag {
  color: #e86459;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin-bottom: 5px !important;
}

.news-title:hover,
.news-title a:hover {
  color: var(--venus-primary-color);
}

.news-list-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
}

.news-list-item div.ms-3 {
  width: 100%;
}

.news-list-item a {
  display: block;
}

.news-list-item img {
  width: 140px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 93px;
  margin-right: 15px;
}

.event-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.event-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
          to right,
          rgba(255, 255, 255, 0.9) 0%,
          rgba(255, 255, 255, 0.4) 100%
  );
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-list-item {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  align-items: stretch;
}

.event-list-item div.ms-3 {
  width: 100%;
}

.event-list-item a {
  display: block;
}

.event-list-item img {
  width: 140px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
}

/* --- NEWS SLIDER (ux_venus_news_slider) --- */
.venus-news-slider-wrapper {
  margin-bottom: 10px;
}

.venus-news-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85) !important;
  color: #e86459 !important;
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  z-index: 10;
}

.venus-news-slider .owl-nav button:hover {
  background: var(--venus-primary-color) !important;
  color: #fff !important;
}

.venus-news-slider .owl-nav .owl-prev {
  left: 5px;
}
.venus-news-slider .owl-nav .owl-next {
  right: 5px;
}

.venus-news-slider .owl-dots {
  text-align: center;
  margin-top: 12px;
}

.venus-news-slider .owl-dot span {
  background: #ddd !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  display: block;
  transition: background 0.3s;
}

.venus-news-slider .owl-dot.active span {
  background: var(--venus-primary-color) !important;
}

.venus-news-slide {
  border-radius: 15px;
  overflow: hidden;
}

.venus-news-slide-link {
  display: block;
  text-decoration: none;
}

.venus-news-slide-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.venus-news-slide-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.venus-news-slide-link:hover .venus-news-slide-img {
  transform: scale(1.04);
}

.venus-news-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.78) 0%,
          rgba(0, 0, 0, 0.18) 80%,
          transparent 100%
  );
  padding: 24px 18px 16px 18px;
  border-radius: 0 0 15px 15px;
}

.venus-news-slide-overlay .news-tag {
  color: #fff;
  background: var(--venus-primary-color);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.venus-news-slide-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.venus-news-slide-excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- NEWS CAT GRID (ux_venus_news_cat_grid) --- */
.venus-news-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (max-width: 575px) {
  .venus-news-cat-grid {
    grid-template-columns: 1fr;
  }
  .venus-news-slide-img {
    height: 200px;
  }
}

/* ============================================================
   PRODUCT POPUP
   ============================================================ */
.venus-product-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.venus-popup-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.venus-popup-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  margin: 4% auto;
  background: #fff;
  border-radius: 20px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: venusFadeIn 0.3s ease;
}

.venus-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: var(--venus-bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #e86459;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0.3s;
}

.venus-popup-close:hover {
  background: var(--venus-primary-color);
  color: #fff;
}

.venus-popup-body {
  padding: 30px;
}

.venus-popup-inner .venus-popup-title {
  color: #333;
  font-size: 23px;
  font-weight: 500 !important;
  margin-bottom: 12px;
  max-width: 350px;
}

.venus-popup-inner .venus-popup-price .woocommerce-Price-amount.amount {
  color: #c5334a;
  font-size: 24px;
  font-weight: 600;
}

.venus-popup-inner .venus-popup-desc {
  color: #333;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.venus-popup-inner .venus-popup-desc ul {
  padding-left: 20px;
}

.venus-popup-inner .venus-popup-desc p {
  margin-bottom: 8px;
}

.venus-popup-inner .venus-popup-schedule {
  border-top: 1px solid var(--venus-border-color);
  padding-top: 16px;
}

/* ============================================================
   POPUP - Variation Form
   ============================================================ */
.venus-popup-inner table.variations th.label {
  font-size: 15px;
  padding-right: 10px;
}

.venus-popup-inner .single_variation_wrap .woocommerce-variation-price {
  margin: 10px 0;
}

.venus-popup-inner .single_add_to_cart_button {
  background: #e86459 !important;
  border: none !important;
  border-radius: 20px !important;
}
.venus-popup-inner .single_add_to_cart_button:hover {
  background: var(--primary-color) !important;
  color: #fff;
}
/* ============================================================
   BADGES - Category & Sale
   ============================================================ */
.venus-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.venus-card-badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  z-index: 5;
  pointer-events: none;
}

.venus-badge-category {
  display: none;
  background: #dc3545;
  color: #fff;
}

.venus-badge-sale {
  background: #dc3545;
  color: #fff;
  margin-left: auto;
}

/* ============================================================
   CARD - Popup cursor
   ============================================================ */
.venus-card-has-popup {
  cursor: pointer;
}

/* ============================================================
   FILTERS - Sort bar items
   ============================================================ */
.venus-filter-item {
  min-width: 160px;
}

.venus-filter-item select,
.venus-filter-item .venus-clear-filters {
  width: 100%;
}

.venus-clear-filters {
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--venus-border-color);
  background: #fff;
  color: var(--venus-text-gray);
  margin-bottom: 0;
  transition: all 0.3s;
}

.venus-clear-filters:hover {
  border-color: var(--venus-primary-color);
  color: var(--venus-primary-color);
  background: var(--venus-bg-light);
}

/* ============================================================
   FILTERS - Price & Variation dropdowns
   ============================================================ */
.venus-price-filter,
.venus-variation-filter {
  border: 1px solid var(--venus-border-color);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: var(--venus-text-dark);
  background: #fafafa;
  cursor: pointer;
  outline: none;
  max-width: 200px;
  transition: border-color 0.2s;
}

.venus-price-filter:focus,
.venus-variation-filter:focus {
  border-color: var(--venus-primary-color);
}

/* ============================================================
   HOVER REVEAL - Description on hover
   ============================================================ */
.venus-card-hover-reveal .venus-card-short-desc {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.venus-card-hover-reveal:hover .venus-card-short-desc {
  display: block;
  max-height: 150px;
}

/* ============================================================
   RESPONSIVE - Popup
   ============================================================ */
@media (max-width: 768px) {
  .venus-popup-content {
    width: 95%;
    margin: 5% auto;
  }

  .venus-popup-body {
    padding: 20px;
  }

  .venus-popup-inner .venus-popup-title {
    font-size: 1.25rem;
  }

  .venus-filter-item {
    min-width: 120px;
  }
}

@media (max-width: 575px) {
  .venus-popup-body {
    padding: 16px;
  }

  .venus-popup-inner .row > .col-md-6 {
    margin-bottom: 16px;
  }

  .venus-filter-item {
    min-width: 100%;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes venusFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   ENROLLING SCHEDULE in popup
   ============================================================ */
.venus-popup-schedule .enrolling-schedule-venus-by-coures table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.venus-popup-schedule .enrolling-schedule-venus-by-coures th,
.venus-popup-schedule .enrolling-schedule-venus-by-coures td {
  padding: 8px 6px;
  border: 1px solid var(--venus-border-color);
  text-align: center;
}

.venus-popup-schedule .enrolling-schedule-venus-by-coures th {
  background: var(--venus-bg-light);
  color: var(--venus-primary-color);
  font-weight: 600;
}

.venus-popup-schedule .schedule-note {
  font-size: 0.8rem;
  color: var(--venus-text-gray);
  margin-top: 10px;
}

/* ============================================================
   POPUP - Gallery Flickity controls
   ============================================================ */
.venus-product-popup .woocommerce-product-gallery {
  opacity: 1 !important;
}

.venus-product-popup .product-gallery-slider {
  margin-bottom: 0;
}

.venus-product-popup .product-thumbnails {
  display: none !important;
  min-height: 80px;
}

.venus-product-popup .product-thumbnails .flickity-viewport {
  min-height: 80px;
}

.venus-product-popup .image-tools {
  display: none;
}

/* --- SLIDER Focus & Artifacts --- */
.venus-product-popup .flickity-enabled:focus,
.venus-product-popup .flickity-viewport:focus,
.venus-product-popup .flickity-slider:focus,
.venus-product-popup .flickity-prev-next-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.venus-product-popup .flickity-prev-next-button:focus-visible {
  outline: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Hide potential progress bar/shimmer artifacts described by user */
/* Target elements with the specific reported inline style more broadly */
.venus-product-popup [style*="translateX(-100%)"],
.venus-product-popup [style*="translateX( -100% )"],
.flickity-progress,
.flickity-page-dots + div[style*="position: absolute"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* --- MAIN SLIDER BUTTONS --- */
.venus-product-popup .flickity-prev-next-button {
  background: rgba(255, 255, 255, 0.95);
  color: var(--venus-primary-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 100;
  top: 50% !important;
  margin-top: -22.5px !important;
  /* Centering without transform */
  transform: none !important;
}

.venus-product-popup .flickity-prev-next-button:hover {
  background: var(--venus-primary-color);
  color: #fff;
  transform: scale(1.1) !important;
  /* Scale independently */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.venus-product-popup .flickity-prev-next-button svg {
  display: none !important;
}

.venus-product-popup .flickity-prev-next-button::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.venus-product-popup .flickity-prev-next-button.previous::before {
  content: "\f053";
}

.venus-product-popup .flickity-prev-next-button.next::before {
  content: "\f054";
}

.venus-product-popup .flickity-prev-next-button.previous {
  left: 15px;
}

.venus-product-popup .flickity-prev-next-button.next {
  right: 15px;
}

/* --- THUMBNAILS SLIDER BUTTONS (10% Smaller) --- */
.venus-product-popup .product-thumbnails .flickity-prev-next-button,
.venus-product-popup .product-thumbnails-slider .flickity-prev-next-button {
  width: 40px;
  height: 40px;
  margin-top: -20px !important;
  /* Centering for 40px height */
}

.venus-product-popup .product-thumbnails .flickity-prev-next-button::before,
.venus-product-popup
.product-thumbnails-slider
.flickity-prev-next-button::before {
  font-size: 18px;
}

.venus-product-popup .product-thumbnails .flickity-prev-next-button.previous,
.venus-product-popup
.product-thumbnails-slider
.flickity-prev-next-button.previous {
  left: 5px;
}

.venus-product-popup .product-thumbnails .flickity-prev-next-button.next,
.venus-product-popup
.product-thumbnails-slider
.flickity-prev-next-button.next {
  right: 5px;
}

/* Ensure hover doesn't cause shift by only applying scale */
.venus-product-popup .product-thumbnails .flickity-prev-next-button:hover,
.venus-product-popup
.product-thumbnails-slider
.flickity-prev-next-button:hover {
  transform: scale(1.1) !important;
}

.venus-product-popup .flickity-page-dots {
  bottom: 20px;
  width: 100%;
  text-align: center;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.venus-product-popup .flickity-page-dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.venus-product-popup .flickity-page-dots .dot.is-selected {
  background: var(--venus-primary-color);
  border-color: var(--venus-primary-color);
  transform: scale(1.3);
  opacity: 1;
}

@media (max-width: 1399px) {
  .venus-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .venus-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 20%;
  }
}

@media (max-width: 575px) {
  .venus-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NEWS & EVENTS REFACTOR
   ============================================================ */
.news-title-link {
  text-decoration: none;
  color: inherit;
}

.news-excerpt {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-title-link {
  text-decoration: none;
  color: inherit;
}

.news-list-title {
  font-size: 15px;
  line-height: 1.3;
  text-transform: capitalize;
}

.event-header-icon {
  background-color: #fff0db;
  color: #f59a23;
}

.venus-events_des {
  max-width: 330px;
}

.event-header-title {
  color: #f59a23;
}

.event-view-all-btn {
  color: #f59a23;
  border: 1px solid #f59a23;
}

.event-status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}

.badge-ended {
  background: #6c757d;
  color: #fff;
}

.badge-ongoing {
  background: #28a745;
  color: #fff;
}

.badge-upcoming {
  background: #ffc107;
  color: #333;
}

.event-main-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.event-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.event-overlay-content {
  z-index: 3;
  pointer-events: none;
}

.event-overlay-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.event-type-tag {
  background: #f59a23;
  color: #fff;
  width: fit-content;
  border-radius: 12px;
  padding: 2px 8px;
  margin: 0;
}

.event-overlay-title {
  max-width: 95%;
  font-size: 28px !important;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.event-list-item div.fw-bold {
  text-transform: capitalize;
}

.event-list-img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-list-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.event-list-title-link {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   OTHER SHORTCODES REFACTOR
   ============================================================ */
.course-card-img-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.course-card-title-link {
  text-decoration: none;
}

.venus-meta-label-hidden {
  display: none !important;
}

.woocommerce-Price-amount.amount {
  color: #e86459 !important;
  font-size: 17px;
  font-weight: 600;
}

.price-wrapper.hide-o-vnd .price {
  line-height: 1.6;
}

.venus-sort-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 10px;
}

.venus-sort-select {
  max-width: 200px;
}

.venus-courses-grid-container {
  position: relative;
  min-height: 200px;
}

.venus-courses-empty {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.venus-loading-overlay {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.venus-loading-spinner {
  color: var(--venus-primary-color);
}

.venus-loading-text {
  font-weight: 500;
  color: var(--venus-text-dark);
}

.venus-info-icon {
  color: #ec634f;
  font-size: 30px;
}

.instructor-card-link-wrap {
  text-decoration: none;
  color: inherit;
}

.instructor-icon-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.styleMD .testimonials-title,
.page-home-venus .testimonials-title,
.testimonials-title {
  color: #333 !important;
  font-size: 56px !important;
  line-height: 1.4;
  margin-bottom: 10px;
}

.testimonials-desc,
.branches-sub-des {
  max-width: 750px;
  color: #333 !important;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 10px 0;
}

.hero-section,
.categories-section,
.about-section,
.stats-section,
.branches-section {
  padding: 30px 0;
}

.branches-section h2 {
  font-size: 46px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.reasons-section {
  padding: 40px 0;
}

.registration-section {
  background-color: #fcebe5;
  padding: 40px 0;
}

.about-main-img {
  width: 100%;
}

.reasons-heading-text {
  color: #444;
}

.branch-filter-label {
  letter-spacing: 1px;
  white-space: nowrap;
}

.branch-filter-select {
  max-width: 260px;
}

.branch-map-img {
  opacity: 1;
  max-height: 100%;
  width: 100%;
  object-fit: contain;
}

.branch-map-overlay {
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content-rounded {
  border-radius: 15px;
}

.modal-icon-width {
  width: 15px;
  font-weight: 900 !important;
}

.modal-map-wrapper {
  height: 350px;
}

.modal-map-iframe {
  border: 0;
}
@media (min-width: 1680px) and (max-width: 1919px) {
  .hero-subtitle {
    text-align: left;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-highlight {
    font-size: 38px;
  }
}
@media (min-width: 1440px) and (max-width: 1679px) {
  .hero-subtitle {
    text-align: left;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-highlight {
    font-size: 38px;
  }
}
@media (min-width: 1366px) and (max-width: 1439px) {
  .hero-section {
    background-position: 70%;
  }
  .hero-subtitle {
    text-align: left;
  }
  .hero-title {
    font-size: 56px;
  }
  .hero-highlight {
    font-size: 38px;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .hero-section {
    background-position: 70%;
  }
  .hero-subtitle {
    text-align: left;
  }
  .hero-title {
    font-size: 45px;
  }
  .hero-highlight {
    font-size: 30px;
  }
  .hero-desc {
    font-size: 18px;
    max-width: 400px;
  }
  .owl-nav button.owl-prev {
    left: -35px;
  }
  .owl-nav button.owl-next {
    right: -35px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .header-button-2 .header-button {
    display: none;
  }
  .hero-section {
    background-position: 65%;
  }
  .hero-subtitle {
    font-size: 36px;
    text-align: left;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-highlight {
    font-size: 25px;
  }
  .hero-desc {
    font-size: 16px;
    max-width: 320px;
  }
  .hero-features-box {
    padding: 10px;
    max-width: 320px;
  }
  .hero-features-box .feature-text h6 {
    font-size: 14px;
  }
  .hero-features-box .feature-item .text-muted {
    font-size: 13px;
  }
  .owl-nav button.owl-prev {
    left: -15px;
  }
  .owl-nav button.owl-next {
    right: -35px;
  }
  .featured-title-sub1 {
    font-size: 28px;
  }
  .featured-title-main {
    font-size: 46px !important;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title {
    font-size: 45px !important;
  }
  .about-subheading {
    font-size: 25px !important;
  }
  .about-p1,
  .about-p2 {
    font-size: 18px;
  }
  .stat-number {
    font-size: 25px;
  }
  .stat-label {
    font-size: 12px;
  }
  .venus-section-main-title h2 {
    font-size: 45px;
  }
  .venus-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .courses-nav .venus-tab-btn {
    font-size: 15px;
    padding: 8px 10px;
  }
  .news-header {
    padding: 10px;
  }
  .news-header-icon {
    width: 65px;
    height: 65px;
    font-size: 35px;
    margin-right: 10px;
  }
  .venus-news_des,
  .venus-events_des {
    max-width: 215px;
    min-height: 60px;
  }
  .news-main-content {
    min-height: auto;
  }
  .event-overlay-title {
    max-width: 100%;
    font-size: 18px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1919px) {
  .venus-hero-container {
    max-width: 100%;
  }
}
@media (min-width: 742px) and (max-width: 1023px) {
  .header-button-2 .header-button {
    display: none;
  }
  .hero-section {
    background-position: 65%;
  }
  .hero-subtitle {
    font-size: 36px;
    text-align: left;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-highlight {
    font-size: 25px;
  }
  .hero-desc {
    font-size: 16px;
    max-width: 320px;
  }
  .hero-features-box {
    padding: 10px;
    max-width: 320px;
  }
  .hero-features-box .feature-text h6 {
    font-size: 14px;
  }
  .hero-features-box .feature-item .text-muted {
    font-size: 13px;
  }
  .featured-title-sub1 {
    font-size: 26px;
  }
  .featured-title-main {
    font-size: 45px !important;
  }
  .section-venus-featured .owl-nav button.owl-prev {
    left: -35px;
  }
  .section-venus-featured .owl-nav button.owl-next {
    right: -44px;
  }
  .owl-nav button.owl-prev {
    left: -15px;
  }
  .owl-nav button.owl-next {
    right: -33px;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title {
    font-size: 45px !important;
  }
  .about-subheading {
    font-size: 25px !important;
  }
  .about-p1,
  .about-p2 {
    font-size: 18px;
  }
  .about-bg-wrap {
    background-size: cover;
  }
  .about-badge-circle {
    top: 0;
  }
  .stat-number {
    font-size: 25px;
  }
  .stat-label {
    font-size: 11px;
  }
  .venus-section-main-title h2 {
    font-size: 45px;
  }
  .venus-cards-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .courses-nav .venus-tab-btn {
    font-size: 15px;
    padding: 8px 10px;
  }
  .news-header {
    padding: 10px;
  }
  .news-header-icon {
    width: 65px;
    height: 65px;
    font-size: 35px;
    margin-right: 10px;
  }
  .venus-news_des,
  .venus-events_des {
    max-width: 215px;
    min-height: 60px;
  }
  .news-main-content {
    min-height: auto;
  }
  .event-overlay-title {
    max-width: 100%;
    font-size: 18px !important;
  }
}
@media (max-width: 850px) {
  .header-button-2 .header-button {
    display: none;
  }
  .hero-title {
    font-size: 42px;
    letter-spacing: normal;
  }
  .hero-highlight {
    font-size: 40px;
  }
  .venus-course-title {
    height: auto;
  }
}
@media (max-width: 844px) {
  .header-button-2 .header-button,
  .arcontactus-widget.md.arcontactus-message {
    display: none !important;
  }
  .hero-title {
    font-size: 28px;
    letter-spacing: normal;
  }
  .hero-highlight {
    font-size: 18px;
  }
  .hero-desc {
    font-size: 15px;
    max-width: 240px;
  }
  .featured-title-sub1 {
    font-size: 32px;
  }
  .featured-title-main {
    font-size: 40px !important;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title {
    font-size: 36px !important;
  }
  .venus-sort-select {
    max-width: 160px;
  }
  .venus-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .styleMD .reasons-main-heading,
  .reasons-main-heading,
  .reasons-subheading {
    font-size: 36px !important;
  }
  .courses-nav .venus-tab-btn {
    line-height: 1.5;
  }
  .venus-news_des,
  .venus-events_des {
    max-width: 140px;
    min-height: 77px;
  }
  .submit-wrap::after {
    right: 20px;
  }
}
@media (min-width: 741px) and (max-width: 768px) {
  .stat-item {
    min-width: calc(30% - 15px);
    flex: unset;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title,
  .featured-title-main,
  .venus-section-main-title h2 {
    font-size: 30px !important;
  }
  .about-subheading {
    font-size: 18px !important;
  }
  .venus-sort-select {
    max-width: 130px;
  }
  .venus-course-title {
    height: auto;
  }
  .venus-news_des,
  .venus-events_des {
    max-width: 130px;
    min-height: 85px;
  }
}
@media (max-width: 740px) {
  .hero-section {
    background-image:
            linear-gradient(rgb(223 207 203), rgba(0, 0, 0, 0.1)),
            url(https://hocvienvenusaau.com/wp-content/uploads/2026/06/banner-venus-full-v2.jpg) !important;
    background-size: cover;
    background-position: 53%;
    /*background-position: -1608px 0;*/
  }
  .hero-title {
    font-size: 60px;
    text-align: center;
  }
  .hero-highlight {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px !important;
  }
  .hero-desc {
    font-size: 19px;
    max-width: 100%;
    text-align: center;
  }
  .venus-hero-btn {
    justify-content: center;
  }
  .hero-features-box {
    max-width: 415px;
    margin: 0 auto;
  }
  .about-bg-wrap {
    padding: 30px 0 60px;
    background-size: cover;
    background-position: 85%;
  }
  .venus-course-title {
    height: auto;
  }
  .featured-title-sub1 {
    font-size: 40px;
    text-align: center;
  }
  .featured-title-main {
    font-size: 42px !important;
    text-align: center;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title,
  .venus-section-main-title h2,
  .reg-title,
  .reg-form-header-title {
    font-size: 36px !important;
  }
  .stat-item {
    min-width: calc(48% - 15px);
    flex: unset;
  }
  .courses-nav {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    border: none;
    padding-bottom: 0;
    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* iOS */
    -webkit-overflow-scrolling: touch;
  }
  .courses-nav::-webkit-scrollbar {
    display: none;
  }
  .courses-nav .venus-tab-btn {
    min-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 15px;
    border: 1px solid #ef675a;
    padding: 10px 16px;
    white-space: nowrap;
  }
  .courses-nav .venus-tab-btn:last-child {
    border-bottom: 1px solid #ef675a;
  }
  .owl-carousel .owl-stage-outer {
    text-align: center;
  }
  .owl-nav button.owl-prev {
    left: -30px;
  }
  .owl-nav button.owl-next {
    right: -50px;
  }
  .instructor-card,
  .testimonial-card {
    transform: scale(0.98);
  }
  .venus-news-wrapper .news-header .text-primary-custom,
  .event-header-title {
    font-size: 30px !important;
  }
  .venus-news_des,
  .venus-events_des {
    max-width: 350px;
    font-size: 100%;
    min-height: auto;
  }
  .news-tag {
    font-size: 20px;
  }
  .news-list-title {
    font-size: 16px;
    font-weight: 500 !important;
  }
  .event-list-item div.fw-bold {
    font-weight: 500 !important;
  }
  .reg-title .text-primary-custom {
    font-weight: bold;
  }
  .event-card img {
    height: auto;
  }
  .submit-wrap::after {
    right: 200px;
  }
}
@media (max-width: 499px) {
  .col-12,
  .col-md-8,
  .col-md-4 {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-section {
    background-position: 56%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-highlight {
    font-size: 27px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .venus-btn,
  .venus-btn-outline {
    font-size: 20px;
    padding: 10px 30px !important;
    text-transform: capitalize !important;
  }

  .hero-features-box {
    max-width: 100%;
    padding: 5px;
  }

  .hero-features-box .feature-text h6 {
    font-size: 20px;
  }

  .featured-title-sub1 {
    font-size: 35px;
  }

  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title,
  .venus-section-main-title h2,
  .reg-form-header-title {
    font-size: 36px !important;
  }

  .about-p1,
  .about-p2 {
    text-align: justify;
  }

  .about-badge-circle {
    top: -5%;
    right: -18px;
  }

  .styleMD .reasons-main-heading,
  .reasons-main-heading {
    font-size: 35px !important;
  }

  .reg-title {
    font-size: 33px !important;
  }

  .stats-bar {
    padding: 20px 0;
  }

  .stats-row {
    justify-content: center;
  }

  .stat-icon-wrap {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 22px;
    letter-spacing: normal;
  }

  .courses-nav .venus-tab-btn i {
    margin-right: 4px;
  }

  .venus-sort-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .venus-cards-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .venus-course-cat {
    font-size: 24px;
  }

  .venus-course-title,
  .venus-course-btn,
  .courses-nav .venus-tab-btn {
    font-size: 18px;
  }

  .venus-course-meta-list li {
    font-size: 17px;
  }

  .owl-nav button.owl-prev {
    left: -15px;
  }

  .owl-nav button.owl-next {
    right: -33px;
  }

  .instructor-info {
    padding: 15px;
  }

  .instructor-name {
    font-size: 20px !important;
  }

  .instructor-info p {
    font-size: 18px;
  }

  .reason-wrapper {
    max-width: 100%;
  }

  .reasons-header {
    margin-bottom: 30px;
  }

  .reason-badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: -40px auto 15px;
  }

  .reason-title {
    font-size: 30px;
  }

  .reason-desc {
    font-size: 18px;
  }

  .reasons-cta-title {
    font-size: 25px;
    letter-spacing: normal;
    text-align: left;
  }

  .reasons-cta-sub {
    font-size: 18px;
    text-align: left;
  }

  .reasons-cta-btn {
    font-size: 16px;
  }

  .news-main-card {
    flex-direction: column;
  }

  .news-header {
    flex-direction: column;
  }

  .news-header-icon {
    width: 150px;
    height: 70px;
    font-size: 30px;
  }

  .venus-news_des,
  .venus-events_des {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .venus-btn,
  .venus-btn-outline {
    font-size: 17px;
  }

  .small,
  small {
    font-size: 16px;
  }

  .event-overlay-title {
    font-size: 18px !important;
  }

  .event-overlay p {
    font-size: 17px;
  }

  .feature-row-col .col-4 {
    width: 100%;
    margin-bottom: 20px;
  }

  .reg-feature-title {
    font-size: 22px;
  }

  .reg-info {
    padding: 30px 20px 0 !important;
  }

  .submit-wrap::after {
    right: 10%;
  }
}
@media (max-width: 414px) {
  .hero-title {
    font-size: 41px;
  }
  .featured-title-sub1 {
    font-size: 32px;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title,
  .venus-section-main-title h2,
  .reg-form-header-title {
    font-size: 35px !important;
  }
  .reg-title {
    font-size: 32px !important;
  }
}
@media (max-width: 390px) {
  .hero-title {
    font-size: 38px;
  }
  .hero-highlight {
    font-size: 25px;
  }
  .featured-title-sub1 {
    font-size: 28px;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title,
  .venus-section-main-title h2,
  .reg-form-header-title {
    font-size: 32px !important;
  }
  .reg-title {
    font-size: 28px !important;
  }
  .instructors-des {
    font-size: 17px;
  }
  .reason-title {
    font-size: 25px;
  }
}
@media (max-width: 375px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-desc {
    font-size: 17px;
  }
  .hero-highlight {
    font-size: 22px;
  }
  .featured-title-sub1 {
    font-size: 25px;
  }
  .hero-features-box .feature-text h6 {
    font-size: 18px;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title,
  .venus-section-main-title h2,
  .reg-form-header-title {
    font-size: 28px !important;
  }
  .about-subtitle {
    font-size: 32px;
  }
  .venus-news-wrapper .news-header .text-primary-custom,
  .event-header-title {
    font-size: 26px !important;
  }
  .reg-title {
    font-size: 24px !important;
  }
  .instructors-des {
    font-size: 16px;
  }
  .reasons-cta-btn {
    font-size: 14px;
  }
  .news-tag {
    font-size: 15px;
  }
  .reason-title {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-desc {
    font-size: 17px;
  }
  .hero-highlight {
    font-size: 22px;
  }
  .featured-title-sub1 {
    font-size: 23px;
  }
  .hero-features-box .feature-text h6 {
    font-size: 17px;
  }
  .about-title,
  .instructors-section h2,
  .styleMD .testimonials-title,
  .page-home-venus .testimonials-title,
  .testimonials-title,
  .venus-section-main-title h2,
  .reg-form-header-title {
    font-size: 26px !important;
  }
  .venus-news-wrapper .news-header .text-primary-custom,
  .event-header-title {
    font-size: 24px !important;
  }
  .reg-title {
    font-size: 22px !important;
  }
  .instructors-des {
    font-size: 17px;
  }
  .reasons-cta-btn {
    font-size: 14px;
  }
  .news-tag {
    font-size: 16px;
  }
  .reason-title {
    font-size: 17px;
  }
}
@media (max-width: 320px) {
  .hero-title {
    font-size: 33px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-features-box {
    padding: 10px;
  }
  .about-p1,
  .about-p2,
  .venus-section-subtitle {
    font-size: 16px;
  }
  .stat-label {
    font-size: 17px;
  }
  .reasons-cta-title {
    font-size: 20px;
  }
}
