/* ===============================
   GLOBAL RESET & VARIABLES
================================ *//* --- RESET & BASE --- */
/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa; /* optional, page background */
}

 /* Base Navbar */
/* ===== Base Navbar ===== */
/* ===== Navbar Base ===== */
/* ===== Navbar ===== */
.navbar {
  width: 100%;
  background: #1e90ff; /* Sky blue */
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px; /* space between logo image and text */
  text-decoration: none;
  color: #fff;
}

.logo-img {
  height: 50px; /* adjust logo height */
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column; /* stack vertically */
  line-height: 1.1;
}

.logo-main {
  font-weight: 700;
  font-size: 18px;
}

.logo-sub {
  font-weight: 500;
  font-size: 16px;
  color: #eef2ff; /* lighter shade */
}

.logo-text small {
  font-size: 11px;
  color: #cbd5e1; /* subtle gray */
  font-weight: 400;
}

/* Nav Links */
.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; transition: all 0.3s ease; }
.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 6px 10px;
  position: relative;
  transition: all 0.3s ease;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #6a11cb; /* purple underline hover */
  left: 0;
  bottom: -2px;
  transition: 0.3s;
}
.nav-links li a:hover::after { width: 100%; }

/* Buttons */
.btn-quote, .btn-quote-desktop {
  background: #6a11cb; /* purple */
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
/* Desktop: show desktop button, hide mobile menu button */
.btn-quote-desktop {
  display: inline-block; /* show on desktop */
}

.nav-links .btn-quote {
  display: none; /* hide in desktop */
}

/* Mobile: show mobile menu button inside nav, hide desktop button */
@media (max-width: 768px) {
  .btn-quote-desktop {
    display: none; /* hide desktop button on mobile */
  }
  .nav-links .btn-quote {
    display: inline-block; /* show in mobile menu */
  }
}

.btn-quote:hover, .btn-quote-desktop:hover { background: #ff6ec7; color: #fff; }

/* Hamburger */
.nav-toggle { display: none; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }

/* Overlay */
.overlay { display: none; }

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .btn-quote-desktop { display: none; }
  .btn-quote { display: block; padding: 10px 20px; }

  .nav-links {
    position: fixed;
    top: 0; right: -260px;
    width: 250px; height: 100vh;
    background: #1e90ff;
    flex-direction: column; gap: 25px;
    padding-top: 80px; padding-left: 20px;
    box-shadow: -3px 0 12px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    z-index: 1000;
  }
  .nav-toggle:checked ~ .nav-links { right: 0; }

  .nav-toggle:checked + .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked + .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .overlay {
    display: block;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 900;
  }
  .nav-toggle:checked ~ .overlay { opacity: 1; pointer-events: all; }

  .nav-links li a { color: #fff; }
  .nav-links li .btn-quote { background: #6a11cb; color: #fff; }
  .nav-links li .btn-quote:hover { background: #ff6ec7; color: #fff; }
}



/* ===============================
   HERO SECTION
================================ */
/* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1e90ff, #6a11cb); /* skyblue -> purple gradient */
  padding: 140px 70px 120px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-inner {
  max-width: 650px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #eef2ff;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #6a11cb; /* purple accent */
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #fc0404; /* pinkish hover */
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Location Badge */
.hero-location span {
  display: inline-block;
  background: #f80505; /* pink accent */
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 12px;
  font-weight: 600;
}

/* Right Logo + Ribbon */
.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.auth-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f80303; /* pink accent */
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 10;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 40px 80px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-logo {
    order: -1; /* logo on top on mobile */
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 14px;
  }
  .auth-ribbon {
    font-size: 10px;
    padding: 4px 10px;
  }
}
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 10;
}

.nav-toggle:checked ~ .overlay {
  display: block;
}

/* ===============================
   BRANDS SECTION
================================ */
.brands {
    padding: 100px 70px;
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
}

.brands-header {
    max-width: 640px;
    margin-bottom: 60px;
}

.brands-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--purple);
    background: rgba(106, 17, 203, 0.12);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brand-card {
    background: linear-gradient(135deg, #1e90ff, #6a11cb);
    border-radius: 18px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 48px rgba(0,0,0,0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 70px rgba(0,0,0,0.25);
}

.brand-card img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* BRANDS RESPONSIVE */
@media (max-width: 1024px) { .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .brand-grid { grid-template-columns: 1fr; gap: 15px; } .brand-card { padding: 35px; font-size: 20px; } }

/* ===============================
   WHY US SECTION
================================ */
.why-us {
    background: linear-gradient(135deg, #f5f8ff, #ffffff);
    padding: 100px 70px;
    text-align: center;
}

.why-us h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    background: #ffffff;
    padding: 45px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
}

.why-icon img { width: 100%; height: 100%; object-fit: contain; }

.why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 16px;
}

.why-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* WHY-US RESPONSIVE */
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-card { padding: 35px 20px; }
    .why-card h3 { font-size: 18px; }
    .why-card p { font-size: 14px; }
    .why-icon { width: 50px; height: 50px; margin-bottom: 16px; }
}

/* ===============================
   FOOTER
================================ */
/* FOOTER BASE */
.footer {
  background: #1f2937; /* Dark background */
  color: #ffffff;      
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  padding-top: 40px;   /* reduced top padding to remove gap */
  padding-bottom: 20px;
  margin: 0;           /* remove any default margin */
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 0 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin: 0;  /* remove extra margin causing gap above */
}

/* Brand + GST */
.footer-brand {
  max-width: 300px;
}

.footer-brand strong {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 14px;
  color: #e5e7eb;
  margin: 2px 0;
}

.gst-number {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

/* Footer Links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-nav a {
  font-size: 13px;
  color: #cbd5e1;
  text-decoration: none;
  padding: 2px 6px; /* subtle padding, not button-like */
  border-radius: 4px;
  transition: all 0.25s ease;
}

.footer-nav a:hover {
  color: #ff6ec7;
  background: rgba(255,255,255,0.08);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 12px 70px;  /* reduced padding to tighten layout */
  font-size: 13px;
  color: #94a3b8;
}

.footer-credit {
  font-weight: 400; /* normal weight for the text */
  font-size: 13px;
  color: #94a3b8; /* subtle gray */
}

.footer-credit .dev-brand {
  color: #ff6ec7; /* pink accent */
  font-weight: 500; /* slightly bold, not too heavy */
  font-size: 13px;
  letter-spacing: 0.5px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-main {
    padding: 0 40px;
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 10px 40px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 0 20px;
  }
  .footer-bottom {
    padding: 8px 20px;
    font-size: 12px;
  }
}


/* RESPONSIVE HERO & NAV */
@media (max-width: 768px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-logo { margin-bottom: 24px; }
}
