:root {
  --teal-900: #032845;
  --teal-800: #04345A;
  --teal-700: #05406F;
  --teal-600: #064884;
  --teal-500: #074987;
  /* Primary Brand Color */
  --teal-400: #2A6BA5;
  --teal-300: #5B93C3;
  --teal-200: #8DBBE0;
  --teal-100: #D6EBF8;

  --gold: #FED202;
  --gold-light: #FFE66B;

  --text-primary: #F4FAFF;
  --text-secondary: #DCEEFF;
  --text-muted: #8CA7BC;

  --border: rgba(7, 73, 135, 0.2);
  --surface: rgba(4, 52, 90, 0.85);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #eef4f7;
  color: #000;
  overflow-x: hidden;
}
p{
  color:#555;
}
/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}
.box-rounded {
  border-radius: 16px;
  background-color: #fff;
}
/* ── NAVBAR ── */
.navbar {
  padding: 0 0;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all .3s ease;
  margin: 10px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.brand-text span {
  color: var(--teal-200);
}

.navbar-nav .nav-link {
  color: #050505 !important;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  padding: 0.5rem 1rem !important;
  transition: color .2s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--teal-200);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--teal-400) !important;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav-signup {
  background: #074987;
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem !important;
  border-radius: 30px;
  transition: all .2s;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 16px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.btn-nav-signup:hover {
  background: var(--teal-500);
}

/* ── HERO ── */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(#ffffffcc, #ffffffd4, #ffffff), url(./images/hero-bg.webp); */
  background-position: center;
  background-size: cover;
}

/* .hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 122, 122, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 122, 122, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
} */


.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-200);
  border: 1px solid var(--teal-400);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--teal-500);
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: #ea403a;
}
.section-label{
  color: #ea403a;
  font-weight: 600;
}
.section-title{
  color:var(--teal-500)
}
.hero-title .accent {
  color: var(--teal-200);
}

.hero-title .gold {
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.carrier_logo {
  mix-blend-mode: multiply;
  width: 120px;
}

.btn-primary-cta {
  background: #ea403a;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-cta:hover {
  background: #3bbdd2;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 166, 166, 0.3);
}

.btn-secondary-cta {
  background: transparent;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-cta:hover {
  border-color: var(--teal-400);
  color: var(--text-primary);
  background: rgba(26, 122, 122, 0.1);
}



/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-globe-wrap {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.02em;
}

.hero-stat .number span {
  color: var(--teal-200);
}

.hero-stat .label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(34, 166, 166, 0.15);
  animation: spin-slow linear infinite;
}

.globe-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  animation-duration: 40s;
}

.globe-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-duration: 28s;
  animation-direction: reverse;
  border-color: rgba(34, 166, 166, 0.1);
}

.globe-ring:nth-child(3) {
  width: 60%;
  height: 60%;
  animation-duration: 18s;
  border-color: rgba(201, 162, 39, 0.12);
}

.globe-ring::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-200);
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--teal-200);
}

.hero-logo-center {
  position: relative;
  z-index: 2;
  width: 520px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(34, 166, 166, 0.25)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* ── ABOUT ── */
#about {
  padding: 100px 0 50px;
}

.about-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(34, 166, 166, 0.1);
  border: 1px solid rgba(34, 166, 166, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  font-size: 1rem;
}

.about-feature-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.about-feature-desc {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.6;
}

.about-img-wrap {
  position: relative;
}

.about-img-card {
  background: rgb(255 193 7 / 4%);
  border: 1px solid #FFC107;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-visual {
  position: relative;
  height: 200px;
  margin-bottom: 1.5rem;
}

.route-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.route-node .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-200);
  box-shadow: 0 0 12px rgba(34, 166, 166, 0.5);
}

.route-node .city {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #000;
  white-space: nowrap;
}

.route-line-svg {
  position: absolute;
  inset: 0;
}

.coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cov-stat {
  background: rgba(13, 43, 43, 0.6);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
}

.cov-stat .num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-200);
}

.cov-stat .lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.benefits_multicarrier {
  background: var(--teal-500);
  border-radius: 16px;
}

.benefits_multicarrier .benefits-card {
  border-radius: 12px;
  background-color: #fff;
}

/* ── LOGIN / SIGNUP SECTION ── */
#login {
  padding: 100px 0;
}

.auth-card {
  padding: 2.5rem;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.auth-tab {
  flex: 1;
  padding: 0.7rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .2s;
}

.auth-tab.active {
  color: var(--teal-200);
  border-bottom-color: var(--teal-200);
}

.auth-form.active {
  display: block;
  animation: fadeIn .3s ease;
}

.form-label-custom {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: rgb(255 255 255 / 80%);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 1.2rem;
}

.form-control-custom:focus {
  border-color: var(--teal-300);
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row>div {
  flex: 1;
}

.btn-auth {
  width: 100%;
  background: var(--teal-500);
  border: none;
  border-radius: 4px;
  padding: 0.85rem;
  color: var(--teal-900);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  margin-top: 0.5rem;
}

.btn-auth:hover {
  background: var(--teal-900);
  box-shadow: 0 6px 20px rgba(34, 166, 166, 0.3);
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 1.2rem 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  background: rgba(13, 43, 43, 0.7);
  padding: 0 0.8rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  position: relative;
}

.auth-aside {
  padding: 2.5rem 1.5rem 2.5rem 2.5rem;
}

.auth-aside-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-500);
  margin-bottom: 1rem;
}

/* #login .section-label {
  font-size: 2rem;
  font-weight: 700;
} */

.auth-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.auth-benefit-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--teal-200);
  font-size: 1rem;
  margin-top: 2px;
}

.auth-benefit-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: #020202;
  border-top: 1px solid var(--border);
  padding: 60px 0 10px;
  border-radius:16px;
  margin-bottom: 20px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.footer-brand span {
  color: var(--teal-200);
}

.footer-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #33bbd2;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
  color: #ffffffb5;
}

.footer-links a {
  font-size: 0.83rem;
  color: #ffffffbf;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--teal-200);
}

.footer-bottom {
  border-top: 1px dashed var(--teal-300);
  padding-top: 10px;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-icon{
  width: 28px;
  height: 28px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.enquiry-now-btn-whatsapp a {
  background: #25d366;
  display: block;
  font-size: 15px;
  color: #fff;
  height: 38px;
  line-height: 22px;
  border-radius: 30px 30px 0 0;
  padding: 7px 30px;
  cursor: pointer;
  text-decoration: none;
}

.enquiry-now-btn-whatsapp {
  position: fixed;
  right: -65px;
  z-index: 99;
  top: 30%;
  transform: translateY(150px) rotate(-90deg);
  display: block;
  margin-top: -16px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all .2s;
}

.social-btn:hover {
  border-color: var(--teal-300);
  color: var(--teal-200);
}

/* ── DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-globe-wrap {
    width: 280px;
    height: 280px;
  }

  .hero-logo-center {
    width: 160px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .auth-aside {
    padding: 1.5rem 0;
  }
}

@media (max-width: 576px) {
  .hero-globe-wrap {
    display: none;
  }

  .tracking-input-group {
    flex-direction: column;
  }

  .btn-track {
    padding: 0.75rem;
  }

  #about {
    padding: 30px 0px;
  }

  .hero-stats {
    margin-top: 0rem;
  }
}

/* Scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tag */
.badge-tag {
  background: #ffd200;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

/* Heading */
.main-heading {
  font-size: 48px;
  font-weight: 700;
  color: #222;
}

/* List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-left: 35px;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  background: #ffd200;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
}

/* Yellow Card */
.highlight-card {
  background: #ffd200;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  z-index: 2;
  border: none;
}

.logo-circle {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  margin: -60px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 4px solid #ffd200;
}

/* Time Box */
.time-box {
  background: #fff3a0;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
}

.footer-logo .brand-logo {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
}

.partners img{
  mix-blend-mode: multiply;
  padding: 20px;
}
@media (min-width: 1000px) {
  .container-fluid{
    padding-left: 40px;
    padding-right: 40px;
  }
}


.faq-title{
    font-size:32px;
    font-weight:700;
    color:#074987;
    margin-bottom:15px;
}

.faq-subtitle{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#6c757d;
}

.accordion-item{
    border:1px solid rgba(7,73,135,.2);
    border-radius:16px !important;
    overflow:hidden;
    margin-bottom:20px;
    background:#fff;
}

.accordion-button{
    font-size:18px;
    font-weight:600;
    color:#074987;
    background:#fff;
    padding:15px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#eef7ff;
    color:#074987;
}

.accordion-button:focus{
    box-shadow:none;
    border:none;
}

.accordion-body{
    font-size:15px;
    line-height:1.8;
    color:#666;
    padding:15px;
}

.accordion-button::after{
    background-size:20px;
}

@media(max-width:768px){

    .faq-title{
        font-size:34px;
    }

    .accordion-button{
        font-size:18px;
        padding:18px 20px;
    }
}