/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-purple: rgba(153, 0, 204, 0.6);
    --primary-purple-hover: rgba(153, 0, 204, 0.8);
    --success-green: #4DC896;
    --success-green-hover: #34B27B;
    --purple-light-bg: #e9e0ff;
    --purple-main: #c266e0;
    --black-main: #000;
    --black-sub:#555;
    --black-sec:#272727;
}
html{
  scrollbar-gutter: stable both-edges;
}
a{
  text-decoration: none;
}
img{
  width: 100%;
  display: block;
}
/* --- Header Layout --- */
.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-main {
    width: 85%;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    flex-shrink: 0;
}

.logo-h {
    display: block;
    width: 250px;
}

.logo-h img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Desktop Navigation --- */
.h-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}


.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--primary-purple-hover);
}
.nav-link.active {
    color: var(--primary-purple-hover);
    font-weight: 600;
}

.chevron-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* --- Mega Menu --- */
.dropdown-group {
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 770px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-group:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-grid {
    width: 65%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.resources-list .menu-grid {
    grid-template-columns: 1fr;
    width: auto;
}
.resources-list {
    width: fit-content;
    min-width: 280px;
    padding: 16px;
}
/* Course Cards inside Mega Menu */
.course-card {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px !important;
    text-decoration: none;
    color: #1f2937;
    font-size: 15px;
    font-weight: 500;
    /* border-radius: 10px; */
    transition: background 0.2s ease;
    border-bottom: 1px dashed #e7e7e7;
}

.course-card:hover {
    background: rgba(255, 255, 255, 0.4);
}

.icon-box {
    width: 40px;
    height: 40px;
    /* background: #EAF8F1; */
    /* border: 1px solid #CFEEDD; */
    color: #34B27B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-image {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0,0,0,0.05);
    margin-left: 20px;
    padding-left: 20px;
}

.menu-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* --- Header Buttons --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: var(--primary-purple);
    color: #ffffff;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.16s, transform 0.14s;
    
}


.btn-primary:hover {
    background: var(--primary-purple-hover);
  transform: translateY(-1px);
}

.btn-success {
    background: var(--success-green);
    color: #ffffff;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.16s, transform 0.14s;
}
.btn-success i{
    margin-left: 8px;
}
.btn-success:hover {
    background: var(--success-green-hover);
    transform: translateY(-1px);
}

/* Mobile Toggles */
.mobile-toggle {
    background: none;
    border: none;
    font-size: 26px;
    color: #4b5563;
    cursor: pointer;
    display: none;
}



/* --- Drawer & Overlay --- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 380px;
    background: #ffffff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--black-sub);
    cursor: pointer;
}

.drawer-nav {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.drawer-link {
    display: block;
    padding: 12px 15px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    outline: none;

}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
}

.accordion-content {
    display: none;
    padding: 10px;
    flex-direction: column;
    gap: 8px;
}

.accordion-content.active {
    display: flex;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.follow-label {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}


/* Facebook */
.social-btn-f.fb {
  background: #1877F2;
}

/* YouTube */
.social-btn-f.yt {
  background: #FF0000;
}

/* WhatsApp */
.social-btn-f.wa {
  background: #25D366;
}

/* Instagram (gradient) */
.social-btn-f.ig {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

/* Hover effect (optional) */
.social-btn-f:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.drawer-login-container {
    margin-top: 20px;
}

.w-full {
    width: 100%;
}

.accordion-icon-wrap {
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: auto;
}

.accordion-icon-wrap i {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

/* Default state (+ visible) */
.icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.icon-minus {
  opacity: 0;
  transform: rotate(90deg);
}

/* Active state */
.accordion-active .icon-plus {
  opacity: 0;
  transform: rotate(-90deg);
}

.accordion-active .icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}


/* --- Footer Layout --- */
.footer {
    width: 100%;
    background: #F3F4F8;
    padding: 60px 0 30px 0;
    border-top: 1px solid #f1f1f1;
}

.footer-main {
    width: 80%;
    margin: 0 auto;
}

/* Grid System */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}


/* Brand Column */
.logo-f {
    display: block;
    width: 232px;
    margin-bottom: 25px;
}

.logo-f img {
    width: 100%;
    height: auto;
}

.footer-description {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-cta-box .cta-text {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Link Columns */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--purple-main);
}

/* Contact Column */
.contact-details {
    margin-bottom: 30px;
}

.contact-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-icon-circle {
    width: 34px;
    height: 34px;
    background: var(--purple-light-bg);
    color: var(--purple-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.contact-row p, 
.contact-row a {
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}

.contact-row a:hover {
    color: var(--purple-main);
}

/* App Badges */
.app-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

.app-badges {
    display: flex;
    gap: 12px;
}

.app-badges img {
    height: 42px;
    width: auto;
}

/* Footer Bottom */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}



.footer-socials {
    display: flex;
    gap: 15px;
}

.social-btn-f,.social-icons .social-btn {
    width: 44px;
    height: 44px;
    background: var(--purple-main);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}
.social-btn-f i{
    font-size: 18px;
}



.copyright-text {
    font-size: 14px;
    color: var(--black-sub);
    font-weight: 500;
}

.purple-brand {
    color: var(--purple-main);
    cursor: pointer;
}

.main-body{
    min-height: 400px;
}




.faq-block {
  padding: 60px 20px;
  background: #f8f9fb;
  font-family: Arial, sans-serif;
}

.faq-block__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
  /* align-items: center; */
  gap: 50px;
}

.faq-block__left img {
  width: 500px;
  max-width: 600px;
  margin-top: 20px;
}

.faq-block__right {
  flex: 1;
}

.faq-block__tag {
  background: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid #031f4214;
  font-size: 12px;
  font-weight: 500;
}

.faq-block__title {
  font-size: 36px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.faq-block__accordion {
  border-top: 1px solid #ddd;
}

.faq-block__item {
  border-bottom: 1px solid #ddd;
}

.faq-block__question {
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111827;
  font-weight: 500;
}

.faq-block__icon {
  width: 14px;
  height: 14px;
  position: relative;
}

.faq-block__icon::before,
.faq-block__icon::after {
  content: '';
  position: absolute;
  background: #333;
  transition: 0.3s ease;
}

.faq-block__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-block__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* ACTIVE STATE */
.faq-block__item.active .faq-block__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-block__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-block__answer ul{
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 20px;
     color: var(--black-sub);
  margin-left: 6px;
}
.faq-block__item.active .faq-block__answer {
  max-height: 200px;
  opacity: 1;
}

.faq-block__answer p {
    font-size: 14px;
    line-height: 20px;
  padding-bottom: 15px;
  color: var(--black-sub);
  margin-left: 6px;
}

/* BUTTON */
.faq-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: var(--primary-purple);
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.faq-block__btn-icon {
  transition: transform 0.3s ease;
}

/* Hover animation */
.faq-block__btn:hover .faq-block__btn-icon {
  transform: translateX(5px);
}

.faq-block__btn:hover {
    background-color: var(--primary-purple-hover);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-block__container {
    flex-direction: column;
    text-align: center;
  }

  .faq-block__question {
    text-align: left;
  }
}





.stats-section {
  position: relative;
  background: url('https://www.gobrainwiz.in/assets/img/trackrecord-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 20px;
  color: #fff;
}

.stats-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #432371, #faae7b);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.05);
    z-index: 1;
    opacity: 0.8;
}

/* CONTENT ABOVE OVERLAY */
.stats-section__container {
  position: relative;
  z-index: 2;
}
.stats-section__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 42px;
    flex-wrap: wrap;
}

.stats-section__item {
  flex: 1;
  min-width: 220px;
}

/* TOP ROW */
.stats-section__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* Arrow */
.stats-section__arrow {
  font-size: 36px;
  opacity: 0.8;
}

/* Number */
.stats-section__number {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 14px;
    margin-bottom: 12px;
}

/* + / % */
.stats-section__suffix {
  font-size: 42px;
  margin-top: -10px;
}

/* Label */
.stats-section__label {
  font-size: 15px;
  opacity: 0.9;
}



/* Container & Global Background */
.course-wrapper .sticky-boundary  {
    position: relative;
    
}
.course-wrapper .sticky-boundary::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 840px;
    background: linear-gradient(
    rgba(153, 0, 204, 0.45),
    rgba(102, 0, 153, 0.55)
    ), url(https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&q=80);
    
    background-size:  cover;
    
    background-position:  center;
    
    background-attachment:  fixed;
}

.course-wrapper .header-container  {
    
    max-width:  1180px;
    
    margin:  0 auto;
    
    padding:  0 20px;
    
}

/* Header Text Styles */
.course-wrapper .course-page  {
     padding:  60px 0;
     color:  white;
     position: relative;
     z-index: 9;
 }

.course-wrapper .breadcrumb {
    font-size: 15px;
    margin-bottom: 10px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.course-wrapper .breadcrumb a  {
     color:  white;
     text-decoration:  none;
 }

.course-wrapper .main-title  {
     font-size:  40px;
     font-weight:  700;
     margin-bottom:  25px;
 }


/* Meta Info Row */
.course-wrapper .meta-info  {
     display:  flex;
     flex-wrap:  wrap;
     gap:  40px;
     margin-bottom:  45px;
 }

.course-wrapper .meta-item.t-profile  {
     display:  flex;
     align-items:  center;
 }

.course-wrapper .teacher-img  {
     width:  45px;
     height:  45px;
     border-radius:  50%;
     margin-right:  12px;
 }

.course-wrapper .meta-item small  {
     display:  block;
     font-size:  13px;
     opacity:  0.8;
 }

.course-wrapper .meta-item p  {
     margin:  0;
     font-size:  15px;
     font-weight:  500;
 }

.course-wrapper .stars  {
     color:  #ffb400;
     font-size:  14px;
     margin-bottom:  3px;
     display:  flex;
     justify-content: center;
     gap:  2px;
 }


/* Sticky Logic Grid */
.course-wrapper .content-grid  {
    display:  flex;
    gap:  40px;
    align-items:  flex-start;
}

/* Video Card Sticky Style — keep on the right like the purchase card */
.course-wrapper .sidebar-column  {
     flex:  0 0 380px;
     max-width: 380px;
     position: sticky;
     top: 100px;
     order: 2;
 }

.course-wrapper .info-column  {
     flex:  1;
     min-width: 0;
     order: 1;
 }

.course-wrapper .video-card  {
    position:  sticky;
    top:  30px;
    background:  white;
    padding: 12px;
    border-radius:  14px;
    color:  #333;
    box-shadow:  0 15px 35px rgba(0, 0, 0, 0.25);
    z-index:  100;
    width: 100%;
}

/* Video Preview iframe */
.course-wrapper .video-preview  {
    position:  relative;
    padding-bottom:  56.25%;
    height:  0;
    overflow:  hidden;
    border-radius:  8px;
    margin-bottom:  20px;
    background: #1c1d1f;
}

.course-wrapper .video-preview iframe,
.course-wrapper .video-preview img,
.course-wrapper .video-preview video  {
    position:  absolute;
    top:  0;
     left:  0;
     width:  100%;
     height:  100%;
     object-fit: cover;
     border: 0;
}

.course-wrapper .video-preview-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
}

.course-wrapper .video-preview-play .circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: #5624d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.course-wrapper .video-preview-play span.label {
    font-size: 14px;
    font-weight: 600;
}

/* Pricing and Buttons */
.course-wrapper .pricing  {
     display:  flex;
     align-items:  center;
     gap:  12px;
     margin-bottom:  20px;
 }

.course-wrapper .current-price  {
     font-size:  26px;
     font-weight:  700;
 }

.course-wrapper .old-price  {
     text-decoration:  line-through;
     color:  #999;
 }

.course-wrapper .discount  {
     background:  #ffe6e6;
     color:  #ff0000;
     padding:  3px 8px;
     border-radius:  4px;
     font-size:  12px;
     font-weight:  bold;
 }


.course-wrapper .btn-primary  {
     color:  white;
     border:  none;
     padding:  14px;
     width:  100%;
     border-radius:  8px;
     font-weight:  600;
     cursor:  pointer;
     margin-bottom:  12px;
 }

.course-wrapper .btn-outline {
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

.course-wrapper .btn-outline:hover {
    background-color: var(--purple-main);
    color: #fff;
    border-color: var(--purple-main);
}

/* Social Icons */
.course-wrapper .social-icons  {
     display:  flex;
     justify-content:  center;
     gap:  15px;
     margin-top:  20px;
 }

.course-wrapper .social-link  {
     width:  38px;
     height:  38px;
     border:  1px solid #eee;
     border-radius:  50%;
     display:  flex;
     align-items:  center;
     justify-content:  center;
     color:  #666;
     transition:  0.3s;
     text-decoration:  none;
 }

.course-wrapper .social-link:hover  {
     background:  var(--purple-main);
     color:  white;
     border-color: var(--purple-main);
 }


/* Right Column: Table & About Boxes */
.course-wrapper .info-column  {
     flex:  1;
     min-width: 0;
     order: 1;
 }

.course-wrapper .detail-row  {
    
    display:  flex;
     justify-content:  space-between;
    
    padding:  18px 0;
     border-bottom:  1px solid rgba(255,  255,  255,  0.2);
    
    font-size:  17px;
     font-weight:  500;
     color:  white;
    
}
.course-wrapper .check-icon  {
     color:  white;
 }


/* White About Box */
.course-wrapper .text-content-box {
    padding: 40px 36px;
    border-radius: 15px;
    margin-top: 28px;
    background: #fff;
    color: #333;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.course-wrapper .text-content-box h2 {
    font-size: 20px;
    color: var(--black-main);
    margin: 20px 0 8px;
    font-weight: 600;
}

.course-wrapper .text-content-box h2:first-child  {
     margin-top:  0;
 }

.course-wrapper .text-content-box p  {
     line-height:  1.7;
     color:  var(--black-sub);
     font-size:  16px;
     margin-bottom:  15px;
 }


/* Checklist */
.course-wrapper .check-list  {
     list-style:  none;
     padding:  0;
     display:  grid;
     grid-template-columns:  1fr 1fr;
     gap:  12px;
 }

.course-wrapper .check-list li  {
     display:  flex;
     align-items:  flex-start;
     gap:  10px;
     font-size:  15px;
     color: var(--black-sub);
 }

.course-wrapper .check-list li::before  {
     content:  "✓";
     color:  var(--success-green);
     font-weight:  bold;
 }


/* Material Icons */
.course-wrapper .material-list  {
     list-style:  none;
     padding:  0;
 }

.course-wrapper .material-list li  {
     display:  flex;
     align-items:  center;
     gap:  12px;
     margin-bottom:  12px;
     font-size:  15px;
     color: var(--black-sub);
 }

.course-wrapper .material-list i  {
     color:  var(--success-green);
     width:  20px;
 }

.course-wrapper .content-block {
    margin-bottom: 36px;
}
/* ════════════════════════════════════════════════════
   ALL SELECTORS SCOPED UNDER .related-courses-cards
   to prevent CSS conflicts / overrides
════════════════════════════════════════════════════ */

/* ── Parent Grid Container ── */
.related-courses-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    font-family: 'Nunito', sans-serif;
    margin: 40px 0 90px 0;
}

/* ── Card ── */
.related-courses-cards .course-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.related-courses-cards .course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

/* ── Card Header ── */
.related-courses-cards .course-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  width: 100%;
}

.related-courses-cards .course-card .card-header .instructor {
  display: flex;
  align-items: center;
  gap: 9px;
}

.related-courses-cards .course-card .card-header .instructor img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.related-courses-cards .course-card .card-header .instructor .instructor-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.related-courses-cards .course-card .card-header .header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-courses-cards .course-card .card-header .header-actions .discount-badge {
  background: #ff4d4d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.related-courses-cards .course-card .card-header .header-actions .bookmark-btn {
  background: #f0f2fa;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7aae;
  transition: background 0.2s, color 0.2s;
  outline: none;
}

.related-courses-cards .course-card .card-header .header-actions .bookmark-btn:hover {
  background: #e0e4f5;
  color: #3a5bd9;
}

/* ── Thumbnail ── */
.related-courses-cards .course-card .card-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.related-courses-cards .course-card .card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}


/* ── Card Body ── */
.related-courses-cards .course-card .card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

/* ── Meta Row ── */
.related-courses-cards .course-card .card-body .meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.related-courses-cards .course-card .card-body .meta-row .category-tag {
  background: #eef2ff;
  color: #4361ee;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.related-courses-cards .course-card .card-body .meta-row .booked-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* ── Circular Progress Ring ── */
.related-courses-cards .course-card .card-body .meta-row .booked-info .progress-ring {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.related-courses-cards .course-card .card-body .meta-row .booked-info .progress-ring circle {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.related-courses-cards .course-card .card-body .meta-row .booked-info .progress-ring .track {
  stroke: #e0e5ff;
}

.related-courses-cards .course-card .card-body .meta-row .booked-info .progress-ring .fill {
  stroke: #4361ee;
  transition: stroke-dashoffset 0.5s;
  transform-origin: center;
  transform: rotate(-90deg);
}

/* ── Stats Row ── */
.related-courses-cards .course-card .card-body .stats-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}

.related-courses-cards .course-card .card-body .stats-row .stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #777;
  font-weight: 600;
}

.related-courses-cards .course-card .card-body .stats-row .stat i {
  font-size: 14px;
  color: #aab0cc;
}

/* ── Course Title ── */
.related-courses-cards .course-card .card-body .course-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-sec);
    line-height: 1.4;
    margin-bottom: auto;
}

/* ── Price Row ── */
.related-courses-cards .course-card .card-body .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0f1f8;
}

.related-courses-cards .course-card .card-body .price-row .rating-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.related-courses-cards .course-card .card-body .price-row .rating-block .rating-count {
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
}

.related-courses-cards .course-card .card-body .price-row .rating-block .stars {
  display: flex;
  gap: 2px;
}

.related-courses-cards .course-card .card-body .price-row .rating-block .stars i {
  font-size: 12px;
  color: #ddd;
}

.related-courses-cards .course-card .card-body .price-row .rating-block .stars i.active {
  color: #f4b400;
}

.related-courses-cards .course-card .card-body .price-row .price-block {
  text-align: right;
}

.related-courses-cards .course-card .card-body .price-row .price-block .original-price {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
  display: block;
  font-weight: 600;
}

.related-courses-cards .course-card .card-body .price-row .price-block .current-price {
  font-size: 17px;
  font-weight: 800;
  color: #4361ee;
}

.related-courses-cards .course-card .card-body .price-row .price-block .price-free {
  font-size: 17px;
  font-weight: 800;
  color: #4361ee;
}




 /* --- Global Section Styles --- */
.course-section-container  {
     margin-top:  32px;
 }

.course-related-section .section-title {
    font-size: 36px;
        line-height: 40px;
    color: var(--black-main);
    margin: 40px 0 10px;
    font-weight: 700;
}
.course-related-section  .section-subtitle {
    line-height: 1.7;
    color: var(--black-sub);
    font-size: 16px;
    margin-bottom: 15px;
}
/* --- Accordion (Curriculum) Styles --- */
.course-acc-item  {
    
    border:  1px solid #eef0f4;
    
    border-radius:  10px;
    
    margin-bottom:  15px;
    
    overflow:  hidden;
    
    background:  #fff;
    
}

.course-acc-header  {
    
    padding: 16px 20px;
    
    display:  flex;
    
    justify-content:  space-between;
    
    align-items:  center;
    
    cursor:  pointer;
    
    background:  #fff;
    
    transition:  background 0.3s ease;
    
}
.curriculum-wrapper,.instructor-wrapper {
    margin-bottom: 36px;
}
.course-acc-item.active .course-acc-header  {
     background:  #f4f7fe;
 }

.course-acc-header .header-text  {
     font-size:  15px;
     font-weight:  600;
     color:  #334155;
 }

.course-acc-item.active .header-text  {
     color:  var(--purple-main);
 }

.acc-icon  {
     color:  var(--purple-main);
     font-size:  14px;
     transition:  transform 0.3s;
 }


/* Accordion Logic */
.course-acc-body  {
    
    max-height:  0;
    
    overflow:  hidden;
    
    transition:  max-height 0.4s cubic-bezier(0.4,  0,  0.2,  1);
    
}
.course-acc-item.active .course-acc-body  {
     max-height:  1000px;
 }


.lesson-row  {
    
    display:  flex;
    
    justify-content:  space-between;
    
    padding:  15px 25px;
    
    border-top:  1px solid #f1f5f9;
    
}
.lesson-left  {
     display:  flex;
     align-items:  center;
     gap:  12px;
     font-size:  15px;
     color:  #1e293b;
 }

.lesson-icon  {
     color:  #94a3b8;
 }

.lock-icon  {
     color:  #cbd5e1;
 }


/* --- Instructor Styles --- */
.instructor-card  {
     display:  flex;
     gap:  30px;
     padding:  10px 0;
 }

.instr-img  {
    flex: 0 0 100px;
     max-width:  100px;
     height:  100px;
     border-radius:  50%;
     object-fit:  cover;
 }

.instr-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--black-main);
}

.instr-role  {
     color:  #666;
     font-size:  15px;
     margin-bottom:  6px;
 }

.instr-meta  {
     display:  flex;
     gap:  20px;
     color:  var(--black-sub);
     font-size:  14px;
     margin-bottom:  8px;
 }

.instr-meta i  {
     color:  #ffb400;
     margin-right:  5px;
 }

.instr-bio  {
     line-height:  1.7;
     color:  var(--black-sub);
     font-size:  15px;
 }

.instr-social  {
     display:  flex;
     gap:  10px;
     margin-top:  20px;
 }

.instr-social a  {
     
    width:  38px;
     height:  38px;
     border:  1px solid #eee;
     border-radius:  50%;
    
    display:  flex;
     align-items:  center;
     justify-content:  center;
     color:  #666;
     transition:  0.3s;
     text-decoration: none;
    
}
.instr-social a:hover  {
     background:  var(--purple-main);
     color: #fff;
     border-color:  var(--purple-main);
 }


/* --- Rating & Review Styles --- */
.rating-summary-box {
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 12px;
    max-width: 360px;
    text-align: center;
}
.big-rating  {
     font-size:  52px;
     font-weight:  600;
     color:  var(--black-main);
     line-height:  1;
 }

.rating-summary-box .stars  {
     color:  #ffb400;
     margin:  15px 0 10px;
     font-size:  16px;
 }

.rating-summary-box p  {
     color: var(--black-sub);
     font-size:  14px !important;
 }


.review-card  {
     display:  flex;
     gap:  20px;
     margin-top:  10px;
 }

.user-avatar  {
     
    width:  48px;
     height:  48px;
     background:  var(--purple-main);
     color:  white;
     
    border-radius:  50%;
     display:  flex;
     align-items:  center;
     
    justify-content:  center;
     font-weight:  bold;
     font-size:  18px;
    
}
.review-content h4  {
        font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--black-main);
 }

.review-meta  {
     font-size:  13px;
     color:  #888;
     margin-bottom:  12px;
 }

.review-text  {
     color:  var(--black-sub);
     font-size:  15px;
 }


/* ============================================================
   BLOG BANNER SECTION  (all rules scoped under .blog-banner-section)
   ============================================================ */
.blog-banner-section {
  width: 100%;
  padding:32px 24px 36px;
      background: linear-gradient(110deg, #f7e9e4 0%, #c266e073 25%, #e6d4ec 50%, #4dc89647 75%, #cfe6f1 100%);
  box-sizing: border-box;
}
.blog-banner-section *,
.blog-banner-section *::before,
.blog-banner-section *::after { box-sizing: border-box; }

.blog-banner-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
}
.blog-banner-section__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--black-sec);
}
.blog-banner-section__home {
  display: inline-flex;
  align-items: center;
  color: var(--black-sec);
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s;
}
.blog-banner-section__home:hover { opacity: 1; }
.blog-banner-section__divider{ color: var(--black-sec); opacity: .4; }
.breadcrumb .blog-banner-section__divider{ color:white; opacity: .9; }
.blog-banner-section__current { color: var(--black-sec); }

.blog-banner-section__title {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
  color: var(--black-sec);
  letter-spacing: -0.5px;
}
.blog-banner-section__subtitle {
  margin: 0;
  font-size: 16px;
  color: #4a5a6e;
}


/* ============================================================
   BLOG GRID SECTION  (all rules scoped under .blog-grid-section)
   ============================================================ */
.blog-grid-section {
  width: 100%;
  padding: 70px 24px;
  background: #ffffff;
}

.blog-grid-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- Posts grid (left) ---- */
.blog-grid-section__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-grid-section__card { display: flex; flex-direction: column; cursor: pointer;padding: 16px;box-shadow: 0 6px 12px rgb(30 10 58 / 0.05); }
.blog-grid-section__thumb {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 17 / 10;
}
.blog-grid-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-grid-section__thumb:hover img { transform: scale(1.03); }
.blog-grid-section__card:hover {
box-shadow: 0 6px 12px rgb(30 10 58 / 0.09);
}
.blog-grid-section__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--black-sub);
}
.blog-grid-section__meta-line {
  width: 28px; height: 1px; background: var(--black-sub);
}

/* tag colors */
.blog-grid-section__tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1b2942;
}
.blog-grid-section__tag--quran      { background: #fff3b0; }
.blog-grid-section__tag--business   { background: #cde7ff; }
.blog-grid-section__tag--education  { background: #d8f5cf; }
.blog-grid-section__tag--software   { background: #ffd9e3; }
.blog-grid-section__tag--resturent  { background: #ffe2b5; }

.blog-grid-section__title {
    margin: 12px 0 12px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--black-main);
}
.blog-grid-section__title a {
  color: inherit; text-decoration: none;
}
.blog-grid-section__title a:hover { color: #3056d3; }

.blog-grid-section__author {
  display: flex; align-items: center; gap: 12px;
}
.blog-grid-section__avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.blog-grid-section__author-name {
  font-size: 15px; font-weight: 500; color: var(--black-sec);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.blog-pagination button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-pagination button:hover,
.blog-pagination button.active {
    background: var(--purple-main);
    color: #fff;
    border-color: var(--purple-main);
}



.blog-details {
    max-width: 1200px;
    margin: 40px auto;
    padding: 16px;
}

.blog-details__title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.blog-details .blog-grid-section__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-details__image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
}

.blog-details__image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}
.blog-details__content {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

.blog-details__content p {
    margin-bottom: 18px;
}

.blog-details__content h2 {
    margin: 20px 0;
    font-size: 24px;
    color: #222;
}

.blog-details__content h3 {
    margin: 16px 0;
    font-size: 20px;
    color: #222;
}

.blog-details__content img {
    width: 100%;
    border-radius: 12px;
    margin: 35px 0;
}

.blog-details__content ul,
.blog-details__content ol {
    margin: 20px 0 30px 25px;
}

.blog-details__content li {
    margin-bottom: 12px;
    font-size: 14px;
}

.blog-details__content blockquote {
    margin: 35px 0;
    padding: 25px 30px;
    border-left: 5px solid var(--purple-main);
    background: #f8f8f8;
    font-size: 20px;
    font-style: italic;
    color: #333;
}

.blog-details__content a {
    color: var(--purple-main);
    text-decoration: underline;
}

/* ===========================
   Related Blogs
=========================== */

.related-blogs {
    margin: 50px auto;
    max-width: 1200px;
}

.related-blogs h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 991px) {

    .blog-details__title {
        font-size: 32px;
    }

    .blog-details__content {
        font-size: 14px;
    }

    .related-blogs {
        margin-top: 60px;
    }
}

@media (max-width: 767px) {

    .blog-details__title {
        font-size: 28px;
    }

    .blog-details__content {
        font-size: 14px;
        line-height: 1.8;
    }

    .blog-details__content h2 {
        font-size: 20px;
    }

    .blog-details__content h3 {
        font-size: 18px;
    }

    .related-blogs h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .blog-details .blog-grid-section__meta {
        gap: 8px;
    }
}












.q-container {
    width: 1320px;
    max-width: 1320px;
    margin: 0 auto;
}

.d-question-section {
    background-color: #fff0;
    padding: 40px 0;
}
.question-main {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}
.question-lft {
    flex: 0 0 66%;
    max-width: 66%;
}
.question-rht {
    flex: 0 0 30%;
    max-width: 30%;
    position: relative;
}
.info-card,
.j-cmnty {
    width: 100%;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 6px 12px rgb(30 10 58 / 0.07);
    border: 1px solid rgb(229 231 235 / 0.5);
    transition: all 0.3s ease;
    margin-bottom: 12px;
}
.j-cmnty {
    position: sticky;
    top: 16px;
    text-align: center;
}
.card-title,
.j-cmnty h2 {
    font-weight: 600;
    font-size: 20px;
    color: #111827;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #ccc;
}
.j-cmnty img {
    width: 320px;
    margin: 0 auto;
}
.j-cmnty h2 {
    width: 100%;
    margin: 12px auto;
    text-align: center;
    border-bottom: 0;
    font-size: 28px;
}
.j-cmnty a {
    background-color: #0dc143;
    box-shadow: 0 3px 12px rgb(81 151 69 / 71%);
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: "Poppins", sans-serif;
    margin: 0 auto 8px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: auto;
    font-size: 16px;
    font-weight: 500;
}
.j-cmnty a i {
    font-size: 22px;
}
.j-cmnty a:hover {
    background-color: #017925;
}
.ntfn-on {
    display: block;
    font-size: 14px;
    color: #374151;
}
.question {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.question:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.pq-list {
    min-height: 350px;
}
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-thumb {
    background: #acacac;
    border-radius: 20px;
}
::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 20px;
}
.question p {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.4;
}
.previous-q-c {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 0;
}
.question span {
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}
.question i {
    color: #9ca3af;
    font-size: 14px;
}
.d-badge {
    background-color: #fdab22;
    border: 1px solid #fffbeb;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 20px;
    border-radius: 9999px;
    color: #000;
    font-size: 12px;
}
.d-question-hd {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 12px;
    box-shadow: 0 6px 12px rgb(30 10 58 / 0.07);
    border: 1px solid rgb(229 231 235 / 0.5);
    margin-bottom: 30px;
}
.q-day-hd {
    margin-top: 8px;
}
.q-main {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0.5rem;
}
.q-icon-img {
    flex: 0 0 60px;
    max-width: 60px;
    height: 60px;
}
.q-main h3 {
    font-size: 24px;
    font-weight: 700;
    color: #171717;
    letter-spacing: -0.015em;
    line-height: 34px;
}
.q-tag {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #9ca3af;
    display: block;
}
.p-date,
.share-q {
    margin-right: 4px;
    font-size: 14px;
    background-color: #fffbeb;
    border: 1px solid #fdab2270;
    font-weight: 600;
    border-radius: 16px;
    color: #404040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 2px 14px;
    height: 32px;
}
.share-q:hover {
    border-color: #000;
}
.poll {
    width: 100%;
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 16px;
    box-shadow: 0 6px 12px rgb(30 10 58 / 0.07);
    border: 1px solid rgb(229 231 235 / 0.5);
    margin: 24px 0;
}
.poll h2 {
    font-size: 26px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #ccc;
}
.option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 16px;
    border: 1px solid #e5e4e4;
}
.option:hover {
    background: #fff;
    border: 1px solid #f84e3e;
}
.option input[type="radio"] {
    display: none;
    font-family: "Poppins", sans-serif;
}
.option span {
    display: inline-block;
    color: #333;
    font-size: 1rem;
}
.option:has(input[type="radio"]:checked) {
    border-color: #f84e3e;
}
.option .checkmark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.option .checkmark i {
    font-size: 12px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.option p,
.option .option-html {
    margin: 0;
    font-weight: 500;
    color: #11153a;
    transition: all 0.4s ease;
    flex: 1;
}
.option .option-html p {
    margin: 0;
}
.option input:checked + .checkmark {
    background: #f84e3e;
    border-color: #f84e3e;
}
.option input:checked + .checkmark i {
    opacity: 1;
    margin-top: 2px;
}
.option input:checked ~ p,
.option input:checked ~ .option-html {
    padding: 0.8rem 1rem;
    margin: -0.8rem -1rem;
    margin-left: 0;
}
.explanation {
    font-family: "Poppins", sans-serif;
    width: 100%;
    height: 140px;
    margin-top: 10px;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.2s ease;
}
.explanation:focus {
    outline: none;
    border-color: #fa4729;
}
.explanation:disabled {
    background-color: #f3f3f3;
    cursor: not-allowed;
    color: #777;
}
.submit-btn,
.explain-btn {
    background-color: #fa4729;
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 12px 36px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s ease;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    transition: all 0.5s ease;
}
.submit-btn i {
    margin-left: 8px;
    font-size: 14px;
    transition: all 0.4s ease;
}
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.submit-btn:hover {
    background-color: #d32203;
}
.submit-btn:hover i {
    transform: translateX(6px);
}
.q-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 0.75rem;
}
.explain-btn {
    background: #f3f3f3;
    color: #11153a;
    border: 1px solid #ddd;
    transition: all 0.4s ease;
}
.explain-btn:hover {
    background-color: #f84e3e;
    color: #fff;
}
.explain-btn:hover i{
    color: #fff;
    transform: translateY(2px);
}

.explain-btn i {
    margin-left: 6px;
    color: #f84e3e;
    transition: all 0.4s ease;
}
.explanation-box {
    margin-top: 12px;
    animation: fadeIn 0.5s ease;
    padding-top: 14px;
}
.explanation-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}
.text-explanation p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-top: 8px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.comments-list {
    margin: 24px 0;
    padding-top: 24px;
    border-top: 1px solid #ccc;
}
.comments-list h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}
.comment-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 1rem auto;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.04);
    transition: box-shadow 0.2s ease;
}
.comment-card:hover {
    box-shadow: 0 6px 14px rgb(0 0 0 / 0.06);
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.username {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}
.time {
    font-size: 14px;
    color: #6b7280;
    margin-top: 2px;
}
.comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin-top: 8px;
}
.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 12px 0 0;
}
.comment-actions button {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #111827;
    transition: all 0.2s ease;
}
.comment-actions button:hover {
    background: #111827;
    color: #fff;
}
.comment-actions i {
    margin-right: 6px;
}
.comment-actions i.fa-thumbs-up {
    color: #009100;
}
.comment-actions i.fa-thumbs-down {
    color: #f71616;
}



.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.pagination-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 8px 14px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    border-radius: 2px;
}

.pagination-btn:hover {
    background-color: #f3f3f3;
}

.pagination-btn.active {
    background-color: #fa4729;
    color: #fff;
    border-color: #fa4729;
}

.pagination-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}





/* Hero Banner Wrapper */
.cc-hero-banner {
  width: 100%;
  min-height: 500px;
  padding: 60px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(153, 0, 204, 0.7), rgba(102, 0, 153, 0.9));
  color: #ffffff;
  overflow: hidden;
}

/* Container to center and align inner contents */
.cc-hero-container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Side Typography & Elements */
.cc-hero-content {
  flex: 0 0 60%;
  max-width: 60%;
}


.cc-hero-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cc-hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.9;
}


/* Right Side Image Layout */
.cc-hero-image-wrap {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cc-hero-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}





/* Features Section Wrapper */
.cc-features-section {
  width: 100%;
  background-color: #111111; 
  padding: 80px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Features Flex Container */
.cc-features-container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Individual Feature Item Blocks */
.cc-feature-item {
  flex: 1;
  padding: 0 45px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Right-border dividers for first two columns */
.cc-feature-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

/* Icon Wrap Styles */
.cc-feature-icon-wrap {
  margin-bottom: 30px;
  height: 60px;
  display: flex;
  align-items: center;
}

.cc-feature-icon {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.cc-feature-font-icon {
  font-size: 56px; 
  color: #4DC896;  
}
/* Headings */
.cc-feature-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

/* Description Text Blocks */
.cc-feature-text {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Base Layout Setup */
.cc-why-section {
  width: 100%;
  background-color: #e8f5e9c4; /* Soft light green tint from original image background */
  padding: 80px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.cc-why-container {
  max-width: 1200px;
  width: 100%;
}

/* Headings */
.cc-why-main-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
}

/* Three Columns Grid Container */
.cc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Card Styling & Hover Effects */
.cc-why-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

/* Nice Floating Hover Animation */
.cc-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Icon Wrap Blocks */
.cc-card-icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #fbe9e7; /* Soft underlying coral tint */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cc-card-icon-wrap i {
  font-size: 1.5rem;
  color: #ff6f43; /* Cohesive variant of your brand highlighting color */
}

/* Body Content Inside Cards */
.cc-card-body {
  width: 100%;
}

/* Highlight badge styling mimicking the layout layout */
.cc-card-highlight {
  display: inline-block;
  background-color: #ffabe2; /* Matching the original layout badge color highlight */
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.cc-card-text {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Bottom Floating Note Block */
.cc-why-footer-note {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  border-left: 5px solid #ff6f43;
}



/* Layout Wrapper Base */
.home-hero-banner {
  width: 100%;
  background-color: #ffffff00;
  padding: 100px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.home-hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Content Styles */
.home-hero-content {
  flex: 0 0 55%;
  max-width: 55%;
}

/* Top Trust Pill */
.home-hero-trust-badge {
    display: inline-flex;
    align-items: center;
    background-color: #f3fffa;
    border: 1px solid #56c7969e;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.home-hero-avatar-group {
  display: flex;
  margin-right: 10px;
}

.home-hero-avatar-group img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #eef4ff;
  margin-left: -6px;
}

.home-hero-avatar-group img:first-child {
  margin-left: 0;
}

.home-hero-trust-text {
  font-size: 0.85rem;
  color: #34B27B;
  font-weight: 600;
}

/* Typography elements */
.home-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.15;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.home-hero-text-blue {
  color: #c266e0;
}

.home-hero-description {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Actions Group Layout */
.home-hero-action-group {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.home-hero-btn-primary {
  display: inline-block;
  background-color: #1e293b;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 45px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(30, 41, 59, 0.15);
  transition: all 0.25s ease;
}

.home-hero-btn-primary:hover {
  background-color: #0f172a;
  transform: translateY(-2px);
}

.home-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e293b;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.home-hero-btn-secondary:hover {
  color: #c266e0;
}

/* Ratings */
.home-hero-rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hero-stars i {
  color: #fbbf24;
  font-size: 0.95rem;
}

.home-hero-rating-link {
  font-size: 0.9rem;
  color: #c266e0;
  text-decoration: underline;
  font-weight: 500;
}

/* Right Side Image Slider Layout */
.home-hero-slider-wrap {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero-slider-window {
  position: relative;
  width: 100%;
  height: 440px;
}

/* Slide Transition Animations */
.home-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
  z-index: 1;
}

.home-hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Colored Container Box */
.home-hero-image-bg-box {
  width: 85%;
  height: 95%;
  background-color: #dbeafe; /* Smooth blue background tint */
  border-radius: 24px;
  position: relative;
  margin-left: auto;
      transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
}

.hero-dots {
    position: absolute;
    top: 12%;
    left: 42px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero-dot-large{
    width: 36px;
    height: 36px;
    background: var(--purple-main);
    border-radius: 50%;
    opacity: 0.3;
}

.hero-dot-small{
    width: 14px;
    height: 14px;
    background: var(--purple-main);
    border-radius: 50%;
    margin-left: 20px;
    opacity: 0.2;
}

/* .home-hero-slide-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 105%;
  width: auto;
  object-fit: contain;
} */

/* Floating Overlay Badges */
.home-hero-badge-role {
  position: absolute;
  bottom: 15px;
  left: -35px;
  background-color: #ffffff;
  color: #1e293b;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: 1px solid #e2e8f0;
}

.home-hero-badge-company {
  position: absolute;
  bottom: 60px;
  right: -20px;
  background-color: var(--success-green-hover);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(2, 86, 204, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero-company-lbl {
  font-size: 0.75rem;
  opacity: 0.8;
}

.home-hero-badge-company strong {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Dots Controls Layout */
.home-hero-slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.home-hero-dot {
  width: 8px;
  height: 8px;
  background-color: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-hero-dot.active {
  background-color: #c266e0;
  width: 24px;
  border-radius: 4px;
}

.home-hero-img{
    width: 100%;
    height: 100%;
    overflow: hidden;
        border-radius: 24px
}

.home-hero-slide-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Section Base Container */
.partner-colleges-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 20px;
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
}

.partner-colleges-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Typography elements */
.partner-colleges-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.partner-colleges-subtitle {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 760px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Marquee Viewport Mask */
.partner-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Linear gradients on edges to give a smooth visual fade out effect */
.partner-marquee-wrapper::before,
.partner-marquee-wrapper::after {
  content: "";
  height: 100%;
  width: 150px;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.partner-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partner-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Flex Track executing the loop */
.partner-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 80px; /* Space between logo containers */
  animation: infiniteMarquee 25s linear infinite;
}

/* Pause scroll when parent box is hovered */
.partner-marquee-wrapper:hover .partner-marquee-track {
  animation-play-state: paused;
}

/* Individual Logo Item Frame */
.partner-logo-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 64px;
  width: auto;
  max-width: 320px;
  flex-shrink: 0;
}

.partner-logo-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(20%);
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo-item img:hover {
  filter: grayscale(0%);
}

.partner-logo-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.25;
  min-width: 0;
}

.partner-logo-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
  text-align: left;
  white-space: nowrap;
}

.partner-logo-since {
  font-size: 0.72rem;
  color: #718096;
  text-align: left;
}

/* Smooth Scrolling Keyframe Configuration */
@keyframes infiniteMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translates by exactly half the track width (the duplicated nodes boundary) */
    transform: translateX(-50%);
  }
}



/* === OUTER WRAPPER === */
.si-main{
    padding: 80px 0;
  background: linear-gradient(to bottom, rgba(102, 0, 153, 0.15) , rgba(153, 0, 204, 0.012));

}
.si-wrapper {
  width: 100%;
  max-width: 1200px;
  margin:0 auto;
  border-radius: 16px;
  padding: 28px 28px 24px;
  color: #fff;
}
 
/* === TITLE === */
.si-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom:52px;
    opacity: 0.9;
    color: var(--black-main);
}
.udrlne{
  color: #fb3f05;
  position: relative;
  display: inline-block;
}

.udrlne::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px; /* adjust underline position */
  width: 100%;
  height: 13px; /* adjust based on image height */
  background-image: url('../images/underline.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.si-main-row {
    display: grid;
    grid-template-columns: 525px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 40px;
}
/* === META PANEL === */
.si-meta {
  padding-top: 4px;
}
 
.si-meta-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--black-main);
}
.si-meta-desc {
  font-size: 16px;
  color: var(--black-sec);
  line-height: 1.6;
}
 
/* === MAIN VIDEO === */
.si-player-box {
  border-radius: 10px;
  overflow: hidden;
  background: #0a0015;
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
 
.si-player-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
 
/* === SLIDER AREA === */
.si-slider-area {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
 
/* Arrow buttons */
.si-arrow-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-main);
  background: var(--purple-light-bg);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  padding: 0;
  outline: none;
}
 
.si-arrow-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.95);
  border-color:var(--success-green-hover);
  transform: scale(1.03);
}
 
.si-arrow-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
}
 
.si-arrow-btn svg {
  display: block;
  flex-shrink: 0;
}
.si-arrow-btn svg path{
  stroke: var(--black-sec);
}
 
/* Slider viewport */
.si-slider-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
 
.si-slider-track {
  display: flex;
  gap: 10px;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}
 
/* === THUMB CARD === */
.si-card {
  flex: 0 0 calc((100% - 30px) / 4);
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #111;
  outline: 2.5px solid transparent;
  transition: outline-color 0.15s, transform 0.18s;
}
 
.si-card:hover {
  transform: translateY(-2px);
}
 
.si-card.active {
  outline-color: #fff;
}
 
/* Thumbnail image */
.si-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transition: transform 0.22s;
}
 
.si-card:hover .si-card-img {
  transform: scale(1.05);
}
 
/* Overlay gradient + label */
.si-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6px 7px 5px;
  gap: 2px;
}
 
.si-card-name {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
 
.si-card-badge {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
 
/* Play icon on hover */
.si-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
}
 
.si-card-play svg {
  margin-left: 2px;
  fill: #7700cc;
}
 
.si-card:hover .si-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
 
/* === VIEW MORE === */
.si-footer {
  text-align: center;
}
 
.si-view-more {
  display: inline-block;
  background: #fff;
  color: #7700cc;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 42px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.14s;
}
 
.si-view-more:hover {
  background: #f0d0ff;
  color: #5500aa;
  transform: translateY(-1px);
}
 


/* Layout Wrapper Elements */
.partnerships-section {
  width: 100%;
  background-color: #f2fff3; /* Ultra clean off-white background */
  padding: 90px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.partnerships-container {
  max-width: 1200px;
  width: 100%;
}

/* Header Text Styles */
.partnerships-header {
  text-align: center;
  margin-bottom: 50px;
}

.partnerships-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.partnerships-subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin: 0;
}

/* Asymmetric Gallery Layout System */
.partnerships-gallery {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  justify-content: space-between;
  height: 600px; /* Locked standard viewport boundary */
}

/* Large Featured Left block */
.partnership-video-featured {
  flex: 0 0 65%;
  max-width: 65%;
  height: 100%;
}

/* Sidebar Stack Right Block */
.partnership-video-sidebar {
  flex: 0 0 32%;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.partnership-video-sub {
    flex: 1;
    position: relative;
    max-height: 190px;
}
/* Core Media Thumbnails Container Setup */
.video-thumbnail-wrapper {
  display: block; /* Ensures the anchor tag acts like a block container */
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}
.video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

/* Immersive Interactive Hover Effects */
.video-thumbnail-wrapper:hover .video-cover-img {
  transform: scale(1.01);
  opacity: 0.7;
}

/* Play Control Button Overlays */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: #3b82f6; /* Vibrant Blue accent playhead color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  transition: background-color 0.3s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-play-overlay i {
  color: #ffffff;
  font-size: 1.4rem;
  margin-left: 4px; /* Optically centering standard triangle layouts */
}

/* Smaller Play Buttons variant inside narrow sidebar elements */
.video-play-overlay.small-play {
  width: 48px;
  height: 48px;
}

.video-play-overlay.small-play i {
  font-size: 1rem;
  margin-left: 3px;
}

/* Animated Pulse ring behind main featured video playhead */
.video-play-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.4);
  animation: playPulseLoop 2s infinite ease-out;
  z-index: -1;
}

.video-thumbnail-wrapper:hover .video-play-overlay {
  background-color: #2563eb;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Bottom Actions Panel Container styling */
.partnerships-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}



/* Dynamic Animation Presets */
@keyframes playPulseLoop {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}


/* ========================================== */
/* ANTI-SHAKE SMOOTH SIDEBAR DRAWER */
/* ========================================== */

.partner-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99998;
  backdrop-filter: blur(2px);
  
  opacity: 0;
  pointer-events: none; 
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-sidebar-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.partner-form-sidebar {
  position: fixed;
  top: 0;
  right: 0; 
  width: 40%;
  height: 100%;
  
  background-color: #ffffff;
  z-index: 99999; 
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 60px 40px;
  overflow-y: auto;
  
  transform: translateX(100%);
 
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform; 
}

.partner-form-sidebar.is-open {
  transform: translateX(0);
}

.partner-sidebar-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.partner-sidebar-close:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}

.partner-sidebar-content {
  width: 100%;
}

.partner-form-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 10px 0;
}

.partner-form-subtitle {
  font-size: 0.95rem;
  color: #718096;
  margin: 0 0 40px 0;
}

.partner-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.partner-form-field {
  width: 100%;
  position: relative;
}

.partner-form-field input {
  width: 100%;
  padding: 14px 16px;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #1e293b;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-form-field input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.partner-form-field input.partner-field-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

.partner-phone-error {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #dc3545;
}

/* Inline Grid Layout Group (Country Code + Phone) */
.partner-form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.field-country-code {
  flex: 0 0 35%; 
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  position: relative;
  padding: 6px 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.field-country-code label {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 2px;
}

.field-country-code select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: transparent;
  cursor: pointer;
  font-family: inherit;
}

.field-phone {
  flex: 0 0 65%;
  display: flex;
  align-items: flex-end;
}

/* Solid Form Submission Action Control */
.partner-form-submit-btn {
  align-self: flex-start;
  background-color: #e2e8f0; 
  color: #94a3b8;
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 35px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Active State Styles */
.partner-interactive-form:valid .partner-form-submit-btn {
  background-color: #0f172a; 
  color: #ffffff;
}

.partner-interactive-form:valid .partner-form-submit-btn:hover {
  opacity: 0.92;
}

.partner-form-success {
  display: none;
  text-align: center;
  padding: 28px 12px 20px;
}

.partner-form-success.is-visible {
  display: block;
}

.partner-success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.partner-success-title {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  font-family: "Poppins", Arial, sans-serif;
}

.partner-success-message {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #4b5563;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.partner-success-hint {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

.partner-form-sidebar.partner-success-mode .partner-form-title,
.partner-form-sidebar.partner-success-mode .partner-form-subtitle,
.partner-form-sidebar.partner-success-mode .partner-interactive-form {
  display: none;
}

.partner-form-sidebar.partner-success-mode .partner-sidebar-close {
  display: none;
}

.partner-form-submit-btn:hover {
  background-color: #1e293b;
  transform: translateY(-1px);
}

/* ---- Overlay ---- */
.lp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;

  /* Start hidden */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.35s ease;
}

.lp-overlay.lp-open {
  opacity: 1;
  background: rgba(0, 0, 0, 0.48);
  pointer-events: auto;
}

/* Optional body lock style */
body.lp-no-scroll {
  overflow: hidden;
}

/* ---- Sheet ---- */
.lp-sheet {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 48px 36px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.14);
}

.lp-overlay.lp-open .lp-sheet {
  transform: translateY(0);
}

/* On desktop: centered modal with rounded corners all sides */
@media (min-width: 600px) {
  .lp-overlay {
    align-items: center;
  }
  .lp-sheet {
    border-radius: 20px;
    max-width: 520px;
    transform: translateY(60px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.34, 1.1, 0.64, 1), opacity 0.28s ease;
  }
  .lp-overlay.lp-open .lp-sheet {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---- Close button ---- */
.lp-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background 0.2s;
}
.lp-close:hover { background: #eaeaea; }
 
/* ---- Logo ---- */
.lp-logo {
  text-align: center;
  margin-bottom: 18px;
}
.lp-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.lp-logo-fallback {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}
 
/* ---- Headline ---- */
.lp-headline {
  text-align: center;
  margin-bottom: 26px;
}
.lp-headline h2 {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.45;
}
.lp-accent {
  color: var(--success-green);
}
 
/* ---- Labels ---- */
.lp-section-label {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 4px;
}
.lp-sub {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin: 0 0 14px;
}
/* ---- Phone input row ---- */
.lp-input-row {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s;
  height: 48px;
  flex-wrap: nowrap;
}
.lp-input-row:focus-within {
  border-color: var(--success-green);
}
.lp-country {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px 0 14px;
  border-right: 1.5px solid #eee;
  height: 48px;
  cursor: pointer;
  flex-shrink: 0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.lp-flag { font-size: 16px; line-height: 1; }
.lp-chevron { color: #aaa; font-size: 10px; }
.lp-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: 14px;
  color: #1a1a2e;
  height: 48px;
  background: transparent;
}
.lp-input::placeholder { color: #bbb; }
.lp-submit {
  width: 100%;
  height: 48px;
  margin: 2px;
  border-radius: 10px;
  background: var(--success-green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  margin-top: 18px;
}
.lp-submit:hover { background: var(--success-green-hover); }
.lp-submit:active { transform: scale(0.95); }

.lp-forgot {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #5624d0;
  text-decoration: none;
}
.lp-forgot:hover { text-decoration: underline; }

.lp-error {
  margin: 0 0 8px;
  font-size: 13px;
  color: #b42318;
  font-weight: 500;
}

.lp-password-row {
  position: relative;
}
.lp-password-row .lp-input {
  padding-right: 46px;
}
.lp-toggle-pw {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #888;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 0;
  z-index: 2;
}
.lp-toggle-pw:hover {
  color: #333;
  background: #f3f4f6;
}

/* Styling for the requested label tags */
label.lp-label {
   display: block;
   font-size: 14px;
   font-weight: 600;
   color: #333333; /* Adjust to match your project color palette */
   margin-bottom: 4px;
}

/* Spacer utilities to keep layout flow intact between fields */
.lp-sub {
   margin-top: 0;
   margin-bottom: 8px;
}

.lp-input-row-spacing {
   margin-bottom: 16px;
}

/* Ensure the text input stretches properly inside its row container */
.lp-input-full {
   width: 100%;
   box-sizing: border-box;
}

.lp-otp-state {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding-top: 6px;
}
 
/* Message/phone icon badge above the heading */
.lp-otp-icon {
   position: relative;
   width: 56px;
   height: 56px;
   border-radius: 16px;
   background: linear-gradient(135deg, #34c9a3, #1fae8c);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 18px;
   box-shadow: 0 6px 14px rgba(31, 174, 140, 0.3);
}
 
.lp-otp-icon-dots {
   position: absolute;
   top: -6px;
   right: -8px;
   display: flex;
   gap: 3px;
   background: #fff;
   padding: 4px 6px;
   border-radius: 20px;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
 
.lp-otp-icon-dots i {
   width: 4px;
   height: 4px;
   border-radius: 50%;
   background: var(--success-green);
   display: inline-block;
}
 
.lp-otp-heading {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 8px;
}
 
.lp-otp-subtext {
   font-size: 14px;
   color: #6b6b7b;
   line-height: 1.5;
   margin: 0 0 20px;
   max-width: 280px;
}
 
.lp-otp-subtext span {
   font-weight: 600;
   color: #3c3c4e;
}
 .lp-otp-number-row {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   margin-top: -4px;
   margin-bottom: 20px;
}
.lp-otp-number-row span {
   font-weight: 600;
   color: #1a1a1a;
}
.lp-change-link {
   color: #e05f2b;
   font-size: 14px;
   font-weight: 600;
   text-decoration: underline;
   cursor: pointer;
}
/* OTP Container Alignment — tighter gap than before */
.lp-otp-row {
   display: flex;
   gap: 8px;
   justify-content: center;
   margin-bottom: 20px;
   width: 100%;
}
 
/* Individual OTP Boxes */
.lp-otp-box {
   width: 48px;
   height: 48px;
   text-align: center;
   font-size: 18px;
   font-weight: 600;
   border: 1px solid #ccc;
   border-radius: 8px;
   outline: none;
   transition: border-color 0.2s ease;
}
 
.lp-otp-box:focus {
   border-color: var(--success-green);
   box-shadow: 0 0 0 2px rgba(31, 174, 140, 0.15);
}
 
/* Verify Button */
.lp-verify-btn {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 13px 0;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.4px;
   color: #fff;
   background: #b7b7c2;   /* disabled state — muted grey */
   border: none;
   border-radius: 8px;
   cursor: not-allowed;
   transition: background-color 0.2s ease;
   margin-bottom: 14px;
}
 
.lp-verify-btn:not(:disabled) {
   background: var(--success-green);   /* active state — matches icon color */
   cursor: pointer;
}
 
.lp-verify-btn:not(:disabled):hover {
   background: var(--success-green);
}
 
.lp-resend-text {
   font-size: 14px;
   color: #6b6b7b;
   margin: 0;
}
 
.lp-resend-text span {
   font-weight: 600;
   color: #3c3c4e;
}
 
.lp-resend-link {
   color: #1fae8c;
   font-weight: 600;
   text-decoration: none;
   margin-left: 4px;
}
 
.lp-resend-link:hover {
   text-decoration: underline;
}
/* ---- Trust badge ---- */
.lp-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  color: #888;
  margin-top: 18px;
}
.lp-trust strong { color: #333; }

.training-process-section {
  /* Updated Color Variables */
  --primary-green: #34B27B;
  --accent-purple: #c266e0;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-color: #f7fbf9; /* Subtle tint based on primary green */
  
  background-color: #e8f5e9c4;
  padding: 100px 20px;
  overflow: hidden;
}

.training-process-section .tp-container {
  max-width: 1400px;
  margin: 0 auto;
}

.training-process-section .tp-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 120px;
  font-weight: 700;
  position: relative;
}


.training-process-section .tp-timeline-wrapper {
  position: relative;
  padding: 160px 0;
}

/* Central Horizontal Line styled with primary green */
.training-process-section .tp-track-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  border-top: 2px dashed var(--primary-green);
  transform: translateY(-50%);
  z-index: 1;
}

.training-process-section .tp-timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.training-process-section .tp-item {
  position: relative;
  width: 15%; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center Nodes utilizing the purple border & icons for pop */
.training-process-section .tp-icon-node {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 3px solid var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(194, 102, 224, 0.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  transition: transform 0.2s ease;
}

.training-process-section .tp-item:hover .tp-icon-node {
  transform: translateY(-50%) scale(1.08);
}

.training-process-section .tp-content-box {
  width: 180px;
  text-align: center;
  position: absolute;
}

/* Numbers utilizing primary green */
.training-process-section .tp-number {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fb3f05;
  margin-bottom: 4px;
}

.training-process-section .tp-content-box h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.training-process-section .tp-content-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.training-process-section .content-top .tp-content-box {
  bottom: 50px; 
}

.training-process-section .content-bottom .tp-content-box {
  top: 50px; 
}

/* Responsive Tablet & Mobile Fallback */
@media (max-width: 1024px) {
  .training-process-section .tp-timeline-wrapper {
    padding: 0;
  }
  
  .training-process-section .tp-track-line {
    left: 32px;
    top: 0;
    width: 4px;
    height: 100%;
    transform: none;
    border-top: none;
    border-left: 4px dashed var(--primary-green);
  }

  .training-process-section .tp-timeline-items {
    flex-direction: column;
    gap: 60px;
  }

  .training-process-section .tp-item {
    width: 100%;
    flex-direction: row !important;
    align-items: center;
    padding-left: 80px;
  }

  .training-process-section .tp-icon-node {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .training-process-section .tp-content-box {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    text-align: left;
    width: 100%;
  }
}

/* Container Background Section */
.google-reviews-section {
   background-color: #fafbfc; /* Soft contrast background to separate from the footer */
   padding: 40px 20px;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Distinct Block Card Design */
.reviews-block-container {
   max-width: 1140px;
   margin: 0 auto;
   background: #ffffff;
   border: 1px solid #eef2f5;
   border-radius: 12px;
   padding: 24px 32px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); /* Gives depth as a defined block */
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
}

/* Left Brand Branding */
.reviews-brand-group {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-shrink: 0;
}

.google-logo-text {
   font-size: 24px;
   font-weight: 700;
   letter-spacing: -0.5px;
}
.google-logo-text .g-blue { color: #4285F4; }
.google-logo-text .g-red { color: #EA4335; }
.google-logo-text .g-yellow { color: #FBBC05; }
.google-logo-text .g-green { color: #34A853; }

.reviews-stars-wrapper {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.rating-val {
   font-size: 16px;
   font-weight: 700;
   color: #202124;
}

.star-rating {
   color: #FBBC05;
   font-size: 18px;
   line-height: 1;
}

/* Center Text styling */
.reviews-text-group p {
   margin: 0;
   font-size: 16px;
   color: #3c4043;
   line-height: 1.5;
}

/* Black CTA Button Group */
.reviews-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background-color: #1a1a1a;
   color: #ffffff;
   text-decoration: none;
   padding: 12px 24px;
   border-radius: 8px;
   font-size: 14px;
   font-weight: 600;
   transition: all 0.2s ease;
   white-space: nowrap;
}

.reviews-btn:hover {
   background-color: #333333;
   transform: translateY(-1px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
   .google-reviews-section {
      padding: 24px 16px;
   }
   
   .reviews-block-container {
      flex-direction: column;
      text-align: center;
      padding: 24px;
      gap: 20px;
   }

   .reviews-brand-group {
      flex-direction: column;
      gap: 8px;
   }

   .reviews-btn {
      width: 100%;
      justify-content: center;
   }
}


/* --- Root Context Parent Wrapper --- */
.testimonials-context-wrapper {
   background-color: #f7f9fc;
   padding: 60px 0;
}

.testimonials-context-wrapper .testimonial-section {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.testimonials-context-wrapper .testimonial-header {
   text-align: center;
   margin-bottom: 40px;
}

/* --- Outer Wrapper holding Track + Buttons --- */
.testimonials-context-wrapper .testimonial-slider-outer-wrapper {
   position: relative;
   display: flex;
   align-items: center;
   width: 100%;
}

/* --- Navigation Button Layout Styles --- */
.testimonials-context-wrapper .slider-arrow-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: #ffffff;
   border: 1px solid #eef2f6;
   color: #0f172a;
   width: 42px;
   height: 42px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
   z-index: 10;
   transition: all 0.2s ease;
}

.testimonials-context-wrapper .slider-arrow-btn:hover {
   background: #34B27B;
   color: #ffffff;
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.testimonials-context-wrapper .arrow-prev { left: -20px; }
.testimonials-context-wrapper .arrow-next { right: -20px; }

/* Hide arrows visually on mobile/tablet viewports to use native touch gestures */
@media (max-width: 992px) {
   .testimonials-context-wrapper .slider-arrow-btn { display: none; }
}

/* --- Slider Core Layout Container --- */
.testimonials-context-wrapper .testimonial-slider-container {
   width: 100%;
   overflow: hidden;
   padding: 10px 0;
}

.testimonials-context-wrapper .testimonial-slider-track {
   display: flex;
   gap: 24px;
   width: 100%;
}

/* Transition class added/removed dynamically via JS to handle clean seamless loops */
.testimonials-context-wrapper .testimonial-slider-track.smooth-transition {
   transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Individual Testimonial Card --- */
.testimonials-context-wrapper .testimonial-card {
   background: #ffffff;
   border-radius: 12px;
   width: calc((100% - (24px * 2)) / 3); 
   flex-shrink: 0;
   padding: 20px;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
   border: 1px solid #eef2f6;
   display: flex;
   flex-direction: column;
   cursor: pointer;
   box-sizing: border-box;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonials-context-wrapper .testimonial-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

/* Video Thumbnails Layout */
.testimonials-context-wrapper .card-video-thumb {
   position: relative;
   width: 100%;
   height: 180px;
   border-radius: 8px;
   overflow: hidden;
   background-color: #000;
}

.testimonials-context-wrapper .card-video-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   opacity: 0.85;
}

.testimonials-context-wrapper .play-btn-overlay {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(240, 95, 43, 0.9);
   color: #ffffff;
   width: 42px;
   height: 42px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   transition: transform 0.2s ease;
}

.testimonials-context-wrapper .testimonial-card:hover .play-btn-overlay {
   transform: translate(-50%, -50%) scale(1.1);
}

.testimonials-context-wrapper .play-btn-overlay svg {
   width: 20px;
   height: 20px;
   margin-left: 2px;
}

.testimonials-context-wrapper .card-quote {
   font-size: 14px;
   color: #4a5568;
   line-height: 1.6;
   margin: 16px 0;
   flex-grow: 1;
}

.testimonials-context-wrapper .card-footer {
   display: flex;
   align-items: center;
   gap: 12px;
   border-top: 1px solid #f1f5f9;
   padding-top: 14px;
}

.testimonials-context-wrapper .user-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   object-fit: cover;
}

.testimonials-context-wrapper .user-info {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.testimonials-context-wrapper .user-meta {
   display: flex;
   align-items: center;
   gap: 8px;
}

.testimonials-context-wrapper .user-name {
   font-size: 14px;
   color: #1a202c;
   font-weight: 600;
}

.testimonials-context-wrapper .status-badge {
   background-color: #ff6f3c;
   color: #ffffff;
   font-size: 10px;
   font-weight: 700;
   padding: 2px 6px;
   border-radius: 4px;
}

.testimonials-context-wrapper .user-subtext {
   font-size: 12px;
   color: #718096;
}

/* --- Video Overlay Modals --- */
.testimonials-context-wrapper .video-popup-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(15, 23, 42, 0.85);
   backdrop-filter: blur(4px);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   pointer-events: none;
   z-index: 2500;
   transition: opacity 0.3s ease;
}

.testimonials-context-wrapper .video-popup-overlay.active {
   opacity: 1;
   pointer-events: auto;
}

/* Updated White Container with 16px padding */
.testimonials-context-wrapper .video-modal-container {
   position: relative;
   width: 90%;
   max-width: 800px;
   padding: 6px; /* Uniform 16px framing */
   background: #fff;
   border-radius: 12px;
   overflow: visible; /* Allows button tweaks if needed */
   box-sizing: border-box;
}

/* Clean, visible corner Close Button */
.testimonials-context-wrapper .video-modal-close {
    position: absolute;
    top: -35px; /* Moves it cleanly above the white card */
    right: 0;
    background: none;
    border: none;
    color: #fff; /* White x mark to contrast with dark overlay */
    font-size: 26px;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.testimonials-context-wrapper .video-modal-close:hover {
    color: #ff4d4d;
}

.testimonials-context-wrapper .video-responsive-wrapper {
   position: relative;
   padding-bottom: 56.25%;
   height: 0;
   border-radius: 8px; /* Clips the background box */
   overflow: hidden;
}

/* Native Video Tag Configuration */
.testimonials-context-wrapper .video-responsive-wrapper video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover; /* Forces video to match wrapper shape without stretching */
   border-radius: 8px; /* Clips video content cleanly */
}

.testimonials-context-wrapper .video-responsive-wrapper iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 0;
   border-radius: 8px;
   display: none;
}

/* --- Responsive Adaptations --- */
@media (max-width: 992px) {
   .testimonials-context-wrapper .testimonial-card {
      width: calc((100% - 24px) / 2);
   }
}

@media (max-width: 768px) {
   .testimonials-context-wrapper .testimonial-card {
      width: 100%;
   }
   .testimonials-context-wrapper .reviews-block-container {
      flex-direction: column;
      text-align: center;
      padding: 24px;
   }
   .testimonials-context-wrapper .reviews-brand-group {
      flex-direction: column;
      gap: 8px;
   }
   .testimonials-context-wrapper .reviews-btn {
      width: 100%;
      justify-content: center;
   }
}


/* --- Feature Showcase Container Layout --- */
.split-feature-showcase-wrapper .feature-showcase-section {
   padding: 80px 0;
   background-color: #ffffff; 
   display: flex;
   justify-content: center;
   align-items: center;
   font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.split-feature-showcase-wrapper .feature-showcase-container {
   max-width: 1140px;
   width: 100%;
   margin: 0 auto;
   padding: 0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr; 
   gap: 60px;
   align-items: center;
}

/* --- Left Text Layout Styles --- */
.split-feature-showcase-wrapper .feature-left-content {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

/* Custom Highlight Top Badge Icon */
.split-feature-showcase-wrapper .feature-top-icon-badge {
   background-color: rgba(240, 95, 43, 0.09); 
   color: #f05f2b; 
   width: 48px;
   height: 48px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 24px;
   box-shadow: 0 4px 10px rgba(240, 95, 43, 0.1);
}

.split-feature-showcase-wrapper .feature-main-heading {
   font-size: 38px;
   font-weight: 800;
   color: #0f172a;
   line-height: 1.25;
   margin: 0 0 20px 0;
   letter-spacing: -0.02em;
}

.split-feature-showcase-wrapper .feature-description-text {
   font-size: 16px;
   color: #4a5568;
   line-height: 1.7;
   margin: 0 0 32px 0;
}

.split-feature-showcase-wrapper .feature-primary-btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background-color: #0f172a;
   color: #ffffff;
   text-decoration: none;
   padding: 14px 28px;
   border-radius: 8px;
   font-size: 15px;
   font-weight: 600;
   transition: all 0.2s ease;
   box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.split-feature-showcase-wrapper .feature-primary-btn:hover {
   background-color: #f05f2b; 
   box-shadow: 0 6px 16px rgba(240, 95, 43, 0.25);
   transform: translateY(-1px);
}

/* --- Right Side Visual Panel Layout --- */
.split-feature-showcase-wrapper .feature-right-visual {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
}

.split-feature-showcase-wrapper .visual-card-wrapper {
   width: 100%;
   background: #f8fafc;
   border-radius: 16px;
   padding: 12px;
   border: 1px solid #e2e8f0;
   box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
   display: flex;
   overflow: hidden;
}

.split-feature-showcase-wrapper .feature-display-media {
   width: 100%;
   height: auto;
   border-radius: 10px;
   object-fit: cover;
   display: block;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Responsive Media Viewport Breaks --- */
@media (max-width: 992px) {
   .split-feature-showcase-wrapper .feature-showcase-container {
      grid-template-columns: 1fr; 
      gap: 40px;
      text-align: center;
   }

   .split-feature-showcase-wrapper .feature-left-content {
      align-items: center;
   }

   .split-feature-showcase-wrapper .feature-main-heading {
      font-size: 32px;
   }
}

@media (max-width: 576px) {
   .split-feature-showcase-wrapper .feature-showcase-section {
      padding: 50px 0;
   }
   
   .split-feature-showcase-wrapper .feature-primary-btn {
      width: 100%;
      justify-content: center;
   }
}


/* Container Layout Setup */
.hm-course-section {
   padding: 60px 20px;
   background-color: #f9f9f9;
}

.hm-course-container {
   max-width: 1200px;
   margin: 0 auto;
}

/* Centered Headings */
.hm-course-header {
   text-align: center;
   margin-bottom: 40px;
}

.hm-course-subheading {
   color: #e05f2b; /* Theme accent color */
   font-size: 14px;
   text-transform: uppercase;
   font-weight: 700;
   letter-spacing: 1px;
   margin-bottom: 5px;
}

.hm-course-heading {
   font-size: 32px;
   color: #333;
   font-weight: 700;
   margin: 0;
}

/* 3 Cards In a Row Grid Arrangement */
.hm-course-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   margin-bottom: 40px;
}


/* Individual Card Blocks */
.hm-course-card {
   position: relative;              /* needed so the online flag can sit above the card edge */
   background: #ffffff;
   border: 1px solid #e2e8f0;
   border-radius: 12px;
   overflow: visible;                /* changed from hidden so the online flag isn't clipped */
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   max-width: 340px;
   width: 100%;
   padding: 8px;
}
 
.hm-course-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
   border-color: #c266e0; /* Purple accent focus ring border */
}
 
/* Online flag — sits above/overlapping the top-left corner of the card */
.hm-course-online-flag {
   position: absolute;
   top: -14px;
   left: 16px;
   z-index: 2;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: var(--success-green);
   color: #ffffff;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.4px;
   padding: 5px 12px;
   border-radius: 20px;
   box-shadow: 0 3px 8px rgba(194, 102, 224, 0.35);
}
 
.hm-course-online-flag i {
   font-size: 10px;
}
 
/* Image Wrappers — clip to the card's top corners since overflow on the card itself is now visible */
.hm-course-img-wrapper {
  width: 100%;
  overflow: hidden;
  height: 200px;
  border-radius: 12px 12px 0 0;
  background-color: #8b8b8b;
}
 
.hm-course-img-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}
 
/* Text and Buttons Layout inside Card */
.hm-course-content {
   padding: 20px 4px;
   text-align: left;
}
 
/* Title row: title + language tag + call icon */
.hm-course-title-row {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 10px;
   margin: 0 0 20px 0;
   padding-bottom: 15px;
   border-bottom: 1px solid #edf2f7;
}
 
.hm-course-title {
   font-size: 18px;
   color: #2d3748;
   font-weight: 600;
   margin: 0;
}
 
.hm-course-title-actions {
   display: flex;
   align-items: center;
   gap: 8px;
   flex-shrink: 0;
}
 
.hm-course-lang-tag {
   font-size: 12px;
   font-weight: 600;
   background: #f0f1f6;
   color: #4a4a63;
   padding: 4px 10px;
   border-radius: 20px;
   white-space: nowrap;
}
 
.hm-course-call-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: #f0f1f6;
   color: #4a4a63;
   font-size: 12px;
   flex-shrink: 0;
}
 
/* What's included */
.hm-course-included {
   border-bottom: 1px solid #edf2f7;
   padding-bottom: 14px;
   margin-bottom: 16px;
}
 
.hm-course-included-label {
   font-size: 14px;
   font-weight: 600;
   color: #8a8a9c;
   margin: 0 0 8px;
}
 
.hm-course-included-list {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 6px;
}
 
.hm-course-included-list li {
   font-size: 15px;
   color: #3c3c4e;
   display: flex;
   align-items: center;
   gap: 8px;
}
 
.hm-course-included-list i {
   font-size: 14px;
   color: #c266e0;
   width: 14px;
   flex-shrink: 0;
}
 
/* Pricing with discount */
.hm-course-pricing {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 16px;
}
 
.hm-course-price-left {
   display: flex;
   align-items: baseline;
   gap: 8px;
   flex-wrap: wrap;
}
 
.hm-course-price-current {
   font-size: 20px;
   font-weight: 800;
   color: #2d3748;
}
 
.hm-course-price-original {
   font-size: 14px;
   color: #a0aec0;
   text-decoration: line-through;
}
 
.hm-course-discount-badge {
   background: #fff2cc;
   color: #a6690a;
   font-size: 12px;
   font-weight: 700;
   padding: 4px 10px;
   border-radius: 20px;
   white-space: nowrap;
}
 
/* Inline Action Row Layout */
.hm-course-actions {
   display: flex;
   gap: 12px;
}
 
.hm-course-btn {
   flex: 1;
   padding: 12px 0;
   font-size: 14px;
   font-weight: 600;
   text-align: center;
   text-decoration: none;
   border-radius: 8px;
   transition: all 0.2s ease;
   box-sizing: border-box;
}
 
/* Explore Button Style */
.hm-course-btn-explore {
   background-color: #ffffff;
   color: #c266e0; /* Purple theme color from reference */
   border: 1px solid #c266e0;
}
 
.hm-course-btn-explore:hover {
   background-color: rgba(194, 102, 224, 0.05);
}
 
/* Buy Now Button Style */
.hm-course-btn-buynow {
   background-color: #c266e0;
   color: #ffffff;
   border: 1px solid #c266e0;
   cursor: pointer;
}
 
.hm-course-btn-buynow:hover {
   background-color: #b04fd0;
}
 

/* View All Bottom Button Centering */
.hm-course-footer {
   text-align: center;
   margin-top: 20px;
}

.hm-course-btn-view-all {
   display: inline-block;
   padding: 12px 32px;
   background-color: #e05f2b;
   color: #ffffff;
   font-size: 16px;
   font-weight: 600;
   text-decoration: none;
   border-radius: 30px;
   box-shadow: 0 4px 6px rgba(224, 95, 43, 0.2);
   transition: background-color 0.2s ease;
}

.hm-course-btn-view-all:hover {
   background-color: #c74d1e;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
   .hm-course-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
   }
}

@media (max-width: 650px) {
   .hm-course-grid {
      grid-template-columns: 1fr;
   }
   .hm-course-heading {
      font-size: 26px;
   }
}


/* Unique Partnership Video Popup Styles */
.part-vid-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Active State */
.part-vid-popup-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Dark Background Overlay */
.part-vid-popup-modal .part-vid-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Matches testimonial style dark blue-gray */
    backdrop-filter: blur(4px);
}

/* Modal Content Box (The White Frame) */
.part-vid-popup-modal .part-vid-popup-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #ffffff; /* White background frame */
    padding: 6px;       /* 16px white padding frame */
    border-radius: 12px; /* Smooth outer container corners */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.part-vid-popup-modal.is-active .part-vid-popup-container {
    transform: scale(1);
}

/* Close Button (Cleanly floating right above the white card) */
.part-vid-popup-modal .part-vid-popup-close {
    position: absolute;
    top: -35px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part-vid-popup-modal .part-vid-popup-close:hover {
    color: #ff4d4d;
}

/* Fluid 16:9 Aspect Ratio Container for Video */
.part-vid-popup-modal .part-vid-popup-body {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 8px;     /* Pre-clips layout zone */
    overflow: hidden;
}

/* Native Video Tag Layout (Zero Black Bars) */
.part-vid-popup-modal .part-vid-popup-body video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Forces video canvas to cleanly span full frame */
    border-radius: 8px;     /* Gives the video itself the requested 8px corner rounding */
    border: 0;
}

/* --- Home Page Free Mock Section --- */
.hm-free-mock-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; /* Fallback matching the clean modern UI */
    box-sizing: border-box;
}

.hm-free-mock-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- Left Side Content Layout --- */
.hm-free-mock-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hm-free-mock-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #4a5568;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.hm-free-mock-main-title-box {
    margin: 16px 0;
    width: 100%;
}

.hm-free-mock-lead-text {
    font-size: 24px;
    color: #4a5568;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Accent highlight block for the main title */
.hm-free-mock-title {
    font-size: 42px;
    font-weight: 700;
    color: #0070f3; /* High-contrast blue matching image theme */
    margin: 0;
    display: inline-block;
    position: relative;
    padding: 4px 8px;
    background-color: #e6f0ff; /* Soft blue highlight tint box background */
    border-radius: 4px;
    line-height: 1.2;
}

.hm-free-mock-footer-text {
    font-size: 22px;
    font-weight: 500;
    color: #4a5568;
    margin: 0 0 28px 0;
}

/* Call to Action Button */
.hm-free-mock-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #008b9b; /* Teal button theme matching mock screenshot */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(0, 139, 155, 0.25);
}

.hm-free-mock-btn:hover {
    background-color: #007280;
    transform: translateY(-1px);
}

.hm-free-mock-btn:active {
    transform: translateY(1px);
}

/* --- Right Side Image Container --- */
.hm-free-mock-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hm-free-mock-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
    .hm-free-mock-title {
        font-size: 34px;
    }
    .hm-free-mock-subtitle, 
    .hm-free-mock-lead-text, 
    .hm-free-mock-footer-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hm-free-mock-section {
        padding: 40px 16px;
    }
    
    .hm-free-mock-container {
        flex-direction: column-reverse; /* Puts text below the visual content on mobile screens */
        gap: 30px;
        text-align: center;
    }
    
    .hm-free-mock-content {
        align-items: center;
    }
    
    .hm-free-mock-title {
        font-size: 28px;
    }
    
    .hm-free-mock-subtitle, 
    .hm-free-mock-lead-text, 
    .hm-free-mock-footer-text {
        font-size: 18px;
    }
    
    .hm-free-mock-img {
        max-width: 400px;
    }
}









/* Reset values for full screen allocation */
.crs-player-body-reset {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #0b0f19;
}

.crs-player-modal {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box;
}

.crs-player-container {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

/* --- LEFT SIDE: VIDEO INTERFACE --- */
.crs-player-left-panel {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    box-sizing: border-box;
    overflow-y: auto;
    background-color: #0b0f19;
}

.crs-player-close-btn {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.crs-player-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.crs-player-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
 
.crs-player-close-btn {
  flex-shrink: 0;
}
 
.crs-player-course-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* 16px White frame padding with 8px inner video rounding */
.crs-video-display-frame {
    width: 100%;
    max-width: 100%;
    height: 75%;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.crs-video-ratio-box {
    position: relative;
    padding-bottom: 43.25%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 8px;
    background: #000000;
}
.crs-video-ratio-box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.crs-video-meta-block {
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0 auto;
    color: #ffffff;
}

.crs-video-current-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #f8fafc;
}

.crs-video-current-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* --- RIGHT SIDE: SYLLABUS MENU --- */
.crs-player-right-sidebar {
    width: 400px;
    height: 100%;
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.crs-sidebar-header {
    padding: 20px 24px;
    border-bottom: 1px solid #edf2f7;
}

.crs-sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.crs-sidebar-scrollable-content {
    flex: 1;
    overflow-y: auto;
}

/* Standalone Rows */
.crs-standalone-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s ease;
}

.crs-standalone-item:hover, .crs-standalone-item.active {
    background: #f8fafc;
}

.crs-standalone-item.active .crs-item-txt {
    color: #3b82f6;
    font-weight: 600;
}

.crs-item-icon {
    font-size: 18px;
    color: #64748b;
    margin-top: 2px;
}

.crs-item-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.crs-item-txt {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    line-height: 1.4;
}

/* Lesson Feature Badges */
.crs-badge-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.crs-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.crs-badge.badge-slide { background: #f1f5f9; color: #475569; }
.crs-badge.badge-trial { background: #fef3c7; color: #d97706; }
.crs-badge.badge-paid  { background: #fee2e2; color: #dc2626; }
.crs-badge.badge-test  { background: #e0f2fe; color: #0369a1; }


.crs-progress-circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: conic-gradient(#4f46e5 calc(var(--progress, 0) * 1%), #e5e7eb 0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 600;
            color: #374151;
            position: relative;
         }
         .crs-progress-circle::before {
            content: '';
            position: absolute;
            width: 22px;
            height: 22px;
            background-color: #fff;
            border-radius: 50%;
         }
         .crs-progress-circle span {
            position: relative;
            z-index: 1;
            font-size: 0.55rem;
         }
          .crs-completed-badge {
            background-color: #e6f4ea;
            color: #137333;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
            text-transform: uppercase;
         }
         .crs-player-top-bar {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
         }
         .crs-top-course-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
         }

/* --- ACCORDIONS --- */
.crs-accordion-group {
    border-bottom: 1px solid #e2e8f0;
}


.crs-accordion-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    cursor: pointer;
    user-select: none;
}

.crs-accordion-trigger:hover {
    background: #f8fafc;
}

.crs-acc-left-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.crs-acc-index {
    font-size: 18px;
    font-weight: 700;
    color: #94a3b8;
}

.crs-acc-text-meta h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.crs-acc-subtext {
    font-size: 12px;
    color: #64748b;
}

.crs-acc-arrow {
    font-size: 14px;
    color: #64748b;
    transition: transform 0.2s ease;
}

.crs-accordion-panel {
    max-height: 0;
    overflow: hidden;
    background: #fdfdfd;
    transition: max-height 0.25s ease-out;
}

.crs-accordion-group.is-expanded .crs-accordion-panel {
    max-height: 500px;
}

.crs-accordion-group.is-expanded .crs-acc-arrow {
    transform: rotate(180deg);
}

/* Inner Panels Links */
.crs-panel-inner-item {
    display: flex;
    align-items: center;
    padding: 14px 24px 14px 56px;
    border-top: 1px solid #f1f5f9;
    cursor: pointer;
    gap: 12px;
}

.crs-panel-inner-item:hover {
    background: #f1f5f9;
}

.crs-panel-inner-item i {
    font-size: 14px;
    color: #94a3b8;
}

.crs-panel-inner-item .crs-inner-title {
    font-size: 13.5px;
    color: #475569;
    flex: 1;
}

/* Green design block targeted directly at custom evaluation test positions */
.crs-panel-inner-item.crs-test-node {
    background: #f0fdf4;
    border-top: 1px dashed #bbf7d0;
}
.crs-panel-inner-item.crs-test-node:hover {
    background: #dcfce7;
}
.crs-panel-inner-item.crs-test-node i {
    color: #16a34a;
}
.crs-panel-inner-item.crs-test-node .crs-inner-title {
    font-weight: 600;
    color: #14532d;
}




.cc-gallery-section{
    padding:80px 0;
    overflow:hidden;
    background:#fff;
}

.cc-gallery-head{
    text-align:center;
    margin-bottom:50px;
}

.cc-gallery-head span{
    color:#7a22d6;
    font-weight:600;
    letter-spacing:1px;
}

.cc-gallery-head h2{
    font-size:42px;
    margin:10px 0;
    font-weight:700;
}

.cc-gallery-head p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

.cc-gallery-slider{
    overflow:hidden;
    width:100%;
}

.cc-gallery-track{

    display:flex;
    align-items:flex-start;
    width:max-content;

    animation:galleryScroll 28s linear infinite;
}

.cc-gallery-track:hover{
    animation-play-state:paused;
}

/* COLUMN */

.cc-gallery-column{

    display:flex;
    flex-direction:column;
    flex-shrink:0;

    width:320px;
}

/* NO GAP */

.cc-gallery-column img{

    width:100%;
    display:block;
    object-fit:cover;
    transition:.4s;
}

.cc-gallery-column img:hover{
    transform:scale(1.05);
}

/* Tall image */

.cc-gallery-column.single img{

    height:600px;
}

/* Two stacked */

.cc-gallery-column.double img{

    height:300px;
}

/* Animation */

@keyframes galleryScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}





.cc-learn-section{
    padding:50px 20px;
    background:#fff;
    text-align:center;
}

.cc-learn-content{
    max-width:860px;
    margin:0 auto 40px;
}

.cc-learn-content h2{
    font-size:48px;
    font-weight:700;
    color:#14233b;
    margin-bottom:18px;
}



.cc-learn-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.cc-store-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cc-store-buttons img{
    width:180px;
    transition:.3s;
}

.cc-store-buttons img:hover{
    transform:translateY(-5px);
}

.cc-learn-image{
    max-width:700px;
    margin:auto;
}

.cc-learn-image img{
    width:100%;
    display:block;
}



/* ===============================================================
   Sticky "Enquire Now" Tab
   =============================================================== */

.enq-sticky-tab {
   position: fixed;
   top: 50%;
   right: 30px;
   transform: translateY(-50%) rotate(-90deg) translateX(50%);
   transform-origin: right center;
   z-index: 999;
   display: flex;
   align-items: center;
   gap: 8px;
   background: #f5a623;
   color: #1a1a2e;
   border: none;
   padding: 11px 20px;
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 0.4px;
   border-radius: 8px 8px 0 0;
   cursor: pointer;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
   transition: background-color 0.2s ease, padding-right 0.2s ease;
}

.enq-sticky-tab:hover {
   background: #e59613;
}

.enq-sticky-tab i {
   font-size: 14px;
}


/* ===============================================================
   Enquiry Form Popup — fade + gentle scale-in
   =============================================================== */

.enq-overlay {
   position: fixed;
   inset: 0;
   z-index: 1000;
   background: rgba(20, 20, 43, 0.45);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;

   /* Hidden by default, but always in the flow so the transition can run */
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.enq-overlay.enq-open {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
   transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.enq-form-sheet {
   position: relative;
   width: 100%;
   max-width: 380px;
   background: #fdf2fa;
   border-radius: 16px;
   padding: 26px 24px 28px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);

   /* Sheet fades + scales/slides in slightly for a softer feel */
   opacity: 0;
   transform: scale(0.94) translateY(14px);
   transition: opacity 0.3s ease, transform 0.3s ease;
}

.enq-overlay.enq-open .enq-form-sheet {
   opacity: 1;
   transform: scale(1) translateY(0);
}

.enq-close {
   position: absolute;
   top: 14px;
   right: 14px;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: #fff;
   border: 1px solid #e6d3e6;
   color: #6b6b7b;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
}

.enq-close:hover {
   background: #f3e6f3;
}

.enq-form-title {
   font-size: 17px;
   font-weight: 700;
   color: #1a1a2e;
   margin: 0 0 18px;
   padding-right: 24px;
}

.enq-field {
   margin-bottom: 12px;
}

.enq-input {
   width: 100%;
   box-sizing: border-box;
   padding: 13px 14px;
   font-size: 14px;
   font-family: inherit;
   color: #2d2d3f;
   background: #fff;
   border: 1px solid #e5d5e5;
   border-radius: 8px;
   outline: none;
   transition: border-color 0.2s ease;
}

.enq-input::placeholder {
   color: #9a9aab;
}

.enq-input:focus {
   border-color: #c266e0;
   box-shadow: 0 0 0 2px rgba(194, 102, 224, 0.12);
}

.enq-textarea {
   resize: vertical;
   min-height: 70px;
}

.enq-submit-btn {
   width: 100%;
   margin-top: 6px;
   padding: 13px 0;
   background: #f5a623;
   color: #1a1a2e;
   border: none;
   border-radius: 8px;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.4px;
   cursor: pointer;
   transition: background-color 0.2s ease;
}

.enq-submit-btn:hover {
   background: #e59613;
}

.enq-input.enq-input-error {
   border-color: #e05f2b;
   box-shadow: 0 0 0 2px rgba(224, 95, 43, 0.12);
}


/* ===============================================================
   Success Popup — fade + gentle scale-in
   =============================================================== */

.enq-success-overlay {
   position: fixed;
   inset: 0;
   z-index: 1001;
   background: rgba(20, 20, 43, 0.55);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;

   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.enq-success-overlay.enq-open {
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
   transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.enq-success-sheet {
   width: 100%;
   max-width: 340px;
   background: #fff;
   border-radius: 14px;
   padding: 30px 24px 26px;
   text-align: center;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);

   opacity: 0;
   transform: scale(0.9) translateY(14px);
   transition: opacity 0.32s ease, transform 0.32s ease;
}

.enq-success-overlay.enq-open .enq-success-sheet {
   opacity: 1;
   transform: scale(1) translateY(0);
}

.enq-success-check {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: #2fb757;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 16px;
   box-shadow: 0 6px 16px rgba(47, 183, 87, 0.35);

   /* Small pop-in for the checkmark badge, slightly delayed after the sheet appears */
   opacity: 0;
   transform: scale(0.5);
   transition: opacity 0.3s ease 0.15s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
}

.enq-success-overlay.enq-open .enq-success-check {
   opacity: 1;
   transform: scale(1);
}

.enq-success-brand {
   font-size: 15px;
   font-weight: 800;
   letter-spacing: 0.5px;
   color: #1a1a2e;
   margin: 0 0 10px;
}

.enq-success-msg {
   font-size: 14px;
   color: #5a5a6b;
   line-height: 1.5;
   margin: 0 0 22px;
}

.enq-success-ok-btn {
   background: #2fb757;
   color: #fff;
   border: none;
   padding: 10px 34px;
   font-size: 14px;
   font-weight: 700;
   border-radius: 8px;
   cursor: pointer;
   transition: background-color 0.2s ease;
}

.enq-success-ok-btn:hover {
   background: #279c4a;
}



  /* ── Sticky button ── */
  .wa-sticky {
    position: fixed;
    bottom: 48px;
    right: 28px;
    z-index: 99998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* entry animation */
    opacity: 0;
    transform: scale(0.5);
    animation: waPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
    /* shadow */
    filter: drop-shadow(0 4px 12px rgba(37,211,102,0.45));
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                filter 0.25s ease;
  }
 
  @keyframes waPopIn {
    from { opacity: 0; transform: scale(0.5); }
    to   { opacity: 1; transform: scale(1); }
  }
 
  .wa-sticky:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 6px 18px rgba(37,211,102,0.60));
  }
 
  .wa-sticky:active {
    transform: scale(0.96);
  }
 
  /* Icon */
  .wa-icon {
    width: 58px;
    height: 58px;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    /* subtle white border ring */
    outline: 2px solid rgba(255,255,255,0.7);
    outline-offset: 2px;
  }
 
  /* ── Pulse ring ── */
  .wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: waPulse 2.2s ease-out infinite;
    z-index: -1;
    pointer-events: none;
  }
 
  @keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
  }
 
  /* ── Tooltip ── */
  .wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    /* arrow pointing right */
    letter-spacing: 0.2px;
  }
 
  .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #1a1a1a;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
 
  .wa-sticky:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }


  
.vt-testimonials-section {
  width: 100%;
  background-color: #f2fff3;
  padding: 90px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
 
.vt-container {
  max-width: 1200px;
  width: 100%;
}
 
/* ---------- Header ---------- */
.vt-header {
  text-align: center;
  margin-bottom: 46px;
}
 
.vt-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.vt-subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin: 0;
}
 
/* ---------- Main Featured Card ---------- */
.vt-main-card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.08);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 36px;
  min-height: 320px;
  box-sizing: border-box;
}
 
.vt-main-media {
  flex: 0 0 380px;
  max-width: 380px;
  height: 296px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-color: #000000;
  cursor: pointer;
}
 
.vt-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.35s ease, transform 0.6s ease;
}
 
.vt-main-media:hover .vt-main-img {
  opacity: 0.75;
  transform: scale(1.02);
}
 
.vt-main-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
}
 
.vt-main-play i {
  color: #ff6a3d;
  font-size: 1.3rem;
  margin-left: 4px;
}
 
.vt-main-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: #ffffff;
}
 
/* hide play button on non-video cards */
.vt-main-media.vt-no-video .vt-main-play {
  display: none;
}
 
.vt-main-content {
  flex: 1;
  min-width: 0;
  position: relative;
  text-align: center;
}
 
.vt-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 8px;
}
 
.vt-main-quote {
  font-size: 1.4rem;
  line-height: 1.55;
  color: #0f172a;
  font-weight: 500;
  margin: 0 0 28px 0;
}
 
.vt-main-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 
.vt-main-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.02rem;
}
 
.vt-main-meta {
  font-size: 0.85rem;
  color: #64748b;
  letter-spacing: 0.3px;
}
 
/* ---------- Slider Row ---------- */
.vt-slider-row {
  position: relative;
  display: flex;
  align-items: center;
}
 
.vt-slider-viewport {
  width: 100%;
  overflow: hidden;
}
 
.vt-slider-track {
  display: flex;
  gap: 24px;
}
 
.vt-slider-track.vt-smooth-transition {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
 
/* ---------- Slide Cards ---------- */
.vt-slide-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 visible cards, 2 gaps of 24px */
  max-width: calc((100% - 48px) / 3);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
 
.vt-slide-card:hover {
  transform: translateY(-3px);
}
 
.vt-slide-card.vt-active-card {
  border-color: #ff6a3d;
}
 
/* Video variant */
.vt-slide-card.vt-card-video {
  padding: 0;
}
 
.vt-card-media {
  position: relative;
  width: 100%;
  height: 190px;
  background-color: #000000;
  overflow: hidden;
}
 
.vt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
 
.vt-slide-card:hover .vt-card-media img {
  transform: scale(1.01);
  opacity: 0.8;
}
 
.vt-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(240, 95, 43, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4);
}
 
.vt-card-play i {
  color: #ffffff;
  font-size: 0.95rem;
  margin-left: 2px;
}
 
.vt-card-name-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background-color: rgba(15, 23, 42, 0.55);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}
 
/* Text variant */
.vt-slide-card.vt-card-text {
  padding: 22px;
}
 
.vt-card-quote {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #1e293b;
  margin: 0 0 20px 0;
  flex: 1;
}
 
/* Footer (shared) */
.vt-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
 
.vt-slide-card.vt-card-video .vt-card-footer {
  padding: 14px 16px;
}
 
.vt-card-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
 
.vt-card-footer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
 
.vt-card-fullname {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
 
.vt-badge {
  background-color: #ff6a3d;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
 
.vt-card-score {
  font-size: 0.76rem;
  color: #64748b;
}
 
/* ---------- Prev / Next Arrows ---------- */
.vt-slider-prev,
.vt-slider-next {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--purple-main);
  color: var(--black-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
 
.vt-slider-prev {
  margin-right: 18px;
}
 
.vt-slider-next {
  margin-left: 18px;
}
 
.vt-slider-prev:hover,
.vt-slider-next:hover {
  background-color: var(--success-green);
  transform: scale(1.02);
}
 
/* ---------- Dots ---------- */
.vt-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
 
.vt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
 
.vt-dot.vt-dot-active {
  background-color: var(--accent-purple);
  transform: scale(1.25);
}
 
/* ---------- Video Modal ---------- */
.vt-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
 
.vt-video-modal.vt-active {
  display: flex;
}
 
.vt-video-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
 
.vt-video-container {
  position: relative;
  width: min(900px, 90vw);
  z-index: 2;
}
 
.vt-video-body {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000000;
}
 
.vt-video-body video {
  width: 100%;
  display: block;
  max-height: 80vh;
}

.vt-video-body iframe {
  width: 100%;
  display: none;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  border: 0;
}
 
.vt-video-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}