---------------------
/* =====================
   ANIMATIONS
===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.btn-glow:hover {
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.7);
  transform: translateY(-3px);
}
.animated-bg {
  background: linear-gradient(-45deg, #ff4e50, #f9d423, #24c6dc, #5433ff);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}
@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}




/* =====================
   HERO SECTION CLEAN FIX
===================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* remove gap so spacing is margin-only */
}
/* ✅ Tighten spacing in hero */
.hero-content {
  gap: 0 !important;   /* remove flex gap */
}

.hero-title {
  margin-bottom: 4px !important;   /* super tight space */
}

.hero-subtitle {
  margin-top: 0 !important;
  margin-bottom: 10px !important;  /* smaller space before button */
}




/* ✅ Single clean button style */
.hero .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff !important;
  padding: 14px 40px;   /* consistent size */
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,115,230,0.3);
  transition: all 0.3s ease;
}



.hero .btn-primary:hover {
  background: linear-gradient(135deg, #005bb5, #0099cc);
  transform: translateY(-3px);
}


/* =====================
   NAVIGATION HEADER
===================== */
.site-header {
  position: static;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}
.logo img { max-height: 50px; }

/* Nav buttons */
.nav-buttons { display: flex; gap: 15px; margin-left: 30px; }
.nav-buttons .btn-outline {
  border: 2px solid #0073e6;
  color: #0073e6 !important;
  background: transparent !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}
.nav-buttons .btn-outline:hover {
  background: #0073e6 !important; color: #fff !important;
}
.nav-buttons .btn-solid {
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,115,230,0.4);
  transition: 0.3s;
}
.nav-buttons .btn-solid:hover {
  background: linear-gradient(135deg, #005bb5, #0099cc);
  transform: translateY(-3px);
}


/* =====================
   MENU TOGGLE
===================== */
.menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #222;
  margin: 5px auto;
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Show toggle only on mobile */
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .menu-toggle { display: none !important; }
}


/* =====================
   DESKTOP NAVIGATION
===================== */
@media (min-width: 1025px) {
  .main-nav { display: flex; gap: 20px; }
  .main-nav .menu { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
  .main-nav .menu li a {
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }
  .main-nav .menu li a:hover { color: #0073e6; }

  /* Dropdown */
  .main-nav .sub-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
  }
  .main-nav li:hover > .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .main-nav .sub-menu li a {
    display: block; padding: 12px 18px;
    font-size: 15px; color: #222; text-decoration: none;
    transition: background 0.2s;
  }
  .main-nav .sub-menu li a:hover {
    background: #0073e6; color: #fff; border-radius: 8px; padding-left: 22px;
  }
/* Replace ▼ with Font Awesome chevron-down */
.main-nav li.menu-item-has-children > a::after {
  content: "\f078"; /* Font Awesome chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;       /* smaller, elegant size */
  margin-left: 6px;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-1px);
  color: #444;
  opacity: 0.7;
}

.main-nav li.menu-item-has-children:hover > a::after {
  transform: translateY(-1px) rotate(180deg);
  transition: transform 0.3s ease;
}


}


/* =====================
   MOBILE NAVIGATION
===================== */
@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 1001;
    display: flex;
  }
  .main-nav.active { left: 0; }
  .main-nav .menu { flex-direction: column; width: 100%; gap: 15px; }
  .main-nav .menu li a {
    display: block; padding: 12px 0;
    font-size: 1.1rem; font-weight: 500; color: #222;
  }

  /* Submenu panel */
  .main-nav .sub-menu {
    position: fixed;
    top: 0; left: 100%;
    width: 100%; height: 100vh;
    background: #fff;
    padding: 60px 20px;
    margin: 0; list-style: none;
    display: block;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    z-index: 1002;
  }
  .main-nav .sub-menu.active { left: 0; }
  .main-nav .sub-menu li a {
    display: block; padding: 14px 20px;
    font-size: 1rem; color: #222; border-bottom: 1px solid #eee;
  }
  .main-nav .sub-menu li:last-child a { border-bottom: none; }

  /* Back button */
  .submenu-back {
    display: block;
    padding: 14px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #0073e6;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    margin-bottom: 10px;
  }

  /* Mobile nav buttons */
  .nav-buttons {
    flex-direction: column; width: 100%;
    margin-top: 30px; gap: 15px; padding: 0 16px;
  }
  .nav-buttons .btn-outline,
  .nav-buttons .btn-solid {
    width: 100%; text-align: center;
    border-radius: 40px; padding: 12px 20px;
  }
}

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



/* =====================
   ABOUT US SECTION FIX
===================== */
.about-us {
  background: #e6f2f8;       /* light background */
  padding: 60px 0;           /* top & bottom spacing */
  margin-bottom: 40px;       /* space before next section */
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;           /* left/right spacing for desktop */
}

.about-us .about-title {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-us .about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #333;
}

/* Mobile fix */
@media (max-width: 768px) {
  .about-us {
    padding: 40px 0;
  }
  .about-us .container {
    padding: 0 15px;    /* tighter but still space from edges */
  }
  .about-us .about-title {
    font-size: 2rem;
  }
  .about-us .about-content {
    font-size: 1rem;
  }
}


/* Make sure spacing between all sections is consistent */
.products-section,
.support-section,
.cta-section {
  margin: 40px auto;
  max-width: 1200px;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section,
  .products-section,
  .support-section,
  .cta-section {
    padding: 40px 15px;    /* reduce padding for smaller screens */
    margin: 40px auto;
  }
}



/* Products Section — UPDATED + FIXED (Product Card + Post-entry) */
.products-section {
  background: linear-gradient(180deg, #dceaf2 0%, rgba(220, 225, 242, 0) 100%);
  margin: 40px 40px 0 0px;
  border-radius: 30px;
  padding: 40px;
  box-sizing: border-box;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.products-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* PRODUCT CARD — FIXED */
.product-card {
  position: relative;
  background: rgba(2, 2, 31, 0.24) !important;
  padding: 20px;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: visible !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 2;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 15px;
}

/* Glow */
.product-card::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: calc(1rem + 3px);
  background: radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.22), transparent 65%);
  opacity: 0;
  transform: scale(0.99);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

.product-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Typography */
.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.product-card p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Button */
.product-card .btn-solid {
  border: 2px solid #0073e6;
  color: #0073e6 !important;
  background: transparent !important;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.product-card .btn-solid:hover {
  background: #0073e6 !important;
  color: #fff !important;
}

/* POST ENTRY LIST */
.post-entry ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-entry ul li {
  position: relative;
  padding-left: 40px;
  font-size: 0.95rem;
  color: #BFD3E0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
}

.post-entry ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #fff;
  color: #0073e6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Product feature list */
.product-features,
.product-card .product-desc ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-features li,
.product-card .product-desc ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.product-features li::before,
.product-card .product-desc ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  color: #0073e6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Desktop layout */
@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
    align-items: stretch;
  }
  .product-card > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-card a.inline-flex {
    align-self: flex-start;
    margin-top: 0 !important;
  }
}




/* =====================
   SUPPORT SECTION
===================== */
.support-section {
  padding: 30px 20px;
  margin: 40px auto;
  border-radius: 12px;
  max-width: 1200px;
  
}

.support-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
    text-align: center;

}

.support-subtitle {
   font-size: 1rem;     /* same as product-card p */
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
  line-height: 1.6;
    text-align: center;

}

/* ✅ Grid container */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 30px;
  align-items: stretch;
}

/* Card styles */
.support-card {
  border-radius: 20px 20px 70px 20px; /* ⬅️ Top-Left | Top-Right | Bottom-Right | Bottom-Left */
  padding: 40px;
  background-color: #fde9c3;  /* Cream */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.support-card:nth-child(2) {
  background-color: #fdd7d7; /* Soft Pink */
}
.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.support-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 20px;
}

/* ✅ Modern checkmark bullets */
/* ✅ Stylish Checkmark Bullet */
/* Clear old bullets */
.support-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-card ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

/* Circle tick style */
.support-card ul li::before {
  content: '\f00c'; /* Font Awesome check icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background-color: #fff;
  color: #4c6df4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);

    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: .75rem;
    
   
}


.support-desc {
  font-size: 1rem;     /* same as product-card p */
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Buttons inside cards */
.support-card .btn-solid,
.support-card .support-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff !important;
  padding: 14px 40px;   /* consistent size */
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,115,230,0.3);
  transition: all 0.3s ease;
}

.support-card .btn-solid:hover,
.support-card .support-btn:hover {
  background: linear-gradient(135deg, #005bb5, #0099cc);
  transform: translateY(-3px);
}

/* ✅ Mobile: stack cards */
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr; /* stack */
  }
}



/* =====================
   CTA SECTION
===================== */
.cta-section {
  position: relative;
  width: 100%;              /* take full width */
  margin: 0;                /* remove auto margins */
  padding: 120px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  border-radius: 0;          /* no rounded corners */
  max-width: 100% !important;
}
.cta-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.cta-container {
  position: relative;
  z-index: 2;
  max-width: 900px;          /* text stays centered/narrow */
  margin: 0 auto;
  animation: fadeInUp 1.5s ease forwards;
}
.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-btn.solid {
  background: linear-gradient(135deg, #0073e6, #00c6ff);
  color: #fff;
  box-shadow: 0 5px 20px rgba(0,115,230,0.4);
}
.cta-btn.solid:hover {
  background: linear-gradient(135deg, #005bb5, #0099cc);
  transform: translateY(-3px);
}
.cta-btn.outline {
  border: 2px solid #fff;
  color: #19014c;
  background: #f1efef;
    border-radius: 30px;
  
}
.cta-btn.outline:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}



 


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


  /* About section mobile */
 .about-section {
  padding: 60px 20px;   /* reduced from 80px */
  background: #e6f2f8;
  border-radius: 12px;
  margin: 40px auto;    /* reduced space between sections */
  max-width: 1200px;
}
  /* Support section mobile (stack cards) */
  .support-card {
    flex: 1 1 100%;
    max-width: 100%;
  }


/* =====================
   SECTION TITLES + SUBTITLES
===================== */
.about-section h2,
.about-section p,
.products-section .section-title,
.support-section .support-title,
.support-section .support-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Keep card and paragraph content left-aligned */
.support-card {
  text-align: left;
}
.products-grid .product-card p,
.about-section p {
  text-align: left;
}

body.no-scroll {
  overflow: hidden;
}

/* Desktop submenu hover style */
@media (min-width: 1025px) {
  .main-nav ul.sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .main-nav ul.sub-menu li a:hover {
    background: #0073e6 !important;  /* solid blue */
    color: #fff !important;          /* white text */
  }
}

/* 🚀 Force compact mobile submenu (fix big gaps) */
@media (max-width: 1024px) {
  .main-nav .sub-menu {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
  }

  .main-nav .sub-menu li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  .main-nav .sub-menu li a {
    display: block;
    padding: 10px 15px !important;  /* smaller height */
    font-size: 1rem !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid #eee !important;
  }

  .main-nav .sub-menu li:last-child a {
    border-bottom: none !important;
  }
}


.hero .btn-primary {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ✅ Center CTA buttons in mobile menu */
@media (max-width: 1024px) {
  .nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;   /* center horizontally */
    justify-content: center;
    width: 100%;
    margin-top: 30px;
    gap: 15px;
    padding: 0;            /* remove left/right padding */
  }

  .nav-buttons .btn-outline,
  .nav-buttons .btn-solid {
    width: auto;           /* shrink to fit text */
    min-width: 200px;      /* optional: keep decent button size */
    text-align: center;
  }
}
/* Debug: hide any stray × close buttons */
.menu-close,
.menu-close::before,
.menu-close::after {
  display: none !important;
  content: none !important;
}

/* Footer */
.site-footer {
  background: #094785;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-description {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social a {
  margin-right: 15px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-social a:hover {
  color: #00c6ff;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
  color: #00c6ff;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
}

.footer-links-inline {
  display: flex;
  gap: 15px;
}

.footer-links-inline a {
  color: #fff;
  text-decoration: none;
}

.footer-links-inline a:hover {
  text-decoration: underline;
  color: #00c6ff;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 10px;
  }

  .footer-social {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    margin-top: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
    margin-top: 30px;
  }

  .footer-links-inline {
    gap: 10px;
    font-size: 0.9rem;
  }

  .footer-copy {
    font-size: 0.85rem;
  }
}


.product-card .product-desc ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.product-card .product-desc ul li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.product-card .product-desc ul li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #fff;
  color: #0073e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.atlas-feature-boxes {
  background-color: #001f3f;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.feature-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-card i {
  font-size: 36px;
  margin-bottom: 20px;
  color: #3b8fc4;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

.features-intro {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px;
  opacity: 0.9;
  max-width: 720px;
  color: #cce3ff;
}

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/* =====================================================
   FIX HERO FLEX ALIGNMENT (Override atlas.css)
   ===================================================== */
.hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;   /* horizontal center */
  justify-content: center !important; /* vertical center */
  text-align: center !important;
  position: relative !important;
  height: 100vh !important;
}

/* Apply hero-content styles only on non-Atlas pages */
body:not(.page-template-page-atlas) .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* ✅ Responsive: scale nicely on small screens */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px;
    justify-content: center;
  }

  .hero-content {
    width: 100%;
    max-width: 90%;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .hero .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}


/* ====================================
   SUPPORT SECTION — Abstract Data Flow
   ==================================== */

.dataflow-bg {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #ffffff, #f4faff);
  isolation: isolate;
}

/* The animated overlay pattern */
.data-particles::before,
.data-particles::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 174, 239, 0.06) 0,
    rgba(0, 174, 239, 0.06) 2px,
    transparent 2px,
    transparent 6px
  );
  animation: drift 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* The second layer for subtle cross effect */
.data-particles::after {
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 174, 239, 0.03) 0,
    rgba(0, 174, 239, 0.03) 2px,
    transparent 2px,
    transparent 6px
  );
  animation-duration: 45s;
}

/* Make sure your real content stays above the pattern */
.dataflow-bg > *:not(.data-particles) {
  position: relative;
  z-index: 2;
}

/* Subtle animation */
@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-80px, -80px);
  }
}


/* ==========================
   Animated Waves Background
========================== */

.waves-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.waves-bg .waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  animation: waveFloat 10s ease-in-out infinite alternate;
}

/* Subtle wave floating animation */
@keyframes waveFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Make sure your real content sits above */
.waves-bg .container,
.waves-bg > *:not(.waves) {
  position: relative;
  z-index: 2;
}

/* Keep your existing spacing intact */
.products-section,
.support-section {
  margin: 60px auto;
  max-width: 1200px;
  padding: 60px 20px;
  box-sizing: border-box;
  border-radius: 12px;
}

.products-section.waves-bg {
  background: linear-gradient(180deg, #f8fbff 0%, #e6f7ff 100%);
}

.support-section.waves-bg {
  background: linear-gradient(180deg, #aad2f528 0%, #c9d1fd16 100%);
}

/* ===============================
   SUPPORT SECTION — Waves + Dataflow
=============================== */

.waves-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf7 0%, #fde9c9 100%);
  border-radius: 12px;
  z-index: 1;
}

/* 🌊 SVG Wave Background */
.waves-bg .waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 0;
  animation: waveFloat 10s ease-in-out infinite alternate;
}

@keyframes waveFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* 💫 Dataflow Animation Overlay */
.data-particles::before,
.data-particles::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 174, 239, 0.06) 0,
    rgba(0, 174, 239, 0.06) 2px,
    transparent 2px,
    transparent 6px
  );
  animation: drift 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.data-particles::after {
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 174, 239, 0.03) 0,
    rgba(0, 174, 239, 0.03) 2px,
    transparent 2px,
    transparent 6px
  );
  animation-duration: 45s;
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, -80px); }
}

/* Make sure your content stays above everything */
.support-container {
  position: relative;
  z-index: 3;
}

/* ==========================================================
   GLOBAL ATLAS SECONDARY BUTTON — EXACT MATCH
   ========================================================== */

.btn-secondary-global {
  position: relative;
  display: inline-block;
  background-color: transparent;
  color: #00AEEF; /* Seaker cyan */
  border: 2px solid #00AEEF;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.25);
  min-width: 180px;
}

/* --- Shimmer Effect (same as Use Cases CTA) --- */
.btn-secondary-global::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 2;
}

/* --- Hover Interaction --- */
.btn-secondary-global:hover {
  background-color: #00AEEF;
  color: #ffffff;
  border-color: #00AEEF;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 174, 239, 0.4);
}

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

/* --- Active/Pressed State --- */
.btn-secondary-global:active {
  background-color: #008BCB;
  border-color: #008BCB;
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 174, 239, 0.25);
}

/* --- Optional Size Variants --- */
.btn-secondary-small {
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: 10px;
}

.btn-secondary-block {
  display: block;
  width: 100%;
  max-width: 320px;
  text-align: center;
  margin: 0 auto;
}

.glbal-bg-layer{
   background: linear-gradient(180deg, #dce1f2 0%, rgba(220, 225, 242, 0) 100%); 
  margin: 80px 40px 0 40px;
  border-radius: 30px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;

}
html {
  scroll-behavior: smooth;
}

/* Highlight animation for KPI section */
@keyframes kpiFocus {
  0% { box-shadow: 0 0 0px rgba(0,174,239,0); }
  50% { box-shadow: 0 0 40px rgba(0,174,239,0.3); }
  100% { box-shadow: 0 0 0px rgba(0,174,239,0); }
}

#atlas-kpi:target {
  animation: kpiFocus 2s ease-out;
}

/* ============================================
   COMMUNICATION SECTION – Perfect Alignment Fix
   ============================================ */
.communication-tms-section {

  padding: 40px 0 40px;
  text-align: center;
}

/* Frame with border curve */
.communication-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #374ea2;
  border-radius: 30px;
  background: #fff;
  padding: 120px 60px 100px;
  overflow: hidden;
}

/* Floating centered heading */
.communication-heading {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  padding: 0 52px;
  font-size: 36px;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  max-width: 780px;
  word-wrap: break-word;
}

/* Blue tips */
.communication-heading::before,
.communication-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 8px;
  border-radius: 4px;
  background: #374ea2;
  box-shadow: 0 0 8px 4px rgba(55, 78, 162, 0.15);
  transform: translateY(-50%);
}

.communication-heading::before {
  left: -60px;
}

.communication-heading::after {
  right: -60px;
}

/* Subtitle */
.communication-subtitle {
  color: #555;
  font-size: 1.15rem;
  max-width: 680px;
  margin: 80px auto 70px;
  line-height: 1.6;
}

/* Card container */
.communication-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
}

/* Card styling */
.communication-card {

  border-radius: 16px;
  box-shadow: 0 0 10px -1px rgba(0, 0, 0, 0.25);
  width: 300px;
  height: 300px; /* consistent height */
  padding: 48px 24px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.communication-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.communication-card .icon {
  font-size: 60px;
  color: #374ea2;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Text */
.communication-card .card-text {
  font-size: 17px;
  color: #111827;
  line-height: 1.6;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 10px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 992px) {
  .communication-frame {
    padding: 100px 40px 80px;
  }

  .communication-heading {
    font-size: 30px;
    padding: 0 40px;
  }

  .communication-subtitle {
    font-size: 1rem;
    margin: 60px auto 50px;
  }

  .communication-card {
    height: 280px;
    width: 280px;
  }
}

@media (max-width: 768px) {
  .communication-frame {
    padding: 80px 20px 70px;
  }

  .communication-heading {
    font-size: 26px;
    max-width: 90%;
    padding: 0 20px;
  }

  .communication-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 10px;
  }

  .communication-card {
    scroll-snap-align: center;
    flex: 0 0 auto;
    min-width: 260px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .communication-frame {
    padding: 60px 16px 60px;
  }

  .communication-heading {
    font-size: 22px;
    top: -24px;
  }

  .communication-subtitle {
    font-size: 0.95rem;
    margin: 40px auto 50px;
  }

  .communication-card {
    width: 240px;
    height: 240px;
    padding: 40px 20px;
  }

  .communication-card .icon {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .communication-card .card-text {
    font-size: 15px;
  }
}

/* Prevent AOS re-trigger once visible */
.aos-permanent {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Prevent flicker and ensure stable transforms */
[data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Prevent repeated opacity flickers when AOS is disabled after first load */
[data-aos] {
  transition: none !important;
}



/* Optional refinements if using custom CSS */
.product-card img {
  border-radius: 0.75rem;
}

.product-card {
  min-height: auto;
  transition: all 0.4s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.product-card .post-entry {
  color: #BFD3E0;
  font-size: 0.9rem;
  line-height: 1.5;
}
.product-card .post-entry ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
}
.product-card .post-entry li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
  color: #BFD3E0;
}
.product-card .post-entry li .material-symbols-outlined {
  color: #00AEEF;
  font-size: 18px;
}

/* ==========================================
   FINAL FIX — Align CTA perfectly with image
========================================== */
.product-card {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
    align-items: stretch; /* both sides equal height */
  }

  /* text column fills height and pushes CTA down */
  .product-card > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* consistent feature list gap */
  .product-card .post-entry {
    margin-bottom: 0.75rem;
  }

  /* ensure CTA flush with bottom */
  .product-card a.inline-flex {
    margin-top: 0 !important;
    align-self: flex-start !important;
  }
}

/* UNIVERSAL FIX for the product section clipping */
.products-section *[class*="rounded"],
.products-section *[class*="rounded"]::before,
.products-section *[class*="rounded"]::after {
  overflow: visible !important;
  background-clip: padding-box !important;
}
/* FIX: bottom corner clipping in product carousel */

/* The container that wraps a product card slide */
.products-section .product-slide,
.products-section .product-card-wrapper,
.products-section .product-card-container,
.products-section .swiper-slide,
.products-section .relative.overflow-hidden,
.products-section [class*="overflow-hidden"] {
    overflow: visible !important;
    border-radius: 1rem !important;
}

/* Fix bottom mask for after-glow */
.products-section .product-card,
.products-section .product-card::after {
    -webkit-mask-image: none !important;
    mask-image: none !important;
}
/* Fix bottom corner clipping: the outer product-card wrapper */
.products-section .rounded-2xl,
.products-section .rounded-xl,
.products-section .bg-white\/5,
.products-section .p-8,
.products-section .overflow-hidden,
.products-section [class*="rounded"] {
    overflow: visible !important;
}

/* ===================================================================
   GLOBAL FIX — Prevent horizontal scroll (white space issue)
=================================================================== */
html, body {
  overflow-x: hidden !important;
}

/* ===================================================================
   ANIMATIONS
=================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.btn-glow:hover {
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.7);
  transform: translateY(-3px);
}

/* Gradient animation */
.animated-bg {
  background: linear-gradient(-45deg, #ff4e50, #f9d423, #24c6dc, #5433ff);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===================================================================
   HERO SECTION
=================================================================== */
.hero {
  position: relative !important;
  height: 100vh !important;
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden;
}
.hero video.hero-video {
  position: absolute; top:0; left:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:-2;
  transform:scale(1.1);
}
.hero-overlay {
  position:absolute; inset:0;
  background:rgba(0,0,0,0.45);
  z-index:-1;
}
.hero-content { 
  position:relative; z-index:2;
  max-width:900px; padding:20px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
}
.hero-content { gap:0 !important; }
.hero-title { margin-bottom:4px !important; }
.hero-subtitle { margin-bottom:10px !important; }

/* Button */
.hero .btn-primary {
  display:inline-block;
  background:linear-gradient(135deg,#0073e6,#00c6ff);
  color:#fff !important;
  padding:14px 40px;
  border-radius:40px;
  font-size:1.1rem;
  font-weight:600;
  box-shadow:0 5px 15px rgba(0,115,230,0.3);
  transition:all 0.3s ease;
}
.hero .btn-primary:hover {
  background:linear-gradient(135deg,#005bb5,#0099cc);
  transform:translateY(-3px);
}

/* Mobile */
@media(max-width:768px){
  .hero { height:auto; padding:100px 20px; }
  .hero-title { font-size:2rem; }
  .hero-subtitle { font-size:1rem; margin-bottom:25px; }
  .hero .btn-primary { padding:12px 30px; font-size:1rem; }
}

/* ===================================================================
   NAVIGATION HEADER
=================================================================== */
.site-header { background:#fff; box-shadow:0 2px 10px rgba(0,0,0,0.05); z-index:1000; }
.nav-container {
  display:flex; justify-content:space-between; align-items:center;
  max-width:1200px; margin:0 auto; padding:10px 20px;
}
.logo img{ max-height:50px; }

.nav-buttons { display:flex; gap:15px; margin-left:30px; }

/* Outline button */
.nav-buttons .btn-outline {
  border:2px solid #0073e6;
  color:#0073e6 !important;
  background:transparent;
  padding:10px 22px;
  border-radius:40px;
  font-weight:600;
  transition:0.3s;
}
.nav-buttons .btn-outline:hover { background:#0073e6 !important; color:#fff !important; }

/* Solid button */
.nav-buttons .btn-solid {
  background:linear-gradient(135deg,#0073e6,#00c6ff);
  color:#fff !important;
  padding:10px 22px;
  border-radius:40px;
  font-weight:600;
  box-shadow:0 5px 15px rgba(0,115,230,0.4);
  transition:0.3s;
}
.nav-buttons .btn-solid:hover {
  background:linear-gradient(135deg,#005bb5,#0099cc);
  transform:translateY(-3px);
}

/* ===================================================================
   MOBILE NAVIGATION
=================================================================== */
.menu-toggle{
  display:none; cursor:pointer;
  background:none; border:none;
  position:absolute; right:20px; top:20px;
}
.menu-toggle span{
  display:block; width:24px; height:2px;
  background:#222; margin:5px 0;
  transition:all .3s;
}
.menu-toggle.open span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }

@media(max-width:1024px){
  .menu-toggle{ display:block; }
  .main-nav{
    position:fixed; top:0; left:-100%;
    width:100%; height:100vh;
    background:#fff;
    display:flex; flex-direction:column;
    padding:60px 20px; overflow-y:auto;
    transition:left .3s;
    z-index:1001;
  }
  .main-nav.active{ left:0; }
  .main-nav .menu{ flex-direction:column; gap:15px; }
}

/* ===================================================================
   ABOUT SECTION
=================================================================== */
.about-us{
  background:#e6f2f8;
  padding:60px 0;
  margin-bottom:40px;
}
.about-us .container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* ===================================================================
   PRODUCTS SECTION WRAPPER
=================================================================== */
.products-section {
  background: linear-gradient(180deg,#dceaf2 0%,rgba(220,225,242,0) 100%);
  margin:40px 40px 0 40px;
  border-radius:30px;
  padding:40px;
  border-top-left-radius:80px;
  border-top-right-radius:80px;
}

/* ===================================================================
   ⭐ PRODUCT CARD — SAFE GLOW (Option A)
=================================================================== */

.product-card {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: visible !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 2;
}

.product-card img {
  width:100%;
  border-radius:0.75rem;
}

/* Hover move only */
.product-card:hover {
  transform: translateY(-3px);
}

/* 🔵 SAFE GLOW — never touches edges (no clipping) */
.product-card::after {
  content:"";
  position:absolute;
  inset:-3px; /* small safe glow */
  border-radius: calc(1rem + 3px);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0,174,239,0.22),
    transparent 65%
  );
  opacity:0;
  transform:scale(0.99);
  transition:opacity 0.3s ease, transform 0.3s ease;
  pointer-events:none;
  z-index:-1;
}
.product-card:hover::after {
  opacity:1;
  transform:scale(1);
}

/* Keep perfect rounding everywhere */
.product-card,
.product-card::after {
  -webkit-mask-image:-webkit-radial-gradient(white,black);
  mask-image:radial-gradient(white,black);
}

/* CTA alignment inside card */
@media (min-width: 768px) {
  .product-card { flex-direction: row; align-items: stretch; }
  .product-card > div:first-child {
    display:flex; flex-direction:column; justify-content:space-between;
  }
}

/* ===================================================================
   SUPPORT SECTION / CTA / FOOTER (unchanged from your original)
   — Cleaned blocks kept intact
=================================================================== */
/* (All your support, CTA, footer CSS stays as is — already valid) */

.support-section,
.cta-section,
.site-footer {
  /* your previous version kept exactly */
}

/* ===================================================================
   WAVES + DATAFLOW BACKGROUND
=================================================================== */
.waves-bg{ position:relative; overflow:hidden; background:linear-gradient(180deg,#fffaf7 0%,#fde9c9 100%); border-radius:12px; }
.waves-bg .waves{
  position:absolute; bottom:0; left:0; width:100%; height:140px;
  animation:waveFloat 10s ease-in-out infinite alternate;
}
@keyframes waveFloat{
  0%{ transform:translateY(0); }
  100%{ transform:translateY(10px); }
}

/* Data particles */
.data-particles::before,
.data-particles::after{
  content:""; position:absolute; top:-50%; left:-50%;
  width:200%; height:200%;
  pointer-events:none;
  animation:drift 30s linear infinite;
}
.data-particles::before{
  background:repeating-linear-gradient(45deg,rgba(0,174,239,0.06) 0,rgba(0,174,239,0.06) 2px,transparent 2px,transparent 6px);
}
.data-particles::after{
  background:repeating-linear-gradient(-45deg,rgba(0,174,239,0.03) 0,rgba(0,174,239,0.03) 2px,transparent 2px,transparent 6px);
  animation-duration:45s;
}
@keyframes drift{ 0%{transform:translate(0,0);} 100%{transform:translate(-80px,-80px);} }


.product-card {
    background-color: rgba(2, 2, 31, 0.244) !important; /* change color here */
}
/* CLEANED FULL CSS WITH SUBMENU FIX */

/* --- Navigation Submenu Fix --- */
@media (min-width: 1025px) {
  .main-nav { position: relative; z-index: 1000; }
  .main-nav .menu { position: relative; }

  .main-nav li {
    position: relative;
  }

  .main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
  }

  .main-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav .sub-menu li a {
    display: block;
    padding: 12px 18px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s ease;
  }

  .main-nav .sub-menu li a:hover {
    background: #0073e6;
    color: #fff;
    border-radius: 8px;
    padding-left: 22px;
  }

  /* Chevron fix */
  .main-nav li.menu-item-has-children > a::after {
    content: "078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 6px;
    opacity: 0.7;
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .main-nav li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }
}

/* --- Mobile Submenu Fix --- */
@media (max-width: 1024px) {
  .main-nav .sub-menu {
    display: none;
  }
  .main-nav .sub-menu.active {
    display: block;
  }
}

/* --- Rest of CSS Unchanged (full file retained) --- */

/* Insert the rest of your CSS here — unchanged */


