/* ==========================================================================
   aiRobo Edutech Pvt. Ltd. - Core Design System & Component Styles
   Inspired by Nori Homepage 04 | Vanilla CSS | Responsive & Animating
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* --primary: #3be0f4; */
  --primary: #0ba4fa;
  --primary-hover: #38b2f9;
  --primary-rgb: 255, 116, 21;
  --secondary: #442e66;
  --dark: #08081D;
  --dark-rgb: 8, 8, 29;
  --dark-alt: #12122A;
  --light: #F7F8FC;
  --light-grey: #e9ecf5;
  --text: #6A7C92;
  --border: #f0f2f7;

  --font-title: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 4px 10px rgba(8, 8, 29, 0.04);
  --shadow-md: 0 10px 30px rgba(8, 8, 29, 0.06);
  --shadow-lg: 0 20px 50px rgba(8, 8, 29, 0.1);
  --shadow-hover: 0 25px 60px rgba(255, 116, 21, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── GLOBAL RESETS & STYLES ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background-color: #fff;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-bottom: 30px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.preloader-bar-inner {
  width: 0%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 4px;
  animation: preloaderBar 1.8s ease-in-out forwards;
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.92);
    opacity: 0.7;
  }
}

@keyframes preloaderBar {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* ── LAYOUT UTILITIES ── */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
  color: #fff;
}

/* ── CUSTOM BUTTONS ── */
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-custom::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-custom:hover::after {
  width: 100%;
}

.btn-primary-custom {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 116, 21, 0.25);
  color: #fff;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background-color: var(--dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: #fff;
  color: var(--dark);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-white {
  background-color: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-link-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  border-bottom: 2px solid var(--dark);
  padding-bottom: 3px;
  transition: var(--transition);
}

.btn-link-custom:hover {
  color: var(--primary);
  border-color: var(--primary);
  gap: 12px;
}

.btn-link-custom svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.btn-link-custom:hover svg {
  transform: translateX(3px);
}

/* ── SECTION HEADINGS ── */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.sec-tag .diamond {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  transform: rotate(45deg);
}

.sec-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 18px;
}

/* Global subtitle tag design with stars */
.sub-title-tag {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.sub-title-tag.text-center {
  justify-content: center;
}

.sub-title-tag::before,
.sub-title-tag::after {
  content: '✦';
  font-size: 16px;
}

.sub-title-tag svg {
  display: none !important;
}

/* Global heading pill design */
.sec-title span.bord,
.sec-title span.underline-highlight {
  background-color: var(--primary);
  color: #fff !important;
  padding: 4px 24px;
  border-radius: 40px;
  display: inline-block;
  border: none;
  font-weight: 700;
  line-height: 1.2;
}

.sec-title span.underline-highlight::after {
  display: none;
}

.sec-desc {
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}

/* ── TOPBAR ── */
.topbar {
  background-color: var(--dark-alt);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar a {
  color: rgba(255, 255, 255, 0.7);
}

.topbar a:hover {
  color: var(--primary);
}

.topbar .contact-info {
  display: flex;
  gap: 20px;
}

.topbar .contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* ── HEADER & NAVIGATION ── */
.navbar-custom {
  background-color: #fff;
  padding: 5px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 80px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(8, 8, 29, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  z-index: 1060;
  padding: 80px 30px 30px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-panel.active {
  right: 0;
}

.mobile-menu-panel .nav-menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
}

.mobile-menu-panel .nav-menu-mobile li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-panel .nav-menu-mobile li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.mobile-menu-panel .nav-menu-mobile li a:hover {
  color: var(--primary);
}

.mobile-menu-panel .mobile-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--dark);
  cursor: pointer;
}

/* Dropdown styles */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 15px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-custom {
  display: block;
  padding: 8px 25px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.dropdown-item-custom:hover {
  color: var(--primary);
  background-color: var(--light);
}

/* ── HERO SECTION ── */
.hero-section {
  background: url('../image/hero_bg.png') center center/cover no-repeat;
  position: relative;
  padding: 60px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 29, 0.92) 0%, rgba(8, 8, 29, 0.82) 55%, rgba(255, 116, 21, 0.2) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.hero-badge img {
  height: 20px;
  width: auto;
}

.hero-title {
  font-size: clamp(40px, 4vw, 45px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.hero-title .highlight-underline {
  position: relative;
  display: inline-block;
}

.hero-title svg.wave-line {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 10px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .btn-link-custom {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-link-custom:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  flex-wrap: wrap;
}

.hero-stat-item .num {
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.hero-stat-item .num span {
  color: var(--primary);
}

.hero-stat-item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-top: 5px;
}

/* ── HERO VIDEO BOX ── */
.hero-video-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.hero-video-box:hover {
  transform: translateY(-6px);
}

.hero-video-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}

.hero-video-box:hover .hero-video-img {
  transform: scale(1.04);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 29, 0.55) 0%, rgba(255, 116, 21, 0.18) 100%);
  z-index: 1;
}

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 84px;
  height: 84px;
}

.hero-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.hero-video-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 16px;
}

/* ── 3-COLUMN FEATURES ── */
.features-three-col {
  background-color: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.feature-box-style3 {
  display: flex;
  gap: 15px;
  padding: 10px 12px;
  border-right: 1px solid var(--border);
  height: 100%;
}

.feature-box-style3.no-border {
  border-right: none;
}

.feature-box-style3 .icon-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.feature-box-style3 .bg-blob {
  position: absolute;
  inset: 0;
}

.feature-box-style3 .bg-blob svg {
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  transition: transform 0.8s ease;
}

.feature-box-style3:hover .bg-blob svg {
  transform: rotate(45deg);
}

.feature-box-style3 .icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box-style3 .icon svg {
  width: 40px;
  height: 40px;
}

/* Blob colors */
.blob-pink path {
  fill: #FFF2F0;
}

.blob-blue path {
  fill: #EEF7FF;
}

.blob-yellow path {
  fill: #FFF9EE;
}

.feature-box-style3 .content-wrap h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box-style3 .content-wrap p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 15px;
}

.feature-box-style3 .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.feature-box-style3 .read-more:hover {
  color: var(--primary);
}

.feature-box-style3 .read-more svg {
  width: 18px;
  height: 12px;
  transition: transform 0.3s;
}

.feature-box-style3 .read-more:hover svg {
  transform: translateX(4px);
}

/* ── CATEGORIES GRID ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
}

.cat-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cat-card-item:hover img {
  transform: scale(1.1);
}

.cat-card-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 29, 0.9) 0%, rgba(8, 8, 29, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.cat-card-item .info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}

.cat-card-item .programs-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cat-card-item .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cat-card-item .arrow-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  backdrop-filter: blur(5px);
  z-index: 2;
}

.cat-card-item:hover .arrow-btn {
  opacity: 1;
  transform: scale(1);
  background-color: var(--primary);
}

/* ── MARQUEE INFO BANNERS ── */
.info-marquee-banner {
  background-color: var(--dark);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* ── TEXT FANCY HEADING BANNERS ── */
.fancy-heading-banner {
  padding: 60px 0;
  background-color: var(--light);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.fancy-banner-text {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.3;
}

.fancy-banner-text mark {
  background: transparent;
  color: inherit;
  position: relative;
  display: inline-block;
}

.fancy-banner-text mark svg {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
}

.fancy-banner-text mark path {
  stroke: var(--primary);
  stroke-width: 4px;
  fill: none;
}

/* ── FEATURED COURSES & TABS ── */
.courses-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.course-tab {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.course-tab.active,
.course-tab:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 116, 21, 0.2);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.course-card-style4 {
  background-color: transparent;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}

.course-card-style4:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.course-card-style4 .thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.course-card-style4 .thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.course-card-style4 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  z-index: 0;
  position: relative;
}

.course-card-style4:hover .thumb img {
  transform: scale(1.05);
}

.course-card-style4 .body {
  position: relative;
  z-index: 3;
  width: 100%;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-card-style4 .price-badge {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.course-card-style4 .price-badge.free {
  background-color: rgba(0, 0, 0, 0.8);
}

.course-card-style4 .post-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-card-style4 .post-title a {
  color: #fff;
  text-decoration: none;
}

.course-card-style4 .post-title a:hover {
  color: var(--primary);
}

.course-card-style4 .meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 15px;
}

.course-card-style4 .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BENEFITS & STATS COUNTERS ── */
.benefits-stats-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  /* align-items: center; */
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.counter-box-style3 {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.counter-box-style3:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.counter-box-style3 .value {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.counter-box-style3 .counter {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.counter-box-style3 .symbol {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}

.counter-box-style3 h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.counter-box-style3 .desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

/* ── TESTIMONIAL CAROUSEL ── */
.testimonials-section {
  position: relative;
  background-color: var(--light);
}

.testimonials-carousel-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 40px;
  background-color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.testimonial-slide-item .quote-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  color: hsl(201.59deg 95.98% 51.18% / 39%);
}

.testimonial-slide-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.testimonial-slide-item p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-slide-item .author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slide-item .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}

.testimonial-slide-item .name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-slide-item .role {
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* ── PRICING & LEFT ACCORDION ── */
.pricing-section-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Accordion (Faq style) */
.accordion-wrapper {
  margin-top: 30px;
}

.accordion-item-custom {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.accordion-header-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.accordion-header-custom h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: var(--transition);
}

.accordion-item-custom.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.accordion-content-custom {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.accordion-content-custom p {
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.accordion-item-custom.dark-accord {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item-custom.dark-accord .accordion-header-custom h5 {
  color: #fff !important;
}

.accordion-item-custom.dark-accord .accordion-icon {
  color: rgba(255, 255, 255, 0.6);
}

.accordion-item-custom.dark-accord.active .accordion-icon {
  color: var(--primary);
}

.accordion-item-custom.dark-accord .accordion-content-custom p {
  color: rgba(255, 255, 255, 0.7);
}

/* Right Pricing Cards */
.pricing-cards-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-card-box {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.pricing-card-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-box.featured {
  background-color: var(--dark);
  border-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card-box.featured h3,
.pricing-card-box.featured .price {
  color: #0ba4fa;
}

.pricing-card-box.featured h3,
.pricing-card-box.featured .currency {
  color: #0ba4fa;
}

.pricing-card-box .badge-plan {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.pricing-card-box .badge-plan.basic {
  background-color: rgba(255, 116, 21, 0.1);
  color: var(--primary);
}

.pricing-card-box .badge-plan.featured-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pricing-card-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-card-box .price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 25px;
}

.pricing-card-box .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-card-box .period {
  font-size: 14px;
  color: #0ba4fa;
  margin-left: 4px;
}

.pricing-card-box.featured .period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card-box ul.features-list {
  margin-bottom: 30px;
  padding-left: 0 !important;
}

.pricing-card-box ul.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-card-box.featured ul.features-list li {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.pricing-card-box ul.features-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pricing-card-box ul.features-list li .check-icon {
  color: #22C55E;
}

.pricing-card-box ul.features-list li .cross-icon {
  color: #CBD5E1;
}

.pricing-card-box.featured ul.features-list li .cross-icon {
  color: rgba(255, 255, 255, 0.15);
}

.experience-icon-boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.exp-icon-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.exp-icon {
  width: 90px;
  height: 90px;
  background-color: #f2f9fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exp-icon i {
  font-size: 36px;
  color: var(--primary);
}

.exp-content h6 {
  font-size: 22px;
  font-weight: 700;
  color: #08081D;
  margin-bottom: 10px;
}

.exp-content p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── EXPERIENCE GRID & VIDEO LIGHTBOX ── */
.experience-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.video-preview-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

.video-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview-box .play-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(8, 8, 29, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn-ripple {
  position: absolute;
  width: 84px;
  height: 84px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transition: var(--transition);
}

.play-btn-ripple:hover {
  transform: translate(-50%, -50%) scale(1.1) ! IMPORTANT;
  /* transform: scale(1.1); */
  background-color: var(--primary);
  color: #fff;
}

.play-btn-ripple svg {
  width: 24px;
  height: 24px;
}

.play-btn-ripple::after,
.play-btn-ripple::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: play-ripple 2s linear infinite;
  opacity: 0;
  z-index: -1;
}

.play-btn-ripple::before {
  animation-delay: 1s;
}

@keyframes play-ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ── BENEFITS GRID 2 (LIFETIME ACCESS GRID) ── */
.benefits-grid-two {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.benefits-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card-two {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.benefit-card-two:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-card-two .icon-circle {
  width: 50px;
  height: 50px;
  /* background-color: rgba(255, 116, 21, 0.1); */
  background-color: #eef7ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.benefit-card-two h6 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card-two p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

/* ── TEAM MEMBERS SECTION ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.team-member-card {
  background-color: transparent;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}

.team-member-card.offset {
  margin-top: 40px;
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.team-member-card .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.team-member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}

.team-member-card:hover img {
  transform: scale(1.05);
}

.team-member-card .social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 190px;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.team-member-card:hover .social-overlay {
  opacity: 1;
}

.team-member-card .social-links {
  display: flex;
  gap: 8px;
}

.team-member-card .social-links a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background-color 0.3s;
}

.team-member-card .social-links a:hover {
  background-color: var(--primary);
}

.team-member-card .info-box {
  position: relative;
  z-index: 3;
  width: 100%;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member-card .info-box h6 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.team-member-card .info-box span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

/* ── SERVICES / SUBJECTS GRID ── */
.services-subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-subject-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 35px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-subject-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: var(--transition);
  z-index: 2;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.service-subject-card:hover::before {
  height: 100%;
}

.service-subject-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-subject-card .icon-wrap {
  width: 60px;
  height: 60px;
  background-color: var(--light);
  color: var(--dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-subject-card:hover .icon-wrap {
  background-color: var(--primary);
  color: #fff;
}

.service-subject-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-subject-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* ── STEPS SECTION ── */
.steps-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.steps-layout::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed var(--border);
  z-index: -1;
}

.step-item-box {
  text-align: center;
  position: relative;
}

.step-number {
  width: 90px;
  height: 90px;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-item-box:hover .step-number {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255, 116, 21, 0.2);
}

.step-item-box h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-item-box p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* ── STATS & VIDEO LIGHTBOX ── */
.stats-video-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

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

.stat-mini-card {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.stat-mini-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.stat-mini-card p {
  font-size: 13px;
  color: var(--text);
}

/* ── MOBILE APP DOWNLOAD BANNER ── */
.mobile-app-banner {
  background-color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mobile-app-banner .app-shapes img {
  position: absolute;
  opacity: 0.05;
}

.mobile-app-banner h2 {
  font-size: clamp(24px, 4vw, 38px);
  color: #fff;
  margin-bottom: 15px;
}

.mobile-app-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 500px;
}

.download-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  transition: var(--transition);
}

.download-btn:hover {
  background-color: #fff;
  color: var(--dark);
  border-color: #fff;
}

.download-btn svg {
  width: 24px;
  height: 24px;
}

/* ── EVENTS LIST ── */
.events-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.event-row-item {
  background: linear-gradient(135deg, rgba(255, 230, 220, 0.6) 0%, rgba(255, 255, 255, 0.9) 30%, #fff 100%);
  border: none;
  border-radius: 24px;
  padding: 40px;
  display: flex !important;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.event-row-item>div:last-child {
  display: none !important;
}

.event-row-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.event-row-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/hero_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.event-row-item::after {
  content: '\f061';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-size: 50px;
  color: #fff;
  opacity: 0;
  z-index: 11;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.event-row-item:hover::before,
.event-row-item:hover::after {
  opacity: 1;
}

.event-row-item:hover::after {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
}

.event-date-box {
  background: transparent !important;
  padding: 0 !important;
  text-align: left;
  flex: 0 0 100px;
}

.event-row-item:hover .event-date-box {
  background: transparent;
}

.event-date-box .day {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--primary) !important;
}

.event-date-box .month {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  margin-top: 8px;
  text-transform: uppercase;
}

.event-info-box {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  flex: 1 1 500px;
}

.event-info-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.4;
  flex: 1 1 250px;
}

.event-info-box h4 a {
  color: inherit;
  text-decoration: none;
}

.event-info-box h4 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 20;
}

.event-info-box h4 a:hover {
  color: var(--primary);
}

.event-info-box p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
  flex: 2 1 250px;
}

.event-meta-box {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #555;
  align-items: flex-start;
  flex: 0 0 150px;
}

.event-meta-box span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta-box span i {
  color: var(--primary);
  font-size: 18px;
}

nt-size: 14px;
color: #555;
align-items: flex-start;
}

.event-meta-box span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta-box span i {
  color: var(--primary);
  font-size: 18px;
}

/* ── BLOG GRIDS ── */
.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.blog-card-item {
  background-color: #3b2318;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 380px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.blog-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-card-item .thumb {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.blog-card-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.blog-card-item:hover .thumb img {
  opacity: 1;
  transform: scale(1.05);
}

.blog-card-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card-item:hover::before {
  opacity: 1;
}

.blog-card-item::after {
  content: '\f061';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  z-index: 5;
  transition: all 0.4s ease;
}

.blog-card-item:hover::after {
  background-color: #fff;
  color: #3b2318;
}

.blog-card-item .cat-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #f05c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 5;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}

.blog-card-item:hover .cat-badge {
  opacity: 0;
}

.blog-card-item .body {
  position: relative;
  z-index: 5;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-item .date {
  display: none;
}

.blog-card-item h5 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 45px;
  color: #fff;
  line-height: 1.4;
  transition: transform 0.4s ease;
}

.blog-card-item:hover h5 {
  transform: translateY(70px);
}

.blog-card-item h5 a {
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease;
  padding-bottom: 2px;
}

.blog-card-item:hover h5 a {
  background-size: 100% 2px;
}

.blog-card-item h5 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 20;
}

.blog-card-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(70px);
  transition: all 0.4s ease;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-item:hover p {
  opacity: 1;
  visibility: visible;
}

/* ── FAQ & CONTACT FORM ── */
.faq-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Form styling */
.contact-form-box {
  background-color: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-box p {
  font-size: 14px;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full {
  grid-column: span 2;
}

.form-control-custom {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}

.form-control-custom::placeholder {
  color: #a0aab4;
  font-weight: 400;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 116, 21, 0.1);
}

select.form-control-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a7c92' d='M6 8.825L0.575 3.4 1.4 2.575 6 7.175 10.6 2.575 11.425 3.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.checkbox-group input {
  margin-top: 4px;
  accent-color: var(--primary);
}

/* ── CTA SECTION ── */
.cta-banner-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cta-card-box {
  background-color: var(--dark);
  background-image: url('https://motivoweb.com/nori/wp-content/themes/nori/assets/images/bg-titlebar.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-card-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(8, 8, 29, 0.85);
  z-index: -1;
}

.cta-card-box.alt::before {
  /* background-color: rgba(255, 116, 21, 0.9); */
  background-color: #0ba2fab3;
}

.cta-card-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-card-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 400px;
}

/* ── FOOTER ── */
.footer-main {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main h5 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-main h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-logo img {
  height: 80px !important;
  margin-bottom: 20px;
}

.footer-main p {
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-social-icons a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-links-list {
  padding-left: 0;
}

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

.footer-links-list li a {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links-list li a svg {
  width: 10px;
  height: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-list li svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--primary);
}

.footer-newsletter-form {
  position: relative;
}

.footer-newsletter-form input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 130px 14px 20px;
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font-body);
  outline: none;
}

.footer-newsletter-form input:focus {
  border-color: var(--primary);
}

.footer-newsletter-form button {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 0 25px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ── MODALS & POPUPS ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 8, 29, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-wrapper {
  background-color: #fff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-wrapper {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--primary);
}

/* Video modal specific */
.video-modal-wrapper {
  max-width: 800px;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.video-modal-wrapper .video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-modal-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FLOATING SCROLL TOP BUTTON ── */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(255, 116, 21, 0.3);
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  background-color: var(--primary-hover);
}

.scroll-top-btn svg {
  width: 18px;
  height: 18px;
}

/* ── SCROLL FADE IN ANIMATION ── */
[data-scroll] {
  opacity: 0;
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-member-card.offset {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .navbar-container {
    padding: 0 15px;
  }

  .nav-menu {
    display: none;
  }

  .navbar-container>.d-flex {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .hero-section {
    padding: 120px 0 80px;
  }

  .features-three-col {
    padding: 60px 0 30px;
  }

  .feature-box-style3 {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .benefits-stats-container,
  .pricing-section-container,
  .experience-layout,
  .benefits-grid-two,
  .stats-video-layout,
  .mobile-app-banner,
  .faq-contact-layout,
  .cta-banner-two {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-app-banner {
    padding: 40px;
  }

  .event-row-item {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }

  .event-meta-box,
  .event-row-item>div:last-child {
    grid-column: span 2;
  }

  .blog-grid-layout,
  .services-subjects-grid,
  .steps-layout {
    grid-template-columns: 1fr;
  }

  .steps-layout::after {
    display: none;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-padding {
    padding: 70px 0;
  }

  .sec-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    gap: 25px;
  }

  .hero-stat-item .num {
    font-size: 26px;
  }

  .stats-cards-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .cta-card-box {
    padding: 30px;
  }
}

/* ── PAGE HEADER (SUBPAGES) ── */
.page-header {
  background: linear-gradient(135deg, #090924 0%, #15154c 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-header .breadcrumb-item {
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}

.page-header .breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.page-header .breadcrumb-item.active {
  color: #fff;
  opacity: 0.8;
}

.page-header .glow-orb {
  position: absolute;
  filter: blur(40px);
  pointer-events: none;
}

/* ── CLIENTS LOGO GRID ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.client-logo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.client-logo-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.client-logo-card span {
  color: #fff;
  font-weight: 600;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* ── GALLERY SECTION ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 29, 0.9) 0%, rgba(8, 8, 29, 0.2) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}

.gallery-overlay span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(255, 116, 21, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ==================== 26. COURSE DETAILS PAGE ==================== */

.course-detail-box {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.course-detail-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #08081D;
  position: relative;
  padding-bottom: 15px;
}

.course-detail-box h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 4px;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  font-size: 18px;
  color: #08081D;
  background-color: #fff;
  padding: 20px 25px;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #f2f9fe;
  color: var(--primary);
}

.custom-accordion .accordion-button::after {
  background-size: 16px;
}

.custom-accordion .accordion-body {
  padding: 0 25px 20px;
  background-color: #f2f9fe;
}

.lesson-list li span {
  font-size: 15px;
  color: #555;
  font-weight: 500;
}

.lesson-list li .badge {
  font-weight: 600;
  font-size: 12px;
  padding: 6px 10px;
}

.course-sidebar-card {
  border: 1px solid var(--border);
}

.course-features-list li span {
  font-size: 15px;
}

.course-features-list li span i {
  color: var(--primary);
  width: 20px;
  text-align: center;
}


/* ==================== 27. NEW COURSE DETAILS LAYOUT ==================== */

.course-tabs .nav-link {
  color: #08081D;
  border: 1px solid var(--border);
  font-weight: 600;
  background-color: transparent;
  transition: all 0.3s ease;
}

.course-tabs .nav-link:hover {
  background-color: #f8f9fa;
  border-color: #ddd;
}

.course-tabs .nav-link.active {
  background-color: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

.course-main-wrapper {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
}

.why-ai-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

}

.our-founders-section {
  background-color: #f8fafc !important;
  /* Soft premium background */
  position: relative;
  overflow: hidden;
}

/* Background glowing orbs for founders section */
.our-founders-section::before,
.our-founders-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 164, 250, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.our-founders-section::before {
  top: 10%;
  left: -100px;
}

.our-founders-section::after {
  bottom: 10%;
  right: -100px;
}

.our-founders-section .container {
  position: relative;
  z-index: 1;
}

.our-founders-section .founder-card {
  position: relative;
  padding: 35px 40px;
  background: linear-gradient(145deg, #ffffff 0%, #fcfdfe 100%);
  border: 1px solid rgba(11, 164, 250, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(11, 164, 250, 0.03), 0 2px 8px rgba(8, 8, 29, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  margin-bottom: 30px;
}

/* Quote background decorative mark */
.our-founders-section .founder-card::after {
  content: '“';
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 150px;
  line-height: 1;
  font-family: 'Bricolage Grotesque', Georgia, serif;
  font-weight: 800;
  color: rgba(11, 164, 250, 0.04);
  pointer-events: none;
  z-index: 0;
  transition: all 0.4s ease;
}

.our-founders-section .founder-card:hover::after {
  color: rgba(11, 164, 250, 0.07);
  transform: scale(1.08) translateY(-5px);
}

/* Left accent line indicator */
.our-founders-section .founder-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}

.our-founders-section .founder-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 164, 250, 0.22);
  box-shadow: 0 20px 45px rgba(11, 164, 250, 0.08), 0 4px 12px rgba(8, 8, 29, 0.04);
}

.our-founders-section .founder-card:hover::before {
  width: 8px;
}

/* Image wrapper styling */
.our-founders-section .founder-card .founder-image {
  position: relative;
  display: inline-block;
  padding: 6px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11, 164, 250, 0.08) 0%, rgba(68, 46, 102, 0.08) 100%);
  box-shadow: 0 8px 24px rgba(8, 8, 29, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

.our-founders-section .founder-card .founder-image img {
  border-radius: 18px;
  width: 100%;
  max-width: 180px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  aspect-ratio: 1 / 1;
  border: 4px solid #ffffff;
  margin-bottom: 0 !important;
}

.our-founders-section .founder-card:hover .founder-image {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 12px 30px rgba(11, 164, 250, 0.16);
}

/* Founder details layout styling */
.our-founders-section .founder-info {
  position: relative;
  z-index: 1;
}

.our-founders-section .founder-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--font-title);
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.our-founders-section .founder-card:hover .founder-info h3 {
  color: var(--primary);
}

/* Badges group styling */
.founder-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  align-items: center;
}

.founder-badge-role {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background-color: rgba(11, 164, 250, 0.08);
  color: var(--primary);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-badge-company {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background-color: rgba(68, 46, 102, 0.08);
  color: var(--secondary);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-badge-credential {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background-color: rgba(68, 46, 102, 0.05);
  color: var(--secondary);
  border: 1px dashed rgba(68, 46, 102, 0.2);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

/* Narrative content spacing */
.our-founders-section .founder-info p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}

.our-founders-section .founder-info p:last-child {
  margin-bottom: 0;
}

/* Quotes/Important Highlights */
.our-founders-section .founder-quote-intro {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  font-style: italic;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  margin-bottom: 18px;
}

.our-founders-section .founder-quote-outro {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  background: linear-gradient(135deg, rgba(11, 164, 250, 0.05) 0%, rgba(68, 46, 102, 0.04) 100%);
  padding: 15px 22px;
  border-radius: 14px;
  border-left: 4px solid var(--primary);
  margin-top: 20px;
  display: inline-block;
  line-height: 1.6;
}

/* Team and Profile Section Overrides */
.team-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card h2 {
  font-size: 22px;
  font-weight: 700;
}

.team-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.team-position {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-section {
  flex-wrap: wrap;
}

.profile-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(8, 8, 29, 0.08);
}

.linkedin-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 18px;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.linkedin-btn:hover {
  background: #0a66c2;
  color: #fff;
  border-color: #0a66c2;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.2);
}

.thought-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.thought-box h5 {
  margin-bottom: 12px;
  font-weight: 700;
}

.thought-box p {
  color: var(--text);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .our-founders-section .founder-card {
    padding: 30px 25px;
  }

  .our-founders-section .founder-card .founder-image img {
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .team-card {
    padding: 20px;
  }

  .profile-section {
    text-align: center;
    justify-content: center;
  }

  .profile-section .ms-4 {
    margin-left: 0 !important;
    margin-top: 20px;
  }
}