/* Prevent horizontal scroll on mobile */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Better image behavior globally */
img {
  max-width: 100%;
  height: auto;
}

/*hero section */
/* IMAGE BACKGROUND */
.hero-img {
  width: 100%;
  min-height: 100svh;
  height: 100svh;
  /* full screen hero */
  object-fit: cover;
  object-position: center;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.4),
    rgba(255, 122, 0, 0.2)
  );
  z-index: 1;
  pointer-events: none;
}

/* KEEP SAME AS BEFORE */
.custom-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-align: center;
  background: linear-gradient(120deg,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.4));
}

.hero-content {
  max-width: 850px;
  width: 100%;
}
.main-heading {
  font-weight: 800;
  color: #fff;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.12;
}

.sub-text {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  color: #e2e8f0;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 30px;
  color: #fff;
}

/* INDICATOR STYLE */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #ff7a00;
}
/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 30px;
  height: 30px;
}

/* COMMON BUTTON BASE */
.btn-premium,
.btn-outline {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* ================= PREMIUM BUTTON ================= */
.btn-premium {
  background: linear-gradient(135deg, #ff7a00, #ff3b3b);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.4);
}

/* HOVER */
.btn-premium:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 45px rgba(255, 122, 0, 0.6);
  color: #fff;
}

/* SHINE EFFECT */
.btn-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.2));
  transform: skewX(-20deg);
  transition: 0.6s;
}

.btn-premium:hover::after {
  left: 130%;
}

/* ================= OUTLINE BUTTON ================= */
.btn-outline {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
}

/* HOVER */
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}

/* ================= OPTIONAL ICON SUPPORT ================= */
.btn-premium i,
.btn-outline i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-premium:hover i,
.btn-outline:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-img {
    height: 90svh;
    min-height: 620px;
  }

  .custom-caption {
    align-items: center;
    padding: 90px 18px 60px;
  }

  .main-heading {
    font-size: 34px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 12px;
  }

  .btn-premium,
  .btn-outline {
    padding: 12px 22px;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-img {
    min-height: 560px;
  }

  .main-heading {
    font-size: 29px;
  }

  .sub-text {
    font-size: 13px;
  }
}


/* ================= SECTION BACKGROUND ================= */
.about-creative {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  /* BASE FOOD GRADIENT */
  background: linear-gradient(135deg, #fff7ed, #ffedd5 40%, #ffffff 100%);
}

/* ================= GLOW LIGHTS ================= */

/* BLUE LIGHT */
.about-creative::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
  top: -120px;
  left: -120px;
  filter: blur(100px);
  animation: glowMove 12s ease-in-out infinite;
  z-index: 0;
}

/* ORANGE LIGHT */
.about-creative::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), transparent 70%);
  bottom: -200px;
  right: -200px;
  filter: blur(120px);
  z-index: 0;
}

/* ================= NOISE OVERLAY ================= */
.about-creative .noise-layer {
  position: absolute;
  inset: 0;
  background: url('../img/noise.webp');
  background-size: 200px;
  /* repeat nicely */
  opacity: 0.05;
  /* control strength */
  pointer-events: none;
  z-index: 1;
}

/* ================= ANIMATION ================= */
@keyframes glowMove {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -30px);
  }
}

/* ================= IMAGE SIDE ================= */
.food-scene {
  position: relative;
  text-align: center;
  animation: fadeInUp 1s ease;
  min-height: 420px;
}

.food-scene .badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7a00, #ff3b3b);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(255, 90, 0, 0.4);
}

/* BIG CIRCLE */

.bg-circle {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #9ecbff, #3b82f6);
  border: none;
  /* REMOVE green ring */
  box-shadow:
    0 30px 80px rgba(59, 130, 246, 0.25),
    0 0 0 8px rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}


/* SMALL LIGHT CIRCLE (NEW - PREMIUM TOUCH) */
.bg-circle::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: -40px;
  left: -40px;
}

/* MAIN IMAGE */
.fries-wrap {
  position: relative;
  display: inline-block;
}

.fries-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.1));
}

.fries-main {
  width: 300px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* hover effect */
.food-scene:hover .fries-main {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* ===== FLOAT ITEMS CLEAN ===== */
.item {
  position: absolute;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  opacity: 0.95;
  mix-blend-mode: normal;

}

.item:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.1) rotate(5deg);
}

/* 🌶️ CHILLI (TOP ACCENT) */
.chilli {
  width: 85px;
  top: 20px;
  left: 100px;
  transform: rotate(-15deg);
  opacity: 0.9;
}


/* 🥔 POTATO (BEHIND FRIES) */
.potato {
  width: 140px;
  /* reduced from 200px */
  bottom: 10px;
  left: 130px;
  opacity: 0.7;
  filter: blur(0.5px) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  transform: rotate(10deg);
  z-index: 1;
  /* behind fries */
}

/* 🌿 LEAF (SUBTLE, SMALL, CLEAN) */
.leaf {
  width: 100px;
  right: 40px;
  bottom: 90px;
  transform: rotate(-5deg);
  opacity: 0.8;
  animation-duration: 6s;
  z-index: 1;

}

/* REMOVE BLUR FROM ITEMS (IMPORTANT) */
.chilli,
.leaf {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.chilli,
.potato,
.leaf {
  animation-duration: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ================= CONTENT ================= */
.about-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}


/* underline accent */
.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #ff7a00, #ff3b3b);
  border-radius: 10px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: #475569;
  font-size: 15px;
}

/* stats glow */
.stats h3 {
  color: #2563eb;
  font-weight: 800;
}

.btn-about {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff7a00, #ff3b3b);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 15px;
}

/* hover */
.btn-about:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.6);
}

/* shine effect */
.btn-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.2));
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn-about:hover::after {
  left: 120%;
}

.mini-title {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-title i {
  color: #ff7a00;
}


/* ================= RESPONSIVE ================= */

/* ----------- DESKTOP (≤ 1200px) ----------- */
@media (max-width: 1200px) {

  .bg-circle {
    width: 320px;
    height: 320px;
  }

  .fries-main {
    width: 260px;
  }
}


/* ----------- TABLET (≤ 992px) ----------- */
@media (max-width: 992px) {

  .about-creative {
    padding: 80px 0;
  }

  .row {
    flex-direction: row;
    text-align: inherit;
  }

  .about-creative .row,
  .why-choose-us-pro .row {
    flex-direction: column;
    text-align: center;
  }

  /* CLEAN CENTER ALIGN */
  .food-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    min-height: 340px;
  }

  .about-text {
    max-width: 720px;
    margin: 0 auto;
  }

  .bg-circle {
    width: 280px;
    height: 280px;
  }

  .fries-main {
    width: 230px;
    transform: rotate(0deg);
    /* clean look */
  }

  /* REMOVE EXTRA ITEMS */
  .chilli,
  .leaf {
    display: none !important;
  }

  /* POTATO CLEAN POSITION */
  .potato {
    width: 100px;
    bottom: 0;
    left: 55%;
    transform: translateX(-50%) rotate(6deg);
    opacity: 0.7;
  }

  /* TEXT */
  .about-text h2 {
    font-size: 30px;
  }

  .about-text p {
    font-size: 14px;
  }

  .highlights {
    margin-top: 15px;
  }

  .btn-about {
    margin-top: 20px;
  }
}


/* ----------- MOBILE (≤ 576px) ----------- */
@media (max-width: 576px) {

  .about-creative {
    padding: 60px 15px;
  }

  .food-scene {
    min-height: 285px;
    margin-bottom: 35px;
  }

  .food-scene .badge {
    font-size: 11px;
    padding: 6px 14px;
    bottom: -8px;
  }

  .bg-circle {
    width: 240px;
    height: 240px;
  }

  .fries-main {
    width: 190px;
    transform: rotate(0deg);
  }

  /* REMOVE CLUTTER */
  .chilli,
  .leaf {
    display: none !important;
  }

  /* POTATO PERFECT SMALL */
  .potato {
    width: 75px;
    bottom: 0;
    left: 55%;
    transform: translateX(-50%) rotate(5deg);
    opacity: 0.6;
  }

  /* TEXT */
  .about-text h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .about-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .mini-title {
    font-size: 12px;
  }

  .highlights div {
    font-size: 14px;
  }

  .stats {
    justify-content: center;
    gap: 18px;
  }

  /* BUTTON */
  .btn-about {
    padding: 12px 22px;
    font-size: 13px;
  }
}

/* =================================
   PREMIUM PRODUCT SECTION
   FINAL PRODUCTION VERSION
================================= */

.menu-section {

  position: relative;
  padding: 100px 0;
  width: 100%;
  /* PREMIUM SOFT EXPORT BACKGROUND */

  background: linear-gradient(180deg,
      #f4e3cf 0%,
      #f7ead9 40%,
      #f2dfc6 100%);
  overflow: hidden;
  /* Smooth transition from About section */
  margin-top: -1px;

}

/* =================================
   BACKGROUND PATTERN
================================= */

.menu-section::before {

  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern-light.webp");
  background-repeat: repeat;
  background-size: 240px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* =================================
   TOP SOFT SHADOW DIVIDER
================================= */
.menu-section::after {
  content: "";
  position: absolute;
  /* ✅ required */
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
  opacity: 0.15;
  z-index: 1;
}



/* =================================
   HEADER
================================= */

.section-header .tag {
  color: #ff6a00;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin: 12px 0;
}

.section-header .sub {
  color: #666;
  max-width: 650px;
  margin: auto;
  font-size: 15px;
  line-height: 1.6;

}

/* =================================
   PRODUCT CARD
================================= */


.menu-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  overflow: visible;
  padding: 90px 25px 30px;
  text-align: center;
  min-height: 320px;
  height: 100%;
  /* makes card tall */
  width: 100%;
  justify-content: space-between;
  will-change: transform;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08)
}

/* Hover */

.menu-card:hover {

  transform: translateY(-12px);

  background: linear-gradient(135deg,
      #ff7a00,
      #ff3b3b);

  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.18);

  color: #ffffff;

}

/* Title color */

.menu-card:hover h4 {

  color: #ffffff;

}

/* Description color */

.menu-card:hover p {

  color: rgba(255, 255, 255, 0.9);

}

/* =================================
   IMAGE CIRCLE
================================= */
.image-wrap {
  position: absolute;
  z-index: 5;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

/* IMAGE FIX */
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills circle properly */
  border-radius: 50%;

}



/* =================================
   CARD CONTENT
================================= */

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;

}


.card-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 48px;
  /* equal spacing */
}

.card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* =================================
   BUTTON
================================= */

.menu-btn {

  display: inline-block;

  padding: 10px 22px;

  background: #2f4e7c;

  color: white;

  border-radius: 25px;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;
  margin-top: auto;
  align-self: center;
  transition: all 0.3s ease;

}

.menu-card:hover .menu-btn {

  background: #ffffff;

  color: #ff6a00;

  border: none;

}

/* =================================
   EXPLORE BUTTON
================================= */

.explore-btn {

  display: inline-block;

  padding: 12px 28px;

  background: #2f4e7c;

  color: white;

  border-radius: 30px;

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;

}

.explore-btn:hover {

  background: #ff6a00;
  color: #ffff;
  transform: translateY(-2px);

}

/* =================================
   RESPONSIVE
================================= */

/* ================= MOBILE IMPROVEMENT ================= */
@media (max-width: 768px) {
  .menu-section {
    padding: 80px 12px;
  }

  .menu-card {
    margin-top: 70px;
    padding: 80px 18px 25px;
    min-height: auto;
  }

  /* 🔥 BIGGER IMAGE */
  .image-wrap {
    width: 120px;
    height: 120px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }

  .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* TEXT CLEAN */
  .card-content h4 {
    font-size: 18px;
    min-height: auto;
  }

  .card-content p {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .menu-btn {
    font-size: 13px;
    padding: 9px 18px;
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 576px) {
  .menu-section {
    padding: 70px 12px;
  }

  .menu-card {
    margin-top: 65px;
    margin-bottom: 25px;
    padding: 80px 18px 24px;
    border-radius: 18px;
  }

  .image-wrap {
    position: absolute;
    width: 115px;
    height: 115px;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .section-header h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .section-header .sub {
    font-size: 13px;
  }

  .row.g-4 {
    --bs-gutter-y: 1.5rem;
  }
}
/* ================= SMALL MOBILE (≤480px) ================= */
@media (max-width: 480px) {

  .menu-section {
  padding: 60px 12px;
  }

  /* 🔥 MAKE IMAGE DOMINATE */
  .image-wrap {
    width: 105px;
    height: 105px;
    top: -52px;
    position: absolute;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);

  }

  /* CARD TIGHT + PREMIUM */
  .menu-card {
    padding: 90px 20px 25px;
    border-radius: 18px;
    padding-top: 68px;
    margin-top: 50px;
  }

  /* TEXT SCALE */
  .section-header h2 {
    font-size: 24px;
  }

  .section-header .sub {
    font-size: 14px;
  }

  .card-content h4 {
    font-size: 17px;
  }

  .card-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* BUTTON */
  .menu-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ================= WHY (ULTRA PREMIUM) ================= */
.why-choose-us-pro {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #fff8f0 0%, #f7e6d0 100%);
  overflow: hidden;
}

/* MULTI GLOW BACKGROUND */
.why-choose-us-pro::before,
.why-choose-us-pro::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.why-choose-us-pro::before {
  width: 350px;
  height: 350px;
  background: rgba(255, 122, 0, 0.25);
  top: -120px;
  left: -120px;
}

.why-choose-us-pro::after {
  width: 300px;
  height: 300px;
  background: rgba(255, 160, 60, 0.2);
  bottom: -100px;
  right: -100px;
}

/* CONTENT ABOVE GLOW */
.why-choose-us-pro .container {
  position: relative;
  z-index: 2;
}

/* LEFT */
.why-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c5f;
  margin-bottom: 18px;
  line-height: 1.2;
}

.why-left p {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* SHAPE BACKGROUND WRAPPER */
.shape-bg {
  position: relative;
  z-index: 1;
}

/* BIG SOFT SHAPE */
.shape-bg::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  border-radius: 50%;
  top: -60px;
  left: -80px;
  filter: blur(100px);
  opacity: 0.25;
  z-index: -1;
}

/* SECOND SHAPE */
.shape-bg::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #ffd6a3, #ff7a00);
  border-radius: 40%;
  bottom: -40px;
  left: 40px;
  filter: blur(80px);
  opacity: 0.2;
  z-index: -1;
}

.shape-bg::before {
  animation: float1 6s ease-in-out infinite;
}

.shape-bg::after {
  animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* BACKGROUND SHAPES WRAPPER */
.bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

/* COMMON SHAPE STYLE */
.bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: floatstrong 10s ease-in-out infinite;
}

/* SHAPE 1 */
.bg-shapes .s1 {
  width: 400px;
  height: 400px;
  background: #ff7a00;
  top: -100px;
  left: -120px;
}

/* SHAPE 2 */
.bg-shapes .s2 {
  width: 300px;
  height: 300px;
  background: #ffb347;
  top: 20%;
  right: -100px;
  animation-delay: 2s;
}

/* SHAPE 3 */
.bg-shapes .s3 {
  width: 250px;
  height: 250px;
  background: #ffd6a3;
  bottom: -80px;
  left: 20%;
  animation-delay: 4s;
}

/* SHAPE 4 */
.bg-shapes .s4 {
  width: 200px;
  height: 200px;
  background: #ff9f43;
  bottom: 10%;
  right: 10%;
  animation-delay: 6s;
}

/* FLOAT ANIMATION */
@keyframes floatstrong {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

/* POINTS */
.why-points .point {
  margin-bottom: 12px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-points span {
  background: linear-gradient(135deg, #ff7a00, #ff9f43);
  color: #fff;
  font-size: 12px;
  padding: 4px 7px;
  border-radius: 50%;
}

/* BUTTON (UPGRADED) */
.why-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ff7a00, #ff9f43);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.3);
}

.why-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.4);
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* CARD (PREMIUM GLASS STYLE) */
.why-box {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  padding: 28px;
  border-radius: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* subtle shine effect */
.why-box::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  top: 0;
  left: -120%;
  transition: 0.6s;
}

.why-box:hover::before {
  left: 100%;
}

.why-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ICON BADGE (IMPORTANT UPGRADE) */
.why-box .icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a00, #ff9f43);
  color: #fff;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
}

/* TEXT */
.why-box h4 {
  font-size: 19px;
  font-weight: 600;
  color: #0b2c5f;
  margin-bottom: 8px;
}

.why-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ================= RESPONSIVE FIX ================= */

/* ----------- TABLET (≤ 992px) ----------- */
@media (max-width: 992px) {

  .why-choose-us-pro {
    padding: 80px 0;
  }

  .why-choose-us-pro .row {
  flex-direction: column;
  text-align: center;
}
  .why-left {
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-left h2 {
    font-size: 32px;
  }

  .why-left p {
    font-size: 15px;
  }

  .why-points {
    display: inline-block;
    text-align: left;
  }

  /* GRID → 2 COLUMN CLEAN */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 720px;
    margin: 0 auto;
  }
}


/* ----------- MOBILE (≤ 576px) ----------- */
@media (max-width: 576px) {

  .why-choose-us-pro {
    padding: 60px 15px;
  }

  /* 🔥 REDUCE HEAVY GLOW (IMPORTANT) */
  .bg-shapes {
    display: none;
  }

  .shape-bg::before,
  .shape-bg::after {
    display: none;
  }

  /* TEXT */
  .why-left h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .why-left p {
    font-size: 14px;
  }

  /* POINTS */
  .why-points .point {
    font-size: 14px;
  }

  /* 🔥 GRID → SINGLE COLUMN (BEST UX) */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* CARD CLEAN */
  .why-box {
    padding: 20px;
    border-radius: 14px;
    text-align: left;
  }

  /* ICON SMALL */
  .why-box .icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
    margin-left: 0;
  }

  /* TEXT */
  .why-box h4 {
    font-size: 16px;
  }

  .why-box p {
    font-size: 13px;
  }

  /* BUTTON */
  .why-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ================================
   PROCESS SECTION
================================ */
.process-slider {
  padding: 110px 0;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(255, 170, 80, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 60, 0.10), transparent 50%),
    linear-gradient(135deg, #fff7ed, #fde8d0, #f8d2a4);
}

/* SOFT GLOW */
.process-slider::before,
.process-slider::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  mix-blend-mode: screen;
}

/* ORANGE LIGHT */
.process-slider::before {
  background: rgba(255, 150, 80, 0.15);
  top: -100px;
  left: -100px;
}

.process-slider::after {
  background: rgba(255, 120, 60, 0.12);
  bottom: -120px;
  right: -100px;
}


/* KEEP CONTENT ABOVE */
.process-slider .container {
  position: relative;
  z-index: 2;
}

/* ===============================
SECTION TITLE
=============================== */

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

/* MAIN TITLE */
.section-title h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #5a2d0c, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* TOP SMALL LABEL (NEW) */
.section-title h2::before {
  content: "PROCESS FLOW";
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #c96a1a;
  margin-bottom: 10px;
  font-weight: 600;
}

/* PREMIUM UNDERLINE */
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;

  width: 120px;
  height: 4px;

  background: linear-gradient(90deg, transparent, #ff7a00, transparent);
  border-radius: 50px;

  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}

/* DESCRIPTION */
.section-title p {
  font-size: 16px;
  color: #7a5a3a;
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.7;
}

/* OPTIONAL GLOW DOTS (adds richness) */
.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff7a00;
  border-radius: 50%;
  top: 10px;
  opacity: 0.6;
}

.section-title::before {
  left: 20%;
}

.section-title::after {
  right: 20%;
}

/* ===============================
TIMELINE
=============================== */

.timeline {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  margin-top: 70px;
}

/* connector line */
.timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff9a3c, #ff7a00, #ffb067);
  z-index: 0;
}

/* ===============================
SCROLLBAR
=============================== */

.timeline::-webkit-scrollbar {
  height: 6px;
}

.timeline::-webkit-scrollbar-thumb {
  background: #ff7a00;
  border-radius: 10px;

}

/* ===============================
SLIDER SECTION
=============================== */
.processSwiper {
  width: 100%;
  overflow: hidden;
}

/* swiper fix */
.processSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ===============================
STEP CARD
=============================== */

.step {

  width: 100%;
  height: 100%;
  min-height: 260px;
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 35px 20px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(255, 140, 60, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* hover effect */
.step:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

/* ===============================
STEP NUMBER BADGE
=============================== */
.step {
  position: relative;
  overflow: visible;
}

/* orange background behind top half */
.step::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: #ff8c00;
  border-radius: 30px 30px 0 0;
  z-index: 0;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ff8c00, #ff5a00);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ===============================
STEP IMAGE
=============================== */

.step img {

  width: 120px;
  height: 120px;

  object-fit: cover;

  border-radius: 18px;

  margin: 20px auto 12px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

  transition: .4s;
}

.step:hover img {
  transform: scale(1.08);
}

/* ===============================
TEXT
=============================== */

.step h4 {
  font-size: 18px;
  color: #4a2a0a;
  /* warm dark brown */
  margin-bottom: 6px;
  font-weight: 600;
}

.step p {
  font-size: 14px;
  color: #8a6a4a;
  line-height: 1.6;
}

/* ===============================
MOBILE RESPONSIVE
=============================== */
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .process-slider {
    padding: 70px 12px;
  }

  .process-slider::before,
  .process-slider::after {
    display: none;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title h2::before {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .section-title p {
    font-size: 14px;
  }

  .timeline::before {
    display: none;
  }

  .processSwiper {
    padding-bottom: 20px;
    width: 100%;
  }

  .processSwiper .swiper-slide {
    width: 85%;
  }

  .step {
    padding: 30px 18px 22px;
    border-radius: 18px;
    min-width: 0;
    width: 100%;
  }

  .step::before {
    width: 45px;
    height: 45px;
    font-size: 16px;
    top: -12px;
  }

  .step img {
    width: 100px;
    height: 100px;
    margin: 18px auto 10px;
  }

  .step h4 {
    font-size: 16px;
  }

  .step p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {

  .processSwiper .swiper-slide {
    width: 92%;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .step {
    padding: 25px 16px 20px;
  }

  .step img {
    width: 90px;
    height: 90px;
  }

}

/* ================================
   CERTIFICATE SECTION (ULTRA PREMIUM v2)
================================ */

.cert-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #fff7ed, #fde8d0, #f8d2a4);
  position: relative;
  overflow: hidden;
}

/* ================================
   BACKGROUND GLOW LAYERS
================================ */

.cert-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 170, 80, 0.18), transparent 70%);
  filter: blur(80px);
}

.cert-section::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 60, 0.15), transparent 70%);
  filter: blur(80px);
}

/* ================================
   TITLE (PREMIUM BRAND STYLE)
================================ */

.cert-title {
  margin-bottom: 80px;
  position: relative;
}

.cert-title h2 {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.5px;

  background: linear-gradient(90deg, #5a2d0c, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 15px;
}

.cert-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff7a00, #ffcc80);
}

.cert-title p {
  font-size: 16px;
  color: #7a5a3a;
  max-width: 700px;
  margin: 15px auto 0;
  line-height: 1.8;
}

/* soft glow behind title */
.cert-title::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.25), transparent);
  filter: blur(50px);
  z-index: -1;
}

/* ================================
   GRID (IMPROVED SPACING)
================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* ================================
   CARD (NEXT LEVEL PREMIUM)
================================ */
.cert-card {
  position: relative;
  backdrop-filter: blur(25px);
  border-radius: 26px;
  padding: 50px 30px;
  background: #ffffff;
  border: 1px solid rgba(255, 140, 60, 0.15);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ✅ center everything */
  justify-content: center;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
}

.cert-card:not(.show) {
  opacity: 1;
  transform: translateY(0);
}


.cert-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 Gradient glowing border */
.cert-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(120deg, #ff9a3c, #ff7a00, #ffcc80);
  opacity: 0;
  z-index: -1;
  transition: 0.4s;
}

/* 🔥 Shine animation */
.cert-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;

  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);

  transform: skewX(-25deg);
  transition: 0.6s;
}

/* Hover Effects */
.cert-card:hover {
  transform: translateY(-12px) scale(1.03);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(255, 122, 0, 0.2);
}

.cert-card:hover::before {
  opacity: 1;
}

.cert-card:hover::after {
  left: 120%;
}

/* ================================
   IMAGE (MORE DYNAMIC)
================================ */
.cert-card img {
  max-width: 160px;
  max-height: 90px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  /* ✅ CENTER FIX */
  object-fit: contain;
  transition: 0.5s ease;
}

.cert-card .logo-box {
  height: 105px;
  /* SAME HEIGHT FOR ALL */
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 15px;
}

.cert-card:hover img {
  transform: scale(1.12);
}

/* ================================
   TEXT (MORE LUXURY)
================================ */
.cert-card h4 {
  font-size: 21px;
  font-weight: 800;

  background: linear-gradient(90deg, #5a2d0c, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 10px;
}

.cert-card p {
  font-size: 14px;
  color: #8a6a4a;
  line-height: 1.8;
}

/* ================================
   ENTRY ANIMATION (VERY IMPORTANT)
================================ */
.cert-card:nth-child(1) {
  animation-delay: 0.1s;
}

.cert-card:nth-child(2) {
  animation-delay: 0.2s;
}

.cert-card:nth-child(3) {
  animation-delay: 0.3s;
}

.cert-card:nth-child(4) {
  animation-delay: 0.4s;
}

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

/* ================================
   RESPONSIVE
================================ */

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {

  .cert-section {
    padding: 80px 15px;
  }

  /* 🔥 REDUCE HEAVY GLOW */
  .cert-section::before,
  .cert-section::after {
    display: none;
  }

  /* TITLE */
  .cert-title {
    margin-bottom: 50px;
  }

  .cert-title h2 {
    font-size: 30px;
  }

  .cert-title p {
    font-size: 14px;
  }

  /* GRID */
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  /* CARD */
  .cert-card {
    padding: 30px 18px;
    border-radius: 18px;
  }

  /* 🔥 IMAGE FIX */
  .cert-card img {
    max-width: 150px;
    max-height: 90px;
    width: auto;
    height: auto;
    margin-bottom: 18px;
  }

  /* TEXT */
  .cert-card h4 {
    font-size: 16px;
  }

  .cert-card p {
    font-size: 13px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-section {
    padding: 70px 12px;
  }


  /* 🔥 CARD COMPACT */
  .cert-card {
    padding: 25px 15px;
    max-width: 360px;
    margin: 0 auto;
  }

  .cert-card img {
    max-width: 170px;
    max-height: 95px;
    width: auto;
    height: auto;
  }

  .cert-title h2 {
    font-size: 26px;
  }
}

/* =========================================
   EXPORT SECTION (LIGHT PREMIUM STYLE)
========================================= */
/* ================= EXPORT MAP RESPONSIVE FINAL ================= */

.export-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf5 0%, #fff2df 100%);
}

.map-title {
  max-width: 760px;
  margin: 0 auto 45px;
}

.map-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #3b1f0f;
  margin-bottom: 12px;
}

.map-title p {
  font-size: 16px;
  line-height: 1.7;
  color: #7a5a3a;
}

/* Outer premium card */
.map-scroll-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 247, 237, 0.95),
    rgba(255, 237, 213, 0.85)
  );
  border: 1px solid rgba(255, 122, 0, 0.18);
  box-shadow: 0 25px 70px rgba(255, 122, 0, 0.16);
  overflow: hidden;
}

/* Map area */
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 562;
  margin: 0 auto;
}

.world-map {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.16));
}

/* Common pin style */
.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  pointer-events: none;
}

.pin span {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff3b3b);
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 5px rgba(255, 122, 0, 0.22),
    0 8px 18px rgba(255, 59, 59, 0.45);
  position: relative;
}

.pin span::after {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 0, 0.55);
  animation: mapPulse 1.8s infinite;
}

.pin p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #3b1f0f;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

@keyframes mapPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(0.7);
    opacity: 0;
  }
}

/* Country pin positions */
.pin.usa {
  --x: 25.5%;
  --y: 39%;
}

.pin.uk {
  --x: 48.2%;
  --y: 34.5%;
}

.pin.germany {
  --x: 56.2%;
  --y: 37.5%;
}

.pin.uae {
  --x: 61.7%;
  --y: 45.5%;
}

.pin.saudi {
  --x: 59.7%;
  --y: 42.5%;
}

.pin.india {
  --x: 67.4%;
  --y: 48.8%;
}

.pin.africa {
  --x: 52.8%;
  --y: 61.5%;
}

.pin.australia {
  --x: 83.5%;
  --y: 65.5%;
}

/* ================= MOBILE MAP FIX ================= */

@media (max-width: 768px) {
  .export-section {
    padding: 70px 0;
  }

  .map-title {
    padding: 0 14px;
    margin-bottom: 28px;
  }

  .map-title h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .map-title p {
    font-size: 14px;
    line-height: 1.6;
  }

  .map-scroll-wrap {
    max-width: 100%;
    padding: 14px;
    border-radius: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .map-scroll-wrap::-webkit-scrollbar {
    height: 5px;
  }

  .map-scroll-wrap::-webkit-scrollbar-track {
    background: rgba(255, 122, 0, 0.12);
    border-radius: 20px;
  }

  .map-scroll-wrap::-webkit-scrollbar-thumb {
    background: rgba(255, 122, 0, 0.55);
    border-radius: 20px;
  }

  .map-container {
    width: 680px;
    min-width: 680px;
  }

  .pin span {
    width: 13px;
    height: 13px;
  }

  .pin p {
    font-size: 10.5px;
    padding: 4px 7px;
  }
}

@media (max-width: 480px) {
  .export-section {
    padding: 60px 0;
  }

  .map-title h2 {
    font-size: 24px;
  }

  .map-title p {
    font-size: 13px;
  }

  .map-scroll-wrap {
    padding: 10px;
    border-radius: 18px;
  }

  .map-container {
    width: 620px;
    min-width: 620px;
  }

  .pin p {
    font-size: 10px;
  }
}