/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  margin-top: 2rem;
  overflow-x: hidden;
}
/* =========================
   GLOBAL FONT SETUP
========================= */

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #222;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
.navbar,
.logo,
.products-title,
.unique-head h2,
.partner-content h2 {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}
/* ===== NAVBAR ===== */
.navbar {
  background: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
  font-size: 1.85rem;
  font-weight: 700;
  color: #ff0000;
  letter-spacing: 0.5px;
}

/* ===== MENU ===== */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

/* ===== LINKS ===== */
.nav-link {
  text-decoration: none;
  color: #111;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #9b1c1c; /* dark red */
}

/* subtle underline like reference */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #9b1c1c;
  transition: width 0.25s ease;
}

.nav-item:hover .nav-link::after,
.nav-link.active::after {
  width: 100%;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
  position: absolute;
  top: 135%;
  left: 0;
  background: #ffffff;
  min-width: 340px;
  border-radius: 6px;
  padding: 6px 0;
  border: 1px solid #eaeaea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
  max-height: 600px; /* 🔥 controls visible height */
  overflow-y: auto;
}

/* show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* dropdown items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  color: #111;
  font-size: 1.12rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* hover effect */
.dropdown-menu li a:hover {
  background: #f8f8f8;
  color: #9b1c1c;
  padding-left: 22px;
}

/* ===== LANGUAGE (HIGHLIGHTED INSTEAD OF CONTACT) ===== */
.nav-item:last-child > .nav-link {
  padding: 8px 14px;
  border: 1.5px solid #9b1c1c;
  border-radius: 4px;
  color: #9b1c1c;
  font-weight: 600;
}

.nav-item:last-child > .nav-link:hover {
  background: #9b1c1c;
  color: #fff;
}

/* ===== CONTACT (NORMAL LINK) ===== */
.contact-btn {
  padding: 6px 0 !important;
  background: none !important;
  color: #111 !important;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #111;
}

/* ===== MOBILE (LOGIC SAME) ===== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    gap: 22px;
    padding: 25px 0;
    transition: 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    /* border: none; */
    display: none;
    max-height: 420px;
    overflow-y: auto;
  }
  .dropdown-menu {
    background: #f9f9f9;
    border-radius: 4px;
    margin-top: 6px;
  }
  .dropdown-menu li a {
    padding: 20px 30px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-link::after {
    display: none;
  }
}
/* -------------------------------------------------------------------------------------------------- */
/* ===== HERO SLIDER ===== */

.hero-slider {
  width: 100%;
  height: 91vh;
  position: relative;
  overflow: hidden;
}

/* Slides wrapper */
.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Dark overlay for readability */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgb(255, 0, 0); */
}

/* Active slide */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .slide-content {
    padding: 0 6%;
  }
}
/* -------------------------------------------------------------------------------------------------- */

/* ===== HERO SECTION ===== */

.hero {
  background: #ffffff;
  padding: 80px 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT */

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.hero-text h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #9b1c1c;
  margin-top: 12px;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
}

/* IMAGE */

.hero-image {
  flex: 1;
  border-radius: 10px;
}

.hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-text h1::after {
    margin-left: auto;
    margin-right: auto;
  }
}
/* ===== HERO ACTION BUTTONS ===== */

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  overflow: visible;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  background: #9b1c1c; /* dark red */
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #9b1c1c;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #ffffff;
  color: #9b1c1c;
  box-shadow: 0 8px 20px rgba(155, 28, 28, 0.25);
  transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  background: transparent;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid #111111;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 600px) {
  .hero-actions {
    justify-content: center;
  }
}

/* -------------------------------------------------------------------------------------------------- */

.video-div {
  width: 75%;
  margin: auto;
  height: 80vh;
  margin-top: 40px;
  display: flex;
  border-radius: 20px;
  background-color: rgb(0, 0, 0);
  justify-content: center;
}
.videoa {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}
/* ------------------------------------------------------------------------------------------------------ */

/* ===== ABOUT + PRESENCE ===== */

.about-presence {
  background: #faf6f5;
  padding: 70px 0;
}

.about-presence-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===== MAP SIDE ===== */

.presence-map-wrapper {
  position: relative;
}

.map-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
  position: relative;
}

.map-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #9b1c1c;
  display: block;
  margin-top: 8px;
}

/* MAP WRAPPER */
.presence-map {
  position: relative;
  max-width: 420px;
}

.presence-map img {
  width: 100%;
  display: block;
}

/* DOT STYLE */
.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #9b1c1c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(155, 28, 28, 0.18);
  cursor: pointer;
}

/* ===== CORRECTED CITY POSITIONS ===== */

/* Delhi */
.delhi {
  top: 27%;
  left: 29%;
}

/* Ludhiana (slightly NW of Delhi) */
.ludhiana {
  top: 19%;
  left: 23%;
}

/* Rajkot (Gujarat) */
.rajkot {
  top: 49%;
  left: 10%;
}

/* Bengaluru */
.bengaluru {
  top: 84%;
  left: 30%;
}

/* Chennai (East coast, lower) */
.chennai {
  top: 85%;
  left: 36%;
}
.haryana {
  top: 28%;
  left: 26%;
}
.west-bengal {
  top: 49%;
  left: 65%;
}
.Karnataka {
  top: 75%;
  left: 28%;
}
.utrakhand {
  top: 22%;
  left: 34%;
}
.uttarpradesh {
  top: 35%;
  left: 38%;
}
.andhra-pradesh {
  top: 70%;
  left: 40%;
}
.maharashtra {
  top: 62%;
  left: 22%;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.map-dot {
  animation: blink 1.5s infinite;
}

/* ===== CONTENT SIDE ===== */

.presence-content {
  max-width: 520px;
}

.presence-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9b1c1c;
  margin-bottom: 10px;
}

.presence-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.presence-content p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
}

/* SMALL IMAGE BLOCK */

.presence-media {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
}

.presence-media img {
  width: 160px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.presence-media span {
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .about-presence-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .about-presence {
    padding: 3rem;
  }

  .presence-map {
    margin: 0 auto;
  }

  .presence-content {
    max-width: 100%;
  }

  .presence-media {
    justify-content: center;
  }

  .map-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}
/* -------------------------------------------------------------------------------------------------- */

/* ===== PRODUCTS SECTION ===== */

.products-section {
  background: #faf6f5;
  padding: 90px 0;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 50px;
}

/* ROW */

.products-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* PRODUCT BOX */

.product-box {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 42px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ICON */

.product-icon i {
  font-size: 64px;
}

/* TEXT */

.product-text {
  color: #fff;
}

.product-code {
  font-size: 2rem;
  font-weight: 5x00;
  line-height: 1;
  display: block;
  color: black;
}

.product-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 9px;
}

.product-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 6px;
}

/* TWO WHEELER */

.product-2w {
  background: #e30613;
  color: #fff;
}

.product-2w .product-icon i {
  color: #fff;
}

.product-2w:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(227, 6, 19, 0.35);
}

/* THREE WHEELER */

.product-3w {
  background: #ffe3e3;
  color: #000000;
}

.product-3w .product-text {
  color: #ffffff;
}
.product-3w .product-code {
  color: rgb(0, 0, 0);
}

.product-3w .product-icon i {
  color: #ff0000;
}

.product-3w:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .products-row {
    grid-template-columns: 1fr;
  }

  .product-box {
    padding: 30px;
  }

  .product-icon i {
    font-size: 52px;
  }

  .product-code {
    font-size: 2.2rem;
  }
}
/* -------------------------------------------------------------------------------------------------- */

/* ===== UNIQUE (MODERN) ===== */

.unique-modern {
  background: #ffffff;
  padding: 80px 0;
}

.unique-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.unique-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}

.unique-head h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
}

.unique-head h2 span {
  color: #9b1c1c;
}

.unique-head p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

/* Layout */

.unique-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Card Stack */

.unique-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Cards */

.unique-card {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 30px 28px;
  border-radius: 14px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.unique-card i {
  font-size: 1.8rem;
  color: #ff0000;
  margin-bottom: 14px;
}

.unique-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff0000;
  margin-bottom: 10px;
}

.unique-card p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
  letter-spacing: 1px;
}

/* Hover */

.unique-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Center Image */

.unique-center {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  border: 1px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unique-center img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.unique-center span {
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9b1c1c;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .unique-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .unique-center {
    order: -1;
    min-height: 260px;
  }

  .unique-stack {
    align-items: center;
    text-align: center;
  }
}
/* Animation final state */
.unique-card.show {
  opacity: 1;
  transform: translateY(0);
}
.unique-card {
  will-change: transform, opacity;
}

/* Initial hidden state */
.unique-card {
  /* opacity: 0;
  transform: translateY(40px); */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible */
.unique-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover (only Y movement, safe) */
.unique-card:hover {
  transform: translateY(-8px);
}

/* -------------------------------------------------------------------------------------------------- */

/* ================= PARTNER CTA ================= */

.partner-cta {
  background: linear-gradient(
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.5)
    ),
    url("./img/ctabackground.jpeg") center / cover no-repeat;

  padding: 90px 0;
  min-height: 60vh;

  backdrop-filter: blur(2px);
  /* -webkit-backdrop-filter: blur(2px); */
}

/* ================= FOOTER ================= */

.footer-modern {
  background: #0f0f0f;
  color: #e5e5e5;
}

.footer-links {
  display: flex;
  flex-direction: column;
}
.logomain {
  width: 240px; /* main logo width */
  height: auto; /* keeps proportions */
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(
    0 0 2px rgba(255, 255, 255, 0.3)
  ); /* makes it crisp on dark bg */
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdbdbd;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #9b1c1c;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #bdbdbd;
}

.footer-contact i {
  color: #9b1c1c;
  margin-right: 8px;
}

/* MAP */

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  background-color: red;
}

.footer-map iframe {
  border: none;
}

/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #bdbdbd;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #9b1c1c;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .partner-inner,
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }
  .hero-actions {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }
  .partner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .footer-map iframe {
    min-height: 220px;
  }
}

/* =========================
   FLOATING CONTACT BUTTONS
========================= */

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 90px; /* slightly above the end */
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

/* WhatsApp */
.floating-btn.whatsapp {
  background: #25d366;
}

/* Call */
.floating-btn.call {
  background: #2a6e3f; /* matches your green theme */
}
.floating-btn.email {
  background: #000000; /* matches your green theme */
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {
  .floating-contact {
    right: 16px;
    bottom: 80px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .hero-actions {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
  }

  .hero-slider {
    width: 100vw;
    object-fit: contain;
    height: 30vh;
  }
  .video-div {
    width: 100vw;
    height: inherit;
    margin: auto;
    object-fit: contain;
  }
  .videoa {
    width: 100%;
    height: inherit;
    margin: auto;
    object-fit: contain;
  }
  .footer-brand img {
    margin: auto;
  }
}

/* =========================
   COMPANY STATS SECTION
========================= */

.company-stats {
  max-width: 620px;
}

.stats-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(42, 110, 63, 0.1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 14px;
}

.company-stats h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 14px;
  line-height: 1.3;
}

.stats-intro {
  font-size: 15px;
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Cards */
.stat-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.stat-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 14px;
  color: var(--gray-color);
  font-weight: 500;
}

/* Highlight card */
.stat-card.highlight {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
}

.stat-card.highlight h3,
.stat-card.highlight span {
  color: #f90000;
}

/* Responsive */
@media (max-width: 768px) {
  .company-stats h2 {
    font-size: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

#pageLoader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#pageLoader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  color: white;
}

.loader-inner img {
  width: 50vw;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.partner-cta {
  background: #ffffff;
  padding: 90px 0;
  display: flex;
  align-items: center;
  height: 70vh;
  justify-content: center;
  position: relative;
}
.partner-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./img/ctabackground.jpeg") center / cover no-repeat;
  opacity: 0.7;
  z-index: 0;
  backdrop-filter: blur(3px);
}

.partner-content {
  color: #ffffff;
  display: flex;
  background-color: rgba(0, 0, 0, 0.693);
  padding: 1.5rem;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); /* Safari support */
}

.partner-content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.partner-content h2 span {
  background: #fff;
  color: #000;
  padding: 0 6px;
}

.partner-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
}

.partner-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.partner-btn:hover {
  background: #ff0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* MAIN FOOTER WRAPPER */
.footer-container {
  max-width: 1300px; /* keep content centered */
  margin: 0 auto;
  padding: 60px 30px; /* ← THIS gives side spacing */
  display: flex;
  gap: 50px;
  align-items: stretch;
}

/* LEFT SIDE */
.footer-main {
  flex: 0 0 48%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* MAP SIDE */
.footer-map {
  flex: 0 0 50%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* MAP */
.footer-map a {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
.ab{
  margin-bottom: 10px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    padding: 50px 25px;
  }

  .footer-main,
  .footer-map {
    flex: 0 0 100%;
  }

  .footer-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-container {
    padding: 40px 20px;
  }

  .footer-map iframe {
    min-height: 260px;
  }
  .partner-cta {
    height: 20vh;
  }
}
/* Default (Desktop) */
.mobile-text{
  display: none;
}

/* Mobile View */
@media (max-width: 768px){
  .desktop-text{
    display: none;
  }
  .mobile-text{
    display: block;
    font-size: 15px;
    line-height: 1.6;
  }

}

/* ===============================
   CIRCLE SLIDER CORE
================================ */

.circle-slider-shell{
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}

/* Slider viewport */
.circle-products-outer{
  flex: 1;
  overflow: hidden;
  padding: 70px 0;
  padding-bottom: 0;
}

/* Track */
.circle-products-wrap{
  display: flex;
  gap: 90px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-left: 40px;
  padding-right: 40px;
}

.circle-products-wrap::-webkit-scrollbar{
  display: none;
}

/* Circles */
.circle-product{
  flex: 0 0 auto;
  width: 240px;
  height: 240px;
  min-width: 240px;
  min-height: 240px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* Overlay */
.circle-product::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.25));
  z-index: 1;
}

/* Text */
.circle-product span{
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
}

/* Hover (desktop only) */
@media (hover:hover){
  .circle-product:hover{
    transform: scale(1.06);
    box-shadow: 0 25px 60px rgba(255,0,0,0.35);
  }
}

/* ===============================
   ARROWS
================================ */

.circle-arrow{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.circle-arrow:hover{
  background: red;
  transform: scale(1.1);
}

/* ===============================
   MOBILE
================================ */

@media (max-width:768px){

  .circle-products-wrap{
    scroll-snap-type: x mandatory;
  }

  .circle-product{
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    scroll-snap-align: center;
  }

  .circle-arrow{
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ===============================
   BACKGROUND IMAGES
================================ */

.circle-product:nth-child(1){ background-image: url("./img/circleimage1.jpeg"); }
.circle-product:nth-child(2){ background-image: url("./img/circleimage5.jpeg"); }
.circle-product:nth-child(3){ background-image: url("./img/circleimage4.jpeg"); }
.circle-product:nth-child(4){ background-image: url("./img/circleimage3.jpeg"); }
.circle-product:nth-child(5){ background-image: url("./img/circleimage2.jpeg"); }
.circle-product:nth-child(6){ background-image: url("./img/circleimage6.jpeg"); }
.circle-product:nth-child(7){ background-image: url(""); }


/* ===============================
   PRODUCT FLOAT SIDEBAR
================================ */

.product-float-sidebar{
  position: fixed;
  top: 90px;
  right: 10px;
  width: 250px;
  height: 350px;
  background: rgba(255,255,255,0.96);
  padding: 18px 16px;
  box-shadow: -8px 0 30px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 900;
  border-radius: 10px;
}

/* Title */
.product-float-sidebar h4{
  font-size: 16px;
  margin-bottom: 10px;
  color: #b30000;
  border-left: 3px solid red;
  padding-left: 10px;
}

/* Links */
.product-float-sidebar a{
  padding: 9px 12px;
  margin-bottom: 6px;
  border-radius: 6px;
  font-size: 12px;
  color: #222;
  text-decoration: none;
  transition: 0.25s ease;
}

.product-float-sidebar a:hover{
  background: #fbeaea;
  color: red;
  transform: translateX(4px);
}

/* ===============================
   MOBILE TOGGLE
================================ */

.product-sidebar-toggle{
  display: none;
}

@media (max-width: 991px){

  .product-float-sidebar{
    right: -260px; /* hide it */
    transition: 0.35s ease;
  }

  .product-float-sidebar.active{
    right: 10px; /* slide in */
  }

  .product-sidebar-toggle{
    position: fixed;
    bottom: 270px;
    right: 15px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: red;
    color: #fff;
    border: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    cursor: pointer;
  }
}

.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos {
  display: none !important;
}

body {
  top: 0 !important;
  position: static !important;
}

.skiptranslate {
  display: none !important;
}

.hero-slider {
  z-index: 1;
  pointer-events: none;
}

.product-sidebar-toggle {
  pointer-events: auto;
}
