* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand: #0d6efd;
  /* primary */
  --muted: #6c757d;
  --glass: rgba(255, 255, 255, 0.7);
  --primary: #0066ff;
  /* your primary color */
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.top-bar {
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.06), rgba(13, 110, 253, 0.02));
}

/* Top Contact Bar Styles */
.top-contact-bar {
  background-color: rgb(228 231 255);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-info .contact-item:hover {
  color: #007bff !important;
}

.contact-info .contact-item i {
  font-size: 12px;
  opacity: 0.8;
}

.top-links .top-link {
  position: relative;
  padding: 6px 12px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.top-links .top-link:hover {
  background: rgba(0, 123, 255, 0.2);
  color: #fff !important;
  transform: translateY(-1px);
}

.top-links .top-link i {
  font-size: 11px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .top-contact-bar {
    text-align: center;
    font-size: 12px;
  }

  .contact-info {
    justify-content: center;
    margin-bottom: 10px;
  }

  .contact-info .contact-item {
    margin: 0 8px 5px 0;
  }

  .top-links {
    justify-content: center !important;
  }
}

/* Simple Navbar Styles */
.navbar {
  transition: all 0.3s ease;
  z-index: 1030;
  position: relative;
}

.navbar.sticky-top {
  z-index: 1030 !important;
}

.navbar-brand {
  text-decoration: none;
}

.navbar-brand:hover {
  text-decoration: none;
}

.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 4px;
  padding: 8px 12px !important;
}

.nav-link:hover {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd !important;
}

.dropdown {
  position: relative;
  z-index: 1040;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 8px;
  z-index: 1050 !important;
  position: absolute !important;
}

.dropdown-menu.show {
  display: block;
  z-index: 1050 !important;
}

.dropdown-item {
  padding: 10px 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 8px;
}

.dropdown-item:hover {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  transform: translateX(5px);
}

.btn-sm {
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0a58ca, #084298);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
  }

  .nav-link {
    text-align: center;
    margin: 2px 0;
  }

  .btn-sm {
    width: 100%;
    margin: 5px 0;
  }

  /* Mobile dropdown styling */
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: #f8f9fa;
    border: none;
    box-shadow: none;
    border-radius: 8px;
    transform: none !important;
    display: none;
  }

  .dropdown-menu.show {
    display: block !important;
    animation: slideDown 0.3s ease;
  }

  .dropdown-item {
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    transition: all 0.3s ease;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .dropdown-item:hover {
    background-color: #e9ecef;
  }

  /* Arrow rotation animation */
  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.hero {
  background: url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  min-height: 56vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.45), rgba(13, 110, 253, 0.2));
  z-index: -1;
}

.hero .container {
  position: relative;
  z-index: 2;
  z-index: 2
}

.service-card {
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.07)
}

.track-card {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width:575.98px) {
  .hero {
    min-height: 46vh
  }

  .navbar-brand small {
    display: none
  }
}

.pricing-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: .3s;
}

.pricing-box:hover {
  transform: translateY(-5px);
}

h2 {
  font-weight: 700;
}

.icon {
  font-size: 38px;
  color: #0d6efd;
}




.brands-section {
  background: #fff;
}

.brand-box {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  padding: 10px;
}

.brand-box img {
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: 0.3s;
}

.brand-box:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* pricing */
.calculator-wrapper {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.result-box {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #eee;
}



.badge-light-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff
}

.choose-section h2 {
  font-size: 32px;
}

.feature-box {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f1f1f1;
  transition: 0.3s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
}



.faq-wrapper {
  max-width: 850px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 0;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary);
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 10px 0 20px;
  margin: 0;
  color: #555;
}

/* rotate icon when open */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}