/* ─────────────────────────────────────────
   1. CSS Variables (Design Tokens)
───────────────────────────────────────── */
:root {
  --white:        #ffffff;
  --off-white:    #f7f5f0;
  --orange:       #e85c0d;
  --orange-pale:  #fff3ec;
  --blue:         #1a3b8f;
  --blue-mid:     #2756cc;
  --blue-pale:    #eef2fd;
  --dark:         #151515;
  --muted:        #6b6b6b;
  --border:       #e3e0d8;

  --shadow-card:  0 8px 40px rgba(0, 0, 0, 0.09);
  --shadow-hover: 0 18px 60px rgba(0, 0, 0, 0.16);
}


/* ─────────────────────────────────────────
   2. Reset & Base
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.main-content {
  flex: 1;
  display: flex;
}

/* ─────────────────────────────────────────
   3. Header / Topbar
───────────────────────────────────────── */
#page-topbar {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  background: #ff7b00;
  z-index: 1040;
  transition: left 0.3s;
}

.navbar-header {
  height: 70px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Logo white pill */
.logo-box {
  background: #fff;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  height: 60px;
  display: flex;
  align-items: center;
  /* padding: 0 10px 0 16px; */
  flex-shrink: 0;
  margin-left: -20px;
}

.logo-box img {
  height: 60px;
  width: auto;
}

/* Desktop nav */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.desktop-menu a,
.desktop-menu .nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  padding: 7px 11px;
  border-radius: 8px;
  transition: background 0.18s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.desktop-menu a:hover,
.desktop-menu .nav-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Download App button */
.download-icon-btn {
  transition: transform 0.25s ease, background 0.25s ease,
              box-shadow 0.25s ease, color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 8px;
}

.download-icon-btn:hover {
  transform: scale(1.06);
  background: linear-gradient(135deg, #ff6600, #f3cfbc);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.4);
}

/* Cart badge */
.cart-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--dark);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User dropdown */
.user-dropdown .dropdown-menu {
  min-width: 160px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-top: 8px;
}

/* Mobile burger */
.burger { display: none; }

.burger .dropdown-menu {
  min-width: 210px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-top: 8px;
}

.burger .dropdown-item {
  font-size: 0.9rem;
  padding: 9px 16px;
}

/* Responsive: header */
@media (max-width: 991px) {
  .desktop-menu { display: none !important; }
  .burger { display: block; }
}

@media (max-width: 575px) {
  .navbar-header {  gap: 10px; }
  .logo-box { height: 60px;}
  /* .logo-box img { height: 30px; } */
}
        /* Tablets */
        @media (max-width: 992px) {
            .logo-box img{
                width: 160px;
            }
        }
        /* Mobile */
        @media (max-width: 768px) {
            .logo-box img{
                width: 120px;
            }
        }
        /* Small mobile */
        @media (max-width: 480px) {
            .logo-box img{
                width: 95px;
            }
        }


/* ─────────────────────────────────────────
   4. Hero Section
───────────────────────────────────────── */
.hero {
  flex: 1;
  align-items: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8f3 0%, #eef2fd 55%, #f5fff8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(232, 92, 13, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(26, 59, 143, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tagline {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.hero-tagline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-pale);
  border: 1px solid rgba(232, 92, 13, 0.18);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

/* Hero flag cards */
.hero-reach-wrapper {
  background: linear-gradient(135deg, #fff3ec, #eef2fd);
  border-radius: 24px;
  padding: 20px 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  max-width: 580px;
    max-height: 300px;
  width: 100%;
}
@media (max-width: 767px) {
  .hero { min-height: auto; }
  .hero-reach-wrapper { max-width: 100%; max-height: none; }
  .hero-flag-header { height: 70px; }
  .hero-flag-body { padding: 10px 12px 12px; }
  .hero-flag-link { padding: 5px 10px; font-size: 0.72rem; }
  .hero-flag-country { font-size: 0.88rem; }
}
.hero-reach-label {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}

.hero-flag-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.hero-flag-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  text-decoration: none;
  color: inherit;
}

.hero-flag-card.india:hover     { border-color: var(--orange); }
.hero-flag-card.australia:hover { border-color: var(--blue); }

.hero-flag-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-flag-header.india-bg { background: linear-gradient(135deg, #fff8f2, #ffe8d5); }
.hero-flag-header.aus-bg   { background: linear-gradient(135deg, #eef2fd, #d1dafc); }

.hero-flag-header img {
  width: 65%;
  border-radius: 5px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.13);
}

.hero-flag-body {
  padding: 14px 16px 16px;
}

.hero-flag-country {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.hero-flag-card.india     .hero-flag-country { color: var(--orange); }
.hero-flag-card.australia .hero-flag-country { color: var(--blue); }

.hero-flag-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-flag-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 7px;
  padding: 7px 14px;
  transition: background 0.22s, color 0.22s, transform 0.18s;
}

.hero-flag-card.india     .hero-flag-link { background: var(--orange-pale); color: var(--orange); }
.hero-flag-card.australia .hero-flag-link { background: var(--blue-pale);   color: var(--blue); }

.hero-flag-card.india     .hero-flag-link:hover { background: var(--orange); color: var(--white); transform: translateX(3px); }
.hero-flag-card.australia .hero-flag-link:hover { background: var(--blue);   color: var(--white); transform: translateX(3px); }

.hero-reach-footer {
  text-align: center;
  margin-top: 5px;
  font-size: 0.77rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 767px) {
  .hero { min-height: auto; }
  .hero-reach-wrapper { max-width: 100%; }
}


/* ─────────────────────────────────────────
   5. Features Section
───────────────────────────────────────── */
.features-section {
  flex: 1;
  background: var(--off-white);
}
.features-section .row {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
    .contentGrid {
        max-width: 1440px   !important;
    }
}
.section-label {
  font-size:20px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0051B7;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.section-title span { color: var(--blue); }

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 10px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
@media (max-width: 1440px) {
  .iconItem {
    flex-direction: column;
    align-items: flex-start; /* or center if you prefer */
  }
}
@media (max-width: 590px) {
  .iconItem {
    flex-direction: row;
    align-items: flex-start; /* or center if you prefer */
  }
}
.modal .fade-up {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.fi-orange { background: var(--orange-pale); color: var(--orange); }
.fi-blue   { background: var(--blue-pale);   color: var(--blue-mid); }

.feature-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: justify;
}


/* ─────────────────────────────────────────
   6. Footer
───────────────────────────────────────── */
.footer-row{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}
@media (min-width: 768px) {

  .custom-col-30 {
    width: 30%;
    flex: 0 0 30%;
  }

  .custom-col-40 {
    width: 40%;
    flex: 0 0 40%;
  }

}
.footer-col{
  flex:1;
  min-width:280px;
}
footer.gridSection {
  /* background-color: #EFEFF5; */

        /* background: linear-gradient(
        to right,
        #f5f9ff,
        #fff7ef,
        #fff2f2
    ); */
        background: linear-gradient(to right, #dfe7f3, #f4e4d3, #e6bbbb);
  padding: 10px 0 0;
  margin-top: auto;
}

footer.gridSection h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

footer.gridSection p {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
}

footer.gridSection ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.gridSection ul li a {
  color: var(--blue-mid);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.18s;
}

footer.gridSection ul li a:hover { color: var(--orange); }

.contact-item {
  display: flex;
  align-items: flex-start;
  /* flex-direction: column; */
  /* gap: 9px; */
}
.contact-list{
  /* color: var(--blue); */
  font-weight: 800;
}
.contact-item i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--dark);
  font-size: 0.88rem;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.18s;
}

.contact-item a:hover { color: var(--orange); }

.hours-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.hours-row i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.hours-row p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
}

.footer-divider {
  border-top: 1.5px solid #ddd;
  margin-top: 32px;
}

.footer-bottom {
  background: #0152B7;
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.footer-bottom .copyright {
  font-size: 0.82rem;
  color: #fff;
}

.footer-bottom .policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .policy-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.18s;
}

.footer-bottom .policy-links a:hover { opacity: 0.75; }

@media (max-width: 767px) {
  footer.gridSection { padding: 36px 0 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .policy-links { justify-content: center; }
}


/* ─────────────────────────────────────────
   7. Animations & Utilities
───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);

}

.terms-paper {
  background: var(--white);
  border-radius: 16px;
}
.terms-paper p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 12px;
}

.terms-paper ul {
  margin-bottom: 14px;
}

.terms-paper li {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

.terms-paper h1,
.terms-paper h2,
.terms-paper h3,
.terms-paper h4,
.terms-paper h5 {
  font-family: "DM Sans", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}