body {
      margin: 0;
      font-family: 'Poppins', Arial, sans-serif;
      background-color: #373435;
      color: white;
    }

    /* Navbar */
   
/* Navbar Styling - Clean and Normal */
.navbar {
  background: linear-gradient(135deg, #213749 0%, #37556F 50%, #213749 100%);
  border-bottom: 1px solid #37556F;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2px 0;
  min-height: 50px;
}

/* Navbar on scroll */
.navbar.scrolled {
  background: rgba(33, 55, 73, 0.9);
  backdrop-filter: blur(6px);
}

.navbar-brand {
  color: #3ed3fa !important;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 0 0 3px rgba(62, 211, 250, 0.2);
}

.navbar-brand img {
    height: 48px;
    margin-left: 44px;
    border-radius: 2px;
    width: 200px;
}
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.navbar-nav .nav-link:hover {
  color: #3ed3fa !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #3ed3fa, #37556F);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Dropdown menu styling */
.dropdown-menu {
  background: rgba(43, 42, 40, 0.95);
  border: 1px solid rgba(62, 211, 250, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  color: white !important;
  background: transparent !important;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(62, 211, 250, 0.1) !important;
  color: #3ed3fa !important;
}

.dropdown-item.active {
  background: rgba(62, 211, 250, 0.2) !important;
  color: #3ed3fa !important;
}

/* Simple mobile navbar - no boxes */
@media (max-width: 768px) {
  .navbar {
    padding: 5px 0;
  }
  
  .navbar-toggler {
    padding: 4px 8px;
    font-size: 0.9rem;
  }
  
  .navbar-collapse {
    background: rgba(33, 55, 73, 0.95);
    margin-top: 10px;
    padding: 15px;
  }
  
  .navbar-nav .nav-link {
    padding: 10px 15px;
    margin: 2px 0;
    color: white !important;
  }
  
  .navbar-nav .nav-link:hover {
    background: rgba(62, 211, 250, 0.1);
    color: #3ed3fa !important;
  }
  
  .dropdown-menu {
    background: rgba(43, 42, 40, 0.95);
    border: 1px solid rgba(62, 211, 250, 0.2);
    margin-top: 5px;
  }
  
  .dropdown-item {
    color: white !important;
    padding: 8px 15px;
  }
  
  .dropdown-item:hover {
    background: rgba(62, 211, 250, 0.1);
    color: #3ed3fa !important;
  }
}

    /* Hero Section */
    .hero {
      background: radial-gradient(1200px 500px at 10% 20%, rgba(62,211,250,0.1), transparent),
                  linear-gradient(135deg, #1a2b3a 0%, #213749 50%, #162432 100%);
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      justify-items: center;
      gap: 40px;
      padding: 80px 10% 0 10%;
      text-align: left;
      margin-top: 0;
    }
    .hero-content { max-width: 640px; text-align: center; margin: 0 auto; }
    .hero-right { display: flex; justify-content: center; }
    .hero-dashboard {
      width: 100%;
      max-width: 460px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: linear-gradient(180deg, rgba(59, 90, 112, 0.25), rgba(28, 47, 63, 0.25));
      border: 1px solid rgba(62,211,250,0.15);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.35);
      backdrop-filter: blur(6px);
    }
    .metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .metric-card {
      background: #2b2a28;
      border: 1px solid rgba(62,211,250,0.15);
      border-radius: 14px;
      padding: 14px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    }
    .metric-card.primary { background: linear-gradient(180deg, #243240, #1c2f3f); padding: 18px; }
    .metric-header { display: flex; align-items: center; gap: 8px; color: #9be7ff; font-weight: 700; letter-spacing: .3px; }
    .metric-icon { font-size: 18px; }
    .metric-label { font-size: 0.9rem; }
    .metric-value { color: #3ed3fa; font-weight: 800; font-size: 1.6rem; margin-top: 6px; }
    .sub-text { color: #cfd6db; font-size: 0.8rem; opacity: .9; }
    .sparkline { display: grid; grid-auto-flow: column; gap: 6px; align-items: end; height: 70px; margin-top: 10px; }
    .bar { width: 10px; background: linear-gradient(180deg, #3ed3fa, rgba(62,211,250,0.2)); border-radius: 6px; box-shadow: 0 6px 12px rgba(62,211,250,0.2); }
    .testimonial-chip { display: flex; align-items: center; gap: 10px; background: #2b2a28; border: 1px solid rgba(62,211,250,0.15); padding: 10px 12px; border-radius: 12px; }
    .avatar-group { display: inline-flex; }
    .avatar { width: 30px; height: 30px; border-radius: 50%; background: #37556F; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 12px; border: 1px solid #3ed3fa; margin-right: -8px; }
    .avatar:last-child { margin-right: 0; }
    .testimonial-text { color: #9be7ff; font-weight: 600; font-size: 0.9rem; }
    .hero h1 {
      
      font-weight: 700;
      font-size: 3.50rem;
      line-height: 1.15;
      letter-spacing: 0.10px;
    }
    #changing-word { position: relative; padding-right: 10px; }
    #changing-word::after { content: '|'; position: absolute; right: 0; animation: caretBlink 1s step-start infinite; color: #9be7ff; }
    @keyframes caretBlink { 50% { opacity: 0; } }
    
    .hero p {
      margin: 20px 0;
     
    }
    .gradient-text {
      background: linear-gradient(45deg, #3ed3fa, #9be7ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .wave-separator svg { display: block; width: 100%; height: 80px; }
    .section-eyebrow { color: #9be7ff; letter-spacing: 2px; font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
    .brands-section { background-color: #2b2a28; padding: 30px 0; }
    .brands-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .brand-chip { background: #213749; color: #d9f6ff; border: 1px solid rgba(62,211,250,0.25); padding: 8px 14px; border-radius: 999px; font-weight: 600; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-hero {
      background: linear-gradient(45deg, #37556F, #3ed3fa);
      color: white;
      font-weight: 600;
      padding: 12px 22px;
      border-radius: 10px;
      text-transform: none;
      border: none;
      box-shadow: 0 8px 18px rgba(62,211,250,0.2);
    }
    .btn-hero:hover {
      filter: brightness(1.1);
      transform: translateY(-1px);
    }
    .btn-hero-secondary {
      background: transparent;
      border: 2px solid #3ed3fa;
      color: #3ed3fa;
      font-weight: 600;
      padding: 12px 22px;
      border-radius: 10px;
    }
    .btn-hero-secondary:hover { background: rgba(62,211,250,0.1); }
    .services {
 
      text-align: center;
    }
    .services h2 {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .services p {
      color: #ccc;
      margin-bottom: 40px;
    }
    .section-dark { background-color: #2b2a28; }
    .why-choose { padding: 80px 0; }
    .benefit-card { background-color: #373435; border: 1px solid rgba(62,211,250,0.08); border-radius: 16px; padding: 24px; height: 100%; transition: transform .3s ease, box-shadow .3s ease; }
    .benefit-card:hover { transform: translateY(-6px); box-shadow: 0 16px 28px rgba(0,0,0,.45); }
    .benefit-card h5 { color: #fff; font-weight: 700; margin: 8px 0; }
    .benefit-card p { color: #bfc6cc; margin: 0; }
    .benefit-icon { font-size: 28px; color: #3ed3fa; }

    .stats-section { background-color: #213749; padding: 70px 0; }
    .stat-card { background-color: #2b2a28; border-radius: 16px; padding: 24px; border: 1px solid rgba(62,211,250,0.08); }
    .stat-number { font-size: 2rem; font-weight: 800; color: #3ed3fa; }
    .stat-label { color: #c9d1d6; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; font-size: .8rem; margin-top: 6px; }
    .service-card {
      background: linear-gradient(180deg, #2b2a28 0%, #232220 100%);
      border-radius: 15px;
      padding: 30px 20px;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(62, 211, 250, 0.08);
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 28px rgba(0,0,0,0.45);
    }
    .service-icon {
      font-size: 40px;
      color: #3ed3fa;
      margin-bottom: 15px;
      animation: floaty 4s ease-in-out infinite;
    }
    @keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
    .service-card h4 {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .service-card p {
      color: #ccc;
      font-size: 0.95rem;
    }
    
    /* Service Links and Buttons */
    .service-link {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .service-link:hover {
      color: #3ed3fa;
      text-decoration: none;
    }
    .service-card .btn-outline-primary {
      background: transparent;
      color: #3ed3fa;
      border: 2px solid #3ed3fa;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s ease;
      margin-top: 15px;
      display: inline-block;
    }
    .service-card .btn-outline-primary:hover {
      background: #3ed3fa;
      color: #373435;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(62, 211, 250, 0.3);
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; text-align: center; justify-content: center; padding: 70px 5% 0 5%; }
      .hero h1 { font-size: 2.4rem; }
      .hero-right { order: -1; }
      .sparkline { height: 60px; }
    }

      body {
         margin: 0;
         font-family: Arial, sans-serif;
     }
     section {
         background-color: #373435;
         padding: 40px 0;
         text-align: center;
         color: white;
     }
     section h2 {
         color: #3ed3fa;
         font-size: 28px;
         font-weight: bold;
         margin-bottom: 40px;
     }
     .contact-container {
         display: flex;
         justify-content: center;
         gap: 80px;
         flex-wrap: wrap;
     }
     .contact-box {
         max-width: 200px;
     }
     .icon {
         font-size: 40px;
         color: #5477c9;
     }
     .contact-box h3 {
         color: #3ed3fa;
         font-weight: bold;
         margin-top: 10px;
     }
     .contact-box p {
         margin-top: 5px;
     }

    .faq-section { padding: 80px 0; }
    .accordion-item { background-color: #2b2a28; color: #fff; border: 1px solid rgba(62,211,250,0.15); }
    .accordion-button { background-color: #373435; color: #fff; }
    .accordion-button:not(.collapsed) { background-color: #30414f; color: #fff; box-shadow: none; }
    .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(62,211,250,.25); }
    .accordion-body { color: #cfd6db; }

    .newsletter-section { background-color: #2b2a28; padding: 80px 0; }
    .newsletter-card { background: linear-gradient(135deg, #2b2a28, #243240); border: 1px solid rgba(62,211,250,.15); border-radius: 16px; padding: 32px; text-align: center; }
    .newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .newsletter-input { background-color: #373435; border: 2px solid #37556F; color: #fff; border-radius: 10px; padding: 12px 16px; min-width: 260px; }
    .newsletter-input:focus { outline: none; border-color: #3ed3fa; box-shadow: 0 0 0 .2rem rgba(62,211,250,.25); }
    
    /* Contact Form Styling */
    .contact-hero {
        background-color: #213749;
        padding: 80px 0;
        text-align: center;
        color: white;
    }
    
    .contact-title {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #3ed3fa;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
        color: #ccc;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-form-section {
        background-color: #373435;
        padding: 80px 0;
    }
    
    .contact-form-card {
        background-color: #2b2a28;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .contact-form-card .form-label {
        color: #3ed3fa;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .contact-form-card .form-control,
    .contact-form-card .form-select {
        background-color: #373435;
        border: 2px solid #37556F;
        color: white;
        border-radius: 10px;
        padding: 12px 16px;
        transition: all 0.3s ease;
    }
    
    .contact-form-card .form-control:focus,
    .contact-form-card .form-select:focus {
        background-color: #373435;
        border-color: #3ed3fa;
        color: white;
        box-shadow: 0 0 0 0.2rem rgba(62, 211, 250, 0.25);
    }
    
    .contact-form-card .form-control::placeholder {
        color: #888;
    }
    
    .contact-form-card .btn-primary {
        background: linear-gradient(45deg, #37556F, #3ed3fa);
        border: none;
        border-radius: 25px;
        padding: 15px 40px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .contact-form-card .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(62, 211, 250, 0.4);
        background: linear-gradient(45deg, #3ed3fa, #37556F);
    }
    
    .contact-info-section {
        background-color: #2b2a28;
        padding: 80px 0;
        color: white;
    }
    
    .contact-info-card {
        text-align: center;
        padding: 30px 20px;
        background-color: #373435;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }
    
    .contact-info-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-icon {
        font-size: 3rem;
        color: #3ed3fa;
        margin-bottom: 20px;
    }
    
    .contact-info-card h3 {
        color: #3ed3fa;
        font-weight: bold;
        margin-bottom: 15px;
    }
    
    .contact-info-card p {
        color: #ccc;
        margin: 0;
    }
   
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero { 
    grid-template-columns: 1fr; 
    text-align: center; 
    justify-content: center; 
    padding: 80px 5% 40px 5%; 
    gap: 30px;
    min-height: auto;
  }
  .hero h1 { 
    font-size: 2.4rem; 
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .hero p {
    font-size: 1rem;
    margin: 15px 0 25px 0;
  }
  .hero-right { 
    order: -1; 
    margin-bottom: 20px;
    width: 100%;
  }
  .hero-dashboard {
    max-width: 100%;
    padding: 15px;
    margin: 0 auto;
  }
  .sparkline { 
    height: 60px; 
  }
  .metric-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .metric-card {
    padding: 12px;
  }
  .metric-value {
    font-size: 1.4rem;
  }
  .testimonial-chip {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .avatar-group {
    justify-content: center;
  }
  
  /* Services section mobile fixes */
  .services {
    padding: 40px 0;
  }
  .services h2 {
    font-size: 2rem;
  }
  .service-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .service-icon {
    font-size: 35px;
  }
  
  /* Why choose us mobile fixes */
  .why-choose {
    padding: 40px 0;
  }
  .benefit-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  /* Stats section mobile fixes */
  .stats-section {
    padding: 40px 0;
  }
  .stat-card {
    padding: 20px 15px;
    margin-bottom: 15px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  
  /* FAQ section mobile fixes */
  .faq-section {
    padding: 40px 0;
  }
  
  /* Contact section mobile fixes */
  .contact-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .contact-box {
    max-width: 100%;
    text-align: center;
  }
  
  /* Navbar mobile fixes */
  .navbar-brand {
    font-size: 0.9rem;
  }
  /* .navbar-brand img {
    height: 20px;
  } */
  .navbar-nav .nav-link {
    font-size: 0.8rem;
    margin: 0 4px;
  }
  
  /* Wave separator mobile */
  .wave-separator svg {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 3% 30px 3%;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero-dashboard {
    padding: 12px;
  }
  .metric-card {
    padding: 10px;
  }
  .metric-value {
    font-size: 1.2rem;
  }
  .services h2 {
    font-size: 1.8rem;
  }
  .service-card {
    padding: 15px 12px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  
  /* Wave separator mobile */
  .wave-separator svg {
    height: 50px;
  }
}

/* Back to top button styling */
.back-to-top { 
  position: fixed; 
  right: 16px; 
  bottom: 16px; 
  background: linear-gradient(45deg, #37556F, #3ed3fa); 
  color: #12202b; 
  border: none; 
  border-radius: 50%; 
  width: 50px; 
  height: 50px; 
  font-weight: 800; 
  font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(62,211,250,0.25); 
  cursor: pointer; 
  display: none; 
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(62,211,250,0.35);
  background: linear-gradient(45deg, #3ed3fa, #37556F);
}

.back-to-top.show { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
}

/* Mobile back to top button */
@media (max-width: 768px) {
  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}


   