﻿/* =============================================================================
   Eduskill Custom Stylesheet
   ========================================================================== */

/* =============================================================================
   TABLE OF CONTENTS
   0. Font Definitions (Self-hosted)
   1. Global Styles
   2. Header Section
   3. Banner / Hero Section
   4. Products Section
   5. Product Categories Section
   6. Learning Transformation & AI Insights
   7. Solutions (Accordion / Tabs)
   8. Platforms / Modules
   9. Testimonials / Success Stories
   10. Awards & Recognition
   11. Partners & Clients
   12. Research / Blogs / Content Pages
   13. Resources & Downloads
   14. CTA Sections
   15. Forms (Non-contact)
   16. Impact & Reach (Stats)
   17. Contact Form Section
   18. Footer Section (GLOBAL DESKTOP)
   19. Utility Classes
   20. Animations & Transitions
   21. Third-party Overrides (Bootstrap / Plugins)
   22. Page-specific Fixes
   23. Accessibility Helpers
   24. Performance / Fallback Rules
   25. Responsive & Mobile Overrides (PHONE + FOOTER ONLY)
   ========================================================================== */

/* =============================================================================
   0. Font Definitions & Global Styles (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');
}

:root {
  --sky-blue-primary: #38bdf8;
  /* Medium Electric Sky Blue */
  --sky-blue-hover: #0ea5e9;
  /* Darker Warm Sky Blue */
  --sky-blue-light: #bae6fd;
  /* Light Sky Blue */
  --sky-blue-border: #d7e1f3;
  /* Subtle Blue-Grey */
  --bg-dark: #1e3a8a;
  /* Unchanged: Retaining brand navy */
  --text-light: #F5F5F5;
  --text-dark: #0e2665;
  --eduskill-primary: var(--sky-blue-primary);
  --eduskill-primary-hover: var(--sky-blue-hover);
  --eduskill-soft: var(--sky-blue-light);
  --eduskill-border: var(--sky-blue-border);
  --eduskill-accent: var(--sky-blue-primary);
  /* Legacy accent updated to new primary */
  --eduskill-bg: var(--bg-dark);
  --eduskill-text: var(--text-light);
  --eduskill-text-dark: var(--text-dark);
  --eduskill-card: #172554;
  --eduskill-hover: #172554;
  --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;
}

.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: currentColor;
  opacity: 0.4;
}

/* 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: var(--eduskill-primary);
  border-radius: 3px;
  z-index: 1;
}

.main-button-red a,
.main-button-yellow a {
  background: #3b82f6;
  color: #ffffff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
  font-size: 13px;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff !important;
}

.main-button-red a:hover,
.main-button-yellow a:hover {
  background: #072d97;
  color: #fff !important;
}

#eduskill-book-demo0-btn {
  background: #32CD32 !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(50, 205, 50, 0.12);
  transition: 0.2s ease;
}

#eduskill-book-demo0-btn:hover {
  background: #218838 !important;
  color: #ffffff !important;
}

#eduskill-book-demo-btn {
  background: #32CD32;
  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(50, 205, 50, 0.12);
  transition: 0.2s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
}

#eduskill-book-demo-btn:hover {
  background: #218838;
  color: #ffffff;
}

.btn-primary {
  background: #3b82f6;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #fff !important;
  padding: 10px 20px !important;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: medium;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: #1e3a8a;
  color: #fff !important;
}

.page-hero .btn-primary:hover,
.main-banner .main-button-red a:hover,
.main-button-yellow a:hover {
  background: #1112d2de !important;
  color: #fff !important;
}

.main-button-green a {
  color: #ffffff;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: #ffffff !important;
  background-color: #32CD32;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.2s ease;
  cursor: pointer;
}

.main-button-green a:hover {
  background: #218838;
  color: #ffffff;
}

/* Green button style for forms */
.btn-green {
  background-color: #32CD32 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-green:hover {
  background-color: #218838 !important;
  color: #ffffff !important;
}

.meeting-item .thumb {
  margin-bottom: 14px;
  color: var(--eduskill-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.our-courses .item .down-content h4 {
  color: #83bbfa;
  font-size: 1.5rem;
  text-align: center;
}

.eduskill-icon-wrap {
  background-color: var(--sky-blue-light);
  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(--sky-blue-primary);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.eduskill-icon-wrap:hover {
  transform: scale(1.1) translateY(-2px);
  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;
}

.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(--sky-blue-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: var(--sky-blue-primary) !important;
  font-weight: 700;
}

.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;
}

.meeting-item .down-content {
  background-color: #1e3a8a;
  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;
}

.eduskill-product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px
}

.eduskill-product-categories li {
  background: var(--sky-blue-light);
  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(--sky-blue-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.08);
}

.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;
  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 .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: auto !important;
  overflow: hidden;
  box-sizing: border-box;
}

.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;
}

.owl-courses-item .down-content .date,
.owl-courses-item .down-content .meta,
.eduskill-products-grid .meeting-item .down-content .date {
  display: none !important;
}

.owl-stage .owl-item .item {
  height: 100%;
  margin: 20px;
  max-height: 250px;
  box-sizing: border-box;
}

.owl-carousel .owl-stage-outer {
  align-items: stretch;
}

.count-area-content .count-digit {
  color: var(--sky-blue-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;
}

#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: 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(--sky-blue-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-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;
}

#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.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#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.text-muted.mt-2 {
  text-align: center;
  font-size: 13px;
  color: var(--text-light) !important;
  margin-top: 1rem !important;
  display: block;
}

/* Improved container spacing */
.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Modern design enhancements */
body {
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* =============================================================================
   2. Header Section
   ========================================================================== */

.sub-header {
  display: none;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 80px;
  /* Prevent overlap with back-to-top button */
}

.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);
}

.footer,
.site-footer {
  background-color: #172554;
  padding: 50px 0 30px;
  color: #fff;
  margin-top: 0;
  width: 100%;
}

.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: #f1f5f9;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer .footer-links a.active {
  color: #00b3ff !important;
  font-weight: 600;
}

.footer-bottom p:first-of-type {
  font-size: 0 !important;
}

.footer-bottom p:first-of-type::after {
  content: "© 2025 EduskillX (Eduskill Group). All rights reserved. Last updated Dec 2025";
  font-size: 14px;
  color: #fff;
  visibility: visible;
}

.footer-bottom p {
  color: #fff !important;
}


/* 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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--eduskill-primary);
  outline-offset: 2px
}

/* 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
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Better disabled states */
:disabled,
.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button,
a,
input,
select,
textarea {
  transition: all 0.3s ease;
}

.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;
}

a,
button,
.meeting-item,
.item {
  cursor: pointer;
}

.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;
}


.main-button-red a:hover,
.main-button-yellow a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#eduskill-demo-form {
  max-width: 100%;
  padding: 20px;
}

#eduskill-contact-heading {
  font-size: 24px;
  margin-bottom: 1.5rem;
}

#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;
}

.form-check {
  display: flex !important;
  align-items: flex-start !important;
  padding: 8px 0 !important;
  margin-bottom: 10px !important;
  position: relative !important;
}

.form-check-input[type="checkbox"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;

  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;

  /* Visual style - unchecked */
  background-color: #ffffff !important;
  border: 2px solid #94a3b8 !important;
  border-radius: 4px !important;

  margin: 0 !important;
  margin-right: 10px !important;
  margin-top: 2px !important;
  padding: 0 !important;

  cursor: pointer !important;
  position: relative !important;
  flex-shrink: 0 !important;

  transition: all 0.2s ease !important;
}

.form-check-input[type="checkbox"]:hover {
  border-color: var(--eduskill-primary, #38bdf8) !important;
}

.form-check-input[type="checkbox"]:checked {
  background-color: #38bdf8 !important;
  border-color: #38bdf8 !important;
}

/* The tick mark using ::after pseudo-element */
.form-check-input[type="checkbox"]:checked::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 5px !important;
  top: 1px !important;
  width: 6px !important;
  height: 12px !important;
  border: solid white !important;
  border-width: 0 2.5px 2.5px 0 !important;
  transform: rotate(45deg) !important;
}

.form-check-label {
  font-size: 13px !important;
  color: #fff !important;
  cursor: pointer !important;
  line-height: 1.4 !important;
  padding-top: 2px !important;
}

#eduskill-form-submit {
  padding: 12px 28px;
  font-size: 15px;
}

#eduskill-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.right-info {
  width: 100%;
  padding: 10px;
  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: 10px;
}

.right-info ul li {
  padding: 8px 10px;
  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;
}

.our-facts {
  background-image: none !important;
  background-color: var(--eduskill-bg);
}

.usp-card {
  background-color: #ffffff;
  padding: 20px;
  /* Bigger white border/padding as requested */
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: inline-block;
  max-width: 100%;
  /* Prevent collapse during loading */
  min-height: 250px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usp-card img {
  max-width: 95%;
  /* Reduce image size inside the white box */
  height: auto;
  border-radius: 5px;
  display: inline-block;
}

.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;
  background-color: #0a1931;
}

.count-area-content:hover {
  transform: translateY(-8px);
  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;
  /* Keep this for gradient text */
  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;
}

@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;
}

.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-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);
}

#eduskill-demo-form {
  background: transparent !important;
}

#eduskill-contact-heading {
  color: var(--eduskill-text);
  text-shadow: none;
}

.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;
}

.header-area {
  background-color: rgba(10, 25, 49, 0.85);
  /* Deep Nebula Blue with transparency */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  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;
  /* No shadow initially */
  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 #d7e1f3;
  /* Soft blue-grey border */
  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;
}

.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;
}

.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(--eduskill-primary) !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;

}

.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);
}

.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);
}


/* =============================================================================
   3. Banner / Hero 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: #29292b8f;
  border: 1px solid rgb(255, 255, 255);
  top: 50%;
  border-radius: 15px;
  margin: 15px;
  padding: 30px;
  max-width: 850px;
  /* Unchanged */
  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;
}

.upcoming-meetings {
  padding-top: 80px;
}

.meeting-item {
  background: #1e3a8a;
  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 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #3e50a1;
}

.meeting-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--eduskill-primary);
}

.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;
}

.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);
  cursor: pointer;
}

.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 {
  cursor: pointer;
  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;
  cursor: pointer;
}

.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
   ========================================================================== */
.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(-8px);
  /* background-color: var(--eduskill-hover); */
  /* Do not change card background */
  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 / Tabs)
   ========================================================================== */
.apply-now .section-heading h2 {
  text-align: center;
}

.accordions {
  margin-left: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* =============================================================================
   16. 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;
  background-color: #3361ab;
}

.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;
}

/* =============================================================================
   17. Contact Form Section
   ========================================================================== */
.contact-us .right-info {
  background-color: transparent;
  border: none;
}

.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: #32CD32;
  color: #fff;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', Arial, sans-serif;
  display: block;
  margin: 0 auto;
  font-size: 14px;
}

#eduskill-form-submit:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 127, 255, 0.25);
}

#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: 10px;
  border-radius: 10px;
}

.right-info ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.right-info ul li {
  background: rgba(37, 99, 235, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: none;
  padding: 8px 10px;
  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;
}


/* =============================================================================
   18. Footer Section (GLOBAL DESKTOP)
   ========================================================================== */
.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;
}

.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);
}


/* =============================================================================
   19. Utility Classes
   ========================================================================== */
.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;
}


.meeting-item,
.item {
  cursor: pointer;
  user-select: none;
}


/* =============================================================================
   19. Utility Classes
   ========================================================================== */

/* 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;
}

.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;
}

/* Interactive Cards (Products, Features, etc.) */
.meeting-item,
.feature-card,
.usp-card {
  transition: all 0.3s ease;
}

.award-logo-item:hover,
.story-card:hover,
.modern-card:hover {
  border-color: var(--eduskill-primary);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 191, 255, 0.2);
}

.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 {
  color: white !important;
  padding-left: 25px !important;
}

.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(--eduskill-primary);
  transition: width 0.3s ease;
}

.site-footer .footer-links a:hover::after {
  width: 100%;
}

.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: var(--eduskill-primary) !important;
  /* Sky blue for links */
  text-decoration: underline;
}

.form-block .small a {
  color: #00BFFF !important;
  /* Sky blue for email link */
  text-decoration: underline;
}

.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;
}

.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;
}

.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 {
  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;
}

.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;
}

.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;
}

.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: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  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);
}

.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;
}

/* =============================================================================
   22. Page-specific Fixes
   ========================================================================== */

.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;
}


.accordions .accordion:hover .accordion-body .content p {
  color: #3b68f4 !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 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-single-item .down-content p {
  color: #6c757d !important;
}

.meeting-single-item .down-content h5 {
  color: #0A1931 !important;
}


/* =============================================================================
   3. Banner / Hero Section
   ========================================================================== */
.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: #29292b8f;
  transition: background-color 0.3s ease;
}

.page-hero .caption:hover {
  background-color: #00003dc7;
  transform: translateY(-3px smooth);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}


.feature-card p {
  color: rgb(97, 104, 139) !important;
}

.page-hero .caption .btn {
  margin-top: 20px;
  margin-top: 2rem;
  background-color: #3b82f6;
  color: #ffffff;
}

.page-hero .caption h1 {
  color: #fff !important;
  font-weight: 1000 !important;
  font-size: 3rem !important;
}

.page-hero .caption .btn:hover {
  background-color: #1e3a8a;
  color: #ffffff;
}

.final-cta-section .btn-lg {
  padding: 15px 40px;
  font-size: 18px;
  background-color: #3b82f6;
  color: #ffffff;
}

.final-cta-section .btn-lg:hover {
  background-color: #1e3a8a;
  color: #ffffff;
}

.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);
}

.btn-resource {
  background: #3b82f6;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
  font-size: 14px !important;
  padding: 12px 30px !important;
  display: inline-block;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.btn-resource:hover {
  background: #1e3a8a;
  color: #ffffff !important;
}

.resources-section .btn-resource,
.resources-section .btn-primary {
  background-color: #38bdf8;
  /* sky blue */
  color: #ffffff !important;
  border: none;
}

.resources-section .btn-resource:hover,
.resources-section .btn-primary:hover {
  background-color: #09b112;
  color: #ffffff !important;
}

.final-cta-section .btn-lg {
  padding: 15px 40px;
  font-size: 18px;
  background-color: #32CD32;
  /* Green */
  color: #ffffff;
}

.final-cta-section .btn-lg:hover {
  background-color: #218838;
  /* Darker Green */
  color: #ffffff;
}

/* =============================================================================
   11. Partners & Clients
   ========================================================================== */
.our-partner-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--eduskill-bg);
  background-color: #0b2c60;
  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);
}


/* =============================================================================
   22. Page-specific Fixes
   ========================================================================== */
.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;
}

.section.bg-light li {
  color: var(--eduskill-text-dark) !important;
}

.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-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);
}

.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 {
  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;
}

.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;
}

.product-page .feature-card p {
  color: rgb(230, 226, 226);
}

.product-page .feature-icon i {
  font-size: 2.5rem;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
.card-text,
.footer p,
.right-info span {
  cursor: default !important;
  user-select: text !important;
  cursor: pointer;
}

.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;
}

.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);
}

.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;
}

.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);
}

/* --- Assess Page --- */
.page-hero .caption h1 {
  color: #f0f0f0 !important;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.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;
}

.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;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
.card-text,
.footer p,
.right-info span {
  cursor: default !important;
  user-select: text !important;
}

.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;
}

/* Interactive Cards (Products, Features, etc.) */
.meeting-item,
.feature-card,
.usp-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* =============================================================================
   23. Accessibility Helpers
   ========================================================================== */
.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 */
}


/* =============================================================================
   25. Responsive & Mobile Overrides (PHONE + FOOTER ONLY)
   ========================================================================== */
.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;
  }
}

.about-section {
  text-align: center;
}

@media (max-width: 767px) {
  .feature-card {
    padding: 20px !important;
  }
}

.section .row>*,
.upcoming-meetings .row>* {
  margin: 20px 0;
}

.header-area .main-nav .nav li a.active {
  color: var(--eduskill-primary) !important;
}

@media (max-width: 991px) {
  .sub-header {
    background-color: #191a20 !important;
    /* Darker background for mobile sub-header */
  }
}

.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 {
  /* =============================================================================
   20. Animations & Transitions
   ========================================================================== */
  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));
  }
}


/* =============================================================================
   7. Solutions (Accordion / Tabs)
   ========================================================================== */
.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);
}


/* =============================================================================
   22. Page-specific Fixes
   ========================================================================== */
.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);
}


/* =============================================================================
   22.2 Testimonials / Success Stories
   ========================================================================== */
.testimonials-scroller-section,
body .testimonials-scroller-section {
  background-color: var(--learn-bg-light, #f9fafb) !important;
}

.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;
}

.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-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;
}

/* =============================================================================
   24. Performance / Fallback Rules
   ========================================================================== */
.loading-spinner-container {
  position: relative;
  min-height: 100px;
}

.loading-spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 37, 84, 0.7);
  /* match theme dark blue */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--sky-blue-light);
  border-top: 4px solid var(--sky-blue-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.image-loading {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 37, 84, 0.4);
  /* Semi-transparent brand dark */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* Let clicks pass through if needed */
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #38bdf8;
  /* Sky blue */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* =============================================================================
   Global Policy Link Styles (Added via Agent)
   ========================================================================== */
.policy-link {
  color: #38bdf8 !important;
  /* Sky Blue */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}

.policy-link:hover {
  color: #0ea5e9 !important;
  /* Darker Sky Blue */
  border-bottom: 1px solid currentColor;
}

/* Ensure check labels are readable and pointer */
.form-check-label {
  cursor: pointer;
}


/* Mobile Responsiveness for Stats Grid */
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr !important;
    margin-right: 0 !important;
    gap: 15px !important;
  }

  .count-area-content {
    padding: 20px !important;
  }
}


/* =============================================================================
   26. Hero Video Background Support
   ========================================================================== */

.heading-page {
  position: relative;
  overflow: hidden;
  /* Ensure content stays on top */
}

.heading-page video.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

/* Ensure overlay stays above video but below content */
.heading-page .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay for readability */
  z-index: 1;
}

/* Ensure text content is above overlay */
.heading-page .container {
  position: relative;
  z-index: 2;
}

/* Targeted Product Badges (Custom) */
.targeted-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.targeted-product-link,
.targeted-product-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #f0f9ff;
  color: #1e3a8a;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.targeted-product-link:hover {
  background-color: #38bdf8;
  color: #ffffff;
  border-color: #38bdf8;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(56, 189, 248, 0.2);
}

.targeted-product-badge {
  background-color: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
  cursor: default;
}