/*
==================================
  VALUEX INNOVATIONS - MAIN STYLES
  Modern, Responsive, SEO-Optimized
==================================
*/

/* ===========================
   CSS VARIABLES (DESIGN SYSTEM)
   =========================== */
:root {
  /* Brand Colors from Logo */
  --primary-navy: #0f172a;
  --primary-blue: #1e3a8a;
  --primary-blue-light: #000569;

  /* Cyan Spectrum (Left Wing) */
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #22d3ee;
  --accent-teal: #14b8a6;

  /* Orange Spectrum (Right Wing) */
  --accent-orange: #fb923c;
  --accent-amber: #f59e0b;
  --accent-yellow: #fbbf24;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --black: #000000;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #000569 50%, #3b82f6 100%);
  --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
  --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
  --gradient-blue: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow-cyan: 0 0 30px rgba(6, 182, 212, 0.4);
  --shadow-glow-orange: 0 0 30px rgba(251, 146, 60, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.4);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ===========================
   GLOBAL RESET & BASE STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: #000569;
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #000569;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Selection Color */
::selection {
  background-color: var(--accent-cyan);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--accent-cyan);
  color: var(--white);
}

/* ===========================
   PRELOADER
   =========================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  padding: 1rem 0;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(224, 222, 222, 0.648);
}

/* ===== MOBILE NAVBAR: Hamburger Menu Styling ===== */
/* Navbar stays white on all devices */
@media (max-width: 991.98px) {
  .navbar {
    background: rgb(255, 255, 255);
  }
}

/* Logo */
.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: -1rem;
}

.logo-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand:hover .logo-icon {
  transform: rotate(5deg) scale(1.05);
  /* Subtle rotation and scaling for hover */
  box-shadow: var(--shadow-glow-cyan);
  /* Glow/cyan shadow effect on hover */
}


.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font-heading);
}

.logo-highlight {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links */
.navbar-nav {
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: rgb(31, 31, 31) !important;
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all var(--transition-base);
}

/* ===== MOBILE NAV LINKS (Below 992px): White text for contrast ===== */
@media (max-width: 991.98px) {
  .nav-link {
    color: #fff !important;
    padding: 0.75rem 1rem !important;
    border-radius: var(--radius-md);
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-link.active {
    background: var(--accent-cyan);
    color: #000 !important;
    border-radius: var(--radius-md);
  }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-cyan);
  transition: width var(--transition-base);
}

/* .nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
} */

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Mobile Toggle - ONLY visible on mobile */
.navbar-toggler {
  display: none !important;
  /* Hidden by default (desktop) */
}

/* Show hamburger ONLY on mobile */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    border: none !important;
    padding: 8px !important;
    width: 44px !important;
    height: 38px !important;
    background: #000 !important;
    border-radius: 6px !important;
  }
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Custom Toggler Icon (Three WHITE lines) */
.navbar-toggler .toggler-icon,
.toggler-icon {
  width: 22px !important;
  height: 3px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  display: block !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide Bootstrap's default toggler icon completely */
.navbar-toggler-icon {
  display: none !important;
  background-image: none !important;
}

/* Hamburger Animation when menu is open */
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ===========================
   MOBILE DROPDOWN MENU STYLES
   =========================== */

/* Mega Menu Dropdown */
.mega-dropdown {
  position: static;
}

.dropdown-menu {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0;
  min-width: 100%;
}

/* Mobile Specific Dropdown Styling (<=991px) - FIXED FOR FUNCTIONALITY */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100% !important;
    margin-top: 0;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #f8f9fa !important;
    padding: 0 !important;
    display: none !important;
    max-height: none;
    overflow: visible;
  }

  .dropdown-menu.show {
    display: block !important;
    animation: slideDownMobile 0.3s ease forwards;
  }

  @keyframes slideDownMobile {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dropdown-menu li {
    padding: 0;
  }

  .dropdown-menu a {
    padding: 0.75rem 1.5rem !important;
    color: #333 !important;
    font-size: var(--text-sm);
    display: block;
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
  }

  .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    border-left-color: var(--accent-cyan);
    padding-left: 1.75rem !important;
  }

  .dropdown-menu a.active {
    background: var(--accent-cyan);
    color: #fff !important;
    border-left-color: var(--accent-cyan);
  }

  /* Mega Menu Mobile Layout */
  .mega-menu {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .mega-menu .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .mega-menu .row {
    margin: 0 !important;
  }

  .mega-menu .col-lg-4,
  .mega-menu .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .mega-menu-section {
    padding: 1rem !important;
    border-bottom: 1px solid #e9ecef;
    background: transparent;
  }

  .mega-menu-section:last-child {
    border-bottom: none;
  }

  .mega-menu-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
  }

  .mega-menu-title i {
    margin-right: 0.5rem;
    flex-shrink: 0;
  }

  .mega-menu-title .submenu-text {
    flex: 1;
    text-align: left;
    color: var(--primary-navy) !important;
    display: inline-block !important;
  }

  .mega-menu-title .mobile-submenu-icon {
    flex-shrink: 0;
    margin-left: 0.5rem;
  }

  .mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-menu-list li {
    margin-bottom: 0.5rem;
  }

  .mega-menu-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem !important;
    color: #333 !important;
    font-size: var(--text-sm);
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
  }

  .mega-menu-list a strong {
    color: #000 !important;
    display: block;
  }

  .mega-menu-list a span {
    color: #666 !important;
    display: block;
    font-size: 0.85rem;
  }

  .mega-menu-list a:hover {
    background: rgba(6, 182, 212, 0.08);
    border-left-color: var(--accent-cyan);
    padding-left: 1.25rem !important;
    color: var(--accent-cyan) !important;
  }

  .mega-menu-list a:hover strong {
    color: var(--accent-cyan) !important;
  }

  .mega-menu-list a:hover span {
    color: var(--accent-cyan) !important;
  }

  .mega-menu-list i {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    min-width: 25px;
  }

  .mega-menu-footer {
    padding: 1rem 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-top: 1px solid var(--gray-200);
    text-align: center;
  }

  .mega-menu-footer p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    margin-bottom: 0.75rem;
  }

  /* Prevent Bootstrap default dropdown behavior on mobile */
  .dropdown-toggle::after {
    display: none;
  }

  /* Mobile Submenu Accordion Functionality */
  .mobile-submenu .mobile-submenu-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .mobile-submenu.expanded .mobile-submenu-content {
    display: block !important;
    max-height: 500px;
    opacity: 1;
    margin-top: 0.75rem;
    padding-left: 0.5rem;
  }

  /* Rotate the +/- icon when expanded */
  .mobile-submenu .mobile-submenu-icon {
    transition: transform 0.3s ease;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--accent-cyan);
  }

  .mobile-submenu.expanded .mobile-submenu-icon {
    transform: rotate(45deg);
  }

  /* Add visual feedback for submenu header */
  .mobile-submenu-header {
    padding: 0.5rem 0;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-submenu-header:active {
    opacity: 0.7;
  }
}

/* Desktop Dropdown (>991px) - Bootstrap Defaults */
@media (min-width: 992px) {
  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    max-width: 800px;
    min-width: 300px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    animation: none;
    max-height: none;
    overflow: visible;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  /* Show dropdown on hover (desktop) */
  .mega-dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu li {
    transition: all var(--transition-base);
  }

  .dropdown-menu a {
    padding: 0.75rem 1.5rem !important;
    color: var(--gray-900) !important;
    font-size: var(--text-sm);
    border-left: none;
  }

  .dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--accent-cyan) !important;
    border-left: none;
    padding: 0.75rem 1.5rem !important;
  }

  /* Mega Menu Desktop */
  .mega-menu {
    max-width: none;
    width: 100vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-top: 0.5rem;
  }

  .mega-menu-section {
    padding: 2rem 1.5rem;
    border-bottom: none;
  }

  .mega-menu-section:last-child {
    border-bottom: none;
  }

  .mega-menu-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mega-menu-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem !important;
    color: var(--gray-700) !important;
    font-size: var(--text-sm);
    border-left: none;
    transition: all var(--transition-base);
  }

  .mega-menu-list a:hover {
    background: rgba(6, 182, 212, 0.08);
    border-left: none;
    padding: 0.75rem 1rem !important;
    color: var(--accent-cyan) !important;
  }

  .mega-menu-footer {
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-top: 1px solid var(--gray-200);
    text-align: center;
  }

  /* Show dropdown toggle arrow on desktop */
  .dropdown-toggle::after {
    display: inline-block !important;
  }
}

/* Button Styles */
.btn-primary-custom {
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(251, 146, 60, 0.5);
  color: var(--white);
}

.btn-primary-custom:hover::before {
  left: 100%;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: -1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(251, 146, 60, 0.15) 0%, transparent 50%);
}

/* Animated Shapes */
.animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-cyan);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-orange);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--gradient-blue);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: var(--gradient-cyan);
  top: 30%;
  right: 25%;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero-badge i {
  color: var(--accent-orange);
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.text-gradient-cyan {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-200);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.4s backwards;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-hero-primary {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  border: none;
  box-shadow: 0 4px 20px rgba(251, 146, 60, 0.4);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(251, 146, 60, 0.6);
  color: var(--white);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
  color: var(--white);
}

/* Hero Stats */
.hero-stats {
  animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stat-plus,
.stat-suffix {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--gray-300);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s ease 1s backwards;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

.arrow-down {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Fade In Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section - ISO Badge */
.about-image-wrapper {
  position: relative;
}

.about-image-main {
  position: relative;
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.iso-badge-img {
  width: 90px;
  height: auto;
  object-fit: contain;
}

/* Mobile responsive for ISO badge */
@media (max-width: 991px) {
  .about-image-wrapper {
    overflow: visible;
  }

  .about-image-main {
    overflow: visible;
  }

  .about-experience-badge {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 10px;
    left: auto;
  }

  .iso-badge-img {
    width: 80px;
    display: block !important;
  }
}

@media (max-width: 576px) {
  .about-experience-badge {
    width: 90px;
    height: 90px;
    bottom: -15px;
    right: 5px;
    left: auto;
  }

  .iso-badge-img {
    width: 70px;
    display: block !important;
  }
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  position: relative;
  z-index: 2;
}

.about-image-main img {
  height: 600px;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  z-index: 10;
  width: 120px;
  height: 120px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iso-badge-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


.badge-content h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.badge-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
}

.about-pattern {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  z-index: 1;
  opacity: 0.1;
}

.about-content {
  padding-left: 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-full);
  color: var(--accent-cyan);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-label i {
  font-size: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: var(--text-lg);
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-features {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cyan);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.feature-text h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: var(--text-base);
  color: var(--gray-600);
  margin: 0;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-base);
}

.btn-outline-custom:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  padding: 6rem 0;
  background: var(--gray-50);
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--gray-200);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-base);
}

.service-icon-cyan {
  background: var(--gradient-cyan);
}

.service-icon-orange {
  background: var(--gradient-orange);
}

.service-icon-blue {
  background: var(--gradient-blue);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-600);
  font-size: var(--text-base);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.service-features i {
  color: var(--accent-cyan);
  font-size: 0.875rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: var(--text-base);
  transition: all var(--transition-base);
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--primary-blue);
}

.service-card-gradient {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.05;
  transition: all var(--transition-base);
}

.gradient-cyan {
  background: var(--gradient-cyan);
}

.gradient-orange {
  background: var(--gradient-orange);
}

.gradient-blue {
  background: var(--gradient-blue);
}

.service-card:hover .service-card-gradient {
  bottom: -30px;
  right: -30px;
  opacity: 0.1;
}


/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--primary-navy);
  color: var(--gray-300);
  padding-top: 4rem;
}

.footer-main {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-logo .logo-container {
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-400);
  font-size: var(--text-base);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--gray-300);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gradient-cyan);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

.footer-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient-cyan);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '›';
  margin-right: 0.5rem;
  color: var(--accent-cyan);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-400);
  font-size: var(--text-sm);
}

.footer-contact i {
  color: var(--accent-cyan);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding: 2rem 0 1rem;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  color: var(--gray-500);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  color: var(--gray-400);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.footer-legal-links a:hover {
  color: var(--accent-cyan);
}

/* Footer Internal Links (NetCom Style) */
.footer-internal-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.internal-links-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.internal-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.internal-links-grid a {
  color: var(--gray-500);
  font-size: 0.8125rem;
  transition: all var(--transition-fast);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.internal-links-grid a:hover {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
  padding-left: 0.25rem;
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-cyan);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(6, 182, 212, 0.6);
}

/* ===========================
   WHATSAPP FLOATING BUTTON
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  z-index: 999;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .about-experience-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .footer-internal-links {
    margin-top: 1rem;
  }

  .internal-links-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-section,
  .services-section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .about-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .about-experience-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .internal-links-grid {
    grid-template-columns: 1fr;
  }

  .back-to-top,
  .whatsapp-float {
    right: 1rem;
  }

  .whatsapp-float {
    bottom: 5rem;
  }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .footer {
    padding-top: 2rem;
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.text-center {
  text-align: center !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {

  .navbar,
  .back-to-top,
  .whatsapp-float,
  .scroll-indicator {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* ===========================
   WHY CHOOSE US SECTION
   =========================== */
.why-choose-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.why-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.why-card:hover {
  background: var(--white);
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow-cyan);
}

.why-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.why-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.why-text {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0;
}

/* Feature Badges */
.feature-badge {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-badge:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-badge:hover::after {
  transform: scaleX(1);
}

.badge-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
  transition: all var(--transition-base);
}

.feature-badge:hover .badge-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature-badge h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-badge p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0;
}

/* ===========================
   CTA SECTION (Ready to Start)
   =========================== */
.cta-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.cta-box {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #06b6d4 0%, #1e3a8a 50%, #fb923c 100%);
  z-index: 0;
}

.gradient-overlay-cta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(251, 146, 60, 0.2) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: var(--white);
  color: var(--primary-blue);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  border: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
}

.btn-cta-white:hover {
  background: var(--gray-100);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===========================
   RESPONSIVE - CTA & WHY CHOOSE
   =========================== */
@media (max-width: 767px) {
  .why-choose-section {
    padding: 3rem 0;
  }

  .why-card {
    margin-bottom: 1rem;
  }

  .cta-section {
    padding: 2rem 0;
  }

  .cta-box {
    padding: 3rem 1.5rem;
    border-radius: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-white,
  .btn-cta-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .feature-badge {
    margin-bottom: 1rem;
  }
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* About Hero Section */
.about-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.certification-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cert-badge i {
  font-size: 1.25rem;
  color: var(--accent-orange);
}

/* Company Overview Section */
.company-overview-section {
  padding: 6rem 0;
  background: var(--white);
}

.overview-image {
  position: relative;
}

.overview-image img {
  height: 600px;
  width: 100%;
  border-radius: var(--radius-2xl);
}

.overview-stats {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  display: flex;
  gap: 1rem;
}

.stat-box {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--accent-cyan);
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
}

.stat-box p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0.5rem 0 0 0;
  font-weight: 600;
}

.overview-content {
  padding-left: 2rem;
}

.overview-features {
  margin-top: 2rem;
}

.feature-item-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-item-inline i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.text-primary {
  color: var(--accent-cyan) !important;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.mission-card,
.vision-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  height: 100%;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-cyan);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-orange);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mission-icon {
  background: var(--gradient-cyan);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.vision-icon {
  background: var(--gradient-orange);
  box-shadow: 0 8px 20px rgba(251, 146, 60, 0.4);
}

.mission-card h3,
.vision-card h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-points,
.vision-points {
  list-style: none;
  padding: 0;
}

.mission-points li,
.vision-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: var(--text-base);
}

.mission-points i {
  color: var(--accent-cyan);
  font-size: var(--text-sm);
}

.vision-points i {
  color: var(--accent-orange);
  font-size: var(--text-sm);
}

/* Business Portfolio Section */
.portfolio-section {
  padding: 6rem 0;
  background: var(--white);
}

.portfolio-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.portfolio-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.portfolio-card:hover::after {
  transform: scaleX(1);
}

.portfolio-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
  transition: all var(--transition-base);
}

.portfolio-card:hover .portfolio-icon {
  transform: scale(1.1) rotate(360deg);
}

.portfolio-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.portfolio-card p {
  color: var(--gray-600);
  font-size: var(--text-sm);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.portfolio-stats span {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.portfolio-stats strong {
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Core Capabilities Section */
.capabilities-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.capability-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  border: 2px solid transparent;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-cyan);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.capability-card:hover::before {
  opacity: 0.05;
}

.capability-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.capability-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-100);
  font-family: var(--font-heading);
  z-index: 0;
}

.capability-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(251, 146, 60, 0.3);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.capability-card:hover .capability-icon {
  transform: scale(1.15);
}

.capability-card h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.capability-card p {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Leadership Section */
.leadership-section {
  padding: 6rem 0;
  background: var(--white);
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.leader-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.leader-card:hover .leader-image img {
  transform: scale(1.1);
}

.leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-base);
}

.leader-card:hover .leader-overlay {
  opacity: 0.95;
}

.leader-social {
  display: flex;
  gap: 1rem;
}

.leader-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.125rem;
  transition: all var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

.leader-card:hover .leader-social a {
  transform: translateY(0);
  opacity: 1;
}

.leader-social a:nth-child(1) {
  transition-delay: 0.1s;
}

.leader-social a:nth-child(2) {
  transition-delay: 0.2s;
}

.leader-social a:hover {
  background: var(--white);
  color: var(--accent-cyan);
  transform: scale(1.1);
}

.leader-info {
  padding: 1.5rem;
  text-align: center;
}

.leader-info h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.leader-role {
  font-size: var(--text-sm);
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.leader-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* ===========================
   RESPONSIVE - ABOUT PAGE
   =========================== */
@media (max-width: 991px) {
  .overview-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .overview-stats {
    position: static;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .mission-card,
  .vision-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .about-hero-section {
    padding-top: 60px;
  }

  .certification-badges {
    flex-direction: column;
  }

  .cert-badge {
    width: 100%;
    justify-content: center;
  }

  .company-overview-section,
  .mission-vision-section,
  .portfolio-section,
  .capabilities-section,
  .leadership-section {
    padding: 3rem 0;
  }

  .stat-box {
    padding: 1rem 1.5rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .portfolio-card,
  .capability-card {
    margin-bottom: 1.5rem;
  }

  .leader-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .overview-stats {
    flex-direction: column;
    width: 100%;
  }

  .stat-box {
    width: 100%;
  }

  .mission-card,
  .vision-card {
    padding: 1.5rem;
  }

  .mission-icon,
  .vision-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .capability-number {
    font-size: 2rem;
    top: 0.75rem;
    right: 1rem;
  }
}

/* ===========================
   MEGA MENU DROPDOWN
   =========================== */

/* Dropdown Menu Container */
.mega-dropdown {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  border: none;
  border-top: 3px solid var(--accent-cyan);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 0;
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
}

.mega-dropdown:hover .mega-menu,
.mega-dropdown .mega-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Section */
.mega-menu-section {
  padding: 0 1rem;
}

.mega-menu-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mega-menu-title i {
  color: var(--accent-cyan);
  font-size: 1.125rem;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 0.5rem;
}

.mega-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--gray-700);
  background: transparent;
}

.mega-menu-list a:hover {
  background: var(--gray-50);
  color: var(--accent-cyan);
  transform: translateX(5px);
}

.mega-menu-list a i {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.mega-menu-list a:hover i {
  background: var(--accent-cyan);
  color: var(--white);
  transform: scale(1.1);
}

.mega-menu-list a div {
  flex: 1;
}

.mega-menu-list a strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.mega-menu-list a span {
  display: block;
  font-size: var(--text-xs);
  color: var(--gray-600);
  line-height: 1.4;
}

.mega-menu-list a:hover strong {
  color: var(--accent-cyan);
}

/* Mega Menu Footer */
.mega-menu-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.mega-menu-footer p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.mega-menu-footer .btn {
  padding: 0.5rem 1.5rem;
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
  transition: transform var(--transition-base);
}

.mega-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ===========================
   RESPONSIVE MEGA MENU
   =========================== */

/* Tablet and below */
@media (max-width: 991px) {
  .mega-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    margin: 0.5rem 1rem;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega-menu .container {
    padding: 0;
  }

  .mega-menu-section {
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .mega-menu-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    font-size: var(--text-sm);
  }

  .mega-menu-list a {
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .mega-menu-list a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mega-menu-list a strong {
    color: var(--white);
    font-size: var(--text-sm);
  }

  .mega-menu-list a span {
    color: rgba(255, 255, 255, 0.7);
  }

  .mega-menu-list a i {
    width: 35px;
    height: 35px;
    font-size: 1.125rem;
  }

  .mega-menu-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .mega-menu-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-xs);
  }

  /* Make dropdown work on mobile */
  .dropdown-menu {
    border: none;
  }

  .nav-item.dropdown .dropdown-menu {
    display: none;
  }

  .nav-item.dropdown .dropdown-menu.show {
    display: block;
  }
}

@media (max-width: 767px) {
  .mega-menu .row {
    flex-direction: column;
  }

  .mega-menu-section {
    margin-bottom: 1rem;
  }
}

/* ===========================
   MOBILE MENU TOGGLER (3 LINES - BLACK)
   =========================== */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  position: relative;
  width: 30px;
  height: 30px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler .toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  /* Black color */
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when clicked */
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   SERVICES - VIEW ALL TOGGLE
   =========================== */
.hidden-service {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.hidden-service.show {
  display: block !important;
}

/* ===========================
   MOBILE DROPDOWN FIX
   =========================== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    color: #000000 !important;
    padding: 0.75rem 1rem !important;
  }

  /* Dropdown fix for mobile */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    border: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.03);
    margin: 0.5rem 0;
    padding: 0.5rem;
  }

  .dropdown-menu.show {
    display: block;
  }

  /* Prevent auto-close on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown .dropdown-menu.show {
    display: block !important;
  }

  .mega-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
  }

  .mega-menu .container {
    padding: 0;
  }

  .mega-menu-section {
    margin-bottom: 1rem;
  }

  .mega-menu-list a {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}

/* Black hamburger menu button */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  position: relative;
  width: 30px;
  height: 30px;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler .toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  /* Black color */
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.align-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  min-height: 48px;
  /* makes sure it's vertically centered */
  background: transparent;
  border: none;
}

.toggler-icon {
  display: block;
  width: 32px;
  height: 3px;
  background: #000;
  /* black */
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.align-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  min-height: 48px;
  /* makes sure it's vertically centered */
  background: transparent;
  border: none;
}

.toggler-icon {
  display: block;
  width: 32px;
  height: 3px;
  background: #000;
  /* black */
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   FOOTER COLLAPSIBLE SECTIONS
   =========================== */

/* On mobile: Show + icon and make content collapsible */
@media (max-width: 991.98px) {
  .collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .collapse-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
  }

  /* Content hidden by default on mobile */
  .collapsible-content {
    display: none;
    padding-top: 1rem;
  }

  /* When expanded */
  .collapsible-section.expanded .collapsible-content {
    display: grid;
  }

  .collapsible-section.expanded .collapse-icon {
    transform: rotate(45deg);
  }
}

/* On desktop: Always show content, hide + icon */
@media (min-width: 992px) {
  .collapse-icon {
    display: none;
  }

  .collapsible-content {
    display: grid !important;
  }
}

/* ===========================
   ISO BADGE IMAGE STYLES
   =========================== */
.iso-badge-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* More Section Styles */
.more-section-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
}

.more-content {
  padding-top: 1rem;
}

/* Desktop: Hide "More" header, always show content */
@media (min-width: 992px) {
  #moreSection>.collapsible-header {
    display: none !important;
  }

  #moreSection .more-content {
    display: block !important;
  }
}

/* Mobile: Show "More +" header, content is collapsible */
@media (max-width: 991.98px) {
  .more-content .internal-links-grid {
    display: grid;
  }

  .more-content {
    display: none;
  }

  #moreSection.expanded .more-content {
    display: block;
  }

  /* Mobile Submenu Styles (nested dropdowns) */
  .mega-menu .mobile-submenu-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    margin-bottom: 0 !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    user-select: none;
  }

  .mega-menu .mobile-submenu-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .mega-menu .mobile-submenu-header * {
    pointer-events: none;
  }

  /* Hide submenu content by default on mobile */
  .mega-menu .mobile-submenu .mobile-submenu-content {
    display: none !important;
    padding-left: 1rem;
  }

  /* Show when expanded - using ID selectors for higher specificity */
  .mega-menu .mobile-submenu.expanded .mobile-submenu-content,
  #submenu-tech.expanded .mobile-submenu-content,
  #submenu-marketing.expanded .mobile-submenu-content,
  #submenu-learning.expanded .mobile-submenu-content {
    display: block !important;
  }

  .mega-menu .mobile-submenu.expanded .mobile-submenu-icon {
    transform: rotate(45deg);
  }
}

/* Desktop: Hide submenu icon, always show content */
@media (min-width: 992px) {
  .mobile-submenu-icon {
    display: none !important;
  }

  .mobile-submenu-content {
    display: block !important;
  }
}