/* body { background: #f8f9fa; } */
/* courses */
/* .logo{
  width: 250px;
} */
:root {
  --primary:#8b1a1a;
  --primary-dark:#6b1212;
  --bg-light:#f8f5ff;
  --text-muted:#6c757d;
}

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:#ffffff;
  color:#212529;
}
.bg-themeLight{
  /* background: #ffe0e0; */
  /* background: #faf0f0; */
  background: #faf4f4;
}
#auth-section a{
  color: #ffffff;
  text-decoration: none;
}
.course-card img { 
  /* height: 180px;  */
  /* height: 161px;  */
  /* height: 220px; */
  object-fit: cover; 
}
.badge-premium { background: #6f42c1; }
.badge-bestseller { background: #20c997; }
.course-card { transition: 0.3s ease; }
.course-card:hover { transform: scale(1.02); }
/* courses end */

/* course details */
.course-title { font-size: 1.8rem; font-weight: 600; }
.sidebar { background: #fff; padding: 20px; border: 1px solid #ddd; border-radius: 8px; }
.badge-premium { background-color: #6f42c1; }
.badge-bestseller { background-color: #20c997; }
.accordion-button:not(.collapsed) { color: #0d6efd; }
.hero {
    /* background: url('https://placehold.co/50x50?text=Hello\nWorld') no-repeat center center; */
    background: url('./images/GAYATRI_MUDRA_COURSE.png') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
    background-blend-mode: overlay;
    background-color: #280115;
}
/* course details end */
/* detail.css */
.hero {
      /* background: url('https://placehold.co/50x50?text=Hello\nWorld') no-repeat center center; */
      background: url('../images/bhaktamar.jpeg') no-repeat center center;
      background-size: cover;
      color: white;
      text-align: center;
      padding: 80px 20px;
      background-blend-mode: overlay;
      background-color: #434243;
    }
    .section-title {
      color: #891652;
      font-weight: 600;
      margin-bottom: 30px;
    }
    .guru-image {
      max-width: 180px;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .btn-cta {
      background-color: #891652;
      color: white;
      font-weight: 600;
    }
    .btn-cta:hover {
      background-color: #6d1247;
    }
    footer {
      background-color: #891652;
      color: white;
      text-align: center;
      padding: 15px 0;
    }
/* detail.css end */
/* my-learning.css */
    .course-card {
      transition: 0.3s;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }
    .course-card:hover {
      transform: scale(1.02);
    }
    .card-img-top {
      /* height: 180px; */
      object-fit: cover;
    }
    .progress-bar {
      background-color: #6f42c1;
    }
    .hero {
      /* background: url('https://placehold.co/50x50?text=Hello\nWorld') no-repeat center center; */
      background: url('../images/GAYATRI_MUDRA_COURSE.png') no-repeat center center;
      background-size: cover;
      color: white;
      text-align: center;
      /* padding: 80px 20px; */
      padding: 110px 20px;
      background-blend-mode: overlay;
      /* background-color: #280115; */
      background-color: #3e3e3e;
    }
/* my-learning.css */
/* userCourseDetail.css */
    /* body { background: #f8f9fa; }
    .video-section { background: #000; }
    .video-player { width: 100%; height: 100%; max-height: 500px; }
    .lecture-list { height: 100%; overflow-y: auto; background: #fff; border-left: 1px solid #dee2e6; }
    .lecture-item { cursor: pointer; padding: 10px; border-bottom: 1px solid #f1f1f1; }
    .lecture-item:hover, .lecture-item.active { background-color: #f1f1f1; }
    .tab-content-area { background: #fff; padding: 20px; border-top: 1px solid #dee2e6; }
    .search-bar { max-width: 500px; } */
html, body {
  height: 100%;
}

.main-content {
  height: 100vh;
  overflow-y: auto;
}
.fixed-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ddd;
  background: #fff;
}

/* Header remains fixed inside sidebar */
.fixed-sidebar > .p-3 {
  flex-shrink: 0;
}

/* Accordion scrolls when content overflows */
.accordion-wrapper {
  flex: 1;
  overflow-y: auto;
}

/* Optional – hide ugly scrollbar */
.accordion-wrapper::-webkit-scrollbar { width: 6px; }
.accordion-wrapper::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.lecture-list {
  border-right: 1px solid #ddd;
  height: 100vh;
  overflow-y: auto;
}

.lecture-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.lecture-item:hover {
  background: #f7f9fc;
}

.lecture-item.active {
  background: #eaf1ff;
  font-weight: 600;
}

.lecture-item small {
  color: #666;
}

.accordion-button {
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .fixed-sidebar {
    position: relative;
    height: auto;
  }

  .main-content {
    height: auto;
  }

  .accordion-wrapper {
    max-height: none;
  }
}
/* userCourseDetail.css */
/* home page tabs section css */
.skills-section {
  padding: 40px 20px;
  /* max-width: 1200px; */
  margin: auto;
}

.skills-section h2 {
  font-size: 28px;
  font-weight: 700;
   margin-bottom: .5rem;
}

.skills-section p {
  color: #666;
  margin-bottom: 20px;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 15px;
  /* overflow-x: auto; */
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.tab {
  background: none;
  border: none;
  font-size: 16px;
  padding: 10px 15px;
  cursor: pointer;
  color: #333;
  white-space: nowrap;
}

.tab.active {
  border-bottom: 2px solid #5624d0;
  color: #5624d0;
  font-weight: 600;
}

/* Carousel Wrapper*/
.carousel-container {
  position: relative;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  /* overflow: hidden; this hides scrollbars but keeps popups visible */
  /* width: 100%;
  padding: 20px 0; */
}

/* .carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible; 
  ✅ so the popup can appear
  scroll-behavior: smooth;
  scrollbar-width: none; 
  hide scrollbar for Firefox
}

.carousel::-webkit-scrollbar {
  display: none; 
  hide scrollbar for Chrome/Safari
} */
/* Horizontal carousel */
.course-carousel {
  display: none;   /* hidden by default */
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px;
}

.course-carousel.active {
  display: flex;
}
.course-carousel::-webkit-scrollbar {
  display: none;  /*hide scrollbar for Chrome/Safari */
}
/* .course-carousel::-webkit-scrollbar {
  height: 6px;
}
.course-carousel::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
} */
/* Cards */
.course-card {
  position: relative;
  /* min-width: 260px; */
  /* min-width: 292px; */
  /* max-width: 260px; */
  /* min-width: 292px; */
  max-width: 300px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 2px 2px 10px #cccccc;
}

.course-card img {
  width: 100%;
  /* height: 250px; */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.course-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
}

.course-card .instructor {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 4px;
}

.price {
  font-weight: 700;
  font-size: 0.95rem;
}

.old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 0.8rem;
  margin-left: 4px;
}

.badge {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  /* background: #eceb98; */
  background: #6f42c1;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge.purple {
  background: #d1c4f7;
  color: #5624d0;
}

/* .course-card {
  flex: 0 0 260px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  transition: transform 0.2s;
  position: relative;
  overflow: visible;
  ✅ allow popup to be visible
  box-shadow: 2px 2px 10px #cccccc;
}

.course-card h6{
  margin-top: 18px;
  line-height: 1.5;
}
.course-card:hover {
  transform: translateY(-5px);
} 

Hover Popup
.hover-popup {
  position: absolute;
  top:0; commented
  top:15%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;commented
  width: 215px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-top: 10px;
}

The arrow below the popup
.hover-popup .arrow {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  z-index: 10;
}

.course-card:hover .hover-popup {
  opacity: 1;
  pointer-events: all;

  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.hover-popup button {
  background: #5624d0;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}
*/
/* Hover popup */
.hover-popup {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s;
  z-index: 5;
  margin: 40px;
}

.course-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.course-card:hover .hover-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hover-popup h6 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.hover-popup ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.hover-popup button {
  border: none;
  background: #5624d0;
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 4px;
}
/* Prev/Next buttons */
.nav-btn {
  border: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 6px;
  z-index: 10;
}

.nav-btn:hover {
  background: #1c1d1f;
  color: #fff;
}

/* Buttons */
/* .prev, .next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 18px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 111;
  inset-block-start: 50%;
  box-shadow: 0 2px 4px color-mix(in oklch, oklch(27.54% .1638 265.98deg) 8%, transparent), 0 4px 12px color-mix(in oklch, oklch(27.54% .1638 265.98deg) 8%, transparent);
} */

/* .prev { left: 0; inset-inline-start: -1.6rem;}
.next { right: 0; inset-inline-end: -1.6rem; } */

.price {
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 5px;
}

.badge {
  display: inline-block;
  color: #1c1d1f;
  font-size: 12px;
  padding: 8px 6px;
  border-radius: 3px;
  margin-top: 5px;
}

.badge.purple {
  background: #d1c4f7;
  color: #8b1a1a;
}

/* .see-all {
  display: block;
  text-align: right;
  color: #5624d0;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
} */
/* "see all" */
.see-all {
  /* display: inline-block; */
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5624d0;
  text-align: right;
  text-decoration: none;
}
.see-all:hover {
  text-decoration: underline;
}
.userDropdownDesktop{
  display:none
}
.userDropdown{
  display:block;
}
.bi-person-circle::before {
    content: "\f4d7";
    margin-right: 10px;
    /* color: #000000; */
    color: #ffffff;
}
.dropdown-toggle::after {
    /* display: inline-block; */
    display: none;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
/* Responsive */
@media (max-width: 768px) {
  .course-card { flex: 0 0 80%; }
  .hover-popup { display: none; }
  .prev, .next { display: block; }
  .userDropdownDesktop{
    display:none
  }
  .userDropdown{
    display:block;
  }
  .bannerSize {
    height: 100% !important;
  }
  .desktop{
    display:none;
  }
  .mobile{
    display:block;
  }
}
.desktop{
  display:block;
}
.mobile{
  display:none;
}
/* end */

/* Cart css */
.cart-container {
      border: 1px solid #e5e7eb;
      border-radius: 4px;
      background-color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    .cart-container img {
      width: 160px;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .cart-container p {
      color: #4a4a4a;
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .btn-keep-shopping {
      background-color: #5624d0;
      color: #fff;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 4px;
      transition: background-color 0.3s;
    }

    .btn-keep-shopping:hover {
      background-color: #401b9c;
      color: #fff;
    }

    h5 {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 15px;
    }
/* end cart css */
#myLearning .col a.course-card{
    flex: 0 0 260px;
    border: none !important;
    border-radius: 8px;
    padding: 0px;
    position: relative;
    background: #fff;
    transition: transform 0.2s;
    position: relative;
    overflow: visible;
}
/* benifit section */
.benefit-section {
  background: #9b2828; /* your red background */
  /* border-radius: 16px; */
  background-image: url('bg-pattern.png'); /* if you want pattern */
  background-size: cover;
}

.benefit-box p {
  margin-top: 12px;
  font-weight: 500;
  color: #fff;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
/* end */
/* footer css */
.footer-section {
  /* background: linear-gradient(180deg, #861623, #58031d); */
  background: linear-gradient(96deg, #010000, #58031d);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: left;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 15px;
  margin-bottom: 6px;
  opacity: 0.85;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
}

.footer-list li:hover {
  opacity: 1;
}

.newsletter-box {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.btn-subscribe {
  background: #ff6a2a;
  color: #fff;
  border: none;
  padding: 0 20px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-logo {
  /* height: 55px; */
      height: 70px;
}

.footer-nav a {
  font-size: 14px;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 1;
}

.social-icons a {
  font-size: 18px;
  color: #fff;
  background: rgba(255,255,255,0.18);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff6a2a;
}

.copy-text {
  font-size: 14px;
  opacity: 0.75;
}

/* end  footer css */
/* .bannerSize{
 height: 80vh;
} */

/* contact us form */
/* Form container */
.contact-form-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Inputs */
.custom-input {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: 0.3s;
}

/* Focus state */
.custom-input:focus {
  border-color: #a52a2a;
  box-shadow: 0 0 0 2px rgba(165, 42, 42, 0.15);
}

/* Labels */
.form-label {
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

/* Button */
.custom-btn {
  background: linear-gradient(135deg, #8b1a1a, #a52a2a);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.custom-btn:hover {
  background: linear-gradient(135deg, #6b1212, #8b1a1a);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(165, 42, 42, 0.3);
  color:#fff;
}

/* contact us page */


    /* ===== HERO ===== */
    .contact-hero {
      /* background: radial-gradient(circle at top left,#ffe8d6,#f5e6ff,#e0c3fc); */
      /* background: radial-gradient(circle at top left, #fbe3e3, #f8d7d7, #ffcccc); */
      background: radial-gradient(circle at top left, #ffecec, #f0ecec, #bba0a0);
      padding: 80px 0 40px;
    }
    .contact-hero h1 {
      font-weight: 700;
      letter-spacing: .02em;
    }
    .contact-hero p.lead {
      max-width: 600px;
      color: #4a4a4a;
    }

    .pill-badge {
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:4px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.9);
      font-size:.75rem;
      text-transform:uppercase;
      letter-spacing:.08em;
      color:var(--primary-dark);
      margin-bottom:10px;
    }

    /* ===== CARDS (info) ===== */
    .contact-info-card {
      border-radius:16px;
      border:none;
      padding:18px 18px 16px;
      background:#fff;
      box-shadow:0 12px 30px rgba(15,23,42,.08);
      height:100%;
    }
    .contact-info-icon {
      width:38px;
      height:38px;
      border-radius:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(123,44,191,.08);
      color:var(--primary-dark);
      margin-bottom:10px;
      font-size:1rem;
    }
    .contact-info-card h6 {
      font-weight:600;
      margin-bottom:4px;
    }
    .contact-info-card p {
      margin-bottom:4px;
      font-size:.9rem;
      color:var(--text-muted);
    }
    .contact-info-card a{
      font-size:.9rem;
      text-decoration:none;
      color:var(--primary-dark);
    }

    /* ===== FORM ===== */
    .contact-wrapper {
      margin-top:30px;
      margin-bottom:60px;
    }

    .contact-form {
      background:#fff;
      border-radius:18px;
      padding:28px 24px;
      box-shadow:0 18px 45px rgba(15,23,42,.12);
    }
    .form-floating>label{
      color:#999;
    }
    .form-control, .form-select {
      border-radius:10px;
      border:1px solid #dee2e6;
      padding-top:1.1rem;
      padding-bottom:.9rem;
      font-size:.95rem;
    }
    .form-control:focus, .form-select:focus {
      border-color:var(--primary);
      box-shadow:0 0 0 .15rem rgba(123,44,191,.15);
    }

    .contact-btn {
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      border:none;
      color:#fff;
      font-weight:600;
      border-radius:999px;
      padding:.8rem 1.6rem;
      display:inline-flex;
      align-items:center;
      gap:.4rem;
    }
    .contact-btn:hover{
      background:linear-gradient(135deg,var(--primary-dark),#3c096c);
    }

    /* ===== MAP ===== */
    .map-wrapper {
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 12px 30px rgba(15,23,42,.08);
      min-height:260px;
    }
    .map-wrapper iframe{
      border:0;
      width:100%;
      height:100%;
    }

    /* SMALL UTILITIES */
    .small-note{
      font-size:.8rem;
      color:var(--text-muted);
    }

    @media (max-width: 767.98px){
      .contact-form { padding:22px 18px; }
      .contact-hero { padding-top:60px; }
      .map-wrapper{ margin-top:20px; }
    }

    /* popup css on consultation page  */
    .consult-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* .consult-popup {
  background: #fff;
  width: 100%;
  max-width: 520px;
  padding: 22px;
  border-radius: 12px;
  animation: popupIn .3s ease;
  position: relative;
} */
.consult-popup {
  background: #fff;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;              /* IMPORTANT */
  overflow-y: auto;              /* ENABLE SCROLL */
  padding: 22px;
  border-radius: 12px;
  position: relative;
  animation: popupIn .3s ease;
}
/* Chrome, Edge, Safari */
.consult-popup::-webkit-scrollbar {
  width: 0px;
}

/* Firefox */
.consult-popup {
  scrollbar-width: none;
}

/* IE / Edge Legacy */
.consult-popup {
  -ms-overflow-style: none;
}
body.popup-open {
  overflow: hidden;
}
@keyframes popupIn {
  from { transform: scale(.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  background: none;
  border: none;
}

.offer-box {
  background: #f2efe9;
  padding: 12px;
  border-radius: 10px;
  margin: 12px 0;
}

.amount-box {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.pay-btn {
  background: #3b7cff;
  color: white;
  font-weight: 600;
}
.width205{
  width: 205px !important;
}
/* video testimonials on courseDetails page*/
.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  min-width: 33.333%;
  padding: 15px;
  text-align: center;
}

.testimonial-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  cursor: pointer;
}

.testimonial-card h6 {
  margin-top: 10px;
  font-weight: 600;
}

.testimonial-card small {
  color: #777;
}

/* Tablet */
@media(max-width: 991px){
  .testimonial-card { min-width: 50%; }
}

/* Mobile */
@media(max-width: 575px){
  .testimonial-card { min-width: 100%; }
}
/* end video testimonials */
/* category tabs on courses page */
.custom-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  position: relative;
}

.tab-btn.active {
  /* color: #3b7cff; */
  background: #6c532e;
  color: #ffffff;
}

.tab-btn.active::after {
  content: "";
  height: 3px;
  /* background: #3b7cff; */
  background: #6b1212;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.tab-content-wrapper {
  padding: 10px 0;
}

.tab-content-custom {
  display: none;
  animation: fade .3s ease;
}

.tab-content-custom.active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* end category tabs */
/* gallery */
.gallery-card{
  overflow:hidden;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  transition:.3s;
  cursor:pointer;
}
.gallery-card:hover{transform:scale(1.03)}

.gallery-card img, .gallery-card video{
  width:100%;
  height:230px;
  object-fit:cover;
}

.filter-box select{
  border-radius:30px;
}

.badge-type{
  position:absolute;
  top:10px;
  left:10px;
  background:#000;
  color:#fff;
  padding:5px 10px;
  font-size:12px;
  border-radius:20px;
}
/* end gallery */
/* event page */
.event-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  transition: .3s ease;
}
.event-card:hover { transform: translateY(-6px); }

.event-card img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.event-overlay {
  position:absolute;
  bottom:0;
  padding:25px;
  width:100%;
  color:white;
  background:linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.event-badge, .event-status {
  position:absolute;
  top:15px;
  padding:5px 12px;
  border-radius:20px;
  background:#fff;
  font-size:13px;
  font-weight:600;
}
.event-badge { left:15px; }
.event-status { right:15px; }

.filter-btn.active { background:#000; color:white; }

.lazy { filter: blur(8px); transition: .6s; }
.lazy.loaded { filter: blur(0); }
/* end */