/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Design System */
:root {
  /* Colors */
  --primary-color: #0a1a56;
  --secondary-color: #DF451D;
  --tertiary-color: #0090ff;
  --banner-bg: #290d01;
  --star:#FFD700;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f5f5f5;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Gradient */
  --gradient: linear-gradient(180deg, #00C0E8 -55.6%, #08ABCD -13.59%, #143567 100%);
  --gradient-text: linear-gradient(to left, #ffd600, #df451d);
  
  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Inter', sans-serif;  

  /* Font Sizes */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --text-6xl: 54px;

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Line Heights */
  --leading-base: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.8125;
  --leading-loose: 2;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-13: 52px;
  --space-14: 56px;
  --space-15: 60px;
  --space-16: 64px;
  --space-20: 80px;

  /* Border Radius */
  --rounded-sm: 4px;
  --rounded: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-2xl: 24px;
  --rounded-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-footer: 0px 0px 10px rgba(0, 0, 0, 0.4), 0 0px 1px rgba(0, 0, 0, 0.5);
  --shadow-primary: 5px 5px 0px 0px var(--primary-color);
}

@media (max-width: 767px) {
  :root {
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 20px;
  --text-3xl: 22px;
  --text-4xl: 28px;
  --text-5xl: 34px;
  --text-6xl: 38px;
  }
 
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
@media (min-width: 576px) {
  .container, .container-sm {
      max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1320px;
  }
}

/* Body Styles */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  color: var(--gray-900);
}

h1 { font-size: var(--text-5xl); font-weight: var(--font-semibold); margin-bottom: var(--space-6); line-height: var(--leading-normal); }
h2 { font-size: var(--text-4xl); font-weight: var(--font-semibold); margin-bottom: var(--space-5); }
h3 { font-size: var(--text-3xl); font-weight: var(--font-semibold); margin-bottom: var(--space-4); }
h4 { font-size: var(--text-2xl); font-weight: var(--font-semibold); margin-bottom: var(--space-4); }
h5 { font-size: var(--text-xl); font-weight: var(--font-semibold); margin-bottom: var(--space-3); }
h6 { font-size: var(--text-lg); font-weight: var(--font-medium); margin-bottom: var(--space-3); }

/* Link Styles */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.text-subtitle {
  margin: 0 auto var(--space-8);
  width: 100%;
  max-width: 650px;
}

/* Utility Classes */

/* Colors */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-tertiary { color: var(--tertiary-color) !important; }
.text-white { color: var(--white) !important; }
.text-gray-500 { color: var(--gray-500) !important; }
.text-gray-600 { color: var(--gray-600) !important; }
.text-gray-700 { color: var(--gray-700) !important; }
.text-gray-800 { color: var(--gray-800) !important; }
.text-gray-900 { color: var(--gray-900) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-gray-50 { background-color: var(--gray-50) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }
.bg-gray-200 { background-color: var(--gray-200) !important; }

.border-primary { border-color: var(--primary-color) !important; }
.border-secondary { border-color: var(--secondary-color) !important; }
.border-gray-200 { border-color: var(--gray-200) !important; }
.border-gray-300 { border-color: var(--gray-300) !important; }

/* Typography */
.font-body { font-family: var(--font-body) !important; }
.font-heading { font-family: var(--font-heading) !important; }

.text-xs { font-size: var(--text-xs) !important; }
.text-sm { font-size: var(--text-sm) !important; }
.text-base { font-size: var(--text-base) !important; }
.text-lg { font-size: var(--text-lg) !important; }
.text-xl { font-size: var(--text-xl) !important; }
.text-2xl { font-size: var(--text-2xl) !important; }

.font-light { font-weight: var(--font-light) !important; }
.font-normal { font-weight: var(--font-normal) !important; }
.font-medium { font-weight: var(--font-medium) !important; }
.font-semibold { font-weight: var(--font-semibold) !important; }
.font-bold { font-weight: var(--font-bold) !important; }

.leading-tight { line-height: var(--leading-tight) !important; }
.leading-normal { line-height: var(--leading-normal) !important; }
.leading-relaxed { line-height: var(--leading-relaxed) !important; }

.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }
.normal-case { text-transform: none !important; }

.tracking-wide { letter-spacing: 0.1em !important; }
.tracking-wider { letter-spacing: 0.15em !important; }
.tracking-widest { letter-spacing: 0.2em !important; }
.tracking-normal { letter-spacing: normal !important; }

/* Spacing */
.p-1 { padding: var(--space-1) !important; }
.p-2 { padding: var(--space-2) !important; }
.p-3 { padding: var(--space-3) !important; }
.p-4 { padding: var(--space-4) !important; }
.p-5 { padding: var(--space-5) !important; }
.p-6 { padding: var(--space-6) !important; }
.p-7 { padding: var(--space-7) !important; }
.p-8 { padding: var(--space-8) !important; }

.m-1 { margin: var(--space-1) !important; }
.m-2 { margin: var(--space-2) !important; }
.m-3 { margin: var(--space-3) !important; }
.m-4 { margin: var(--space-4) !important; }
.m-5 { margin: var(--space-5) !important; }
.m-6 { margin: var(--space-6) !important; }

/* Border Radius */
.rounded-sm { border-radius: var(--rounded-sm) !important; }
.rounded { border-radius: var(--rounded) !important; }
.rounded-lg { border-radius: var(--rounded-lg) !important; }
.rounded-xl { border-radius: var(--rounded-xl) !important; }
.rounded-2xl { border-radius: var(--rounded-2xl) !important; }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }
.shadow-primary-bg { box-shadow: var(--shadow-primary) !important; }

/* Button Utilities */
/* Btn */
.btn {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: var(--font-medium);
  line-height: var(--leading-base);
  transition: all 0.3s ease;
  height: 50px;
  border-radius: var(--space-2);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  width: fit-content;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .btn {
    height: 42px;
    padding: 8px 15px;
  }
  /* h1 { font-size: var(--text-3xl); font-weight: var(--font-semibold); margin-bottom: var(--space-6); line-height: var(--leading-snug); text-align:left; }
  h2 { font-size: var(--text-2xl); font-weight: var(--font-semibold); margin-bottom: var(--space-6); line-height: var(--leading-snug); text-align:left !important; }
  h3 { font-size: var(--text-1xl); font-weight: var(--font-semibold); margin-bottom: var(--space-6); line-height: var(--leading-snug); text-align:left !important; }
  h4 { font-size: var(--text-xl); font-weight: var(--font-semibold); margin-bottom: var(--space-6); line-height: var(--leading-snug); text-align:left; } */
}

.btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  border-radius: var(--space-2);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

/* Primary Button */
.btn-primary {
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: var(--white);
}

.btn-primary::before {
  background: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-color);  
  color: var(--white);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible {
  border-color: var(--tertiary-color);
  background-color: var(--tertiary-color);
  color: var(--white);
}

.btn-primary:hover::before {
  height: 100%;
}

/* Outline Primary Button */
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--tertiary-color);
  color: var(--tertiary-color);
}

.btn-outline-primary::before {
  background: var(--tertiary-color);
}

.btn-outline-primary:hover {
  background-color: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: var(--white);
}

.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible {
  border-color: var(--tertiary-color);
  background-color: var(--tertiary-color);
  color: var(--white);
}

.btn-outline-primary:hover::before {
  height: 100%;
}

/* Secondary Button */
.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary::before {
  background: var(--gradient);
}

.btn-secondary:hover {
  background-color: var(--gradient);
  border-color: transparent;
  color: var(--white);
  background-image: linear-gradient(var(--secondary-color)), var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.btn.btn-secondary:focus-visible {
  background-color: var(--gradient);
  color: var(--white);
  border: 1px solid transparent;
  background-image: var(--gradient);
  background-origin: border-box;
}

.btn-secondary:hover::before {
  height: 100%;
}

/* Navbar Styles */
.navbar-main {
  background-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030; */
}

.navbar {
  padding: 0;
}

/* Navigation Links */
.nav-link {
  font-family: var(--font-body) !important;
  font-weight: var(--font-medium) !important;
  font-size: var(--text-base) !important;
  color: var(--white) !important;
  transition: all 0.2s ease !important;
  padding: var(--space-5) var(--space-3) !important;
}

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

/* Mega Menu Styles */
.mega-menu {
  padding: 0;
  border-radius: var(--rounded-lg);
  border-top: 1px solid var(--gray-300);
  margin-top: 0;
  box-shadow: var(--shadow-xl);
  width: 100%;
  left: 0;
  border: 1px solid var(--gray-300);
  /* Set standard height for desktop */
  max-height: 600px;
  overflow-y: auto;
}

/* Mega menu container for better scroll control */
.mega-menu .container {
  max-height: 600px;
  overflow-y: auto;
}

/* Custom scrollbar styling for mega menu */
.mega-menu::-webkit-scrollbar,
.mega-menu .container::-webkit-scrollbar {
  width: 8px;
}

.mega-menu::-webkit-scrollbar-track,
.mega-menu .container::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: var(--rounded);
}

.mega-menu::-webkit-scrollbar-thumb,
.mega-menu .container::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: var(--rounded);
  transition: background-color 0.2s ease;
}

.mega-menu::-webkit-scrollbar-thumb:hover,
.mega-menu .container::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Ensure proper spacing for scrollable content */
.mega-menu .tab-content {
  padding-right: var(--space-2);
}

/* Vertical tab content area with scroll */
.mega-menu .col-lg-9 {
  max-height: 500px;
  overflow-y: auto;
  padding-right: var(--space-3);
}

/* Custom scrollbar for vertical tab content */
.mega-menu .col-lg-9::-webkit-scrollbar {
  width: 6px;
}

.mega-menu .col-lg-9::-webkit-scrollbar-track {
  background: var(--gray-50);
  border-radius: var(--rounded-sm);
}

.mega-menu .col-lg-9::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: var(--rounded-sm);
}

.mega-menu .col-lg-9::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        z-index: 999999;
    }
}
/* Mobile adjustments - remove height restrictions */
@media (max-width: 991) {
  .mega-menu {
    max-height: none;
    overflow-y: visible;
  }
  
  .mega-menu .container {
    max-height: none;
    overflow-y: visible;
  }
  
  .mega-menu .col-lg-9 {
    max-height: none;
    overflow-y: visible;
    padding-right: var(--space-4);
  }
}

@media (min-width: 992px) {
    .navbar .container-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Large desktop - increase height slightly */
@media (min-width: 1200px) {
  .mega-menu {
    max-height: 650px;
  }
  
  .mega-menu .container {
    max-height: 650px;
  }
  
  .mega-menu .col-lg-9 {
    max-height: 550px;
  }
}

/* Extra large desktop - more height */
@media (min-width: 1400px) {
  .mega-menu {
    max-height: 700px;
  }
  
  .mega-menu .container {
    max-height: 700px;
  }
  
  .mega-menu .col-lg-9 {
    max-height: 600px;
  }
}

/* Horizontal Tabs */
.horizontal-tabs {
  border-bottom: 1px solid var(--gray-300);
  padding: var(--space-3) 0;
}

.horizontal-tabs .nav-link {
  border: none !important;
  color: var(--gray-600) !important;
  font-weight: var(--font-medium) !important;
  padding: var(--space-2) var(--space-4) !important;
  margin-right: var(--space-2) !important;
  background-color: transparent !important;
}

.horizontal-tabs .nav-link:hover {
  color: var(--primary-color) !important;
  background-color: transparent !important;
  border-color: transparent !important;
}

.horizontal-tabs .nav-link.active {
  color: var(--primary-color) !important;
  background-color: transparent !important;
  border-bottom: 2px solid var(--primary-color) !important;
  border-radius: 0 !important;
}


/* Vertical Tabs */
.vertical-tabs {
  border-right: none;
}

.vertical-tabs .nav-link {
  border: none !important;
  color: var(--gray-600) !important;
  padding: var(--space-4) var(--space-4) !important;
  border-radius: 0 !important;
  margin-bottom: var(--space-1) !important;
  text-align: left !important;
  background-color: transparent !important;
}

.vertical-tabs .nav-link:hover {
  color: var(--primary-color) !important;
  background-color: var(--gray-50) !important;
}

.vertical-tabs .nav-link.active {
  color: var(--primary-color) !important;
  background-color: var(--gray-50) !important;
  border-left: 3px solid var(--primary-color) !important;
  font-weight: var(--font-medium) !important;
}

.vertical-tabs .nav-link i {
  opacity: 0.5;
}

.vertical-tabs .nav-link.active i {
  opacity: 1;
}

/* Card Styles */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.card {
  border-radius: var(--rounded-xl);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  background-color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-2);
  text-align: center;
  cursor: pointer;
}

.card-link:hover .card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.product-icon {
  width: 50px;
  height: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  background-color: transparent;
  color: var(--primary-color);
}

.card-title {
    font-family: var(--font-heading) !important;
    font-size: var(--text-sm) !important;
    font-weight: var(--font-normal) !important;
    margin-bottom: var(--space-1) !important;
    color: var(--black) !important;
    line-height: var(--leading-tight) !important;
}

.card-text {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

.card-footer {
  border-top: none;
  background-color: transparent;
  padding: var(--space-3) 0 0;
  margin-top: auto;
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: var(--font-normal);
}

/* Contact Dropdown Menu Styles */
.contact-dropdown-menu {
  min-width: 250px;
  padding: 0;
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-300);
  background-color: var(--primary-color);
  color: var(--white);
}

.contact-dropdown-header {
  background-color: var(--primary-color);
  padding: var(--space-4) var(--space-6) var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-dropdown-header .dropdown-header {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: 0;
  padding: 0;
}

.contact-dropdown-body {
  padding: var(--space-2) 0;
}

.contact-item {
  padding: var(--space-2) var(--space-2);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  border: none;
  background: none;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white) !important;
}

.contact-item i {
  font-size: var(--text-sm);
  width: 20px;
}

/* More Dropdown Menu Styles */
.more-dropdown-menu {
  min-width: 450px;
  padding: var(--space-3);
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-300);
}

.more-dropdown-menu .dropdown-header {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--gray-800);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-300);
  text-transform: none;
}

.more-dropdown-menu .dropdown-item {
  padding: var(--space-2) 0;
  color: var(--gray-700);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  border: none;
  background: none;
  transition: color 0.2s ease;
}

.more-dropdown-menu .dropdown-item:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.more-dropdown-menu .list-unstyled {
  margin-bottom: 0;
}

.more-dropdown-menu .list-unstyled li {
  margin-bottom: var(--space-1);
}

/* Bell Icon and Notification Styles */
.btn-link {
  position: relative;
  color: var(--white) !important;
  font-size: var(--text-xl) !important;
  padding: var(--space-2);
  border-radius: var(--rounded);
  transition: all 0.3s ease;
}

.btn-link:hover,
.btn-link.show {
  background-color: var(--gray-50);
  color: var(--primary-color) !important;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: var(--rounded-full);
  width: 18px;
  height: 18px;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: var(--font-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Notification Dropdown Menu Styles */
.notification-dropdown-menu {
  min-width: 450px;
  max-width: 500px;
  padding: 0;
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-300);
}

.notification-header {
  background-color: var(--gray-50);
  padding: var(--space-4) var(--space-6) var(--space-2);
  border-bottom: 1px solid var(--gray-300);
  border-radius: var(--rounded-lg) var(--rounded-lg) 0 0;
}

.notification-header .dropdown-header {
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: 0;
  padding: 0;
}

.notification-body {
  padding: 0;
  max-height: 450px;
  overflow-y: auto;
}

.notification-item {
  transition: background-color 0.3s ease;
}

.notification-item:hover {
  background-color: var(--gray-50);
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.notification-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--rounded);
}

/* .notification-text {
  flex: 1;
}

.notification-text h6 {
  margin: 0 0 var(--space-1) 0;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--gray-800);
}

.notification-text p {
  margin: 0 0 var(--space-2) 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: var(--leading-relaxed);
}

.learn-more-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--rounded-sm);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.learn-more-btn:hover {
  background-color: #081442;
} */

/* Navbar Toggler Styles */
.navbar-toggler {
  border: none;
  padding: 1rem 0.75rem;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Make the toggler icon white */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Custom white toggler icon for Bootstrap 5 */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Dark navbar toggler icon (also white) */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Custom toggler styles */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hover effect for toggler */
.navbar-toggler:hover {
  opacity: 0.8;
}

/* Focus styles for accessibility */
.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1040;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  background-color: rgba(255, 255, 255, 0.98);
  overflow-y: auto;
}

.mobile-menu.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.mobile-menu-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
}

.mobile-menu-header {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-300);
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) 0;
}

.mobile-menu-footer {
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-300);
}

/* Mobile Multi-Level Menu */
.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  color: var(--gray-700);
  font-family: var(--font-body);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover, 
.mobile-nav-link:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.mobile-nav-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--gray-50);
}

/* Mobile submenu levels */
.mobile-nav-submenu .mobile-nav-item {
  border-bottom: none;
}

.mobile-nav-submenu .mobile-nav-link {
  padding-left: var(--space-8);
  font-weight: var(--font-normal);
}

.mobile-nav-submenu .mobile-nav-submenu .mobile-nav-link {
  padding-left: var(--space-12);
  font-size: var(--text-sm);
}

.mobile-nav-submenu .mobile-nav-submenu .mobile-nav-submenu .mobile-nav-link {
  padding-left: var(--space-16);
  font-size: var(--text-sm);
}

.mobile-nav-submenu .mobile-nav-submenu .mobile-nav-submenu .mobile-nav-submenu .mobile-nav-link {
  padding-left: var(--space-20);
  font-size: var(--text-xs);
}

/* Animation for dropdown chevron */
.mobile-nav-link[aria-expanded="true"] i.bi-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav-link i.bi-chevron-down {
  transition: transform 0.2s ease;
}

/* Close button */
.btn-close {
  box-shadow: none;
}

.btn-close:focus {
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991) {
  .navbar-brand {
    margin-right: auto;
  }
  
  .navbar-toggler {
    border: none;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
}

/* Sign In/Up Buttons */
.navbar .btn-secondary {
  height: 42px;
}

.navbar .text-secondary {
  color: var(--secondary-color) !important;
}

/* Dropdown Styles */
.dropdown-menu {
  border-radius: var(--rounded);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-300);
  right: 0;
  left: auto !important;
  z-index: 999999;
}

.dropdown-item {
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gray-700);
}

.dropdown-item:hover {
  background-color: var(--gray-50);
  color: var(--primary-color);
}

/* Animation for mobile menu */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-menu.show {
  animation: fadeIn 0.3s ease-in-out;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Input Styles */
.form-control {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border: 1px solid var(--gray-300);
  border-radius: var(--rounded);
  padding: var(--space-2) var(--space-3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 26, 86, 0.1);
}

/* Language Dropdown */
.dropdown-toggle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}


/* Hero Section Styles - Updated Content */
.hero-header {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-header-sm {
  min-height: 650px;
}

/* Hero Background Image */
/* .hero-picture {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(160, 82, 45, 0.4));
} */

.hero-picture-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(101, 67, 33, 0.4), rgba(139, 69, 19, 0.3)); */
  z-index: 1;
}

.hero-picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Hero Content Container */
.hero-header .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-header .row {
  width: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 400px;
}

.hero-header .col-xl-7 {
  display: flex;
  align-items: center;
}

.hero-content-wrapper {
  width: 100%;
}

/* Updated Badge Styles */
.badge.bg-warning {
  background-color: #ffc107 !important;
  color: var(--black);
  font-weight: var(--font-normal);
  border-radius: 25px;
  padding: 8px 16px;
  font-size: var(--text-sm);
  line-height: var(--leading-base);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* Main Title Styles */
.hero-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

/* Yellow Subtitle */
.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #ffc107;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

/* Feature List Styles */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-item {
  color: white;
  font-size: var(--space-4);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-item i {
  font-size: 1.var(--space-4);
  flex-shrink: 0;
}

/* Button Styles */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Right Side Content */
.hero-right-content {
  position: relative;
  z-index: 3;
}

/* Professional Image Wrapper */
.professional-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}


/* Stats Badges */
.stats-badges {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-badge {
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.learners-badge i {
  color: #007bff;
}

.ratings-badge i {
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero-main-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .professional-image-wrapper {
    width: 180px;
    height: 180px;
  }

  .hero-header .row {
    min-height: 350px;
  }
}

@media (max-width: 991px) {
  .hero-header {
    min-height: 500px;
    background: linear-gradient(150deg, rgba(42, 14, 1, 1) 60%, rgba(242, 105, 53, 1) 100%);
  }

  .hero-main-title {
    font-size: 2.5rem;
    margin-top: 0;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .feature-item {
    font-size: 0.9rem;
  }

  .hero-header .row {
    min-height: 300px;
    flex-direction: column;
    text-align: center;
  }

  .hero-header .col-xl-7,
  .hero-header .col-xl-5 {
    display: block;
  }

  .hero-right-content {
    margin-top: 2rem;
  }

  .professional-image-wrapper {
    width: 150px;
    height: 150px;
  }

  .wh-auto {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .hero-header {
    min-height: 450px;
    background: linear-gradient(150deg, rgba(42, 14, 1, 1) 60%, rgba(242, 105, 53, 1) 100%);
  }

  .hero-main-title {
    font-size: 2rem;
    margin-bottom: var(--space-4);
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .feature-item {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
  }

  .professional-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .stats-badges {
    flex-direction: column;
    align-items: center;
  }

  .stat-badge {
    min-width: 100px;
  }

  .hero-header .row {
    min-height: 250px;
  }
}

@media (max-width: 575) {
  .hero-header {
    min-height: 400px;
    background: linear-gradient(150deg, rgba(42, 14, 1, 1) 60%, rgba(242, 105, 53, 1) 100%);
  }

  .hero-main-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.var(--space-4);
  }

  .feature-item {
    font-size: 0.8rem;
  }

  .professional-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .hero-header .row {
    min-height: 200px;
  }
}

/* Custom Utility Classes */


.py-12px {
  padding-top: 12px;
  padding-bottom: 12px;
}

.px-xl-80 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.pt-xl-80 {
  padding-top: 5rem;
}

.pb-xl-80 {
  padding-bottom: 5rem;
}

.pe-20px {
  padding-right: 20px;
}

.mw-75 {
  max-width: 75%;
}

.mw-md-75 {
  max-width: 75%;
}

.mw-xl-100 {
  max-width: 100%;
}

/* Z-index utilities */
.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

/* Background overlay */
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(
    135deg,
    rgba(139, 69, 19, 0.2) 0%,
    rgba(160, 82, 45, 0.3) 50%,
    rgba(101, 67, 33, 0.4) 100%
  ); */
  z-index: 1;
}

/* Additional responsive adjustments for XL screens */
@media (min-width: 1200px) {
  .hero-main-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 2.25rem;
  }

  .professional-image-wrapper {
    width: 220px;
    height: 220px;
  }

  .hero-header .row {
    min-height: 500px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-main-title,
  .hero-subtitle,
  .feature-item {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .badge.bg-warning {
    background-color: #ffeb3b !important;
    border: 2px solid #333;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .stat-badge:hover {
    transform: none;
  }
}


/* Program Stats Section */
.program-stats {
  background-color: #ffffff;
}

.stats-card,
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--rounded-lg);
  padding: var(--space-4);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--tertiary-color);
}

.stats-icon {
  margin-bottom: var(--space-4);
}

.stats-icon i {
  font-size: var(--text-4xl);
  color: var(--tertiary-color);
  display: flex;
  justify-content: center;
}

/* Program Features Section */
.feature-title {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.feature-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Brand Carousel Section */
.brand-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.brand-carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200% + 2rem);
}

.brand-slide {
  flex: 0 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-height: 40px;
  max-width: 150px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

/* Carousel Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.brand-carousel-wrapper:hover .brand-carousel-track {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand-slide {
    padding: 0 var(--space-4);
  }

  .brand-logo {
    max-height: 32px;
    max-width: 120px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .brand-carousel-track {
    animation: none;
  }

  .stats-card:hover,
  .feature-card:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .stats-card,
  .feature-card {
    border-width: 2px;
  }
}

@media (min-width: 769px) {
    .ms-md-0 {
        margin-left: 0 !important;
    }
}



/* ===== FOOTER STYLES ===== */
/* Footer Base Styles */
.unified-footer {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--white);
    background-color: var(--primary-color);
}

.unified-footer a:hover {
    color: var(--secondary-color);
}

/* Footer Navigation Section */
.footer-navigation {
    padding: var(--space-8) 0;
}

/* Unified Accordion Styles */
.footer-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-accordion .accordion-item {
    background-color: transparent;
}

.footer-accordion .accordion-button {
    background-color: inherit;
    color: var(--white);
    border: none;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    padding: var(--space-3);
    font-size: inherit;
    box-shadow: none;
}

.footer-accordion .accordion-button:not(.collapsed) {
    background-color: inherit;
    color: var(--white);
    box-shadow: none;
}

.footer-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.footer-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.footer-accordion .accordion-collapse {
    border: none;
}

.footer-accordion .accordion-body {
    padding: 0 var(--space-3) 0;
}

.footer-accordion .accordion-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-transform: none;
}

.footer-accordion .accordion-body ul li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-500);
    color: var(--white);
}

.footer-accordion .accordion-body ul li:last-child {
    border-bottom: none;
}

.footer-accordion .accordion-body ul li i {
    margin-right: var(--space-2);
}

.footer-accordion .accordion-body ul li a {
    display: block;
}

/* Footer Content Section */
.footer-content {
    box-shadow: var(--shadow-footer);
    padding: var(--space-8) var(--space-5) 0;
}

.footer-content .row {
    padding-bottom: var(--space-8);
}

/* Company Info Section */
.company-logo {
    margin-bottom: var(--space-4);
}

.company-description {
    margin-bottom: 0;
}

.payment-methods {
    display: flex;
    gap: var(--space-1);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.payment-methods img {
    width: 50px;
    height: auto;
}

.regulatory-text {
    font-size: var(--text-xs);
    line-height: var(--leading-snug);
    text-align: justify;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--space-8) var(--space-4);
    border-radius: var(--rounded-lg);
}

.contact-title {
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    color: var(--white);
}

/* Copyright Section */
.copyright-section {
    font-size: var(--text-xs);
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gray-500);
    padding: var(--space-3);
    text-align: center;
}

.copyright-section p a {
    text-decoration: underline;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    gap: var(--space-2);
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    transition: all 0.3s ease;
}

.social-icon i {
    display: flex;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Desktop Content Layout Adjustments */
@media (min-width: 992px) {
    .footer-accordion {
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: unset;
        gap: var(--space-6);
    }

    .footer-accordion .accordion-button {
        padding: 0 0 var(--space-3) 0;
        pointer-events: none;
        cursor: default;
    }

    .footer-accordion .accordion-button::after {
        display: none;
    }

    .footer-accordion .accordion-collapse {
        display: block !important;
        visibility: visible !important;
        height: auto !important;
    }

    .footer-accordion .accordion-body {
        padding: 0;
    }

    .footer-accordion .accordion-body ul li {
        border-bottom: none;
        padding: var(--space-2) 0;
    }

    .payment-methods img {
        width: 53px;
        height: 30px;
    }

    .contact-section {
        background: none;
        padding: 0;
    }

    .copyright-section {
        text-align: left;
    }
}

@media (min-width: 1400px) {
    .footer-accordion .accordion-item {
        padding: 0 var(--space-3);
    }

    .footer-accordion .accordion-item:first-child {
        padding-left: 0;
    }

    .footer-accordion .accordion-item:last-child {
        padding-right: 0;
    }
}

/* Back to Top Button Styling */
#back-to-up {
  position: fixed;
  font-size: var(--text-xl);
  line-height: var(--leading-base);
  z-index: 2;
  bottom: 80px;
  right: 25px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}