/* =============================================================================
   Eduskill Custom Stylesheet
   ========================================================================== */
/*

Template Reorganization:

1. Global Styles
2. Header Section
3. Banner Section
4. Products Section
5. Product Categories Section
6. Learning Transformation & AI Insights (Carousel/Scroller)
7. Solutions (Accordion)
8. Impact & Reach (Stats)
9. Contact Form Section
10. Footer Section
11. Miscellaneous & Utility
12. Responsive Media Queries

*/

/* =============================================================================
   0. Font Definitions (Self-hosted)
   ========================================================================== */
   @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/poppins-v21-latin-300.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/poppins-v21-latin-700.woff2') format('woff2');
  }

/* =============================================================================
   1. Global Styles
   ========================================================================== */
   :root {
    --bg-dark: #4519a8;
    --text-light: #F5F5F5;
    --text-dark: #0e2665;
    --accent: #73aefa;
    --secondary: #8A2BE2;
    --cta: #32CD32;
    --eduskill-primary: var(--accent);
    --eduskill-accent: var(--secondary);
    --eduskill-success: var(--cta);
    --eduskill-bg: var(--bg-dark);
    --eduskill-text: var(--text-light);
    --eduskill-text-dark: var(--text-dark);
    --eduskill-card: #172c8d;
    --eduskill-border: #7d86b9;
    --eduskill-hover: #00137b;
    --eduskill-soft: rgba(0, 191, 255, 0.1);
    --eduskill-muted: #dadcea;
    --clean-white: #F5F5F5;
  }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--eduskill-bg);
  color: var(--eduskill-text);
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

html {
  scroll-behavior: smooth;
}

/* =============================================================================
   1.1 Universal Heading Styles
   ========================================================================== */
.section-heading,
.section-title {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 0 auto 3rem auto;
  display: block;
}

.section-heading h2,
.section-title h2,
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  position: relative;
}

/* Thin underline */
.section-heading h2::after,
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
   background-color: rgba(94, 82, 82, 0.25);
}

/* Thick accent line */
.section-heading h2::before,
.section-title::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background-color: #2778D6;
  border-radius: 3px;
  z-index: 1;
}





/* Buttons */
.main-button-red a, .main-button-yellow a {
  font-size: 14px;
  color: var(--eduskill-text-dark) !important;
  background-color: var(--eduskill-primary);
  padding: 12px 30px;
  display: inline-block;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.main-button-red a:hover, .main-button-yellow a:hover {
  transform: translateY(-3px); 
  background-color: #00BFFF !important; 
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.2);
  color: #fff !important;
}

#eduskill-book-demo0-btn {
  background: linear-gradient(90deg, var(--eduskill-primary), #1d4ed8) !important;
  background-color: var(--cta) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 28px;
  padding: 10px 24px !important;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

#eduskill-book-demo-btn {
  background: linear-gradient(90deg, var(--eduskill-success), #28a745) !important;
  background-color: var(--cta) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 28px;
  padding: 12px 28px !important;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
  transition: transform .18s ease, box-shadow .18s ease;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

#eduskill-book-demo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.2);
  background-color: #00BFFF !important;
  background: linear-gradient(90deg, #28a745, var(--eduskill-success)) !important;
}

.btn-primary {
  background-color: var(--cta) !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.12);
  color: #fff !important;
  padding: 10px 20px !important;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: medium;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #14ccec !important;
  border: none !important;
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.2);
  color: #fff !important;
  transform: translateY(-2px);
}
.page-hero .btn-primary:hover,
.main-banner .main-button-red a:hover {
  background-color: #00BFFF !important;
  border-color: #00BFFF !important;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.2);
  color: #fff !important;
  transform: translateY(-2px);
}

.main-button-green a {
  font-size: 13px;
  color: #fff !important;
  background-color: var(--cta) !important; /* Green color */
  padding: 12px 30px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all .3s;
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.12);
  border: none;
  cursor: pointer;
}
.main-button-green a:hover {
  background-color: #0a9df3 !important; /* Darker green on hover */
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 191, 255, 0.2);
}




.meeting-item:hover {
  transform: translateY(-8px);
  background-color: var(--eduskill-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.meeting-item .thumb {
  margin-bottom: 14px;
  color: var(--eduskill-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.eduskill-icon-wrap {
  background-color: var(--eduskill-soft);
  border-radius: 50%;
  width: 64px;
  height: 64px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  flex-shrink: 0;
  border: 2px solid var(--eduskill-primary);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.eduskill-icon-wrap:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.product-logo {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 50%;
  object-fit: contain;
}

/* Special styling for Avatar icon */
.eduskill-icon-wrap .fa-stack {
  display: inline-block;
  position: relative;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.eduskill-icon-wrap .fa-stack-1x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: inherit;
}

.eduskill-icon-wrap .fa-stack-2x {
  font-size: 2em;
}

.eduskill-icon-wrap .fa-plus.fa-stack-1x {
  color: var(--eduskill-primary);
  font-size: 0.7em;
  top: -0.2em;
  right: -0.2em;
  position: absolute;
}

.meeting-item h4, .section-heading h2, .our-facts h2, .contact-us #contact h2, .footer h4, .header-text .caption h1, .header-text .caption h6, .heading-page h1, .heading-page h6, .key-features-section h4, .detailed-section h2, .usp-section h2, .product-video-section h2, .testimonials-section h2, .final-cta-section h2, .blogs-cta-section h3, .resources-section h3 {
  color: #00BFFF !important;
  font-weight: 700;
}

.our-courses .item .down-content h4 {
    color: #83bbfa;
    font-size: 1.5rem;
    padding: 2px;
     font-size: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}


.meeting-single-item .down-content h4 {
  color: var(--eduskill-text-dark) !important;
}
.meeting-item h4 {
  color: var(--eduskill-text);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meeting-item p {
  color: var(--eduskill-muted) !important;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  overflow: visible;
  flex-grow: 1;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

/* card inner spacing for consistent alignment */
.meeting-item .down-content {

  padding: 0;
  margin-top: 8px;
  border-radius: 15px;
}


.meeting-item .down-content .date {
  display: block !important;
  float: none !important;
  text-align: center !important;
  margin-right: 0 !important;
  margin-bottom: 12px;
}

/* Product categories list */
.eduskill-product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px
}

.eduskill-product-categories li {
  background: var(--eduskill-soft);
  border: 1px solid rgba(37, 99, 235, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--eduskill-text);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.eduskill-product-categories li:hover {
  background: var(--eduskill-primary);
  color: var(--eduskill-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.08);
}

/* Learning tiles */
.owl-courses-item .item {
  background: var(--eduskill-card);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 28px rgba(6, 34, 63, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  border: none;
}



.owl-courses-item .item img {
  width: 100%;
  max-height: 180px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
  display: block
}

.owl-courses-item .down-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  flex-grow: 1;
  justify-content: space-between;
}

.owl-courses-item .down-content h4 {
  color: var(--eduskill-text) !important;
  min-height: 44px; /* Reserve space for two lines of title */
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 18px;
  text-align: center;
}

.owl-courses-item .down-content p {
  color: var(--text-light) !important;
  margin: 0 0 12px;
  line-height: 1.6;
  text-align: center;
}

.owl-courses-item .down-content .main-button-yellow {
  align-self: center;
}

/* Ensure consistent card heights */
.owl-courses-item .item,
.meeting-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Enforce identical, fixed card heights and clamp overflowing text so all boxes align */
.owl-courses-item .item,
.owl-courses-item .owl-item .item,
.eduskill-products-grid .meeting-item,
.meeting-item {
  min-height: auto !important; /* Override theme's fixed height */
  overflow: hidden;
  box-sizing: border-box;
}

/* Clamp titles and descriptions to avoid variable heights */
.owl-courses-item .down-content h4,
.eduskill-products-grid .meeting-item h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
}

.owl-courses-item .down-content p,
.eduskill-products-grid .meeting-item p {
  display: block;
  word-wrap: break-word;
}

/* Hide optional meta/date blocks that cause uneven boxes */
.owl-courses-item .down-content .date,
.owl-courses-item .down-content .meta,
.eduskill-products-grid .meeting-item .down-content .date {
  display: none !important;
}

/* Ensure all carousel cards have equal height (useful when Owl clones/different content sizes) */
.owl-stage .owl-item .item {
  height: 100%; margin: 20px; max-height: 250px;
  box-sizing: border-box;
}

.owl-carousel .owl-stage-outer {
  align-items: stretch;
}

/* Counters */
.count-area-content .count-digit {
  color: var(--eduskill-primary);
  font-weight: 800;
  font-size: 36px
}

.count-area-content .count-title {
  color: var(--eduskill-text) !important;
  opacity: 0.95;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

/* Demo form tweaks */
#eduskill-demo-form input,
#eduskill-demo-form select,
#eduskill-demo-form textarea {
  border: 1px solid #d1e0f0;
  padding: 12px 20px;
  border-radius: 8px;
  width: 100%;
  background: #fff;
  box-shadow: none;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--eduskill-text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', Arial, sans-serif;
}

#eduskill-demo-form input:focus,
#eduskill-demo-form select:focus,
#eduskill-demo-form textarea:focus {
  border-color: var(--eduskill-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

#eduskill-demo-form label {
  color: var(--eduskill-text) !important;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 13px;
}

#eduskill-demo-form .form-check label {
  color: var(--eduskill-text) !important;
}

/* Improve form text contrast */
#eduskill-demo-form label.required:after {
  content: ' *';
  color: #dc3545;
}

#eduskill-form-submit {
  background-color: var(--eduskill-success) !important;
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', Arial, sans-serif;
  display: block;
  margin: 0 auto;
}

#eduskill-form-submit:hover {
  background: #28a745;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

#eduskill-form-submit:active {
  transform: translateY(0);
}

/* Form heading styling */
#eduskill-contact-heading {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--eduskill-text) !important;
  font-weight: 700;
  font-size: 32px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  letter-spacing: -00.5px;
}
#eduskill-demo-form .form-check {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

/* Enhanced checkbox styling with visible checkmark */
#eduskill-demo-form .form-check-input {
  position: relative;
  width: 1.15em !important;
  height: 1.15em !important;
  margin-top: 0.15em;
  margin: 0 4px !important;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 3px;
  transition: background-color 0.2s, border-color 0.2s;
}

#eduskill-demo-form .form-check-input:checked {
  background-color: var(--eduskill-primary) !important;
  border-color: var(--eduskill-primary) !important;
  background-image: none !important; /* Remove default checkmark from Bootstrap */
}

#eduskill-demo-form .form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 48%;
  left: 49%;
  transform: translate(-50%, -50%) scale(1.1);
  color: white;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}

#eduskill-demo-form .form-check-label {
  color: var(--text-light) !important;
  font-size: 13px;
  margin: 0;
  padding-top: 1px;
  line-height: 1.4;
  flex: 1;
}

.form-check-group {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  width: 100%;
  box-sizing: border-box;
}

/* Form text below submit button */
.form-text.text-muted.mt-2 {
  text-align: center;
  font-size: 13px;
  color: var(--text-light) !important;
  margin-top: 1rem !important;
  display: block;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
  background-color: var(--eduskill-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(30, 41, 59, 0.2);
}
/* New Footer Styles */
.footer, .site-footer {
  background-color: var(--eduskill-bg);
  padding: 50px 0 30px;
  color: #fff;
  margin-top: 0;
  width: 100%;
}
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Adds a subtle line above the footer */
  padding-top: 50px;
}
.footer .container, .site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.footer .footer-content, .site-footer .footer-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer .footer-column h4, .site-footer .footer-column h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer .footer-links, .site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li, .site-footer .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-links a, .site-footer .footer-links a {
  color: var(--clean-white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer .footer-links a.active,
.site-footer .footer-links a:hover {
  color: var(--eduskill-primary) !important;
  font-weight: 700;
  text-decoration: none;
}

/* Set copyright text color to white */
.footer-bottom p {
  color: #fff !important;
}


/* small utility */
.text-muted-weak {
  color: #6b7280;
}

/* Ensure proper text contrast for accessibility */
.text-muted {
  color: var(--eduskill-muted) !important; 
}

.text-dark {
  color: var(--eduskill-dark) !important;
}

.text-primary {
  color: var(--eduskill-primary) !important;
}

/* Accessibility focus outlines */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--eduskill-primary);
  outline-offset: 2px
}

/* Reduce top padding on the products section to decrease space below the hero video */
.upcoming-meetings {
  padding-top: 80px;
}
/* Reveal util classes for JS-driven animations */
.eduskill-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .9, .3, 1);
  will-change: opacity, transform
}
.eduskill-reveal.in-view {
  opacity: 1;
  transform: none
}

/* Enhanced loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Better disabled states */
:disabled,
.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Modern design enhancements */
body {
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Improved container spacing */
.container {
  padding-left: 15px;
  padding-right: 15px;
}
/* Improved UX for interactive elements */
button,
a,
input,
select,
textarea {
  transition: all 0.3s ease;
}

/* Better focus states for accessibility */
*:focus-visible {
  outline: 2px solid var(--eduskill-primary);
  outline-offset: 2px;
}

/* Modern design enhancements */
body {
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* subtle hover for category pills */
.eduskill-product-categories li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(11, 99, 255, 0.06)
}

/* Enhanced hover effects for better UX */
.meeting-item,
.item,
.accordion {
  transition: all 0.3s ease;
}

.meeting-item:hover,
.item:hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Improved user feedback for interactive elements */
a,
button,
.meeting-item,
.item {
  cursor: pointer;
}

/* Better visual feedback for clickable elements */
.meeting-item,
.item {
  cursor: pointer;
  user-select: none;
}

/* Solutions Accordion alignment and styling */
.accordions {
  margin-left: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.apply-now .section-heading h2 {
  text-align: center;
}

/* Center align content in Learning Transformation section */
#resources .mb-3 {
  text-align: center;
  margin-bottom: 2rem !important;
}

#resources .mb-3+.owl-courses-item {
  margin-bottom: 3rem;
}

/* Modern buttons */

.main-button-red a:hover,
.main-button-yellow a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Form container adjustments */
#eduskill-demo-form {
  max-width: 100%;
  padding: 20px;
}

#eduskill-contact-heading {
  font-size: 24px;
  margin-bottom: 1.5rem;
}

/* Make form fields more compact */
#eduskill-demo-form input,
#eduskill-demo-form select,
#eduskill-demo-form textarea {
  padding: 8px 12px;
  margin-bottom: 15px;
  font-size: 13px;
}

#eduskill-demo-form label {
  font-size: 13px;
  margin-bottom: 5px;
}

/* Adjust checkbox area */
.form-check {
  padding: 6px 12px;
  margin-bottom: 8px;
}

.form-check-input {
  width: 16px !important;
  height: 16px !important;
}

.form-check-label {
  font-size: 12px;
}

/* Make submit button smaller */
#eduskill-form-submit {
  background-color: #28a745 !important; /* Green background */
  padding: 12px 28px;
  font-size: 15px;
}

#eduskill-form-submit:hover {
  background-color: #218838 !important; /* Darker green on hover */
}


/* Contact info box adjustments */
.right-info {
  width: 100%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  height: auto;
  margin-left: 15px;
}

.right-info ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.right-info ul li {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.right-info ul li h6 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

.right-info ul li span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.4;
}

/* "Impact & Reach" section background override */
.our-facts {
  background-image: none !important;
  background-color: var(--eduskill-bg);
}
/* Impact & Reach section styling */
.stats-container {
  background: var(--eduskill-card);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-container h2 {
  color: var(--eduskill-text);
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-right: 30px;
}

.count-area-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.count-area-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.count-digit {
  font-size: 42px;
  font-weight: 700;
  color: var(--eduskill-primary);
  margin-bottom: 10px;
  background: linear-gradient(45deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.count-title {
  color: var(--eduskill-text);
  font-size: 16px;
  font-weight: 500;
}

.video-section {
  background: transparent;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
}

.video-section h4 {
  color: var(--eduskill-text);
  margin-bottom: 15px;
  text-align: center;
}

.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Responsive height for taller desktop screens */
@media (min-height: 800px) {
  .video-container {
    height: 180px;
  }
}

.video-container:hover {
  background: rgba(0, 0, 0, 0.3);
}
.count-digit.futuristic-solution {
  color: #60a5fa;
}

.count-title.futuristic-solution-title {
  color: var(--text-light);
  opacity: 1;
}

/* Logo alignment and size fix */
.header-area .main-nav .logo {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: normal !important;
}

.header-area .main-nav .logo img {
  height: 55px;
  width: auto;
}

/* Glass morphism container for form section */
.glass-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Form container tweaks */
#eduskill-demo-form {
  background: transparent !important;
}

/* Form heading styling */
#eduskill-contact-heading {
  color:  var(--eduskill-text);
  text-shadow: none;
}
.contact-us .right-info {
  background-color: transparent;
  border: none;
}

/* Contact info box adjustments */
.right-info {
  background: rgba(255, 255, 255, 0.1);
  margin-left: 15px;
  height: 100%;
}


.right-info ul li {
  background: rgba(37, 99, 235, 0.05);
  border: none;
}

/* Stats container enhancements */
.stats-container {
  background: rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
}

/* Modern Navigation Bar Styles */
.header-area {
 
  backdrop-filter: blur(10px);
  background-color: #0a1931ef; /* Deep Nebula Blue with transparency */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(125, 134, 185, 0.3); /* Subtle border for initial state */
  backdrop-filter: none; /* Remove blur for initial state */
  box-shadow: none;
  top: 0;
  position: fixed !important;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease !important; /* Added !important to ensure transition works */
}

.header-area.header-sticky {
  background-color: var(--eduskill-bg) !important;
  border-bottom: 1px solid rgba(125, 134, 185, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.background-header {
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-area.header-sticky .main-nav .nav li a {
  color: var(--eduskill-text) !important;
  padding: 8px 10px;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: var(--eduskill-primary);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 0 15px;
  margin-left: 0;
  margin-right: auto;
}

.header-area .main-nav .logo img {
  height: 65px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-area.header-sticky .main-nav .logo img {
  height: 65px;
  width: auto;
  display: block;
}

.header-area .main-nav .logo:hover img {
  transform: scale(1.05); /* Slightly enlarge the logo */
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7)); /* Add a soft white glow */
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.header-area .main-nav .nav li a {
  color: var(--eduskill-text);
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
  height: auto;
  line-height: 1;
  padding: 8px 0;
  border-radius: 4px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.header-area .main-nav .nav li a.active {
  color: var(--eduskill-primary) !important;
  background-color: transparent;
  border: none; /* Remove unwanted border on active link */
}

.header-area .main-nav .nav li a:hover,
.header-area.header-sticky .main-nav .nav li a:hover, .header-area .main-nav .nav li a.active {
  color: var(--eduskill-primary) !important;
}

/* Dropdown menu improvements */
.header-area .main-nav .nav li.has-sub:after {
  color: var(--eduskill-text);
  font-size: 15px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.header-area .main-nav .nav li.has-sub:hover:after {
  transform: translateY(-50%) rotate(180deg);
}

.header-area .main-nav .nav li.has-sub .sub-menu {
  background-color: var(--bg-dark) !important;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 10px 0;
  top: calc(100% + 15px);
  width: 220px;
  border: none;
  z-index: 1000;
  position: absolute;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1000;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}
.header-area .main-nav .nav li.has-sub .sub-menu li {
  padding: 0;
  border-bottom: none;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a {
  color: var(--text-light) !important;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  height: auto;
  line-height: 1.4;
  border-bottom: none;
  transition: all 0.2s ease;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a:hover {
  background-color: var(--secondary) !important;
  color: var(--text-light) !important;
  padding-left: 25px;
  text-decoration: none;
}

.header-area .main-nav .nav li.has-sub .sub-menu li a.active {
  color: var(--eduskill-primary) !important;

}

/* Menu trigger for mobile */
.header-area .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  z-index: 99;
  right: 40px;
  display: none;
}

.header-area.header-sticky .main-nav .menu-trigger {
  top: 23px;
}


.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--eduskill-text);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.header-area.header-sticky .main-nav .menu-trigger span,
.header-area.header-sticky .main-nav .menu-trigger span:before,
.header-area.header-sticky .main-nav .menu-trigger span:after {
  background-color: var(--text-light);
}

.header-area .main-nav .menu-trigger span {
  top: 18px;
}

.header-area .main-nav .menu-trigger span:before {
  top: -9px;
}

.header-area .main-nav .menu-trigger span:after {
  bottom: -9px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: var(--eduskill-text); /* Ensured color of X */
}

.header-area.header-sticky .main-nav .menu-trigger.active span:before,
.header-area.header-sticky .main-nav .menu-trigger.active span:after {
  background-color: var(--text-light);
}

/* X symbol transformation */
.header-area .main-nav .menu-trigger.active span {
  background-color: transparent;
}

.header-area .main-nav .menu-trigger.active span:before {
  transform: translateY(0px) rotate(45deg);
}

.header-area .main-nav .menu-trigger.active span:after {
  transform: translateY(0px) rotate(-45deg);
}

/* Sub header adjustments */
.sub-header {
  display: none;
}

/* =============================================================================
   3. Banner Section
   ========================================================================== */
.main-banner .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 25px;
}

.header-text .caption {
  text-align: center;
  background-color: transparent;
  border: 1px solid rgb(255, 255, 255);
  top: 50%;
  border-radius: 15px;
   margin:15px;
  padding: 30px;
  max-width: 850px;
  max-height: auto;
  margin: 15px auto;
  box-shadow: 0 8px 32px rgba(31, 39, 43, 0.3);
}

.header-text .caption h6 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.header-text .caption h1 {
  color: var(--eduskill-primary);
  text-shadow: 0 2px 4px rgba(8, 8, 8, 0.3),
                0 4px 80px rgba(8, 8, 8, 0.2),
                0 8px 16px rgba(60, 61, 63, 0.397);
  font-size: 36px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
}

.header-text .caption p {
  color: var(--eduskill-text) !important;
  font-size: 12px;
  max-width: 900px;
  margin: 0 auto 1rem;
  text-align: center;
}

.header-text .caption .main-button-red {
  margin-top: 30px;
  text-align: center;
}

/* =============================================================================
   4. Products Section
   ========================================================================== */
.upcoming-meetings {
  padding-top: 80px;
}

.meeting-item {
  background: var(--eduskill-hover);
  border-radius: 12px;
  padding: 20px;
  height: 100%; 
  transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s, border-color .28s, background-color .28s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
  box-sizing: border-box;
    box-shadow: 0 5px 15px var(--constructor-shadow);
  transition: all 0.3s ease;
  margin-bottom: 30px;
 border: 1px solid #3e50a1;
}

.meeting-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.12);
  background-color: var(--eduskill-hover);
  border-color: var(--eduskill-border);
}

.meeting-item .thumb {
  margin-bottom: 14px;
  color: var(--eduskill-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.eduskill-icon-wrap {
 
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  flex-shrink: 0;
}

.eduskill-icon-wrap .fa-stack {
  display: inline-block;
  position: relative;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.eduskill-icon-wrap .fa-stack-1x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: inherit;
}

.eduskill-icon-wrap .fa-stack-2x {
  font-size: 2em;
}

.eduskill-icon-wrap .fa-plus.fa-stack-1x {
  color: var(--eduskill-primary);
  font-size: 0.7em;
  top: -0.2em;
  right: -0.2em;
  position: absolute;
}

.meeting-item h4 {
  color: var(--eduskill-text);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meeting-item p {
  color: var(--eduskill-muted) !important;
  font-size: 14px;
  margin-top: auto;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow: hidden; /* Hides any overflowing text */
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.meeting-item .down-content {
  padding: 0;
  margin-top: 8px;
  border-radius: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Push the button to the bottom of the card */
.meeting-item .down-content .main-button-yellow {
  padding-top: 5px;

  margin-bottom:20px;
}

.meeting-item .down-content .date {
  display: block !important;
  float: none !important;
  text-align: center !important;
  margin-right: 0 !important;
  margin-bottom: 12px;
}

.owl-courses-item .item,
.meeting-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.owl-courses-item .item,
.owl-courses-item .owl-item .item,
.eduskill-products-grid .meeting-item,
.meeting-item {
  min-height: 420px;
  overflow: hidden;
  box-sizing: border-box;
}

.eduskill-products-grid .meeting-item h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
}

.eduskill-products-grid .meeting-item p {
  display: block;
  word-wrap: break-word;
}

.eduskill-products-grid .meeting-item .down-content .date {
  display: none !important;
}

/* =============================================================================
   5. Product Categories Section
   ========================================================================== */
.eduskill-product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px
}

.eduskill-product-categories li {
  background: var(--eduskill-soft);
  border: 1px solid rgba(37, 99, 235, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.eduskill-product-categories li:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.08);
}

.eduskill-product-categories-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 40px 0;
}

.category-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  border: 1px solid var(--eduskill-border);
  box-shadow: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.category-card:hover {
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.08);
  border-color: var(--eduskill-primary);
  transform: translateY(-2px);
}

.category-header {
  padding: 20px 25px;
  background: var(--eduskill-soft);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.category-header:hover {
  background: var(--eduskill-hover);
}

.category-header:hover h5,
.category-header:hover i {
  color: var(--text-light) !important;
}

.category-header h5 {
  color: var(--eduskill-text-dark);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.category-header i {
  transition: transform 0.3s ease;
  color: var(--eduskill-primary);
  font-size: 18px;
}

.category-card.active .category-header i {
  transform: rotate(180deg);
}

.category-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.category-card.active .category-content {
  padding: 0 25px 25px;
  max-height: 2000px;
}

.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.subcategory-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #e5e7eb;
  box-shadow: none;
}

.subcategory-item:hover {
  border-color: var(--eduskill-primary);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.subcategory-item h6 {
  color: var(--eduskill-text-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subcategory-item p {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* =============================================================================
   6. Learning Transformation & AI Insights (Carousel/Scroller)
   ========================================================================== */
.owl-courses-item .item {
  background: var(--eduskill-card);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 28px rgba(6, 34, 63, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  border: none;
}

.owl-courses-item .item:hover {
  transform: translateY(-5px);
  background-color: var(--eduskill-hover);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

.owl-courses-item .item img {
  width: 100%;
  max-height: 180px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
  display: block
}

.owl-courses-item .down-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  flex-grow: 1;
  justify-content: space-between;
}

.owl-courses-item .down-content h4 {
  color: var(--eduskill-text) !important;
  min-height: 44px;
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 18px;
  text-align: center;
}

.owl-courses-item .down-content p {
  color: var(--text-light) !important;
  margin: 0 0 12px;
  line-height: 1.6;
  text-align: center;
}

.owl-courses-item .down-content .main-button-yellow {
  align-self: center;
}

.owl-courses-item .down-content .date,
.owl-courses-item .down-content .meta {
  display: none !important;
}

.eduskill-carousel-progress {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  height: 6px;
  margin: 25px 0 40px;
  overflow: hidden;
}

.eduskill-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--eduskill-primary), var(--eduskill-accent));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.owl-stage .owl-item .item {
  height: 100%;
  box-sizing: border-box;
}

.owl-carousel .owl-stage-outer {
  align-items: stretch;
}

#resources .mb-3 {
  text-align: center;
  margin-bottom: 2rem !important;
}

#resources .mb-3+.owl-courses-item {
  margin-bottom: 3rem;
}

/* =============================================================================
   7. Solutions (Accordion)
   ========================================================================== */
.apply-now .section-heading h2 {
  text-align: center;
}

.accordions {
  margin-left: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* =============================================================================
   8. Impact & Reach (Stats)
   ========================================================================== */
.stats-container {
  background: rgba(37, 99, 235, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-container h2 {
  color: var(--eduskill-text);
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-right: 30px;
}

.count-area-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.count-area-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.count-digit {
  font-size: 42px;
  font-weight: 700;
  color: var(--eduskill-primary);
  margin-bottom: 10px;
  background: linear-gradient(45deg, var(--eduskill-primary), var(--eduskill-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.count-title {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
}

.count-digit.futuristic-solution {
  color: #60a5fa;
}

.count-title.futuristic-solution-title {
  color: var(--eduskill-text);
  opacity: 1;
}

.video-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
}

.video-section h4 {
  color: var(--eduskill-text);
  margin-bottom: 15px;
  text-align: center;
}

.video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-container:hover {
  background: rgba(0, 0, 0, 0.3);
}

.play-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}



/* =============================================================================
   9. Contact Form Section
   ========================================================================== */
.glass-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#eduskill-demo-form {
  background: transparent;
  max-width: 100%;
  padding: 20px;
}

#eduskill-contact-heading {
  color: var(--eduskill-text);
  text-shadow: none;
  font-size: 24px;
  margin-bottom: 1.5rem;
}

#eduskill-demo-form input,
#eduskill-demo-form select,
#eduskill-demo-form textarea {
  border: 1px solid #d1e0f0;
  padding: 8px 12px;
  border-radius: 8px;
  width: 100%;
  background: #fff;
  box-shadow: none;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--eduskill-text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', Arial, sans-serif;
}

#eduskill-demo-form input:focus,
#eduskill-demo-form select:focus,
#eduskill-demo-form textarea:focus {
  border-color: var(--eduskill-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

#eduskill-demo-form label {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 13px;
}

#eduskill-demo-form .form-check label {
  color: var(--text-light);
}

#eduskill-demo-form label.required:after {
  content: ' *';
  color: #dc3545;
}

#eduskill-form-submit {
  background: var(--eduskill-success);
  color: #fff;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', Arial, sans-serif;
  display: block;
  margin: 0 auto;
  font-size: 14px;
}

#eduskill-form-submit:hover {
  background: #28a745;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

#eduskill-form-submit:active {
  transform: translateY(0);
}

.form-check {
  padding: 6px 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}

.form-check-input {
  position: relative;
  width: 16px !important;
  height: 16px !important;
  margin-right: 12px !important;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
}

.form-check-input:checked {
  background-color: var(--eduskill-primary) !important;
  border-color: var(--eduskill-primary) !important;
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  line-height: 1;
}

.form-check-label {
  color: var(--text-light) !important;
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  flex: 1;
}

.form-check-group {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  width: 100%;
  box-sizing: border-box;
}

.form-text.text-muted.mt-2 {
  text-align: center;
  font-size: 11px;
  color: var(--text-light) !important;
  margin-top: 0.5rem !important;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 6px;
  line-height: 1.5;
}

.right-info {
  background: transparent;
  margin-left: 0;
  height: 100%;
  width: 100%;
  padding: 25px;
  border-radius: 10px;
}

.right-info ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.right-info ul li {
  background: rgba(37, 99, 235, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  padding: 12px 15px;
  border-radius: 8px;
}

.right-info ul li h6 {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 5px;
}

.right-info ul li span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.4;
}

/* =============================================================================
   10. Footer Section
   ========================================================================== */
.site-footer {
  background-color: var(--eduskill-bg);
  padding: 50px 0 30px;
  color: #fff;
  margin-top: 0;
  width: 100%;
}

.site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.site-footer .footer-column h4 {
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 12px;
}

.site-footer .footer-links a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer .footer-links a:hover {
  color: var(--text-light);
  text-decoration: none;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-light) !important;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--text-light);
  background-color: var(--eduskill-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(30, 41, 59, 0.2);
}

/* =============================================================================
   11. Miscellaneous & Utility
   ========================================================================== */
.text-muted-weak {
  color: #6b7280
}

.text-undefined {
  color: var(--eduskill-text-dark) !important;
}

.undefined {
  color: var(--eduskill-text-dark) !important;
}

.text-muted {
  color: var(--eduskill-muted) !important;
}

.text-dark {
  color: var(--text-dark) !important;
}

.text-primary {
  color: var(--eduskill-primary) !important;
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 3px solid var(--eduskill-primary);
  outline-offset: 2px
}

.eduskill-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .9, .3, 1);
  will-change: opacity, transform
}

.eduskill-reveal.in-view {
  opacity: 1;
  transform: none
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}

:disabled,
.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.section {
  transition: opacity 0.3s ease-in-out;
}

button,
a,
input,
select,
textarea {
  transition: all 0.3s ease;
}

*:focus {
  outline: 2px solid var(--eduskill-primary);
  outline-offset: 2px;
}

.meeting-item,
.item,
.accordion {
  transition: all 0.3s ease;
}

.meeting-item:hover,
.item:hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section {
  overflow: hidden;
}

a,
button,
.meeting-item,
.item {
  cursor: pointer;
}

.meeting-item,
.item {
  cursor: pointer;
  user-select: none;
}

/* =============================================================================
   13. Cursor & Hover UX Enhancements
   ========================================================================== */

/* 1. Pointer on all clickable elements */
a,
button,
.btn,
.nav-link,
.main-nav .nav > li,
.sub-menu li,
.menu-trigger,
.scroll-to-section a,
.meeting-item,
.category-header,
.subcategory-item,
.accordion-head,
.play-icon,
.footer-links li,
.footer-social a,
.page-link,
.feature-card,
.usp-card,
.dropdown-item,
.close-btn {
  cursor: pointer !important;
}
.scroller,
.swiper-slide {
  cursor: grab;
}

/* 2. Default cursor on non-interactive text */
p,
h1,
h2,
h3,
h4,
h5,
h6,
.card-text,
.footer p,
.right-info span {
  cursor: default !important;
  user-select: text !important;
}

/* 3. Smart cursors for special elements */
.copyable,
.email-link,
pre,
code {
  cursor: copy !important;
}
.copyable:hover {
  background-color: var(--eduskill-soft);
}

.download-link {
  cursor: download !important;
}

.btn.disabled,
.btn:disabled {
  cursor: not-allowed !important;
  opacity: 0.6;
}

.loading {
  cursor: wait !important;
}

/* 4. Student-Friendly UX Enhancements */

/* Interactive Cards (Products, Features, etc.) */
.meeting-item,
.feature-card,
.usp-card {
  transition: all 0.3s ease;
}

.meeting-item:hover,
.feature-card:hover,
.usp-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.2);
}

/* Navbar Dropdown */
.header-area .main-nav .nav li.has-sub .sub-menu li a {
  transition: background 0.2s, padding-left 0.2s;
}
.header-area .main-nav .nav li.has-sub .sub-menu li a:hover {
  background-color: var(--secondary) !important;
  color: white !important;
  padding-left: 25px !important;
}

/* 6. Footer Links */
.site-footer .footer-links a {
  position: relative;
}
.site-footer .footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}
.site-footer .footer-links a:hover::after {
  width: 100%;
}

/* Fix for text on light backgrounds */
.category-header h5,
.subcategory-item h6,
.subcategory-item p {
    color: var(--eduskill-text-dark) !important;
}

.subcategory-item p {
    color: #6c757d !important; /* A slightly lighter dark color for description text */
}
.category-card.active .subcategory-item h6 {
  color: var(--eduskill-text-dark) !important;
}
.category-card.active .subcategory-item p {
  color: #6c757d !important;
}

.form-check-input {
  -webkit-appearance: checkbox; /* Revert to default browser appearance */
  -moz-appearance: checkbox;
  appearance: checkbox;
  background-color: #1f272b !important; /* Dark background for checkbox */
  border: 1px solid var(--eduskill-primary) !important;
}

.form-check-input:checked {
  background-color: var(--eduskill-primary) !important; /* Blue when checked */
}

.form-check-label a {
  color: #00BFFF !important; /* Sky blue for links */
  text-decoration: underline;
}

.form-block .small a {
  color: #00BFFF !important; /* Sky blue for email link */
  text-decoration: underline;
}

/* Fix for white text on white background in swiper cards */
.our-courses .swiper-slide .item .down-content p,
.our-courses .swiper-slide .card .down-content p {
    color: #6c757d !important;
}

.our-courses .swiper-slide .card img {
    width: 100%;
    height: 180px; /* Or any fixed height */
}

.resource-feature .image-box img {
    width: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    position: relative;
}
/* Custom Swiper styles for "Learning Transformation & AI Insights" section */
.our-courses .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  height: 6px !important;
  bottom: 0;
  left: 0;
}

.our-courses .swiper-scrollbar-drag {
  background: var(--eduskill-primary, #00BFFF) !important;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.our-courses .swiper-scrollbar-drag:hover {
  background: var(--eduskill-accent, #8A2BE2) !important;
}


/* Fix for white text on white background in solutions accordion */
.apply-now .accordions .accordion-body .content p {
    color: #6c757d !important;
}

.resources-section h3,
.resources-section p {
  color: var(--text-light) !important;
}

/* Navbar fixes */
.header-area.header-sticky, .header-area {
  background-color: var(--bg-dark) !important;
}

.header-area .main-nav .nav li a, .header-area .main-nav .logo {
  color: var(--text-light) !important;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a:hover {
  background-color: var(--secondary) !important;
  color: var(--text-light) !important;
}
.blogs-cta-section h3 {
  color: var(--eduskill-text-dark) !important;
  margin-bottom: 10px;
  text-align: center;
  margin-top: 0;
}

.blogs-cta-section .lead {
  color: #6c757d !important;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
}

.blogs-section {
  padding: 60px 0;
}

.research-section {
  padding: 30px 0;
}

.blog-card {
  background-color: #ffffff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 16px rgba(142, 160, 186, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  background-clip: padding-box;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(142, 160, 186, 0.18);

  border-color: var(--eduskill-primary);
  border-radius:12px;
}

.blog-card .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.blog-card a {
  color: var(--eduskill-text-dark) !important;
  font-weight: 600;
  text-decoration: none;
}
.blogs-cta-section {
  background-color: #ffffff;
  width: 100%;
  position: relative;
  margin:10px 0;
  padding: 40px 0;
}
/* Solution Pages Specific Styles */
.key-features-section {
  padding: 80px 0;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--eduskill-border);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.feature-icon {
  font-size: 48px;
  color: var(--eduskill-primary);
  margin-bottom: 20px;
}

.usp-section {
  padding: 80px 0;
}

.targeted-market .market-tag {
  display: inline-block;
  background-color: var(--eduskill-soft);
  color: var(--eduskill-primary);
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
}

/* General Product Page Styles */
.heading-page {
    background-image: url(../images/meetings-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 230px 0px 150px 0px;
    text-align: center;
    color: #fff;
}

.detailed-section .stat-item {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--eduskill-border);
}

.detailed-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--eduskill-primary);
}

.detailed-section .stat-label {
    font-size: 18px;
    /* color: var(--eduskill-text); */
    color: var(--eduskill-text-dark);
    margin-left: 10px;
}

.product-video-section .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #607d8b69;
}

.product-video-section .product-video,
.product-video-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonials-section .testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--eduskill-border);
    height: 100%;
}

.testimonials-section .testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: var(--eduskill-text);
}

.final-cta-section .btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

/* Solution Pages Specific Styles */
.key-features-section {
  padding: 80px 0;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(125, 134, 185, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.096);
  background-color: rgb(243, 240, 255);
}

.feature-icon {
  font-size: 48px;
  color: var(--eduskill-primary);
  margin-bottom: 20px;
}

.usp-section {
  padding: 80px 0;
}

.targeted-market .market-tag {
  display: inline-block;
  background-color: var(--eduskill-soft);
  color: var(--eduskill-primary);
  padding: 5px 15px;
  border-radius: 20px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.targeted-market .market-tag:hover {
  background-color: var(--eduskill-primary);
  color: var(--eduskill-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* General Product Page Styles */
.heading-page {
    background-image: url(../images/meetings-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 230px 0px 150px 0px;
    text-align: center;
    color: #fff;
}

.video-overlay, .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.detailed-section .stat-item {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--eduskill-border);
}

.detailed-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--eduskill-primary);
}

.detailed-section .stat-label {
    font-size: 18px;
    color: var(--eduskill-text-dark) !important;
    margin-left: 10px;
}

.product-video-section {
    padding-top: 80px;
    padding-bottom: 80px !important;
}

.product-video-section .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.product-video-section .product-video,
.product-video-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

.testimonials-section .testimonial-card {
    background-color: #ffffff; /* Changed to white */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e7eb; /* Softer border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonials-section .testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: var(--eduskill-text);
}

.final-cta-section .btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.final-cta-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* =============================================================================
   Product/Solution Page Specific Styles (from styles.css)
   ========================================================================== */

.heading-page {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 230px 0px 150px 0px;
    text-align: center;
    color: #fff;
    position: relative;
}

.heading-page .hero-content h1 {
    color: var(--eduskill-text) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-size: 3.5rem;
}

.heading-page .hero-content p.lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 1rem auto 0;
}

.key-features-section {
  padding: 80px 0;
}

.feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
}

.feature-icon {
  font-size: 48px;
  color: var(--eduskill-primary);
  margin-bottom: 20px;
}

.detailed-section {
    padding: 80px 0;
}

.detailed-section .stat-item {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--eduskill-border);
}

.detailed-section .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--eduskill-primary);
}

.detailed-section .stat-label {
    font-size: 18px;
    color : var(--eduskill-text);
    margin-left : 10px;
} 

.testimonials-section .testimonial-card {
    background-color: var(--eduskill-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--eduskill-border);
    height: 100%;
}

.testimonials-section .testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: var(--eduskill-text);
}

.final-cta-section .btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.final-cta-section[style*="#f0f8ff"] h2,
.detailed-section[style*="#f8f9fa"] h2 {
    color: #1a1a1a !important;
}

/* ====== Multimedia Section Styles ====== */
.media-section {
  width: 100%;
  padding: 80px 5%;
  background-color: #f9fafc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.media-video:hover video, .media-video:hover iframe {
  transform: scale(1.03);
}

.media-banner {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.media-banner img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-banner img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.media-banner figcaption {
  margin-top: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
  max-width: 480px;
}

/* Accordion hover/active text color fix */

.accordions .accordion:hover .accordion-body .content p {
    color: var(--eduskill-primary) !important;
}

.accordions .accordion.is-first-expanded .accordion-body .content p,
.accordions .accordion.is-open .accordion-body .content p {
    color: var(--eduskill-text) !important;
}

/* Map Placeholder Visibility */
#map-placeholder p {
    color: var(--eduskill-text-dark) !important;
}

.row.p-4.rounded.bg-light, .row.p-4.rounded.bg-light p, .row.p-4.rounded.bg-light h4 {
  color: var(--eduskill-text-dark) !important;
  background-color: #F5F5F5 !important;
}

.row.p-4.rounded.bg-light, .row.p-4.rounded.bg-light p, .row.p-4.rounded.bg-light h4 {
  color: var(--eduskill-text-dark) !important;
  background-color: #f8f9fa !important;
}

/* Ensure text in the final CTA is dark and readable on the light background */
.final-cta-section p.lead {
  color: var(--eduskill-text-dark);
  margin-top: 1rem;
}

/* meeting-details.html text visibility fix */
.meeting-single-item .down-content p {
    color: #6c757d !important;
}

.meeting-single-item .down-content h5 {
    color: #0A1931 !important;
}

/* =============================================================================
   NEW UNIFIED BANNER STYLES (as per index.html)
   ========================================================================== */
.page-hero {
  position: relative;
  background-color: var(--bg-dark);
  min-height: 60vh;
  padding: 180px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Base layer */
}

.page-hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1; 
}

.page-hero .caption {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  border: 1px solid white; 
  padding: 30px;
  border-radius: 15px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.page-hero .caption:hover {
  background-color: #172d8d13;
  transform: translateY(-3px smooth);
}

.feature-card p {
  color: rgb(97, 104, 139) !important;
}

.page-hero .caption .btn {
  margin-top: 20px;
  margin-top: 2rem;
}

.page-hero .caption h1 {
    color: #fff !important;
    font-weight: 1000 !important;
    font-size: 3rem !important;
}
/* ========================================
   HERO VIDEO + BANNER (NO CONTROLS)
   ======================================== */
.product-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0A1931;
}

.hero-video,
.hero-banner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,49,0.7), rgba(0,191,255,0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto 2rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* ========================================
   VIDEO: NO CONTROLS, FULL COVER
   ======================================== */
.hero-video::-webkit-media-controls { display: none !important; }
.hero-video { pointer-events: none; }

.btn-resource {
    font-size: 14px;
    color: white !important;
    padding: 12px 30px;
    background-color: var(--cta);
    padding: 12px 30px;
    display: inline-block;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-resource:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #28d4ff !important; /* Changes to green on hover */
    color: white !important;
}

/* Partner Section Styles */
.our-partner-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--eduskill-card);
    border-top: 1px solid var(--eduskill-border);
}

.our-partner-section h2 {
    color: var(--eduskill-text) !important;
    margin-bottom: 20px;
}

.our-partner-section p {
    color: var(--eduskill-muted) !important;
    max-width: 800px;
    margin: 0 auto 20px;
}

.our-partner-section .partner-logo {
    max-width: 250px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.our-partner-section .partner-logo:hover {
    transform: scale(1.05);
}

/* =============================================================================
   14. INLINE STYLE MIGRATION (GLOBAL FIXES)
   ========================================================================== */

/* Text color fixes for light backgrounds (affects multiple pages) */
/* Paragraphs on light backgrounds should be dark */
.section.bg-light p,
.detailed-section.bg-light p,
.final-cta-section.bg-light p,
.usp-section.bg-light p,
.detailed-section p,
.final-cta-section p
{
  color: var(--eduskill-text-dark) !important;
}


.section.bg-light h2,
.section.bg-light h3,
.detailed-section.bg-light h2,
.final-cta-section.bg-light h2,
.usp-section.bg-light h2,
.detailed-section h2, 
.final-cta-section h2 
{
  color: var(--eduskill-primary) !important;
}

/* Ensure list items on light backgrounds remain dark if not explicitly set elsewhere */
.section.bg-light li {
  color: var(--eduskill-text-dark) !important;
}

/* Final CTA paragraph styling */
.final-cta-section .lead {
  margin-top: 1rem;
  color: #0e2665 !important;
}

/* --- Assess Page Specific Styles --- */
.page-assess .section .col-lg-8,
.page-assess .section .col-lg-4,
.page-assess .list-group {
  color: var(--eduskill-text-dark);
}

.page-assess .section-heading p {
  color: var(--eduskill-text-dark) !important;
  font-weight: 500;
}

/* Video Player Styles (Assess & Proctor) */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-sound-toggle {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}
.video-sound-toggle:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Image Zoom Modal Styles (Assess) */
.zoomable-image {
  cursor: zoom-in;
  transition: transform 0.2s;
}
.image-zoom-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}
.image-zoom-modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  transition: transform 0.3s ease;
}
.image-zoom-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.image-zoom-close:hover,
.image-zoom-close:focus {
  color: #bbb;
  text-decoration: none;
}
#zoom-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44, 44, 44, 0.7);
  border-radius: 20px;
  padding: 5px;
  display: flex;
}
#zoom-controls button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
#zoom-controls button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#zoomInBtn {
  border-radius: 0 20px 20px 0;
}
#zoomOutBtn {
  border-radius: 20px 0 0 20px;
}

/* How to Use Timeline Styling (Assess) */
.how-to-use-timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 0;
}
.how-to-use-timeline::before {
  content: '';
  position: absolute;
  width: 3px;
  background-color: var(--eduskill-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
.timeline-item {
  padding: 2px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: white;
  border: 4px solid var(--eduskill-primary);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item:nth-child(even)::after { left: -10px; }
.timeline-content {
  padding: 15px 25px;
  background-color: #ffffff;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.timeline-content h3 {
  color: var(--eduskill-primary);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.timeline-content p {
  color: #5f6cdff8;
  font-size: 0.95rem;
}

/* --- Groups Page Specific Styles --- */
.page-groups .section.py-5 p,
.page-groups .section.py-5 h2,
.page-groups .section.py-5 h4 {
    color: #ffffff;
}
.page-groups .feature-card {
    background: #0e2665 !important;
    color: white !important;
}
.page-groups .feature-icon i {
  font-size: 2.5rem;
}

/* --- Proctor Page Specific Styles --- */
.product-page .feature-card p{
  color:rgb(230, 226, 226);
}
.product-page .feature-icon i {
  font-size: 2.5rem;
}
/* 2. Default cursor on non-interactive text */
p,
h1,
h2,
h3,
h4,
h5,
h6,
.card-text,
.footer p,
.right-info span {
  cursor: default !important;
  user-select: text !important;
  cursor: pointer;
}

/* 3. Smart cursors for special elements */
.copyable,
.email-link,
pre,
code {
  cursor: copy !important;
}
.copyable:hover {
  background-color: var(--eduskill-soft);
}

.download-link {
  cursor: download !important;
}

.btn.disabled,
.btn:disabled {
  cursor: not-allowed !important;
  opacity: 0.6;
}

.loading {
  cursor: wait !important;
}

/* 4. Student-Friendly UX Enhancements */

.meeting-item,
.feature-card,
.usp-card {
  transition: all 0.3s ease;
}

.meeting-item:hover,
.feature-card:hover,
.usp-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.2);
}

/* --- Practice Page Specific Styles --- */
.page-practice .video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.page-practice .coming-soon-overlay {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
}

/* --- Homepage Swiper Styles --- */
.page-home .our-courses .swiper {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
}
.page-home .our-courses .swiper-slide {
  width: 30%;
  min-width: 280px;
  height: auto;
}
.page-home .our-courses .swiper-slide .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--eduskill-border);
  box-shadow: 0 10px 28px rgba(6, 34, 63, 0.06);
}
.page-home .our-courses .swiper-slide .item .down-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  text-align: center;
}
.page-home .our-courses .swiper-scrollbar {
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  height: 6px;
  bottom: 0;
  left: 0;
}
.page-home .our-courses .swiper-scrollbar-drag {
  background: var(--eduskill-primary, #00BFFF);
  border-radius: 6px;
  transition: background-color 0.3s;
}
.page-home .our-courses .swiper-scrollbar-drag:hover {
  background: var(--eduskill-accent, #8A2BE2);
}
/* Page Specific Fixes from Inline Styles */

/* --- Assess Page --- */
.page-hero .caption h1 {
    color: #fff !important;
}
.section.bg-light p,
.section.bg-light h2,
.section.bg-light h3 {
  color: var(--eduskill-text-dark) !important;
}
.final-cta-section .lead {
    color: var(--eduskill-text-light-gray) !important;
    margin-top: 1rem;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video-sound-toggle {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}
.video-sound-toggle:hover { background-color: rgba(0, 0, 0, 0.8); }
.zoomable-image {
  cursor: zoom-in;
  transition: transform 0.2s;
}
.image-zoom-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}
.image-zoom-modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  transition: transform 0.3s ease;
}
.image-zoom-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.image-zoom-close:hover,
.image-zoom-close:focus {
  color: #bbb;
  text-decoration: none;
}
#zoom-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(44, 44, 44, 0.7);
  border-radius: 20px;
  padding: 5px;
  display: flex;
}
#zoom-controls button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
#zoom-controls button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#zoomInBtn {
  border-radius: 0 20px 20px 0;
}
#zoomOutBtn {
  border-radius: 20px 0 0 20px;
}

/* --- Proctor Page --- */
.product-page .feature-card p{
  color:rgb(230, 226, 226);
}

/* --- Groups Page --- */
.page-groups .section.py-5 p, .page-groups .section.py-5 h2, .page-groups .section.py-5 h4 {
    color: #ffffff;
}
.page-groups .feature-card {
    background: #0e2665 !important;
    color: white !important;
}


.page-groups .page-hero .caption h1 {
    font-size: 1.5rem !important;
}
.page-groups .page-hero .caption p {
    font-size: 1rem !important;
}
/* 2. Default cursor on non-interactive text */
p,
h1,
h2,
h3,
h4,
h5,
h6,
.card-text,
.footer p,
.right-info span {
  cursor: default !important;
  user-select: text !important;
}

/* 3. Smart cursors for special elements */
.copyable,
.email-link,
pre,
code {
  cursor: copy !important;
}
.copyable:hover {
  background-color: var(--eduskill-soft);
}

.download-link {
  cursor: download !important;
}

.btn.disabled,
.btn:disabled {
  cursor: not-allowed !important;
  opacity: 0.6;
}

.loading {
  cursor: wait !important;
}

/* 4. Student-Friendly UX Enhancements */

/* Interactive Cards (Products, Features, etc.) */
.meeting-item,
.feature-card,
.usp-card {
  transition: all 0.3s ease;
}

/* =============================================================================
   21. ACCESSIBILITY UTILITIES
   ========================================================================== */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* Prevent content from wrapping and affecting layout */
}


/* =============================================================================
   20. MOBILE ZOOM ICON FOR IMAGES
   ========================================================================== */
.image-zoom-container .zoom-icon-overlay {
  display: none; /* Hide on desktop by default */
}

@media (max-width: 991px) {
  .image-zoom-container {
    position: relative;
    display: block;
  }

  .image-zoom-container .zoom-icon-overlay {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    padding: 8px;
    background: #14141440;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 8px 8px 0; /* Updated border-radius as per user request */
    pointer-events: none; 
  }

  .image-zoom-container .zoom-icon-overlay svg {
    width: 20px;
    height: 20px;
    fill: white;
  }
}
/* Center the "About Proctor" section text */
.about-section {
    text-align: center;
}

/* =============================================================================
   17. MOBILE PADDING FIX FOR PRODUCT CARDS
   ========================================================================== */
@media (max-width: 767px) {
  .feature-card {
    padding: 20px !important;
  }
}
/* =============================================================================
   18. CUSTOM COLUMN MARGINS
   ========================================================================== */
.section .row > *,
.upcoming-meetings .row > * {
    margin: 20px 0; 
}

/* =============================================================================
   16. MOBILE NAVIGATION & FOOTER FIXES
   ========================================================================== */

.header-area .main-nav .nav li a.active {
  color: var(--eduskill-primary) !important;
}

/* =============================================================================
   16. MOBILE SUB-HEADER COLOR FIX
   ========================================================================== */
@media (max-width: 991px) {
  .sub-header {
    background-color: #191a20 !important; /* Darker background for mobile sub-header */
  }
}
/* Image Zoom Icon on Hover */
.image-zoom-container {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: inherit; /* Inherit border-radius from parent if any */
}

.image-zoom-container .zoomable-image {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.image-zoom-container .zoom-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 49, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.image-zoom-container:hover .zoom-icon-overlay {
  opacity: 1;
}

.image-zoom-container:hover .zoomable-image {
  transform: scale(1.05);
}
.image-zoom-container .zoom-icon-overlay svg {
  width: 54px;  /* Increased from 27px */
  height: 56px; /* Increased from 28px */
  transition: transform 0.3s ease;
}
.scroller {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: auto;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  cursor: grab;
  user-select: none;
}

.scroller__inner {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  align-items: center;
  transform: translateZ(0); /* Force hardware acceleration */
  gap: 1rem;
  padding-block: 1rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.scroller[data-animated="true"] .scroller__inner {
  animation: scroll 25s linear infinite;
  will-change: transform;
}

.scroller.is-dragging {
  cursor: grabbing;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

/* =============================================================================
   Solution Page Accordion Card Styles
   ========================================================================== */
.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.solution-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--eduskill-text-dark) !important;
  height: 100%;
  margin: 10px 0;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

/* =============================================================================
   Policy Page Specific Styles
   ========================================================================== */
.policy-content-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.policy-content-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
   23. UNIFIED TESTIMONIALS SECTION BACKGROUND
   ========================================================================== */
/* Ensures a consistent light background for all testimonial sections across all pages */
.testimonials-scroller-section,
body .testimonials-scroller-section {
    background-color: var(--learn-bg-light, #f9fafb) !important;
}


/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 100;
  /* Increased z-index from 100 to 1050 to ensure it's above other elements */
  width: 48px;
  height: 48px;
  background: var(--eduskill-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(10, 25, 49, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}

.back-to-top:hover {
  background-color: var(--eduskill-accent);
  transform: translateY(-4px);
}

.back-to-top i {
  color: #fff;
  font-size: 18px;
}
.testimonial-card-new {
  background-color: #ffffff;
  border: 1px solid #e0e5f2;
  border-radius: 12px;
  padding: 2rem;
  width: 380px;
  max-width: 90vw;
  box-shadow: 0 8px 16px rgba(142, 160, 186, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0; /* Prevent cards from shrinking */
}
.testimonial-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(142, 160, 186, 0.18);
}
.testimonial-card-new p {
  color: #3c4858;
  font-style: italic;
  margin: 0;
}
.testimonial-card-new small {
  color: var(--eduskill-primary);
  font-weight: 600;
  align-self: flex-end;
}
.testimonial-card-new small {
  color: var(--eduskill-primary);
  font-weight: 600;
  align-self: flex-end;
}

/* Dark background variant */
.section-heading.dark h2,
.section-title.dark {
  color: var(--text-color-light);
}
.section-heading.dark h2::after,
.section-title.dark::after {
  background-color: rgba(255, 255, 255, 0.25);
}
.section-heading.dark h2::before,
.section-title.dark::before {
  background-color: var(--accent-blue);
}

.large-solution-text {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.section.container .lead + .lead {
    margin-top: 1rem;
}
.section-heading {
  padding-top: 1.5rem;
}

/* --- Mobile Navigation Overlay --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000; /* Below the menu, above the content */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* =============================================================================
   15. MOBILE NAVIGATION & FOOTER FIXES
   ========================================================================== */
@media (max-width: 991px) {
  .header-area .main-nav .nav {
    background-color: var(--bg-dark);
    overflow-y: auto;
  }

  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0 25px !important;
    text-align: left;
  }

  .header-area .main-nav .nav li.has-sub > a {
    position: relative;
  }

  .header-area .main-nav .nav li.has-sub::after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 14px;
    color: var(--text-light);
    position: absolute;
    right: 25px;
    top: 18px;
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .header-area .main-nav .nav li.has-sub.active::after {
    transform: rotate(-180deg);
  }}

/* =============================================================================
   22. MOBILE VISIBILITY FIXES
   ========================================================================== */
@media (max-width: 768px) {
  /* Prevent sections from hiding content that might overflow on mobile. */
  section {
    overflow: visible;
  }
}