body {
  color: #fff;
  font-family: 'Segoe UI', sans-serif;

  background: linear-gradient(-45deg, #010A17, #0a0f1c, #0d1b2a, #010A17);
  background-size: 400% 400%;

}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060; /* Higher than navbar */
  font-size: 0.85rem;
  padding: 5px 0;
  backdrop-filter: blur(6px);
  
  -webkit-backdrop-filter: blur(6px);
}

.topbar a,
.topbar i {
  color: #bbb;
  text-decoration: none;
}

.boxed {
  max-width: 1200px;
  margin: auto;
}

/* Add spacing below navbar */
body {
  padding-top: 110px;
}

/* Navbar */
.navbar.hidden {
  top: -100px;
}

.navbar {
  position: fixed;
  top: 35px; /* Match topbar height */
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: top 0.3s ease-in-out;
}

.navbar-brand img {
  max-height: 58px;
  background: transparent;
  display: block;
}

/* Main navbar links: Only underline (no background change) on hover/active */
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  position: relative;
  background: transparent !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; /* Very thin underline */
  background-color: #00b8e6;
  transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Remove highlight on hover/focus/active for main nav links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: transparent !important;
}

/* Hide underline from main menu items with dropdown */
.navbar-nav .dropdown > .nav-link::after {
  width: 0 !important;
  transition: none !important;
}
.navbar-nav .dropdown:hover > .nav-link::after,
.navbar-nav .dropdown:focus > .nav-link::after,
.navbar-nav .dropdown > .nav-link.active::after {
  width: 0 !important;
}



/* Dropdown caret: modern look and visible */
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: 0.15em;

  border-bottom: 0;
  border-left: 0.45em solid transparent;
  content: "";
}

/* Dropdown menu styling: flush with navbar */
.navbar .dropdown-menu {
  left: 0 !important;
  right: auto !important;
  min-width: 100%;
  width: max-content;
  border-radius: 0.7rem;
  margin-top: 27px !important;
  background-color: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: none;
  box-shadow: none;
  transition: none;
  z-index: 2000;
}

/* Dropdown items: underline only, no highlight */
.dropdown-item {
  position: relative;
  color: #fff;
  font-weight: 500;
  
  padding: 0.5rem 1.5rem;
  background: transparent !important;
  transition: color 0.2s;
}

.dropdown-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 1px; /* Very thin underline */
  background-color: #00b8e6;
  transition: width 0.3s;
}
.dropdown-item:hover::after,
.dropdown-item:focus::after,
.dropdown-item.active::after {
  width: 100%;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background: transparent !important;
  color: #fff !important;
}

/* Navbar dropdown: hover pe show ho (desktop only) */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Dropdown-toggle ke liye bhi underline (hover pe) */
.navbar-nav .dropdown:hover > .nav-link {
  color: #fff !important;
}

/* Common Button Style */
.btn {
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}

/* Outline Light Button */
.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Primary Button with Gradient */
.btn-primary {
  background: linear-gradient(135deg, #00b8e6, #5a5a5a);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #148db9, #3f3f3f);
  box-shadow: 0 4px 12px rgba(0, 184, 230, 0.4);
}


/* Hide caret by default */
.navbar .dropdown-toggle::after {
  display: none;
}







.navbar .dropdown .mega-menu {
  position: absolute;
  top: 100%;        /* Navbar ke neeche */
  left: 0;          /* Navbar ke start se align */
  width: 100vw;     /* Pure screen width */
  margin-left: 0 !important; /* Extra shift hatao */
}.navbar .dropdown {
  position: static !important; /* relative ki chain tod do */
}
/* Sirf Solutions ke mega menu ko fix karo */
.navbar .dropdown.solutions {
  position: static !important; /* chain tod do */
}

.navbar .dropdown.solutions .mega-menu {
  position: absolute;
  top: calc(100% + 1px); /* thoda neeche navbar ke border ke baad */
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  border-radius: 0; /* rounding hatao */
  padding: 2rem 3rem;
}






.navbar .dropdown-menu {
  position: absolute;
  top: calc(100% + 1px); /* navbar ke neeche */
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding: 2rem 3rem;

  /* 🔹 Gradient solid background */
  background: linear-gradient(-45deg, #010A17, #0a0f1c, #0d1b2a, #010A17);

  /* 🔹 Blur on top */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2000;
}

/* 🔹 Mobile view fix */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    position: static !important;   /* collapse ke andar flow ke sath */
    width: 100% !important;
    padding: 1rem 1rem;
    border: none;
    border-radius: 0;
    background: #010A17 !important; /* solid bg rakho taake clear dikhe */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;

    max-height: 60vh;      /* dropdown mobile me limit */
    overflow-y: auto;      /* agar zyada items hon to scroll ho */
  }

  /* Mega menu grid ko stack kar do */
  .navbar .dropdown-menu .row {
    display: flex;
    flex-direction: column !important;
    margin: 0 !important;
  }

  /* Columns 100% width + spacing */
  .navbar .dropdown-menu .col-lg-2,
  .navbar .dropdown-menu .col-lg-3,
  .navbar .dropdown-menu .col-md-4,
  .navbar .dropdown-menu .col-md-6 {
    width: 100% !important;
    margin-bottom: 1rem;
    padding: 0 !important;
  }

  /* Headers aur items align left */
  .navbar .dropdown-menu .dropdown-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0.5rem 0;
    text-align: left;
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #ddd;
    text-align: left;
  }
}













/* 🔹 Mobile view fix */
@media (max-width: 991px) {
  .navbar .dropdown-menu {
    position: static !important;   /* collapse ke andar flow ke sath */
    width: 100% !important;
    padding: 1rem 1rem;
    border: none;
    border-radius: 0;
    background: linear-gradient(-45deg, #010A17, #0a0f1c, #0d1b2a, #010A17) !important; 
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;

    max-height: 60vh;      /* dropdown mobile me limit */
    overflow-y: auto;      /* agar zyada items hon to scroll ho */
  }

  /* Mega menu grid ko stack kar do */
  .navbar .dropdown-menu .row {
    display: flex;
    flex-direction: column !important;
    margin: 0 !important;
  }

  /* Columns 100% width + spacing */
  .navbar .dropdown-menu .col-lg-2,
  .navbar .dropdown-menu .col-lg-3,
  .navbar .dropdown-menu .col-md-4,
  .navbar .dropdown-menu .col-md-6 {
    width: 100% !important;
    margin-bottom: 1rem;
    padding: 0 !important;
  }

  /* Headers aur items align left */
  .navbar .dropdown-menu .dropdown-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0.5rem 0;
    text-align: left;
  }

  .navbar .dropdown-menu .dropdown-item {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #ddd;
    text-align: left;
  }
}


/* Hero Section */
.hero-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-card {

  border-radius: 1.5rem;
  padding: 3rem;
  backdrop-filter: blur(12px);
}

.hero-section h1 {
  font-size: 3rem;
  line-height: 1.3;
}

.hero-section p {
  max-width: 600px;
  color: #bbb;
}

/* Hero Image Glow */
.hero-image {
  position: relative;
}

.glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(26,161,211,0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(60px);
}

.hero-image img {
  position: relative;
  z-index: 1;
  max-width: 300px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
    border: none;
  box-shadow: none;

  
}


/* Responsive Typography */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-card {
    padding: 2rem;
  }

  .hero-image {
    text-align: center;
  }
}






.why-section h2 {
  color: #fff;
}

.why-section .card {
  transition: transform 0.3s ease;
}

.why-section .card:hover {
  transform: translateY(-5px);
}




.feature-card {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.feature-card h5 {
  color: #ffffff;
}

.feature-card p {
  color: #bbbbbb; /* or try #ccc for slightly lighter tone */
}
.feature-card h5,
.feature-card p {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}






.stat-card {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.08);
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.stat-card p {
  font-size: 1rem;
  color: #aaa;
}




.partners-section {
  overflow: hidden;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}


.logo-track img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}



/* Mobile view optimization */
@media (max-width: 768px) {
  .logo-track {
    gap: 2rem; /* reduce gap for small screen */
  }

  .logo-track img {
    height: 30px;
  }
}






.capability-card {
  background: rgba(255, 255, 255, 0.04); /* Slightly more opaque for contrast */
  backdrop-filter: blur(6px);
  color: #ffffff; /* Ensure text stays bright */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 400;
}

.capability-card h5 {
  color: #fff; /* Ensure heading is visible */
  font-weight: 600;
}

.capability-card p {
  color: #bbbbbb; /* Light gray for body, better readability than pure white */
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(0, 173, 255, 0.25);
}




.site-footer {
  font-size: 0.9rem;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #00b8e6 ;
  text-decoration: underline;
}

.site-footer i {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.site-footer i:hover {
  color: #00b8e6 ;
}

.footer {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}


.footer-logo {
  max-height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
}

@media (min-width: 768px) {
  .footer-logo {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer-logo:hover {
  transform: scale(1.05);
}

#user-country {
  font-weight: 400;
}



.newsletter-section {
  background: none;
  border: none;
  color: #212529; /* Bootstrap's default dark text */
  
}

.newsletter-section h3,
.newsletter-section p {
  color: #fff !important;
}


.newsletter-form input.form-control {
  border-radius: 0.5rem;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ccc;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form .btn {
  border-radius: 0.5rem;
  color: #fff;
  background-color: #00b8e6 ;
  border: none;
}

.newsletter-form .btn:hover {
  background-color: #148cb8;
}

.newsletter-form input.form-control {
  border-radius: 0.5rem;
  min-width: 220px;
}

.newsletter-form .btn {
  border-radius: 0.5rem;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
}













.testimonials-section {
  background: none; /* Keep transparent or change if needed */
  color: #fff;
}

.testimonials-section h2 {
  color: #ffffff; /* Accent color for heading */
}

.testimonials-section .p-4 {
  background-color: rgba(255, 255, 255, 0.03); /* Soft glassy card */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonials-section .p-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(26, 161, 211, 0.2);
}

.testimonials-section p {
  color: #bbb;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.testimonials-section h6 {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}










.faq-section {
  background: none;
  color: #fff;
}

.faq-section h2 {
  color: #00b8e6 ;
}

.accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  background-color: transparent;
  color: #fff;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.accordion-button:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #00b8e6 ;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.05);
  color: #00b8e6 ;
}

.accordion-button::after {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.accordion-button:hover::after {
  filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(160deg);
}

.accordion-body {
  background-color: rgba(255, 255, 255, 0.02);
  color: #bbb;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}



#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b8e6  0%, #00ffff 50%, #ffffff 100%);
  box-shadow: 0 0 8px #00eaff, 0 0 12px #1aa1d3;
  width: 0%;
  z-index: 9999;
  transition: width 0.25s ease-out;
}









.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: linear-gradient(45deg, #00b8e6 );
  color: #000;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
  opacity: 0.8;
}



.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5); /* Optional: white border */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



/* Prevent horizontal scroll on mobile */
html, body {
  overflow-x: hidden;
}

/* Fix wide elements on mobile */
* {
  box-sizing: border-box;
}

/* Reduce section padding on small screens */
@media (max-width: 576px) {
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .logo-track {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .boxed {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 768px) {
  .navbar {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
  }
}





  .popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1050;
    }

    .popup.active {
      display: flex;
    }

 .form-container {
  background: linear-gradient(-45deg, #010A17, #0a0f1c, #0d1b2a, #010A17);
  color: #fff; /* change text color to white for contrast */
  padding: 30px;
  border-radius: 12px;
  width: 600px;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}

    .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 24px;
      color: #fffdfd;
      background: transparent;
      border: none;
      cursor: pointer;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }
