/* ==========================================================================
   EXACT LIVE SITE BASE TYPOGRAPHY & RESET
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: var(--text-main-color, #545454);
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Live Site Fluid Font Size Scaling */
@media screen and (min-width: 576px) {
  body {
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1600 - 300)));
  }
}

@media screen and (min-width: 1000px) {
  body {
    font-size: 16px;
  }
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-highlight { color: var(--color-orange-500); }

/* Section Header Reusable Utility */
.section-header {
  margin-bottom: var(--space-10);
}

.section-header__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}

.section-header__subtitle {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--soft {
  background-color: var(--color-blue-50);
  color: var(--color-blue-600);
  border: 1px solid var(--color-blue-100);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn--primary.btn--orange {
  background-color: var(--color-orange-500);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.btn--primary.btn--orange:hover {
  background-color: var(--color-orange-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.btn--outline {
  border: 1px solid var(--color-blue-600);
  color: var(--color-blue-600);
  background: transparent;
}

.btn--outline:hover {
  background-color: var(--color-blue-600);
  color: var(--text-white);
}

.btn--text {
  color: var(--text-primary);
  padding: var(--space-2) var(--space-4);
}

.btn--text:hover {
  color: var(--color-orange-500);
}

.btn--full {
  width: 100%;
}


/* ==========================================================================
   HEADER SECTION (100% Screenshot Visual Match)
   ========================================================================== */

.site-header {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: wvSlideDown 0.3s ease;
}

/* top-bar ko sticky state me hide kar do taaki header chota dikhe */
.site-header.is-sticky .top-bar {
  display: none;
}

/* content jump na ho isliye body me spacer push karo */
body.has-sticky-header {
  padding-top: 73.64px; /* .main-header ki height */
}

@keyframes wvSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* 1. Top Navy Blue Bar (Height: 38.5px) */
.top-bar {
  background-color: #061c3a; /* Dark Navy Blue */
  color: #ffffff;
  height: 38.5px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.top-bar__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
}

.top-bar__item:hover {
  color: #f0f0f0;
}

.top-bar__icon {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
}

/* 2. Main White Header Bar (Height: 73.64px) */
.main-header {
  height: 73.64px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}

.main-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

/* Logo Alignment */
.brand-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-logo__text {
  font-size: 2.25rem; /* ~36px */
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo__blue {
  color: #0072ce; /* Bright Royal Blue */
}

.brand-logo__orange {
  color: #ff6000; /* Vibrant Orange */
}

.brand-logo__tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.01em;
  margin-top: 2px;
}

/* Integrated Search Box */
.wvmm-dropdown {
  flex: 1;
  max-width: 480px;
  margin: 0 16px;
  position: relative;
}

.wvmm-search-box-wrapper{
    flex: 1;
    max-width: 480px;
    margin: 0 16px;
    position: relative;
}

.wvmm-search-box {
    display: flex;
    align-items: center;
    border: 1px solid #dcdfe6;
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;
    height: 42px;
}

.wvmm-search-box__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #eef4f9; /* Light Ice-Blue Tint */
  border: none;
  border-right: 1px solid #dcdfe6;
  padding: 0 14px;
  height: 100%;
  font-size: 0.88rem;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  white-space: nowrap;
}

.wvmm-search-box__grid-icon {
  width: 16px;
  height: 16px;
}

.search-box__caret {
  width: 16px;
  height: 16px;
  margin-left: -2px;
}

.wvmm-search-box__form {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
}

.wvmm-search-box__input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 0.88rem;
  color: #333333;
}

.wvmm-search-box__input::placeholder {
  color: #888888;
}

.wvmm-search-box__submit-btn {
  background: transparent;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wvmm-search-box__submit-btn svg {
  width: 20px;
  height: 20px;
}

/* Header Right Actions */
.main-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link-item:hover {
  color: var(--color-link-hover) !important;
}

.nav-link-separator {
  display: inline-block;
}

/* Orange Login Button */
.btn-orange-login {
  background-color: #016ad8;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.btn-orange-login:hover {
  background-color: var(--color-link-hover) !important;
}

/* Cart Icon Button */
.cart-icon-btn {
  position: relative;
  background-color: #e8f1f8;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cart-icon-btn svg {
  width: 22px;
  height: 22px;
}

.cart-icon-btn__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #ff6000;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: #222222;
}

/* Responsive Hide Rules */
@media screen and (max-width: 992px) {
  .top-bar {
    display: none; /* Hide topbar on mobile */
  }
  .wvmm-dropdown {
    display: none;
  }
  .main-header__actions .nav-link-item,
  .main-header__actions .nav-link-separator {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* ==========================================================================
   HEADER RIGHT ACTIONS & DYNAMIC MEGA MENU STYLING
   ========================================================================== */

/* Main Header Container Alignment */
.main-header__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Header Actions (Right Side) */
.main-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link-item {
  font-size: 0.92rem;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link-item:hover {
  color: var(--color-link-hover) !important;
}

.nav-link-separator {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Solid Orange Login Button */
.btn-orange-login
 {
    background-color: #016ad8;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-block;
}

.btn-orange-login:hover {
  background-color: var(--color-link-hover) !important;
}

/* Ice Blue Cart Icon with Orange Counter Badge */
.cart-icon-btn {
  position: relative;
  background-color: #e8f1f8;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 4px;
}

.cart-icon-btn svg {
  width: 20px;
  height: 20px;
}

.cart-icon-btn__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #016ad8;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dynamic Mega Menu Popup Box */
.wvmm-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  z-index: 10000;
  border: 1px solid #e2e8f0;
}

.wvmm-dropdown.is-active {
  display: grid;
  animation: dropdownFadeIn 0.2s ease forwards;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left White Category Items */
.wvmm-dropdown__categories {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  border-right: 1px solid #e2e8f0;
  overflow-y: auto;
}

.wvmm-dropdown__category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.15s ease;
}

.wvmm-dropdown__category-item.is-active,
.wvmm-dropdown__category-item:hover {
  color: var(--color-link-hover) !important;
  font-weight: 600;
  background-color: #f8fafc;
}

.wvmm-dropdown__category-item.is-active .arrow,
.wvmm-dropdown__category-item:hover .arrow {
  color: var(--color-link-hover) !important;
  font-weight: bold;
}

/* Right Side Royal Blue Subcourses Panel */
.wvmm-dropdown__subcourses {
  background-color: #2575fc; /* Exact Royal Blue */
  padding: 8px 0;
  overflow-y: auto;
}

.wvmm-dropdown__subcourses-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wvmm-dropdown__subcourse-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wvmm-dropdown__subcourse-link {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.wvmm-dropdown__subcourse-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  padding-left: 24px;
}

/* ==========================================================================
   DYNAMIC MEGA MENU DROPDOWN (Image 1 & 2 Exact Match)
   ========================================================================== */

.wvmm-dropdown {
  position: relative;
}

.wvmm-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none; /* Hidden by default */
  overflow: hidden;
  z-index: 10000;
  border: 1px solid #e2e8f0;
}

/* Open State (Flex row allows right panel to appear next to left categories) */
.wvmm-dropdown.is-active {
  display: flex !important;
  animation: dropdownFadeIn 0.2s ease forwards;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left Categories List */
.wvmm-dropdown__categories {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  width: 270px;
  min-width: 270px;
  border-right: 1px solid #e2e8f0;
  overflow-y: auto;
}

.wvmm-dropdown__category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.15s ease;
}

.wvmm-dropdown__category-item.is-active,
.wvmm-dropdown__category-item:hover {
  color: #0072ce;
  font-weight: 600;
  background-color: #f8fafc;
}

.wvmm-dropdown__category-item.is-active .arrow,
.wvmm-dropdown__category-item:hover .arrow {
  color: var(--color-link-hover) !important;
  font-weight: bold;
}

/* Right Side Royal Blue Panel (Hidden initially until category hover) */
.wvmm-dropdown__subcourses {
  background-color: #2575fc; /* Exact Royal Blue */
  padding: 8px 0;
  width: 310px;
  min-width: 310px;
  overflow-y: auto;
  display: none; /* Hidden by default until hover */
}

.wvmm-dropdown__subcourses-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wvmm-dropdown__subcourse-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wvmm-dropdown__subcourse-link {
  display: block;
  padding: 11px 20px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.wvmm-dropdown__subcourse-link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  padding-left: 24px;
}


/* ==========================================================================
   EXACT HERO BANNER & FEATURE STRIP (100% MATCH)
   ========================================================================== */

/* Hero Section */
.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 560px;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0) 100%
    ),
    url('https://tan-mosquito-852719.hostingersite.com/wp-content/uploads/2026/08/hero-image.webp'); /* Dummy High-Res Image */
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-banner__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-banner__content {
  max-width: 580px;
  color: #ffffff;
}

.hero-banner__title {
  font-size: 2.75rem; /* ~44px */
  font-weight: 300;   /* Clean light/regular font */
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero-banner__subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* White Pill Search Box */
.hero-banner__search {
  max-width: 440px;
}

.hero-banner__search-form {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 4px 6px 4px 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-banner__search-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #333333;
  background: transparent;
  padding: 10px 0;
}

.hero-banner__search-input::placeholder {
  color: #666666;
}

.hero-banner__search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner__search-btn svg {
  width: 20px;
  height: 20px;
}

/* Feature Strip (Dark Navy Blue Bar) */
.feature-strip {
  background-color: #061c3d; /* Exact Dark Navy Blue */
  color: #ffffff;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-strip__container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-strip__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px stroke rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.feature-strip__icon svg {
  width: 26px;
  height: 26px;
}

.feature-strip__text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Floating Chat Button */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #475569;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.2s ease;
}

.chat-widget:hover {
  background-color: #334155;
}

.chat-widget svg {
  width: 18px;
  height: 18px;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 992px) {
  .feature-strip__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 40px;
  }
}

@media screen and (max-width: 768px) {
  .hero-banner__title {
    font-size: 2rem;
  }
  .hero-banner {
    min-height: 420px;
  }
}


/* --------------------------------------------------------------------------
   5. REUSABLE COURSE CARD & SECTIONS
   -------------------------------------------------------------------------- */
.courses-section {
  padding: var(--space-12) 0;
}

.courses-section--alt {
  background-color: var(--bg-secondary);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.course-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-blue-100);
}

/* Card Header Banner */
.course-card__header {
  position: relative;
  height: 140px;
  background-color: var(--color-primary);
  overflow: hidden;
}

.course-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background-color: var(--color-orange-500);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  z-index: 2;
  text-transform: uppercase;
}

.course-card__image-holder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  padding: var(--space-4);
}

.course-card__image-holder--ai { background: linear-gradient(135deg, #1e1b4b, #312e81); }
.course-card__image-holder--security { background: linear-gradient(135deg, #064e3b, #047857); }
.course-card__image-holder--salesforce { background: linear-gradient(135deg, #0369a1, #0284c7); }
.course-card__image-holder--aws { background: linear-gradient(135deg, #7c2d12, #c2410c); }
.course-card__image-holder--python { background: linear-gradient(135deg, #1e293b, #334155); }
.course-card__image-holder--splunk { background: linear-gradient(135deg, #831843, #be185d); }
.course-card__image-holder--mlops { background: linear-gradient(135deg, #312e81, #4338ca); }
.course-card__image-holder--devops { background: linear-gradient(135deg, #0f172a, #1e293b); }
.course-card__image-holder--azure { background: linear-gradient(135deg, #1e40af, #2563eb); }
.course-card__image-holder--data { background: linear-gradient(135deg, #14532d, #15803d); }
.course-card__image-holder--claude { background: linear-gradient(135deg, #451a03, #78350f); }

.course-card__topic-icon {
  font-size: 2rem;
  margin-bottom: var(--space-1);
}

.course-card__image-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
}

/* Card Body */
.course-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.course-card__rating {
  color: #eab308;
  font-weight: var(--font-weight-semibold);
}

.course-card__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-2);
}

.course-card__title a:hover {
  color: var(--color-blue-600);
}

.course-card__instructor {
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.course-card__pricing {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.course-card__price-current {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.course-card__price-original {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  text-decoration: line-through;
}

.course-card__discount {
  font-size: var(--font-size-xs);
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  margin-left: auto;
}

/* Card Footer Flex Alignment */
.course-card__footer {
  padding: 10px 16px;
  border-top: 1px solid #f0f4f8;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  background-color: #ffffff;
  margin-top: auto;
}

/* Duration Wrapper */
.course-card__duration {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.82rem !important;
  color: #666666 !important;
  font-weight: 500;
}

/* STRICT FIX FOR CLOCK SVG ICON SIZE */
.course-card__footer svg,
.course-card__duration svg,
.clock-icon,
.duration-icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  vertical-align: middle;
}

/* Wishlist Button & Heart Icon Size */
.wishlist-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wishlist-btn svg,
.heart-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  display: block !important;
}


/* --------------------------------------------------------------------------
   6. EXPLORE CATEGORIES
   -------------------------------------------------------------------------- */
.categories-section {
  padding: var(--space-16) 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.category-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: all var(--transition-normal);
}

.category-card:hover {
  border-color: var(--color-orange-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-card__icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 2px;
}

.category-card__link {
  font-size: var(--font-size-xs);
  color: var(--color-blue-600);
  font-weight: var(--font-weight-semibold);
}

.category-card:hover .category-card__link {
  color: var(--color-orange-500);
}


/* --------------------------------------------------------------------------
   7. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-us {
  padding: var(--space-16) 0;
  background-color: var(--bg-secondary);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.why-card {
  background-color: var(--bg-card);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal);
}

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

.why-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.why-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-3);
}

.why-card__desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}


/* --------------------------------------------------------------------------
   8. TRUSTED COMPANIES
   -------------------------------------------------------------------------- */
.trusted-companies {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-main);
}

.trusted-companies__title {
  text-align: center;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}

.trusted-companies__logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.company-logo {
  font-size: 1.25rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.company-logo:hover {
  opacity: 1;
  color: var(--color-primary);
}


/* --------------------------------------------------------------------------
   9. DUAL CTA BANNERS
   -------------------------------------------------------------------------- */
.dual-cta {
  padding: var(--space-16) 0;
}

.dual-cta__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.cta-banner {
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner--instructor {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.cta-banner--corporate {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.cta-banner__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-3);
}

.cta-banner__desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  max-width: 420px;
}


/* --------------------------------------------------------------------------
   10. NEWSLETTER SECTION
   -------------------------------------------------------------------------- */
.newsletter {
  background-color: var(--color-primary);
  color: var(--text-white);
  padding: var(--space-16) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter__content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-3);
}

.newsletter__desc {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.newsletter__form {
  display: flex;
  gap: var(--space-3);
  background-color: rgba(255, 255, 255, 0.08);
  padding: var(--space-2);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  color: var(--text-white);
  font-size: var(--font-size-sm);
}

.newsletter__input::placeholder {
  color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-primary);
  color: var(--text-muted);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
  font-size: var(--font-size-sm);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer__logo {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.footer__logo-primary {
  font-size: 1.75rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-white);
}

.footer__logo-secondary {
  font-size: 1.75rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-orange-500);
}

.footer__about {
  line-height: var(--line-height-base);
  margin-bottom: var(--space-6);
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  transition: background-color var(--transition-fast);
}

.footer__social-icon:hover {
  background-color: var(--color-orange-500);
}

.footer__heading {
  color: var(--text-white);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-5);
}

.footer__list li {
  margin-bottom: var(--space-3);
}

.footer__list a:hover {
  color: var(--color-orange-500);
}

.footer__contact-list li {
  margin-bottom: var(--space-3);
}

.footer__contact-list strong {
  color: var(--text-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-xs);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-links a:hover {
  color: var(--text-white);
}


/* --------------------------------------------------------------------------
   12. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-orange-500);
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: var(--z-popover);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-orange-600);
  transform: translateY(-3px);
}

/* ==========================================================================
   FEATURE STRIP STYLING (Exact Height: 83.19px & #07264d Live Color)
   ========================================================================== */

.feature-strip {
  background-color: #07264d; /* Exact Live Site Dark Navy Blue */
  color: #ffffff;
  height: 83.19px;           /* Exact Specified Height */
  display: flex;
  align-items: center;
  width: 100%;
}

.feature-strip__container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around; /* Distributes 3 items evenly */
  height: 100%;
  gap: 20px;
}

.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-strip__icon-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-strip__icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.feature-strip__text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ==========================================================================
   LIVE SITE 4:3 ASPECT RATIO IMAGE & CARD STYLING
   ========================================================================== */

.home-category-tabs {
  background-color: #ffffff;
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
/*     color: #000000 !important; */
    margin-bottom: 28px;
    font-family: "Inter", sans-serif;
	/* Dynamic Brand Gradient Colors */
    background: linear-gradient(90deg, var(--color-deep-navy, #0A3D91), var(--color-electric-blue, #3B82F6));
    
    /* Text Clipping for Gradient Effect */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Fallback color if gradient fails on older browsers */
    color: var(--color-dark-text, #0F172A);
}

/* 4:3 Aspect Ratio Image Container (padding-bottom: 75%) */
.course-card__figure {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Live site exact ratio */
  margin: 0;
  overflow: hidden;
  background-color: #f8fafc;
}

.course-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-card__img {
  transform: scale(1.03);
}

.course-card__title a {
  color: #000000;
  text-decoration: none;
}

.course-card__title a:hover {
  color: var(--color-blue-royal);
}

.stars-wrap .star {
  color: orange;
  font-size: 0.82rem;
}

/* ==========================================================================
   LIVE MATCHED TEASER CARD STYLING
   ========================================================================== */

.teaser-item-div {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teaser-item-div:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* 4:3 Aspect Ratio Image Container */
.figure-hold {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  margin: 0 0 10px 0;
  overflow: hidden;
  border-radius: 2px;
  background-color: #f8fafc;
}

.figure-hold img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Typography & Layout */
.card-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.teaser-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #222222;
  line-height: 1.35;
  margin-bottom: 4px;
  min-height: 38px;
}

.teaser-name:hover {
  color: #0072ce;
}

.actual-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #000000;
  display: block;
  margin-top: 4px;
}

/* Stars & Rating */
.hm-product-rating-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.stars-list {
  display: flex;
  gap: 2px;
}

.stars-list .bi-star-fill {
  color: var(--color-link-hover) !important;;
  font-size: 0.78rem;
}

.rating-count {
  font-size: 0.78rem;
  color: #666666;
}

/* Card Footer: Clock & Wishlist Heart */
.listview-duration-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
  margin-top: 10px;
}

.listview-hrs {
  font-size: 0.8rem;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.listview-hrs i.bi-clock {
  color: #0072ce;
  font-size: 0.88rem;
}

.wishlist-button i.bi-suit-heart {
  font-size: 0.95rem;
  color: #333333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.wishlist-button i.bi-suit-heart:hover {
  color: var(--color-link-hover) !important;
}

.product-list-title {
    padding: 10px;
}

/* ==========================================================================
   EXPLORE CATEGORIES SECTION STYLING
   ========================================================================== */

#featured_categories_5326 {
  background-color: #ffffff;
  padding-bottom: 3.6rem !important;
}

/* 3 Column Grid Layout */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-category-card {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home-category-card__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-category-card__figure {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-category-card__figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.homecategory-list-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 6px;
  line-height: 1.3;
}

.btn-view-all {
  color: #0072ce;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.home-category-card:hover .btn-view-all {
  color: var(--color-link-hover) !important;
}

/* ==========================================================================
   EXPLORE CATEGORIES SECTION STYLING
   ========================================================================== */

#featured_categories_5326 {
  background-color: #ffffff;
  padding-bottom: 3.6rem !important;
}

/* 3 Column Grid Layout */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-category-card {
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home-category-card__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-category-card__figure {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-category-card__figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.homecategory-list-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000000 !important;
  margin-bottom: 6px;
  line-height: 1.3;
}

.btn-view-all {
  color: #0072ce;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

.home-category-card:hover .btn-view-all {
  color: var(--color-link-hover) !important;
}

/* ==========================================================================
   WHY US SECTION STYLING (Matching First Image 100%)
   ========================================================================== */

#text_column_images_5327 {
  background-color: #f0f5fc !important; /* Soft Ice Blue Background */
  padding-top: 3.5rem !important;
  padding-bottom: 4rem !important;
}

.why-us-title-hold .section-title {
  font-size: 28px;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 28px;
    font-family: "Inter", sans-serif;
}

/* 3 Columns Grid Layout */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Clean White Card (No Orange Border) */
.why-us-card {
  background: #ffffff !important;
  border-radius: 8px !important;
  border: 1px solid transparent !important;
  padding: 48px 24px 40px !important;       /* Increased Top/Bottom Padding */
  min-height: 200px;                        /* Increased Height */
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid var(--color-link-hover) !important;
}

.why-us-card__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.why-us-card__title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #000000 !important;
  line-height: 1.35;
  margin: 0;
  max-width: 250px;
}

/* ==========================================================================
   TRUSTED BY TOP COMPANIES SECTION STYLING
   ========================================================================== */

#div_logo_5329 {
  background-color: #ffffff;
  padding: 2.5rem 0 3.5rem;
}

.logo-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px;
  width: 100%;
  scrollbar-width: none; /* Hide Scrollbar */
}

.logo-slider-track::-webkit-scrollbar {
  display: none;
}

/* White Logo Card Component */
.logo-card {
  flex: 0 0 calc(20% - 13px); /* 5 Logos visible on Desktop */
  min-width: 180px;
  height: 98px;
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Floating Circular Navigation Buttons */
.logo-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.logo-nav-btn:hover {
  background-color: #0072ce;
  color: #ffffff;
  border-color: #0072ce;
}

.logo-nav-btn.prev-btn {
  left: -18px;
}

.logo-nav-btn.next-btn {
  right: -18px;
}

/* ==========================================================================
   TRUSTED BY TOP COMPANIES (100% Match to Image 1)
   ========================================================================== */

#div_logo_5329 {
  background-color: #ffffff;
  padding: 3rem 0 3.5rem;
}

#div_logo_5329 .section-title {
  font-size: 28px;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 28px;
    font-family: "Inter", sans-serif;
}

.logo-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 6px;
  width: 100%;
  scrollbar-width: none; /* Hide scrollbar */
}

.logo-slider-track::-webkit-scrollbar {
  display: none;
}

/* Taller Card Height (155px) matching Image 1 exactly */
.logo-card {
  flex: 0 0 calc(20% - 15px); /* 5 Cards per row */
  min-width: 200px;
  height: 155px !important;    /* Height increased from 98px to 155px */
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04); /* Soft Shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;          /* Generous Padding */
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Bigger Logo Images Inside Card */
.logo-card img {
  max-width: 88% !important;
  max-height: 85% !important;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Navigation Circular Arrows */
.logo-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.logo-nav-btn:hover {
  background-color: #0072ce;
  color: #ffffff;
  border-color: #0072ce;
}

.logo-nav-btn.prev-btn {
  left: -20px;
}

.logo-nav-btn.next-btn {
  right: -20px;
}

/* Grab Hand Cursors for Drag-to-Scroll */
.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 12px 6px;
  width: 100%;
  scrollbar-width: none;
  cursor: grab;           /* Open Hand Cursor */
  user-select: none;      /* Prevents text selection while dragging */
}

.logo-slider-track.is-dragging {
  cursor: grabbing;      /* Closed Grabbing Hand Cursor */
  scroll-snap-type: none;/* Disables snap during active dragging for smooth feel */
  scroll-behavior: auto;
}

.logo-slider-track::-webkit-scrollbar {
  display: none;
}

/* Prevent image dragging interference */
.logo-card img {
  max-width: 88% !important;
  max-height: 85% !important;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none; /* Allows smooth mouse dragging over images */
}

/* ==========================================================================
   DUAL CTA SECTION STYLING (Left Card 42% | Right Card 56% Width)
   ========================================================================== */

#text_column_images_5332 {
  background-color: #ffffff;
  padding-top: 0.6rem !important;
  padding-bottom: 3.4rem !important;
}

/* Asymmetric Grid: 42% Left Column & 56% Right Column */
.dual-cta-grid {
  display: grid;
  grid-template-columns: 42% 56%; /* Exact 42% left card & 56% right card */
  justify-content: space-between;
  gap: 2%;
}

/* Card Container */
.cta-card {
  position: relative;
  border-radius: 12px;
  padding: 40px 32px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

/* Card Backgrounds */
.cta-card--instructor {
  background-color: #f1f1f1;
}

.cta-card--corporate {
  background-color: #f8f0f3;
}

/* Left Content Area */
.cta-card__content {
  position: relative;
  z-index: 2;
  max-width: 280px;
  width: 100%;
}

.cta-card__title {
  font-size: 2.1rem;
  font-weight: 300; /* Light thin font matching screenshot */
  color: #222222;
  line-height: 1.22;
  margin-bottom: 16px;
}

.cta-card__desc {
  font-size: 0.88rem;
  color: #444444;
  line-height: 1.48;
  margin-bottom: 24px;
}

/* Solid Orange CTA Button */
.btn-orange-cta {
  display: inline-block;
  background-color: #016ad8;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-orange-cta:hover {
  background-color: var(--color-link-hover) !important;
  transform: translateY(-2px);
}

/* Bottom-Right Illustration Images */
.cta-card__image-holder {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 200px; /* Constrained image width for Card 1 */
  max-height: 160px;
  z-index: 1;
  pointer-events: none;
}

/* Wider illustration image for Corporate Training Card 2 */
.cta-card--corporate .cta-card__image-holder {
  max-width: 280px;
  max-height: 165px;
}

.cta-card__image-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

/* ==========================================================================
   MEGA FOOTER STYLING (Dark Navy Blue #07264d & 100% Matched UI)
   ========================================================================== */

.site-footer {
  background-color: #07264d !important; /* Exact Dark Navy Blue */
  color: #ffffff !important;
  font-size: 0.85rem;
  line-height: 1.6;
}

.site-footer a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-link-hover) !important; /* Orange Hover */
}

/* 1. Newsletter Bar */
.footer-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.newsletter-heading {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 20px;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: #333333;
}

.btn-newsletter-subscribe {
  background-color: #016ad8;
  color: #ffffff;
  font-weight: 700;
  border: none;
  padding: 0 24px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.btn-newsletter-subscribe:hover {
  background-color: var(--color-link-hover);
}

/* 2. Main Footer Navigation Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
}

.footer-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 8px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 1.25rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--color-link-hover) !important;
  transform: translateY(-2px);
}

/* Payment Logos */
.payment-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-logos-row img {
  background: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
}

/* 3. SEO Footer Links Blocks */
.footer-seo-links-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-links-content {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.seo-links-content a {
  color: var(--color-link);
}

/* 4. Bottom Copyright Bar */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-policies {
  margin-left: 12px;
}

.powered-by a {
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   MEGA FOOTER DESKTOP FIX (Strict Image Sizing & Layout)
   ========================================================================== */

.site-footer {
  background-color: #07264d !important; /* Exact Dark Navy Blue */
  color: #ffffff !important;
  font-size: 0.85rem;
  line-height: 1.6;
  width: 100%;
}

.site-footer a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-link-hover) !important; /* Orange Hover */
}

/* 1. Newsletter Subscribe Bar */
.footer-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0;
}

.newsletter-heading {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-subtext {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 24px;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 16px;
  font-size: 0.9rem;
  color: #333333;
}

.btn-newsletter-subscribe {
  background-color: #016ad8;
  color: #ffffff;
  font-weight: 700;
  border: none;
  padding: 0 28px;
  cursor: pointer;
  font-size: 0.92rem;
  transition: background-color 0.2s ease;
}

.btn-newsletter-subscribe:hover {
  background-color: var(--color-link-hover) !important;
}

/* 2. Main Footer Navigation Grid */
.footer-main-links {
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list a {
  font-size: 0.88rem;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 1.35rem;
}

.footer-socials a:hover {
  color: var(--color-link-hover) !important;
}

/* STRICT FIX FOR PAYMENT LOGOS SIZE (PREVENTS GIANT IMAGE OVERFLOW) */
.payment-logos-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  padding: 20px 0 !important;
  margin: 24px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-logos-row img {
  height: 28px !important;
  max-height: 28px !important;
  width: auto !important;
  max-width: 65px !important;
  object-fit: contain !important;
  background: #ffffff !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

/* 3. SEO Footer Links Blocks */
.footer-seo-links-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.seo-links-group .footer-heading {
  margin-bottom: 8px;
}

.seo-links-content {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
}

.seo-links-content a {
  color: var(--color-link);
}

.seo-links-content a:hover {
  color: var(--color-link-hover) !important;
  text-decoration: underline;
}

/* 4. Bottom Copyright Bar */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

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

.footer-policies a {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 4px;
}

.footer-policies a:hover {
  color: #ffffff;
}

/* ==========================================================================
   DESKTOP FOOTER STYLING (100% Match to Image 1)
   ========================================================================== */

.site-footer {
  background-color: #07264d !important;
  color: #ffffff !important;
  font-size: 0.88rem;
  line-height: 1.6;
  width: 100%;
}

/* HIDE DROPDOWN ARROWS ON DESKTOP MODE */
.accordion-arrow {
  display: none !important;
}

/* SEO Links Group Headings */
.seo-links-group {
  margin-bottom: 24px;
}

.seo-links-group .footer-heading {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* SEO Content Pipe Separated Links */
.seo-links-content {
  font-size: 0.88rem !important;
  line-height: 1.85 !important;
  color: rgba(255, 255, 255, 0.7);
}

.seo-links-content a {
  color: var(--color-link) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.seo-links-content a:hover {
  color: var(--color-link-hover) !important;
  text-decoration: underline;
}

/* Bottom Copyright & Policies Bar */
.footer-bottom {
  background-color: #04162e !important; /* Slightly darker navy bottom bar */
  padding: 16px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.copyright-text .policy-link {
  color: #ffffff !important;
  font-weight: 600;
  margin-left: 12px;
  text-decoration: none;
}

.copyright-text .policy-link:hover {
  color: var(--color-link-hover) !important;
}

.powered-by a {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
}

/* ==========================================================================
   OFFICIAL HEADER LOGO IMAGE STYLING
   ========================================================================== */

.brand-logo {
    display: flex;
    align-items: center;      /* Vertical Center */
    justify-content: center;  /* Horizontal Center (agar zarurat ho) */
    text-decoration: none;
    height: 100%;
    line-height: 1;
}

.brand-logo__img {
  height: 65px !important;  /* Proportionally fits inside 73.64px header */
  width: auto !important;
  max-width: 250px !important;
  object-fit: contain;
  display: block;
/*   margin-right: -20px; */
}

/* ==========================================================================
   COURSE DETAILS SINGLE PAGE STYLING (100% Match)
   ========================================================================== */

/* Hero Banner */
.course-hero-sec {
  background-color: #061c3a;
  color: #ffffff;
  padding: 32px 0 40px;
}

.course-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.82rem;
  margin-bottom: 20px;
  padding: 0;
}

.course-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.course-breadcrumb .active {
  color: #ffffff;
  font-weight: 600;
}

.course-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}

.course-single-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #ffffff;
}

.course-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.course-meta-bar .sep {
  color: rgba(255, 255, 255, 0.3);
}

.btn-wishlist-link {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  font-size: 0.88rem;
}

.course-summary-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.course-media-box {
  background: #ffffff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.media-thumb img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.course-share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px 4px;
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.share-social-icons a {
  color: #222;
  font-size: 1rem;
}

/* Sticky Navigation Bar */
.course-tabs-sticky-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 98!important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.course-tabs-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.course-tabs-nav::-webkit-scrollbar { display: none; }

.course-tabs-nav a {
  display: block;
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444444;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.course-tabs-nav a.active,
.course-tabs-nav a:hover {
  color: var(--color-link-hover) !important;
  border-bottom-color: var(--color-brand);
}

/* Main Body 2-Column Grid */
.course-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
}

.course-section-block {
    margin-bottom: 40px;
    padding-top: 10px;
    max-width: 1140px;
    margin-inline: auto;
}

.block-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
}

.block-body-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #444444;
}

.block-body-text h3 { font-size: 1.2rem; font-weight: 700; margin: 20px 0 10px; color: #111; }
.block-body-text h4 { font-size: 1.05rem; font-weight: 700; margin: 16px 0 8px; color: #222; }
.block-body-text ul { padding-left: 20px; margin-bottom: 16px; }

/* Key Features Box */
.key-features-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
}

.key-features-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.features-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.features-list-grid li {
  font-size: 0.88rem;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list-grid i { color: #10b981; }

/* Curriculum Accordion */
.syllabus-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: #f8fafc;
  border: none;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  text-align: left;
}

.accordion-header.active {
  background: #edf4fa;
  color: #0072ce;
}

.accordion-body {
  display: none;
  padding: 16px 20px;
  background: #ffffff;
  font-size: 0.88rem;
  line-height: 1.7;
}

.accordion-body.show { display: block; }

/* Blue Banner Forms */
.banner-form-sec.blue-banner {
  background-color: #0072ce;
  border-radius: 8px;
  padding: 28px;
  margin: 32px 0;
}

.banner-inline-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
}

.banner-inline-form input {
  background: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.88rem;
  outline: none;
}

/* Pricing Plans Cards */
.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.plan-card--featured {
  border: 2px solid #0072ce;
  box-shadow: 0 8px 24px rgba(0,114,206,0.12);
}

.plan-head { font-weight: 800; font-size: 0.95rem; text-transform: uppercase; color: #111; margin-bottom: 12px; }
.plan-price { font-size: 1.6rem; font-weight: 800; color: #000; margin-bottom: 10px; }
.plan-guarantee { font-size: 0.8rem; color: #0072ce; font-weight: 600; margin-bottom: 16px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 20px; font-size: 0.85rem; text-align: left; line-height: 1.8; color: #444; }

.btn-watch-free {
  display: block;
  background: #eef4f9;
  color: #0072ce;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-outline-navy {
  border: 1px solid #061c3a;
  color: #061c3a;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

/* Certificate Section */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  background: #f8fafc;
  border-radius: 8px;
  padding: 28px;
}

.cert-sample-img img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* Reviews Section */
.reviews-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-summary-score {
  font-size: 0.88rem;
  color: #666;
  margin-top: 4px;
}

.review-summary-score .bi-star-fill { color: orange; }

.reviews-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-card {
  border: 1px solid #e2e8f0;
  border-top: 4px solid orange;
  border-radius: 6px;
  padding: 20px;
  background: #ffffff;
}

.user-meta { display: flex; align-items: center; gap: 12px; }
.user-avatar { width: 40px; height: 40px; background: #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #0072ce; }
.user-name { font-weight: 700; font-size: 0.95rem; color: #111; }
.review-date { font-size: 0.78rem; color: #888; }

/* Alumni Grid */
.alumni-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.alumni-logos-grid img {
  width: 100%;
  max-height: 45px;
  object-fit: contain;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 6px;
}

/* Sticky Right Sidebar */
.course-right-sidebar {
  position: sticky;
  top: 135px;
  height: fit-content;
}

.talk-to-us-banner {
  background: linear-gradient(135deg, #061c3a, #0d3b5c);
  border-radius: 8px;
  padding: 24px;
}

.talk-to-us-banner h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.talk-to-us-banner p { font-size: 0.85rem; opacity: 0.85; margin-bottom: 16px; }

.phone-link {
  margin-bottom: 10px;
}

.phone-link a {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.phone-link span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.query-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.mandatory-note { font-size: 0.78rem; color: #666; margin-bottom: 18px; }

.sidebar-query-form .form-group {
  margin-bottom: 12px;
}

.sidebar-query-form input,
.sidebar-query-form select,
.sidebar-query-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 0.88rem;
  outline: none;
}

.contact-worldwide-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
}

.contact-methods-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-methods-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.contact-methods-list a { color: #111; font-weight: 700; text-decoration: none; }
.contact-methods-list small { display: block; color: #777; font-size: 0.75rem; }

/* Payment Logos Row Sizing */
.payment-logos-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  padding: 20px 0 !important;
  margin: 20px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-logos-row img {
  height: 28px !important;
  max-height: 28px !important;
  width: auto !important;
  max-width: 65px !important;
  object-fit: contain !important;
  background: #ffffff !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

/* Dropdown Hide by default */
.wvmm-dropdown {
    display: none;
}

/* Dropdown Show on button click/search */
.wvmm-dropdown.show {
    display: flex !important;
}

/* Live Search Mode Layout Adjustments */
.wvmm-dropdown.live-searching .wvmm-dropdown__categories {
    display: none; /* Searching time par side category panel hide kar sakein */
}
.wvmm-dropdown.live-searching .wvmm-dropdown__subcourses {
    width: 100%;
}

/* ==========================================
   Exact Match Blog UI (igmGuru Style)
   ========================================== */

.webvoom-blog-banner {
    background-color: #0b2240;
    padding: 30px 0;
    width: 100%;
}

.webvoom-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.webvoom-banner-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.webvoom-blog-heading {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

/* Search Box */
.webvoom-banner-col-search {
    flex: 1;
    max-width: 520px;
}

.webvoom-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    height: 44px;
}

.webvoom-search-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 15px;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.webvoom-search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 14px;
    display: flex;
    align-items: center;
}

/* Dropdown */
.webvoom-banner-col-cat {
    width: 260px;
}

.webvoom-category-dropdown {
    position: relative;
}

.webvoom-cat-btn {
    width: 100%;
    height: 44px;
    background: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.webvoom-cat-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    display: none;
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
}

.webvoom-cat-menu.show {
    display: block;
}

.webvoom-cat-menu li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.webvoom-cat-menu li a:hover {
    background: #f4f6f9;
    color: #0056b3;
}

/* Content Area & Grid */
.webvoom-blog-body {
    background-color: #ffffff;
    padding: 25px 0 60px 0;
}

.webvoom-sub-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.webvoom-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Blog Cards */
.webvoom-card {
    background: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.webvoom-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.webvoom-card-img-link {
    display: block;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #f8f9fa;
}

.webvoom-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webvoom-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.webvoom-card-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.webvoom-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.webvoom-card-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.webvoom-card-title a:hover {
    color: #0056b3;
}

.webvoom-card-excerpt {
    font-size: 13.5px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Pagination Styling */
.webvoom-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.webvoom-pagination .nav-links {
    display: flex;
    gap: 8px;
}

.webvoom-pagination .page-numbers {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
}

.webvoom-pagination .page-numbers.current {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .webvoom-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .webvoom-banner-row {
        flex-direction: column;
        align-items: stretch;
    }
    .webvoom-banner-col-search,
    .webvoom-banner-col-cat {
        max-width: 100%;
        width: 100%;
    }
    .webvoom-blog-grid {
        grid-template-columns: 1fr;
    }
}
.webvoom-card-footer {
    margin-top: auto;
    padding-top: 15px;
}

.webvoom-btn-readmore {
    display: inline-block;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #0056b3;
    border: 1px solid #0056b3;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.webvoom-btn-readmore:hover {
    background-color: #0056b3;
    color: #ffffff;
}

/* ==========================================================================
   BLOG SINGLE PAGE & CATEGORY DROPDOWN STYLES
   ========================================================================== */

/* 1. Category Dropdown Banner */
.bg-blog-category {
    background-color: #1e293b !important; /* Dark theme background */
}

.cetegory-menu-dropdown {
    position: relative;
    user-select: none;
}

.cetegory-menu-dropdown .select-btn {
    display: flex;
    height: 100%;
    min-height: 46px;
    background: #ffffff;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.cetegory-menu-dropdown .select-btn:hover {
    border-color: #cbd5e1;
}

/* Category Dropdown Menu List */
.cetegory-menu-dropdown .options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 8px 0;
    margin-top: 6px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease-in-out;
    z-index: 99;
    max-height: 260px;
    overflow-y: auto;
    list-style: none;
}

/* Show Dropdown Menu on Hover */
.cetegory-menu-dropdown:hover .options {
    opacity: 1;
    pointer-events: auto;
}

.cetegory-menu-dropdown .option {
    display: flex;
    height: 40px;
    cursor: pointer;
    padding: 0 16px;
    align-items: center;
    transition: background 0.2s ease;
}

.cetegory-menu-dropdown .option:hover {
    background: #f1f5f9;
}

.cetegory-menu-dropdown .option a {
    color: #334155;
    text-decoration: none;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}

/* 2. Post Meta & Author Section */
.authorline label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b !important;
}

.authorline span, 
.authorline a {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
}

.authorline a:hover {
    color: #0d6efd;
}

/* Social Share Bar */
.social-hold-bar .prettySocial {
    color: #475569;
    transition: transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.social-hold-bar .prettySocial:hover {
    color: #0d6efd;
    transform: translateY(-2px);
}

/* 3. Dynamic Table of Contents (TOC) */
.toc-list-panel {
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.toc-list-panel .accordion-button {
    background-color: #f8fafc;
    color: #0f172a;
    box-shadow: none;
    padding: 14px 20px;
}

.toc-list-panel .accordion-button:not(.collapsed) {
    background-color: #f1f5f9;
    color: #0d6efd;
}

.toc-list-panel .accordion-body a {
    color: #334155;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.toc-list-panel .accordion-body a:hover {
    color: #0d6efd;
    padding-left: 6px;
}

/* 4. WordPress Dynamic Post Content Typography */
html {
    scroll-behavior: smooth; /* Smooth scroll for TOC links */
}

.post-content {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Headings offset for sticky navbar when jumping from TOC */
.post-content h1, 
.post-content h2, 
.post-content h3, 
.post-content h4, 
.post-content h5, 
.post-content h6 {
    color: #0f172a;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    scroll-margin-top: 90px; 
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid #0d6efd;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: #f8fafc;
    font-style: italic;
    color: #475569;
    border-radius: 0 8px 8px 0;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

/* Dynamic Dropdown Fixing */
.cetegory-menu-dropdown {
    cursor: pointer;
    position: relative;
}

.cetegory-menu-dropdown .options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-top: 5px !important;
}

/* Hover/Active state to show options */
.cetegory-menu-dropdown:hover .options {
    display: block;
}

/* Breadcrumb Icon Fix */
.fs-xs {
    font-size: 10px;
}

/* Blog Banner Text Visibility & Contrast Fix */
.bg-blog-category h2, 
.bg-blog-category a, 
.bg-blog-category .sBtn-text,
.bg-blog-category i {
    color: #ffffff !important;
}

/* Search Form Input & Box Fix */
.bg-blog-category #ProductsSearchForm {
    background-color: #ffffff !important;
    border-radius: 6px !important;
}

.bg-blog-category #ProductsSearchForm input#blog_keyword {
    color: #212529 !important;
    background-color: transparent !important;
}

.bg-blog-category #ProductsSearchForm input#blog_keyword::placeholder {
    color: #6c757d !important;
}

/* Featured Image Max Height & Fit */
.mb-5 figure img {
    max-height: 420px !important;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 8px;
}

/* Breadcrumbs Link Contrast */
.container.my-3 a {
    color: #0d6efd !important;
}

/* Dark Banner Styling */
.blog-top-banner {
    background-color: #0b1c38 !important;
}

/* Breadcrumb Chevron Separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: #6c757d;
}

/* Sidebar Query Card Form Button Styling */
.card form input.wpcf7-submit,
.card form button[type="submit"] {
    background-color: var(--color-brand) !important;
    color: #ffffff !important;
    border: none !important;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border-radius: 4px;
}

/* Reviews Section Wrapper */
.reviews-wrapper-block {
    background-color: #eef5fc;
    padding: 24px 28px;
    border-radius: 8px;
    font-family: 'Noto Sans', sans-serif;
}

/* Header UI */
.reviews-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.reviews-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.stars-gold {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 1px;
}

.star-empty {
    color: #cbd5e1;
}

.rating-text {
    font-size: 13px;
    color: #64748b;
    margin-left: 4px;
}

.btn-write-review {
    background-color: #ff6000;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-write-review:hover {
    background-color: var(--color-link-hover) !important;
    color: #ffffff;
}

.reviews-divider {
    border: none;
    border-top: 1px solid #dbe3ed;
    margin: 18px 0 24px 0;
}

/* Review Cards UI */
.reviews-slider-container {
    position: relative;
    padding: 4px;
}

.review-card {
    background: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #f59e0b;
    padding: 20px;
    height: 100%;
    min-height: 240px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background-color: #ff6000;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.review-date {
    font-size: 12px;
    color: #94a3b8;
    display: block;
    margin-bottom: 2px;
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
}

.review-heading {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.review-body {
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
    max-height: 110px;
    overflow-y: auto;
}

/* Navigation Arrow Button Styling */
.review-next-btn, .review-prev-btn {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    color: #334155;
}

.review-next-btn::after, .review-prev-btn::after {
    font-size: 14px;
    font-weight: bold;
}

.review-next-btn { right: -12px; }
.review-prev-btn { left: -12px; }

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

/* 1. Flex & Grid Parent Bug Fix (Sabse zaroori) */
.course-body-grid,
.course-left-content,
.reviews-wrapper-block,
.reviews-slider-container {
    min-width: 0; /* Iske bina Swiper flexbox ke andar squeeze nahi hota aur screen se bahar nikal jata hai */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* 2. Slider Container & Overflow Control */
.reviews-slider-container {
    position: relative;
    padding: 0 45px; /* Next/Prev buttons ke liye side me space */
    overflow: hidden; /* Page ke right side overflow ko rokta hai */
}

.swiper.reviews-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* 3. Navigation Buttons Position Fix */
.review-prev-btn {
    left: 0 !important;
}

.review-next-btn {
    right: 0 !important;
}

/* 4. Card ke andar unwanted scrollbar hatane ke liye */
.review-card .review-body {
    overflow: visible !important;
    max-height: none !important;
}

/* ==========================================
   FOOTER MOBILE UI FIX (MATCHING TARGET DESIGN)
   ========================================== */

.site-footer {
    background-color: #03204c !important; /* Navy Blue Background */
    color: #ffffff;
}

/* Newsletter Styles */
.footer-newsletter {
    background-color: #03204c;
}

.newsletter-heading {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.newsletter-subtext {
    font-size: 0.85rem;
    color: #d1d5db;
    max-width: 580px;
    margin: 0 auto 16px auto;
    line-height: 1.4;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 0.9rem;
    outline: none;
    color: #333333;
}

.btn-newsletter-subscribe {
    background-color: #016ad8 !important; /* Bright Orange Button */
    color: #ffffff !important;
    border: none;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Brand Logo & Social Icons Center Alignment */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-socials {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.footer-socials a {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1;
}

/* Mobile Accordions - Centered Text & No Divider Lines */
.footer-accordion {
    border: none !important; /* Harsh top/bottom border line remove karne ke liye */
    padding: 4px 0;
}

.footer-heading {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center; /* Center Headings on Mobile */
    text-align: center;
}

.accordion-arrow {
    position: absolute;
    right: 0;
    font-size: 0.85rem;
    color: #ffffff;
}

.footer-menu-list, .seo-links-content {
    text-align: center;
}

.footer-menu-list {
    list-style: none;
    padding: 6px 0 12px 0;
    margin: 0;
}

.footer-menu-list li a, .seo-links-content a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.85rem;
}

/* Payment Logos Pill Badges */
.payment-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-badge {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 4px 10px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
}

.payment-badge img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.netbanking-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: #0b3c5d;
}

.paytm-badge {
    font-size: 0.85rem;
    font-weight: 800;
    color: #002e6e;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #02183a;
    font-size: 0.8rem;
    color: #b0c0d0;
}

.footer-bottom a {
    color: #b0c0d0;
    text-decoration: none;
}

/* Desktop Responsiveness */
@media (min-width: 768px) {
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .footer-heading {
        justify-content: flex-start;
        text-align: left;
    }
    .accordion-arrow {
        display: none;
    }
    .footer-menu-list, .seo-links-content {
        text-align: left;
        display: block !important;
    }
}

/* ==========================================
   HEADER MOBILE DESIGN (EXACT MATCHING)
   ========================================== */

/* Top Navy Blue Bar */
.top-bar {
    background-color: #0b1c39 !important;
    padding: 6px 0;
}

.top-bar__contacts {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.top-bar__item {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
	font-family: Arial!important;
	font-weight: 400!important;
}

/* Main Header Container */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}

.main-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile Hamburger Icon (Left Side) */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #4a4a4a;
    border-radius: 2px;
}

/* Logo Sizing */
.brand-logo__img {
    max-width: 250px;
    height: auto;
    display: block;
}

/* Right Actions & Icons Group */
.main-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-action-icon {
    background: transparent;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-action-icon svg,
.cart-icon-btn svg {
    width: 24px;
    height: 24px;
}

/* Shopping Cart with Orange Circle Badge */
.cart-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cart-icon-btn__badge {
    position: absolute;
    top: -5px;
    right: -6px;
    background-color: #016ad8 !important; /* Signature Orange */
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Visibility Responsive Controls */
@media (max-width: 767px) {
    .d-none-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .brand-logo__img {
        max-width: 250px;
    }
}

/* ==========================================
   MOBILE OFF-CANVAS SLIDE MENU STYLING
   ========================================== */

/* Dark Overlay Background */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Slide Drawer Panel */
.mobile-offcanvas-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 310px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
}

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

/* Close Icon Header */
.offcanvas-header {
    padding: 12px 18px;
    display: flex;
    justify-content: flex-start;
}

.offcanvas-close-btn {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #222222;
    cursor: pointer;
    padding: 0;
}

/* Login / Signup Section */
.offcanvas-auth-links {
    text-align: center;
    padding: 12px 0 18px 0;
    font-size: 17px;
    border-bottom: 1px solid #f0f0f0;
}

.offcanvas-auth-links a {
    color: #222222;
    text-decoration: none;
    font-weight: 500;
}

.offcanvas-auth-links .divider {
    margin: 0 14px;
    color: #888888;
}

/* Menu Category Links */
.mobile-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-category-list li {
    border-bottom: 1px solid #f2f2f2;
}

.mobile-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.mobile-category-list li a:active,
.mobile-category-list li a:hover {
    background-color: #f9f9f9;
}

.mobile-category-list .arrow {
    font-size: 18px;
    color: #888888;
    font-weight: 300;
}

/* Dynamic WP Menu Item Links Styling */
.mobile-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-category-list li {
    border-bottom: 1px solid #f2f2f2;
}

.mobile-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.mobile-category-list li a:active,
.mobile-category-list li a:hover {
    background-color: #f9f9f9;
}

/* Auto-add Arrow Icon (›) for WP Dynamic Menu Items */
.mobile-category-list li a::after {
    content: "›";
    font-size: 20px;
    color: #888888;
    font-weight: 300;
    line-height: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important; /* Force 4 equal columns on desktop */
    gap: 30px;
    align-items: start;
}

/* Mobile screen par single column ho jaye */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}
.site-header {
    position: relative;
    z-index: 1000;
}
/*top bar hide for mobile screens*/
@media (max-width: 768px) {
  .top-bar {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 1;
  }

  .site-header.is-sticky .top-bar {
    max-height: 0;
    opacity: 0;
    padding: 0;
  }
}

/* Sidebar Wrapper ko poori height do */
.sidebar-wrapper {
    height: 100%;
}

/* Sirf Desktop/Tablet screens par sticky chalana hai (Mobile par sticky awkward lagta hai) */
@media (min-width: 992px) {
    .recent-post-aside-panel.sticky-recent-posts {
        position: -webkit-sticky;
        position: sticky;
        top: 90px; /* Header ke hisaab se gap */
        z-index: 10;
    }
}

/* ==========================================================================
   TABLE OF CONTENTS:
   1. GLOBAL & COMMON COMPONENTS (Sliders, Buttons, Footer)
   2. FORM 1: ESTIMATE FORM (.custom-estimate-form)
   3. FORM 2: MAIN CONTACT FORM (.ig-contact-form)
   4. FORM 3: BLOG SIDEBAR QUERY FORM (.custom-query-form)
   ========================================================================== */


/* ==========================================================================
   1. GLOBAL & COMMON COMPONENTS
   ========================================================================== */

/* Top Bar Active Item */
a.top-bar__item.top-bar__item--rotate.is-active {
    padding-top: 2px !important;
}

/* Header Action Links */
.main-header__actions .nav-link-item {
    transition: color 0.3s ease;
}

/* Gradient Login Button */
.btn-orange-login {
    background: linear-gradient(90deg, #0046B3B0 0%, #0A1A3D 100%);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 26px;
    border-radius: 14px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 3px 6px 10px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-orange-login:hover {
    transform: translateY(-2px);
    box-shadow: 4px 8px 15px 0px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

.btn-orange-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0A1A3D 0%, #0046B3B0 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
}

.btn-orange-login:hover::before {
    opacity: 1;
}

.btn-orange-login:active {
    transform: translateY(1px);
    box-shadow: 2px 4px 6px 0px rgba(0, 0, 0, 0.2);
}

/* Custom Footer Grid */
.custom-footer-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
	align-content: center;
    align-items: center;
    justify-content: center;
}

.custom-footer-col-brand {
    flex: 0 0 20%;
    max-width: 20%;
}

.custom-footer-col-links {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Mobile Responsive - UI Components */
@media screen and (max-width: 767px) {
    /* 1. Mobile Course Slider */
    .course-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 12px !important;
        padding-bottom: 15px !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .course-grid::-webkit-scrollbar {
        display: none !important;
    }

    .teaser-item-div {
        flex: 0 0 calc(50% - 6px) !important;
        min-width: calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
        scroll-snap-align: start !important;
        box-sizing: border-box !important;
    }

    /* 2. Logo Slider */
    .trusted-companies-section {
        padding: 24px 0 !important;
    }

    .logo-slider-wrapper {
        position: relative !important;
        padding: 0 5px !important;
    }

    .logo-slider-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 12px !important;
        padding: 10px 4px !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .logo-slider-track::-webkit-scrollbar {
        display: none !important;
    }

    .logo-card {
        flex: 0 0 calc(50% - 6px) !important;
        min-width: calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
        scroll-snap-align: start !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 20px 15px !important;
        height: 110px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
        border: 1px solid #f2f2f2 !important;
    }

    .logo-card img {
        max-width: 100% !important;
        max-height: 55px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .logo-nav-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        background: #ffffff !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 5 !important;
        color: #333333 !important;
        font-size: 16px !important;
    }

    .logo-nav-btn.prev-btn {
        left: -8px !important;
    }

    .logo-nav-btn.next-btn {
        right: -8px !important;
    }

    /* 3. Footer Mobile */
    .custom-footer-col-brand,
    .custom-footer-col-links {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .brand-logo__img {
        max-width: 180px !important;
        height: auto;
        display: block;
    }
}


/* ==========================================================================
   2. FORM 1: ESTIMATE FORM (.custom-estimate-form)
   ========================================================================== */

.custom-estimate-form {
    background: var(--bg-card, #ffffff);
    padding: 35px 30px 25px 30px;
    border-radius: 4px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    margin: 0 auto;
    border-bottom: 5px solid var(--color-brand, #016ad8); /* Bottom Accent Border */
    font-family: var(--font-family-base);
}

/* Heading Styling */
.custom-estimate-form h2 {
    color: var(--color-primary, #061a3a); /* Dynamic Navy/Primary Heading */
    font-size: var(--font-size-2xl, 1.875rem);
    font-weight: var(--font-weight-bold, 700);
    text-align: center;
    margin-bottom: var(--space-6, 1.5rem);
    margin-top: 0;
}

/* Form Fields Styling */
.custom-estimate-form .form-group {
    margin-bottom: 16px; /* Typo '16x' Fixed */
}

.custom-estimate-form input[type="text"],
.custom-estimate-form input[type="email"],
.custom-estimate-form input[type="tel"],
.custom-estimate-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 6px;
    font-size: var(--font-size-base, 1rem);
    color: var(--text-primary, #222222); /* Dynamic Headings/Main Text Color */
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: var(--bg-main, #ffffff);
    font-family: var(--font-family-base);
}

/* Focus Border Effect */
.custom-estimate-form input:focus,
.custom-estimate-form textarea:focus {
    border-color: var(--color-brand, #016ad8); /* Dynamic Focus Border */
    box-shadow: 0 0 0 3px rgba(1, 106, 216, 0.1);
}

/* Placeholder Styling */
.custom-estimate-form ::placeholder {
    color: var(--text-muted, #888888);
    opacity: 1;
}

/* Textarea Specific Height */
.custom-estimate-form textarea {
    height: 100px;
    resize: vertical;
}

/* Submit Button Container */
.custom-estimate-form .form-submit {
    text-align: center;
    margin-top: var(--space-6, 1.5rem);
}

/* Submit Button Styling */
.custom-estimate-form input[type="submit"] {
    background-color: var(--color-brand, #016ad8); /* Brand Blue/Orange Background */
    color: var(--text-white, #ffffff); /* Text White */
    border: none;
    padding: 12px 35px;
    font-size: var(--font-size-base, 1rem);
    font-weight: var(--font-weight-bold, 700);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Submit Button Hover */
.custom-estimate-form input[type="submit"]:hover {
    background-color: var(--color-primary, #061a3a); /* Hover Par Midnight/Primary Navy */
    color: var(--text-white, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 26, 58, 0.2);
}

/* Hide Default CF7 Loader Spacing If Any */
.custom-estimate-form .wpcf7-spinner {
    display: block;
    margin: 10px auto 0 auto;
}

a.top-bar__item.top-bar__item--rotate.is-active
 {
    padding-top: 2px!important;
}


/* ==========================================================================
   3. FORM 2: MAIN CONTACT FORM (.ig-contact-form)
   ========================================================================== */


.ig-contact-form {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #182433;
}

/* Mandatory note */

.ig-form-note {
    font-size: 12px;
    color: #657386;
    margin-bottom: 14px;
}

.ig-form-note span,
.ig-field label span {
    color: #e81f27;
}

/* =========================================
   FIELD ROWS
========================================= */

.ig-form-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.ig-name-row {
    align-items: flex-start;
}

.ig-name-row .ig-title-field {
    width: 103px;
    flex: 0 0 103px;
}

.ig-name-row .ig-field:not(.ig-title-field) {
    flex: 1;
}

.ig-location-row .ig-field,
.ig-contact-row .ig-field {
    width: 50%;
}

/* =========================================
   FIELD
========================================= */

.ig-field {
    position: relative;
    margin-bottom: 16px;
}

/* Label ab normal block hai - input isi ke andar flow karega */
.ig-field label {
    display: block;
    position: static;
}

/* Sirf label ka text-span notch style me overlap karega */
.ig-field-label {
    position: absolute;
    top: 0px;
    left: 10px;
    z-index: 2;
    padding: 0 4px;
    background: #ffffff;
    color: #e81f27;
    font-size: 11px;
    line-height: 14px;
}

/* =========================================
   INPUTS
========================================= */

.ig-contact-form input[type="text"],
.ig-contact-form input[type="email"],
.ig-contact-form input[type="tel"],
.ig-contact-form select,
.ig-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #4d4d4d;
    border-radius: 5px;
    background: #ffffff;
    color: #27364a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Standard inputs */

.ig-contact-form input[type="text"],
.ig-contact-form input[type="email"],
.ig-contact-form input[type="tel"],
.ig-contact-form select {
    height: 52px;
    padding: 0 12px;
}

/* Placeholder */

.ig-contact-form input::placeholder,
.ig-contact-form textarea::placeholder {
    color: #536277;
    opacity: 1;
}

/* Focus */

.ig-contact-form input:focus,
.ig-contact-form select:focus,
.ig-contact-form textarea:focus {
    border-color: #555555;
    box-shadow: none;
}

/* =========================================
   SELECT
========================================= */

.ig-title-field select {
    padding-right: 28px;
    cursor: pointer;
}

.ig-country-field select {
    cursor: pointer;
}

/* =========================================
   FULL WIDTH FIELDS
========================================= */

.ig-full-field {
    width: 100%;
}

.ig-full-field input {
    width: 100%;
}

/* =========================================
   MESSAGE
========================================= */

.ig-message-field textarea {
    height: 114px;
    min-height: 114px;
    resize: vertical;
    padding: 16px 12px;
}

/* =========================================
   SUBMIT
========================================= */

.ig-submit-wrap {
    margin-top: 2px;
}

.ig-submit-wrap input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 111px;
    height: 42px;
    padding: 0 28px;
    border: none;
    border-radius: 4px;
    background: var(--color-blue-royal);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ig-submit-wrap input[type="submit"]:hover {
    background: var(--color-electric-blue);
    color: #ffffff;
}

/* =========================================
   CF7 MESSAGES
========================================= */

.ig-contact-form .wpcf7-not-valid-tip {
    font-size: 11px;
    margin-top: 3px;
}

.ig-contact-form .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 8px 12px !important;
    font-size: 12px;
}

/* Remove default CF7 spacing */

.ig-contact-form p {
    margin: 0;
}

.ig-contact-form .wpcf7-form-control-wrap {
    display: block;
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .ig-form-row {
        flex-direction: column;
        gap: 0;
    }

    .ig-name-row .ig-title-field,
    .ig-name-row .ig-field:not(.ig-title-field),
    .ig-location-row .ig-field,
    .ig-contact-row .ig-field {
        width: 100%;
        flex: none;
    }

    .ig-field {
        margin-bottom: 15px;
    }

    .ig-contact-form input[type="text"],
    .ig-contact-form input[type="email"],
    .ig-contact-form input[type="tel"],
    .ig-contact-form select {
        height: 50px;
    }

    .ig-message-field textarea {
        height: 120px;
    }

    .ig-submit-wrap input[type="submit"] {
        width: 111px;
    }
}


/* ==========================================================================
   4. FORM 3: BLOG SIDEBAR QUERY FORM (.custom-query-form)
   ========================================================================== */


.custom-query-form {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 24px;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: inherit;
}

/* Header & Text */
.custom-query-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.custom-query-form .form-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.custom-query-form .mandatory-text {
  font-size: 13px;
  color: #666666;
  margin: 0 0 16px 0;
}

.custom-query-form .red-star {
  color: #d93025;
  font-weight: bold;
}

/* Input Wrappers & Spacing */
.custom-query-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 12px;
}

/* Form Fields Styling */
.custom-query-form input[type="text"],
.custom-query-form input[type="email"],
.custom-query-form input[type="tel"],
.custom-query-form select,
.custom-query-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #333333;
  border-radius: 8px;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}

.custom-query-form input:focus,
.custom-query-form select:focus,
.custom-query-form textarea:focus {
  border-color: #000000;
}

.custom-query-form textarea {
  height: 90px;
  resize: vertical;
}

/* Submit Button */
.custom-query-form input[type="submit"] {
  background-color: #ff5500;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 4px;
}

.custom-query-form input[type="submit"]:hover {
  background-color: #e04b00;
}

