@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap");

:root {
  --venus-primary-color: #e88c7a;
  --venus-primary-hover: #e03c5a;
  --venus-primary2-color: #ff4d6d;
  --venus-bg-light: #fff5f6;
  --venus-text-dark: #333333;
  --venus-text-gray: #777777;
  --venus-border-color: #ffe0e5;
  --venus-font-family: "Be Vietnam Pro", sans-serif;
  --venus-box-shadow: 0 10px 30px rgba(255, 77, 109, 0.1);
  --venus-box-shadow-hover: 0 15px 40px rgba(255, 77, 109, 0.2);
}

body {
  font-family: var(--venus-font-family);
  color: var(--venus-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography & Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title h2 {
  color: var(--venus-primary-color);
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.section-title p {
  color: var(--venus-text-gray);
  font-size: 1.1rem;
}
.title-decoration {
  color: var(--venus-primary-color);
  font-size: 1.5rem;
  vertical-align: super;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--venus-primary-color);
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: var(--venus-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--venus-box-shadow);
}
.btn-outline-custom {
  background-color: transparent;
  color: var(--venus-primary-color);
  border: 1px solid var(--venus-primary-color);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: var(--venus-primary-color);
  color: #fff;
}

/* Utilities */
.bg-soft-pink {
  background-color: var(--venus-bg-light);
}
.text-primary-custom {
  color: #e86459 !important;
  font-weight: 500 !important;
}
.fa-location-dot.text-primary-custom{
  font-weight: 900 !important;
}
.card-custom {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--venus-box-shadow);
  transition: all 0.3s ease;
  background: #fff;
}
.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: var(--venus-box-shadow-hover);
}

/* --- SECTION 1: HEADER & HERO --- */
.navbar {
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-brand img {
  height: 50px;
}
.nav-link {
  font-weight: 600;
  color: var(--venus-text-dark) !important;
  margin: 0 10px;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--venus-primary-color) !important;
}
.hero-section {
  background:
          linear-gradient(
                  135deg,
                  rgba(255, 245, 246, 0.95) 0%,
                  rgba(255, 255, 255, 0.9) 100%
          ),
          url("https://images.unsplash.com/photo-1528731700684-a15d74268e0d?q=80&w=1920&auto=format&fit=crop")
          center/cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-title {
  color: var(--venus-primary-color);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hero-subtitle {
  font-style: italic;
  color: var(--venus-primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.hero-features .feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.hero-features .feature-card:hover {
  transform: translateX(-5px);
}
.hero-features .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--venus-bg-light);
  color: var(--venus-primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
}

/* --- SECTION 2: CATEGORIES --- */
.categories-section {
  position: relative;
  background-color: #fdfdfe;
  padding: 50px 0 30px !important;
}
.categories-section .container,
.categories-section .row {
  max-width: 1480px !important;
}
.categories-section .col {
  flex: 1 0 0%;
  max-width: 100%;
  padding: 0 5px 0 !important;
}
.category-item {
  display: flex;
  align-items: center;
  padding: 10px 7px;
  border: 1px solid var(--venus-border-color);
  border-radius: 50px;
  color: var(--venus-text-dark);
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  background: #fff;
  margin-bottom: 0;
  justify-content: center;
}
.category-item:hover {
  border-color: #f14e5a;
  background: #f14e5a;
  color: #fff;
}
.category-item:hover i {
  color: #fff;
}
.category-icon {
  color: #ff6159;
  font-size: 1.5rem;
  margin-right: 10px;
}
/*
.fa-person-praying.category-icon{
  color: #49d2a2;
}
.fa-music.category-icon{
  color: #71aefa;
}
.fa-star.category-icon {
  color: #ae8af5;
}
*/

/* --- SECTION 4: ABOUT US --- */
.about-section {
  padding: 40px 0;
}
.about-image {
  position: relative;
  border-radius: 20px;
  text-align: right;
  overflow: hidden;
}
.about-image img {
  max-width: 400px;
}
.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--venus-primary-color);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
}
.about-badge h3 {
  margin: 0;
  font-size: 1.5rem;
}
.about-badge span {
  font-size: 0.8rem;
}

/* --- SECTION 5: STATISTICS --- */
.stats-section {
  padding: 40px 0;
}
.stats-container {
  background: var(--venus-bg-light);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  margin: 10px;
}
.stat-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--venus-primary-color);
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(255, 77, 109, 0.1);
}
.stat-content h4 {
  color: var(--venus-primary-color);
  margin: 0;
  font-size: 1.8rem;
}
.stat-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--venus-text-dark);
}

/* --- SECTION 8: 5 REASONS --- */
.reasons-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff9fa 0%, #fff 60%);
  position: relative;
  overflow: hidden;
}
.reasons-bg-decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
          circle,
          rgba(255, 77, 109, 0.07) 0%,
          transparent 70%
  );
  pointer-events: none;
}
.reasons-bg-decor--left {
  top: -80px;
  left: -80px;
}
.reasons-bg-decor--right {
  bottom: -80px;
  right: -80px;
}

/* Header */
.reasons-header {
  margin-bottom: 50px;
}
.reasons-subheading {
  font-size: 56px;
  font-weight: 900;
  color: #e86459;
  line-height: 1;
  letter-spacing: -1px;
}
.styleMD .reasons-main-heading,
.reasons-main-heading {
  font-size: 46px !important;
  font-weight: 700;
  color: #333 !important;
  text-transform: uppercase;
  margin: 8px 0 16px;
  letter-spacing: 1px;
}
.reasons-main-heading .text-primary-custom {
  color: #f07169 !important;
}
.reasons-divider {
  font-size: 1.5rem;
  color: var(--venus-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons-divider::before,
.reasons-divider::after {
  content: "";
  height: 1px;
  width: 80px;
  background: #ffd6de;
  margin: 0 15px;
}

/* Grid - 5 columns */
.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}
.reason-wrapper {
  flex: 0 1 calc(20% - 16px);
  min-width: 180px;
  max-width: 220px;
}

/* Card */
.reason-card {
  text-align: center;
  padding: 75px 16px 24px;
  margin-top: 65px;
  border: 1.5px solid #ffd6de;
  border-radius: 20px;
  background: #fff;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  height: calc(100% - 65px);
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.06);
}
.reason-card:hover {
  border-color: var(--venus-primary-color);
  box-shadow: 0 12px 32px rgba(255, 77, 109, 0.15);
  transform: translateY(-6px);
}

/* Circular image / icon */
.reason-img-wrap {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffd6de;
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.06);
  overflow: hidden;
}
.reason-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.reason-icon-inner {
  font-size: 46px;
  color: #f7735e;
}

/* Number badge */
.reason-badge {
  background: #f7735e;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  margin: -30px auto 15px;
  position: relative;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
  z-index: 1;
}

/* Title & Desc */
.reason-title {
  color: #e86459;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 0.3px;
  position: relative;
  text-align: center;
  padding-bottom: 12px;
}
.reason-title::after {
  content: "";
  display: block;
  width: 30%;
  height: 3px;
  background: #e86459;
  margin: 10px auto 0;
  border-radius: 2px;
}
.reason-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  padding-bottom: 25px;
}

/* Watermark number */
.reason-bg-number {
  position: absolute;
  bottom: 0;
  right: 8px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 77, 109, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* CTA Banner */
.reasons-cta-wrap {
  max-width: 775px;
  margin: 0 auto;
}
.reasons-cta-banner {
  background: #feefe7;
  border-radius: 60px;
  padding: 18px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1.5px solid #fde8df;
  box-shadow: 0 4px 20px rgba(255, 77, 109, 0.08);
}
.reasons-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reasons-cta-icon {
  background: #e86459;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.reasons-cta-title {
  font-weight: 800;
  font-size: 20px;
  color: #e86459;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.reasons-cta-sub {
  font-size: 15px;
  color: #333;
}
.reasons-cta-btn {
  background: #da3a58;
  color: #fff !important;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.reasons-cta-btn:hover {
  background: var(--venus-primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.3);
  color: #fff !important;
}

/* Legacy .cta-banner (kept for backwards compat) */
.cta-banner {
  background: var(--venus-bg-light);
  border-radius: 50px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.cta-banner-icon {
  background: var(--venus-primary-color);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
}

/* --- SECTION 9: TESTIMONIALS --- */
.testimonials-section {
  padding: 40px 0;
  /*background-color: #fef6f5;*/
  background: url(https://hocvienvenusaau.com/wp-content/uploads/2026/06/cam-nhan-hoc-vien-venus-bg.jpg)
  no-repeat top center;
  background-size: cover;
  background-color: #fef1ea;
}
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  margin: 15px;
  box-shadow: var(--venus-box-shadow);
  position: relative;
}
.quote-icon {
  color: #e86459;
  font-size: 32px;
  margin-bottom: 15px;
  opacity: 0.8;
}
.quote-icon-right {
  position: absolute;
  font-size: 32px;
  color: #fecfcb;
  bottom: 20px;
  right: 30px;
}
.testimonial-text {
  font-size: 18px;
  color: var(--venus-text-dark);
  line-height: 1.5 !important;
  text-align: justify;
  margin-bottom: 20px !important;
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-author img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.author-name {
  color: #e86459;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}
.author-course {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
.author-rating {
  color: #e86459;
  font-size: 14px;
}

/* --- SECTION 10: BRANCHES --- */
.branches-section {
  background-color: #fffcfc;
  padding: 40px 0;
}
.branches-section .branch-filter-select {
  height: 38px !important;
}
.map-container {
  background: var(--venus-bg-light);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container img {
  max-width: 100%;
  height: auto;
}
/* Map container */
.map-container {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--venus-primary-color);
  padding: 3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: auto;
}
.map-container .branch-map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Branch card */
.branch-card {
  background: #fff;
  border: 1.5px solid var(--venus-primary-color);
  border-radius: 16px;
  margin-top: 22px;
  padding-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.06);
  transition: all 0.3s;
  overflow: visible;
  position: relative;
  text-align: center;
  height: calc(100% - 22px);
}
.branch-card:hover {
  border-color: var(--venus-primary-color);
  box-shadow: 0 12px 30px rgba(255, 77, 109, 0.15);
  transform: translateY(-4px);
}

/* Icon vòng tròn nổi trên thẻ */
.branch-icon {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--venus-primary-color);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.branch-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.branch-icon-fa {
  font-size: 1rem;
  color: #fff;
}

/* Ảnh tròn lớn */
.branch-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid #eee;
  overflow: hidden;
  margin: 36px auto 12px;
}
.branch-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Lightbox trigger link wrapping the photo */
.branch-photo-lightbox-trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  cursor: zoom-in;
  text-decoration: none;
}
.branch-photo-lightbox-trigger:hover .branch-photo {
  transform: scale(1.08);
}
.branch-photo-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 50%;
}
.branch-photo-lightbox-trigger:hover .branch-photo-zoom-icon {
  opacity: 1;
}

/* Nội dung thẻ */
.branch-body {
  padding: 0 12px;
}
.branch-name {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.branch-address {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  min-height: 112px;
}
.branch-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
  text-align: left;
  margin-bottom: 8px;
}
.branch-detail-icon {
  color: var(--venus-primary-color);
  font-size: 15px;
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.btn-view-branch {
  background: #fff;
  font-size: 16px;
  color: var(--venus-primary-color);
  font-weight: 500;
  text-transform: capitalize;
  border: 2px solid var(--venus-primary-color);
  padding: 8px 12px;
  margin: 0;
  transition: all 0.3s;
  max-width: 170px;
}
.btn-view-branch:hover {
  background: var(--venus-primary-color);
  color: #fff;
}

/* Nút Xem Thêm */
.venus-btn-view-more-branches {
  display: inline-block;
  align-items: center;
  gap: 2px;
  border: 1.5px solid var(--venus-primary-color);
  color: #fff;
  background: #da3a58;
  border-radius: 50px;
  padding: 5px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
  transition: all 0.3s;
}
.venus-btn-view-more-branches:hover {
  background: var(--venus-primary-color);
  color: #fff;
}

/* CTA Footer */
.venus-branches-cta {
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #feefe7;
  border: 1.5px solid #fde8df;
  border-radius: 60px;
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(255, 77, 109, 0.08);
}
.branches-cta-col {
  display: flex;
  align-items: center;
  gap: 14px;
}
.branches-cta-icon-wrap {
  width: 60px;
  height: 60px;
  background: #e86459;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.branches-cta-title {
  color: #e86459;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.branches-cta-phone {
  color: #e86459;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
}
.branches-cta-sub {
  font-size: 0.88rem;
  color: #333;
  margin-bottom: 0;
}
.branches-cta-divider {
  width: 2px;
  height: 60px;
  background-color: #fdd9e1;
  flex-shrink: 0;
}
.branches-cta-btn-wrap {
  margin-left: auto;
}
.branches-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--venus-primary-color);
  color: #fff;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(255, 77, 109, 0.3);
  transition: all 0.3s;
}
.branches-cta-btn:hover {
  background: var(--venus-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4);
}
strong#modalBranchAddress {
  font-size: 15px;
  font-weight: normal;
}
.venus-ux-elements-modal.show .modal-dialog {
  max-width: 950px;
}
.venus-ux-elements-modal.show .modal-title {
  font-size: 22px;
}
.branches-section .branch-filter-label {
  letter-spacing: normal;
  padding-left: 10px;
}
/* Responsive branches CTA */
@media (max-width: 767px) {
  .venus-branches-cta {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
  }
  .branches-cta-col {
    flex-direction: column;
    text-align: center;
  }
  .branches-cta-btn-wrap {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .branches-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- SECTION 12: REGISTRATION FORM --- */
.registration-section {
  padding: 80px 0;
}
.reg-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

/* Left side */
.reg-info {
  background: #fffcfd; /* light pink tint */
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.feature-row-col .col-4 {
  position: relative;
}

.feature-row-col .col-4:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: #ddd;
}

.reg-top-icon-wrap {
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  justify-content: center;
}
.reg-top-icon-wrap .about-deco {
  font-size: 25px;
  opacity: 1;
  color: #f68069;
}
.reg-top-icon {
  width: 100%;
  height: 100%;
  background: #fde9e2;
  color: #e86459;
  font-size: 40px;
  border: 1.5px solid #fde9e2; /* Red outline as in the design */
}
.reg-sparkle-1 {
  top: 10px;
  left: -15px;
  font-size: 0.8rem;
  opacity: 0.7;
}
.reg-sparkle-2 {
  top: 20px;
  right: -20px;
  font-size: 1rem;
  opacity: 0.7;
}
.reg-title {
  color: #49220f !important;
  font-size: 40px !important;
  line-height: 1.4;
}
.reg-divider-line {
  width: 40px;
  height: 2px;
  background: #ffd6de;
}
.reg-desc-text {
  max-width: 485px;
  color: #333 !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.reg-feature-item {
  text-align: center;
}
.reg-feature-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  color: #e86459;
  font-size: 35px;
  border: 1.5px solid #fde6dd;
  box-shadow: 0 1px 3px 3px #fde6dd;
}
.reg-feature-title {
  color: #ec6459 !important;
  font-size: 18px;
  opacity: 1;
  margin: 15px 0 10px !important;
}
.reg-feature-desc {
  color: #333 !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

/* Right side */
.reg-form-wrap {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.reg-form-header-title {
  color: #e86459 !important;
  font-size: 32px;
  letter-spacing: 0.5px;
  font-weight: bold !important;
}
.reg-header-divider {
  width: 30px;
  height: 3px;
  background: #ffd6de;
}

/* Form wrapper if CF7 is used */
.venus-custom-form-wrapper {
  margin-top: 0;
}

/* Form Fields */
.reg-input-icon {
  left: 15px;
  top: 14px;
  font-size: 1.1rem;
}
.reg-input {
  font-size: 17px;
  height: 46px !important;
  padding-left: 45px !important;
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: #eeeeee !important;
  border-radius: 15px !important;
}
.reg-input:focus {
  border-color: var(--venus-primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 77, 109, 0.25) !important;
}
.reg-select {
  cursor: pointer;
  appearance: none;
}
textarea.reg-input {
  padding-left: 45px !important;
  padding-top: 12px;
}
.reg-check-wrap {
  font-size: 0.85rem;
}
.reg-checkbox {
  border-color: #ccc;
  cursor: pointer;
}
.reg-btn-submit {
  background: #e86459 !important;
  color: #fff !important;
  font-size: 22px !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  line-height: 20px !important;
  transition: all 0.3s !important;
}
.reg-btn-submit:hover {
  background: var(--venus-primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
}
.reg-security-note {
  color: #333 !important;
  font-size: 15px;
}

@media (max-width: 991px) {
  .reg-info {
    border-radius: 20px 20px 0 0;
    padding: 30px 20px;
  }
  .reg-form-wrap {
    border-radius: 0 0 20px 20px;
    padding: 30px 20px;
  }
  .reg-title {
    font-size: 1.8rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  .reg-info {
    padding: 30px;
  }
  .reg-form-wrap {
    padding: 30px;
  }
  .reg-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .reg-feature-item {
    width: 100%;
  }
  /* Reasons */
  .reasons-subheading {
    font-size: 2.2rem;
  }
  .reason-wrapper {
    flex: 0 1 calc(50% - 12px);
    min-width: 140px;
    max-width: none;
  }
  .reasons-cta-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
  }
  .reasons-cta-left {
    justify-content: center;
  }
  .reasons-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .reason-wrapper {
    flex: 0 1 100%;
    max-width: 260px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .reason-wrapper {
    flex: 0 1 calc(33.333% - 14px);
    max-width: none;
  }
}

/* ================================
   VENUS GRID & UTILS (scoped, no Bootstrap conflict)
   Used inside custom shortcode HTML output only.
   ================================ */

/* Venus Row */
.venus-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.venus-row > .venus-col {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  min-width: 0;
}

/* Venus Column widths (desktop) */
.venus-col {
  flex: 1 1 100%;
}
.venus-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px;
  box-sizing: border-box;
}
.venus-col-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 10px;
  box-sizing: border-box;
}
.venus-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}
.venus-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 10px;
  box-sizing: border-box;
}
.venus-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Venus Reasons Grid - 5 column flexbox */
.venus-reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.venus-reasons-grid .reason-wrapper {
  flex: 0 1 calc(20% - 20px);
  min-width: 200px;
}
@media (max-width: 991px) {
  .venus-reasons-grid .reason-wrapper {
    flex: 0 1 calc(33.333% - 24px);
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-icon {
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 575px) {
  .venus-reasons-grid .reason-wrapper {
    flex: 0 1 100%;
  }
}

@media (max-width: 991px) {
  .venus-col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .venus-col-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .venus-col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .venus-col-3,
  .venus-col-4,
  .venus-col-6,
  .venus-col-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Venus Flex helpers */
.venus-flex {
  display: flex;
}
.venus-flex-center {
  display: flex;
  align-items: center;
}
.venus-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.venus-flex-col {
  display: flex;
  flex-direction: column;
}
.venus-gap-sm {
  gap: 10px;
}
.venus-gap-md {
  gap: 20px;
}

/* Venus Tabs */
.venus-tab-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.venus-tab-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  border-radius: 0;
  border: 1px solid var(--venus-border-color);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  color: var(--venus-text-dark);
  transition: all 0.3s;
}
.venus-tab-btn:hover,
.venus-tab-btn.active {
  background: var(--venus-bg-light);
  color: var(--venus-primary-color);
  border-color: var(--venus-primary-color);
}
.venus-tab-pane {
  display: none;
}
.venus-tab-pane.active {
  display: block;
}

/* Venus card grid inside tabs */
.venus-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.venus-cards-grid .venus-card-item {
  flex: 0 1 calc(25% - 16px);
}
@media (max-width: 1199px) {
  .venus-cards-grid .venus-card-item {
    flex: 0 1 calc(33.333% - 16px);
  }
}
@media (max-width: 991px) {
  .venus-cards-grid .venus-card-item {
    flex: 0 1 calc(50% - 16px);
  }
}
@media (max-width: 575px) {
  .venus-cards-grid .venus-card-item {
    flex: 0 1 100%;
  }
}

/* Venus text helpers */
.venus-text-primary {
  color: var(--venus-primary-color) !important;
}
.venus-text-muted {
  color: var(--venus-text-gray);
}
.venus-text-center {
  text-align: center;
}
.venus-fw-bold {
  font-weight: 700;
}
.venus-italic {
  font-style: italic;
}

/* Venus spacing helpers */
.venus-mb-1 {
  margin-bottom: 4px;
}
.venus-mb-2 {
  margin-bottom: 10px;
}
.venus-mb-3 {
  margin-bottom: 16px;
}
.venus-mb-4 {
  margin-bottom: 24px;
}
.venus-mt-3 {
  margin-top: 16px;
}

/* Venus list */
.venus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.venus-list li {
  margin-bottom: 8px;
}
.venus-popup-body .venus-list li,
.venus-popup-body .venus-meta-label {
  color: #333;
  font-size: 17px;
  font-weight: 500;
}
.venus-popup-variation .single_variation_wrap .quantity {
  display: none !important;
}
/* Venus badge (base - no position, used by card badges and other elements) */
.venus-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--venus-primary-color);
}

/* Venus button helpers */
.venus-btn {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: none !important;
  border-radius: 50px;
  border: 2px solid #f46d61;
  padding: 8px 20px;
  cursor: pointer;
  background: #f46d61;
  transition: all 0.3s;
}
.venus-btn:hover {
  background: var(--venus-primary-hover);
  color: #fff;
}
.venus-btn-outline {
  display: inline-block;
  color: #f46d61;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  text-transform: none !important;
  border-radius: 50px;
  border: 2px solid #f46d61;
  cursor: pointer;
  padding: 7px 20px;
  background: transparent;
  transition: all 0.3s;
}
.instructors-section .venus-btn-outline {
  background-color: #e86459;
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  text-transform: none !important;
  border-radius: 50px;
  border: 2px solid #e86459;
  cursor: pointer;
  padding: 7px 20px;
  transition: all 0.3s;
}
.testimonials-section .venus-btn-outline {
  color: #fff;
  background: #fc7769;
}
.venus-btn-outline:hover {
  background: var(--venus-bg-light);
}
.testimonials-section .venus-btn-outline:hover,
.instructors-section .venus-btn-outline:hover {
  color: #f46d61;
  background: var(--venus-bg-light);
}
.venus-btn-sm {
  padding: 5px 14px;
  font-size: 0.82rem;
}
.venus-w-100 {
  width: 100%;
  display: block;
  text-align: center;
}

/* Venus Categories Grid - 8 column flexbox */
.venus-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}
.venus-categories-grid .category-wrapper {
  flex: 0 1 calc(12.5% - 12px);
  min-width: 110px;
  display: flex;
  justify-content: center;
}
.video-container {
  position: relative;
  padding-bottom: 178.25% !important;
  height: 0;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 991px) {
  .venus-categories-grid .category-wrapper {
    flex: 0 1 calc(25% - 12px);
  }
}
@media (max-width: 575px) {
  .venus-categories-grid .category-wrapper {
    flex: 0 1 calc(50% - 8px);
  }
}
.categories-section .text-box-content {
  padding: 0;
}

/* Venus Events flex items */
.venus-flex-center {
  align-items: flex-start;
}
.event-list-item {
  display: flex;
  align-items: flex-start;
}
.news-list-item {
  display: flex;
  align-items: flex-start;
}
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================
   COURSES TABS - Sort Bar & Loading
   ================================ */
.venus-sort-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  align-items: center;
  border: 1px solid var(--venus-border-color);
}
.venus-search-wrap {
  position: relative;
  flex: 2;
  min-width: 250px;
}
.venus-search-input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 1px solid var(--venus-border-color);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  background: #fcfcfc;
  transition: all 0.3s;
}
.venus-search-input:focus {
  border-color: var(--venus-primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.1);
}
.venus-search-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}
.venus-filter-item {
  min-width: 140px;
  /* flex: 1; */
}
.venus-price-filter,
.venus-variation-filter {
  width: 100%;
  border: 1px solid var(--venus-border-color);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--venus-text-dark);
  background: #fcfcfc;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}
.venus-price-filter:focus,
.venus-variation-filter:focus {
  border-color: var(--venus-primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.1);
}
.venus-clear-filters {
  width: 45px !important;
  height: 45px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--venus-border-color);
  background: #fff;
  color: #999;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.venus-clear-filters:hover {
  border-color: var(--venus-primary-color);
  color: #fff;
  background: var(--venus-primary-color);
  box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
}

.venus-sort-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 10px;
  padding-left: 10px;
  font-size: 0.9rem;
  color: #666;
}
.venus-sort-select {
  border: 1px solid var(--venus-border-color);
  border-radius: 50px;
  padding: 10px 15px;
  font-size: 0.9rem;
  outline: none;
  background: #fcfcfc;
  cursor: pointer;
}

.venus-courses-grid-wrap {
  transition: opacity 0.25s;
}

.venus-loading-overlay {
  text-align: center;
  padding: 20px;
  color: var(--venus-primary-color);
  font-size: 1rem;
}

/* Card body padding */
.course-list-card .card-body,
.card-custom .card-body {
  padding: 18px 20px 20px 20px;
}

/* Load More Button */
.venus-loadmore-wrap {
  text-align: center;
  margin-top: 28px;
}
.venus-loadmore-btn {
  background: #e03c5a;
  display: inline-block;
  padding: 5px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all 0.3s;
  min-width: 220px;
}
.venus-loadmore-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ================================
   HOVER REVEAL
   ================================ */
.venus-card-hover-reveal .course-list-card .card-body {
  transition: all 0.3s ease;
}

/* ================================
   POPUP - Gallery fix
   ================================ */
.venus-product-popup .woocommerce-product-gallery {
  opacity: 1 !important;
}
.venus-product-popup .woocommerce-product-gallery__image a {
  cursor: default !important;
}
.venus-product-popup .product-thumbnails {
  min-height: 80px;
}
.venus-product-popup .product-thumbnails .flickity-viewport {
  min-height: 80px;
}
.venus-product-popup .image-tools {
  display: none;
}
@media (min-width: 1440px) and (max-width: 1679px) {
  .category-item {
    font-size: 14px;
  }
}
@media (min-width: 1366px) and (max-width: 1439px) {
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .venus-btn {
    padding: 15px 25px !important;
  }
  .categories-section .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .categories-section .row::-webkit-scrollbar {
    display: none;
  }
  .categories-section .col {
    flex: 0 0 155px;
    max-width: 155px;
  }
  .category-item {
    font-size: 13px;
    padding: 10px 0;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .venus-btn,
  .venus-btn-outline {
    padding: 15px 20px !important;
  }
  .categories-section .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .categories-section .row::-webkit-scrollbar {
    display: none;
  }
  .categories-section .col {
    flex: 0 0 155px;
    max-width: 155px;
  }
  .category-item {
    font-size: 13px;
    padding: 10px 0;
  }
  .styleMD .reasons-main-heading,
  .reasons-main-heading,
  .reasons-subheading {
    font-size: 45px !important;
  }
  .reg-title {
    font-size: 32px !important;
  }
  .reg-form-header-title {
    font-size: 28px;
  }
  .reg-feature-title {
    font-size: 14px;
  }
  .reg-feature-desc {
    font-size: 16px;
    line-height: 1.4;
  }
}
/* ================================
   SORT BAR - responsive filter items
   ================================ */
@media (max-width: 991px) {
  .categories-section .col {
    flex: 1 0 50%;
    margin-bottom: 16px;
  }
  .featured-title-sub1 {
    text-align: center;
  }
  .featured-title-main {
    font-size: 50px !important;
    text-align: center;
  }
  .venus-sort-bar {
    flex-wrap: wrap;
  }
  .venus-sort-bar .venus-filter-item {
    flex: 1 1 auto;
    min-width: 130px;
  }
  .venus-sort-bar .venus-search-wrap {
    /* min-width: 100%;
    margin-bottom: 8px; */
  }
  .branch-address {
    min-height: auto;
  }
}
@media (min-width: 740px) and (max-width: 1023px) {
  .venus-btn,
  .venus-btn-outline {
    padding: 12px 20px !important;
  }
  .categories-section .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .categories-section .row::-webkit-scrollbar {
    display: none;
  }
  .categories-section .col {
    flex: 0 0 155px;
    max-width: 155px;
  }
  .category-item {
    font-size: 13px;
    padding: 10px 0;
  }
  .styleMD .reasons-main-heading,
  .reasons-main-heading,
  .reasons-subheading {
    font-size: 45px !important;
  }
  .reg-title {
    font-size: 32px !important;
  }
  .reg-form-header-title {
    font-size: 28px;
  }
  .reg-feature-title {
    font-size: 14px;
  }
  .reg-feature-desc {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 844px) {
  .venus-btn,
  .venus-btn-outline {
    font-size: 16px;
  }
}
@media (min-width: 741px) and (max-width: 768px) {
  .venus-loadmore-wrap {
    max-width: 300px;
    margin: 28px auto 0;
  }
  .reasons-cta-btn {
    max-width: 300px;
  }
  .reasons-cta-title {
    text-align: left;
  }
  .venus-btn,
  .venus-btn-outline {
    padding: 5px 10px !important;
  }
}
@media (max-width: 740px) {
  .venus-btn,
  .venus-btn-outline {
    font-size: 16px;
  }
  .categories-section .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .categories-section .row::-webkit-scrollbar {
    display: none;
  }
  .categories-section .col {
    flex: 0 0 155px;
    max-width: 155px;
    margin-bottom: 0;
  }
  .category-item {
    font-size: 13px;
    padding: 10px 0;
  }
  .venus-loadmore-wrap,
  .reasons-cta-btn {
    max-width: 300px;
  }
  .venus-loadmore-wrap {
    margin: 15px auto 0;
  }
  .branch-address {
    min-height: auto;
  }
}
@media (max-width: 575px) {
  .venus-sort-bar .venus-filter-item {
    min-width: 100%;
  }
  .venus-sort-bar .venus-sort-wrap {
    justify-content: flex-start !important;
    margin-top: 8px;
    width: 100%;
  }
}
@media (max-width: 499px) {
  .categories-section .col {
    flex: 0 0 200px;
    max-width: 200px;
  }
  .category-item {
    font-size: 18px;
  }
}
@media (max-width: 414px) {
}
@media (max-width: 390px) {
}
@media (max-width: 375px) {
}
@media (max-width: 360px) {
}
@media (max-width: 320px) {
  .reg-btn-submit {
    font-size: 16px !important;
  }
}

/* --- SECTION 13: LIGHTBOX SLIDER --- */
.venus-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.venus-lightbox-close {
  position: absolute;
  top: 20px;
  right: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  letter-spacing: normal;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0.3s;
}

.venus-lightbox-close:hover {
  background: #da3a58;
  transform: rotate(90deg);
}

.venus-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin: 0;
  backdrop-filter: blur(5px);
}

.venus-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.35);
  color: var(--venus-primary-color);
}

.venus-lightbox-prev {
  left: 20px;
}

.venus-lightbox-next {
  right: 20px;
}

.venus-lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  display: block;
  pointer-events: none;
}

.venus-lightbox-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.venus-lightbox-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.venus-lightbox-dot.active {
  background: var(--venus-primary-color);
  transform: scale(1.3);
}
.venus-lightbox-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
}

.venus-lightbox-counter {
  position: absolute;
  top: 25px;
  left: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 3;
}
