body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
    margin: 0;
    /* padding: 20px; */
    color: #333;
}

.container {
  margin: 0 auto;        /* center horizontally */
  max-width: 1140px;     /* max width to match hero container */
  width: 100%;           /* fluid width */
  padding: 0 20px;       /* horizontal padding */
  box-sizing: border-box;
}

header.navbar, .hero-section-carousel {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  header.navbar, .hero-section-carousel {
    padding: 0 10px;
    max-width: 95vw;
  }

  header.navbar {
    height: 60px;
  }
}

@media (max-width: 600px) {
  header.navbar, .hero-section-carousel {
    padding: 0 5px;
    max-width: 98vw;
  }

  header.navbar {
    height: 50px;
  }
}
/* hero section (slides)*/

.hero-section-carousel {
  position: relative;
  width: 100%;
  max-width: 1140px;
  min-height: 340px;
  height: 50vw;
  max-height: 560px;
  min-height: 280px;
  color: white;
  margin: 0 auto;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#carousel-bg, #carousel-bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  object-fit: cover;
  filter: brightness(0.62);
}

.hero-section-carousel .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 20px 20px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-section-carousel h1 {
  font-size: 2.2rem;
  margin: 60px 0 15px 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.hero-section-carousel p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  text-align: center;
  color: #f8f8f8;
  max-width: 550px;
}

.hero-section-carousel button {
  background-color: #ff3d6d;
  border: none;
  margin-top: 3px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.28s;
}
.hero-section-carousel button:hover {
  background: #e10600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section-carousel {
    min-height: 190px;
    height: 44vw;
    max-width: 99vw;
    padding: 0;
  }
  .hero-section-carousel h1 {
    font-size: 1.32rem;
    margin-top: 30px;
  }
  .hero-section-carousel .hero-content {
    padding: 28px 5vw;
  }
}

/* Extra small */
@media (max-width: 490px) {
  .hero-section-carousel {
    height: auto;
    min-height: 155px;
    max-width: 100vw;
  }
  .hero-section-carousel h1 {
    font-size: 1.08rem;
    margin-top: 10px;
  }
}



/* Hero section animation */
.glide-hero img {
  position: relative;
  left: 80vw; /* start far right */
  opacity: 0;
  transition: none;
  animation: glideLeft 1.4s cubic-bezier(.74,.21,.57,1.06) 0.2s forwards;
}

@keyframes glideLeft {
  from {
    left: 80vw;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
#carousel-bg {
    transition: opacity 1s;
}


.carousel-dot {
  width: 3px !important;  
  height: 3px !important;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor:pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  background-color: #ff3d6d; /* Your brand color */
  box-shadow: 0 0 2px #ff3d6d;
  transform: scale(1.3);
}


.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: white;
    border-bottom: 2px solid #e2e8f0;
    padding: 10px 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.tabs-nav button {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #444;
    transition: all 0.3s ease;
    outline: none;
}
.tabs-nav button.active {
    border-color: #be2c2c;
    color: #be2c2c;
    background: #fff0f0;
}
.tab-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-content h3 {
    color: #be2c2c;
    margin-bottom: 10px;
}
.tab-content ul {
    list-style: none;
    padding-left: 0;
}
.tab-content ul li::before {
    content: "✔";
    color: #be2c2c;
    margin-right: 8px;
}
.support-section .icon, 
.rightfit-section .icon {
    font-size: 36px;
    color: #be2c2c;
    margin-bottom: 10px;
}
.support-grid {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.support-grid > div {
    flex: 1 1 250px;
    text-align: center;
}
.support-services {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.support-services ul {
    flex: 1 1 40%;
    color: #555;
}
.contact-support {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    max-width: 900px;
    margin: 0 auto;
}


/* cards css */
 /* .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
  } */
  /* .card {
    cursor: pointer;
    padding: 1.2rem;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
    background: white;
    font-size: 0.9rem;
  } */
   /* .card {
  cursor: pointer;
  padding: 1.2rem;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  background: white;
  font-size: 0.9rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
} */
  /* .card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }
  .icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #be2c2c;
  }
  .card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
  .card p {
    font-size: 0.85rem;
    color: #666;
  }
  .btn-outline {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #be2c2c;
    background: transparent;
    color: #be2c2c;
    border-radius: 0.25rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
  }
  .btn-outline:hover {
    background: #be2c2c;
    color: white;
  } */
/* Card */
.framer3d-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem; /* Extra padding for arrows */
  min-height: 60vh;
  perspective: 1200px;
}

.carousel-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0 auto; /* Center the stage */
}

.card-3d {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 380px;
  margin-left: -200px;
  margin-top: -190px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  opacity: 0;
  transform: translateZ(-400px) scale(0.5);
}

.card-3d.center {
  opacity: 1;
  transform: translateZ(0px) scale(1);
  box-shadow: 0 40px 80px -20px rgba(190,44,44,0.25);
}

.card-3d.left-side {
  opacity: 0.65;
  transform: translateX(-200px) translateZ(-180px) rotateY(25deg) scale(0.65);
}

.card-3d.right-side {
  opacity: 0.65;
  transform: translateX(200px) translateZ(-180px) rotateY(-25deg) scale(0.65);
}

/* Full-bleed image + overlay text */
.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.card-3d:hover .card-image img {
  transform: scale(1.03);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 45%;
}

.card-text h3 {
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.4rem 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.card-text p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}

.cta-btn {
  background: rgba(190,44,44,0.95);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  align-self: flex-start;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #be2c2c;
  transform: translateY(-1px);
}

/* FIXED: Arrows positioned OUTSIDE cards, relative to framer3d-carousel */
.nav-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border: none;
  background: rgba(255,255,255,0.95);
  color: #be2c2c;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 20;
  transform: translateY(-50%);
}

/* Desktop: Arrows BESIDE the entire carousel container */
.nav-arrow.left { 
  left: 1rem; /* Fixed position next to carousel */
}

.nav-arrow.right { 
  right: 1rem;
}

.nav-arrow:hover {
  background: #be2c2c;
  color: white;
  transform: translateY(-50%) scale(1.08);
}

/* Tablet */
@media (max-width: 1024px) {
  .carousel-stage {
    height: 380px;
  }
  .card-3d {
    width: 340px;
    height: 320px;
    margin-left: -170px;
    margin-top: -160px;
  }
}

/* Mobile Large - SIMPLIFIED SINGLE CARD VIEW */
@media (max-width: 768px) {
  .framer3d-carousel {
    padding: 1rem 3rem; /* Space for arrows */
    min-height: 55vh;
  }
  
  .carousel-stage {
    height: 280px; /* Fixed smaller height */
  }
  
  .card-3d {
    width: 260px; /* Much smaller cards */
    height: 240px;
    margin-left: -130px;
    margin-top: -120px;
    /* NO side cards on mobile - cleaner look */
  }
  
  .card-3d.left-side,
  .card-3d.right-side {
    opacity: 0; /* Hide side cards completely */
    transform: translateZ(-600px) scale(0.3);
  }
  
  .nav-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .nav-arrow.left {
    left: 0.5rem;
  }
  
  .nav-arrow.right {
    right: 0.5rem;
  }
  
  /* Smaller text */
  .card-overlay {
    padding: 1.2rem;
    height: 50%;
  }
  
  .card-text h3 {
    font-size: 1.15rem;
  }
  
  .card-text p {
    font-size: 0.85rem;
  }
  
  .cta-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .framer3d-carousel {
    padding: 1rem 2.5rem;
    min-height: 50vh;
  }
  
  .carousel-stage {
    height: 240px;
  }
  
  .card-3d {
    width: 220px;
    height: 200px;
    margin-left: -110px;
    margin-top: -100px;
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .card-overlay {
    padding: 1rem;
    height: 55%;
  }
  
  .card-text h3 {
    font-size: 1rem;
  }
  
  .card-text p {
    font-size: 0.8rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .card-3d:hover .card-image img {
    transform: none;
  }
  
  .nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
  }
}

/* Responsive support grids using Flexbox */
.support-grid,
.support-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  /* padding: 0.5rem 0; */
}

.support-grid > div,
.support-services ul {
  flex: 1 1 230px;
  max-width: 320px;
  text-align: center;
  margin: 0.5rem;
}

/* Stack vertically on small screens */
@media (max-width: 700px) {
  .support-grid,
  .support-services {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .support-grid > div,
  .support-services ul {
    max-width: 95vw;
    min-width: 70vw;
    margin: 0.3rem 0;
  }
}
.video-text-section {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.phone-container {
  position: relative;
  width: 350px;
  height: 740px;
  flex-shrink: 0;
}
.phone-container img {
  width: 320px;
  height: 640px;
  display:flex;
}
.phone-container video {
  position: absolute;
  top: 11%;    /* adjust to fit video inside screen area */
  left: 6.5%;  /* adjust to fit video inside screen area */
  width: 87%;
  height: 77%;
  border-radius: 38px; /* mimic phone screen corners */
  object-fit: cover;
  background: black;
}
.text-content {
  flex: 1;
  max-width: 600px;
  padding-left: 200px;
}
.text-content h2 {
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.text-content h2 .highlight {
  color: #d32f2f; /* red color highlight */
}
.text-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #555;
  max-width: 440px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 20px 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-icon {
  font-size: 1.4rem;
  color: #d32f2f;
  margin-bottom: 4px;
}
.feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: #222;
}
.feature-subtitle {
  font-size: 0.85rem;
  color: #777;
  font-weight: 400;
}
@media (max-width: 800px) {
  .video-text-section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .text-content p {
    max-width: 100%;
  }
}
.footer-social-icons {
  display: flex;
  gap: 22px;
  margin-top: 8px;
}
.footer-social-icons .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff22;
  color: #fff;
  font-size: 1.6rem;
  transition: transform 0.18s, background 0.25s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  outline: none;
}
.footer-social-icons .social:focus {
  box-shadow: 0 0 0 2px #fff, 0 2px 12px rgba(0,0,0,0.08);
}
.footer-social-icons .social.fb { background: #3b5998; }
.footer-social-icons .social.tw { background: #1da1f2; }
.footer-social-icons .social.ig { background: #e4405f; }
.footer-social-icons .social.ln { background: #0077b5; }

.footer-social-icons .social:hover {
  transform: scale(1.16);
  background: #fff;
  color: #be2c2c;
}

/* 4 steps: cards */
.timeline-section {
  max-width: 700px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  text-align: center;
  color: #222;
}
.timeline-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
.timeline-section .highlight { color: #d60011; }
.timeline-section .description {
  margin-bottom: 30px;
  color: #888;
  font-size: 1rem;
}
.timeline {
  border-left: 3px solid #efa0af;
  position: relative;
  padding-left: 40px;
}
.timeline-item {
  position: relative;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  border-radius: 12px;
  padding: 10px 15px;
  transition: box-shadow 0.3s, background 0.3s, opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(40px);
  background: #fff;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
  border: 1px solid #eee;
}
.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item:hover {
  background: #f6f5ff;
  box-shadow: 0 10px 28px rgba(60,0,220,0.10), 0 1px 8px rgba(190,44,44,0.05);
}
.icon-container {
  position: relative;
  margin-right: 12px;
}
.icon-bg {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  position: relative;
  box-shadow: 0 0 4px rgba(0,0,0,0.09);
  background: #d60011;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-bg.purple { background: #a855f7; }
.icon-bg.blue { background: #2563eb; }
.icon-bg.green { background: #22c55e; }
.icon-bg.orange { background: #fb923c; }
.icon-bg.red { background: #d60011; }
.stage-number {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #ef4444;
  color: white;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 15px;
  font-weight: bold;
  box-shadow: 0 0 3px rgba(0,0,0,0.07);
}
.checkmark {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: #4ade80;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  font-size: 8px;
  text-align: center;
  line-height: 13px;
  color: white;
  box-shadow: 0 0 3px rgba(0,0,0,0.10);
}
.content-container {
  border-radius: 8px;
  padding: 12px 14px;
  flex-grow: 1;
  text-align: left;
  color: #222;
}
.content-container h3 {
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0 3px 0;
}
.subtitle {
  font-weight: 500;
  font-size: 0.88rem;
  margin: 0 0 8px 0;
  color: #6b7280;
  font-style: italic;
}
.rewards-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 0 4px 0;
  color: #7c3aed;
}
.rewards-badges span {
  display: inline-block;
  margin-right: 7px;
  font-weight: 700;
  font-size: 0.70rem;
  background: #f3f3fa;
  color: #4c1d95;
  padding: 2.5px 7px;
  border-radius: 13px;
  user-select:none;
}
.rewards-badges.purple span { background: #ede9fe; color: #5b21b6; }
.rewards-badges.blue span   { background: #dbeafe; color: #1e40af; }
.rewards-badges.green span  { background: #bbf7d0; color: #166534; }
.rewards-badges.orange span { background: #fcd6ad; color: #c2410c; }
.rewards-badges.red span    { background: #fee2e2; color: #991b1b; }
@media (max-width: 600px) {
  .timeline-section { max-width: 98vw; }
  .timeline-item { flex-direction: column; align-items: center; text-align: center; }
  .icon-container { margin-right: 0; margin-bottom: 7px; }
}


/* Featured in section carousel */

#featuredIn {
  max-width: 1000px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: center;
  padding: 0 10px; /* add side padding for small screens */
  box-sizing: border-box;
}

#featuredIn h2 {
  color: #be2c2c;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

#featuredIn p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 30px auto;
}

/* Carousel container */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 10px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

/* Carousel track */
.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform 0.8s ease-in-out;
  overflow-x: auto; /* allow horizontal scrolling on small screens */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Remove scrollbar for modern browsers */
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Carousel items */
.carousel-track a {
  flex: 0 0 auto;
  display: block;
  height: auto;
  text-align: center;
}

.carousel-track img {
  height: 80px; /* reduce height on small screens */
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  #featuredIn p {
    font-size: 1.1rem;
    max-width: 100%;
    padding: 0 15px;
  }
  .carousel-container {
    max-width: 90vw;
    padding: 5px;
  }
  .carousel-track {
    gap: 15px;
  }
  .carousel-track img {
    height: 60px;
  }
}

@media (max-width: 600px) {
  #featuredIn {
    max-width: 98vw;
    padding: 0 5px;
  }
  #featuredIn p {
    font-size: 1rem;
  }
  .carousel-container {
    max-width: 100vw;
    padding: 5px;
  }
  .carousel-track {
    gap: 10px;
  }
  .carousel-track img {
    height: 50px;
  }
}

  .carousel-track-container {
    overflow: hidden;
    width: 100%;
  }
.carousel-track {
  display: flex;
  gap: 45px;
  width: max-content;
  animation: scrollLoop 30s linear infinite;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-container {
  overflow: hidden;
  position: relative;
}


  .carousel-slide {
    flex: 0 0 100%;
    display: flex;
    gap: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    background: white;
    padding: 2rem;
    box-sizing: border-box;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  .carousel-slide.current-slide {
    opacity: 1;
  }
  /* .video-wrapper {
    flex: 1 1 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  } */
  /* video {
    width: 100%;
    height: auto;
    display: block;
  } */
 .video-wrapper {
  width: 400px;
  height: 300px;
  max-width: 100%;  /* Responsive to container */
  overflow: hidden;
  border-radius: 12px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonial section  */
.testimonial-carousel-section {
  max-width: 1100px;
  margin: 3rem auto 5rem;
  padding: 0 1rem;
  font-family: Arial, sans-serif;
  text-align: center;
}

.highlight { color: #be2c2c; }

.subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
}

.carousel-container-testimonial {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 1rem; /* Closer arrows */
}

.carousel-track-container {
  overflow: hidden;
  flex: 1; /* Take remaining space */
  border-radius: 20px;
}

.carousel-track-testimonial {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  user-select: none;
}

.carousel-slide-testimonial {
  flex: 0 0 100%;
  display: flex;
  gap: 2.5rem;
  flex-direction: row;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: white;
  padding: 2.5rem;
  box-sizing: border-box;
  opacity: 0.7;
  transition: all 0.4s ease;
  overflow: hidden;
  min-height: 450px;
  align-items: stretch;
}

.carousel-slide-testimonial.current-slide {
  opacity: 1;
}

.video-wrapper {
  flex-shrink: 0;
  width: 450px;
  max-width: 45%;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.testimonial-text {
  flex: 1 1 450px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

.testimonial-text h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.role-location {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: #8e185e;
  margin-bottom: 1.2rem;
}

.quote-wrapper {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
  flex: 1;
}

.animated-quote-mark {
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 4rem;
  color: #be2c2c;
  animation: pulse 3s ease-in-out infinite;
  font-family: serif;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #444;
  margin: 0;
  position: relative;
  z-index: 0;
}

.watch-video-btn {
  background-color: #be2c2c;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 16px 32px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-align: center;
  min-width: 280px;
}

.watch-video-btn:hover {
  background-color: #a72626;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(190, 44, 44, 0.3);
}

#prevBtn, #nextBtn {
  background: rgba(255,255,255,0.9);
  border: 2px solid #be2c2c;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: #be2c2c;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#prevBtn:hover, #nextBtn:hover {
  background-color: #be2c2c;
  color: white;
  transform: scale(1.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .carousel-slide-testimonial {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    min-height: auto;
    margin: 0;
  }
  
  .video-wrapper {
    width: 100%;
    max-width: 100%;
    height: 280px;
    margin-bottom: 1rem;
  }
  
  .testimonial-text {
    text-align: center;
    padding-left: 0;
    min-height: auto;
  }
  
  .quote-wrapper {
    padding-left: 0;
    text-align: center;
  }
  
  .animated-quote-mark {
    left: 50%;
    top: -1rem;
    transform: translateX(-50%);
  }
  
  .watch-video-btn {
    align-self: center;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .carousel-container-testimonial {
    position: relative;
  }
  
  .carousel-track-container {
    padding: 0 70px;
    border-radius: 20px;
    overflow: hidden;
  }
  
  #prevBtn, #nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    z-index: 20;
    border-radius: 50%;
  }
  
  #prevBtn {
    left: 10px;
  }
  
  #nextBtn {
    right: 10px;
  }
  
  /* INDICATOR DOTS FOR MOBILE */
  .carousel-container-testimonial::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: rgba(190, 44, 44, 0.3);
    border-radius: 4px;
    z-index: 15;
  }
  
  .carousel-container-testimonial::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #be2c2c;
    border-radius: 4px;
    z-index: 15;
    transition: left 0.5s ease;
  }
}

/* PHONES ≤ 480px */
@media (max-width: 480px) {
  .testimonial-carousel-section {
    padding: 0 ;
  }

  .carousel-track-testimonial {
    width: 100%;
  }

  .carousel-slide-testimonial {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1.2rem 1rem;
    border-radius: 16px;
    box-sizing:content-box;
  }

  .carousel-track-container {
    padding: 0; /* use full width, no space for arrows */
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .testimonial-text h3 {
    font-size: 1.3rem;
  }

  .quote {
    font-size: 0.95rem;
  }

  .watch-video-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  /* hide side arrows completely on mobile */
  #prevBtn,
  #nextBtn {
    display: none;
  }
}

/* SMALL PHONES ≤ 360px */
@media (max-width: 360px) {
  .testimonial-carousel-section {
    padding: 0 0.6rem;
  }

  .carousel-slide-testimonial {
    padding: 1rem 0.8rem;
  }

  .video-wrapper {
    height: 180px;
  }

  .watch-video-btn {
    font-size: 0.9rem;
  }
}

/* ULTRA-SMALL PHONES ≤ 320px */
@media (max-width: 320px) {
  .testimonial-carousel-section {
    padding: 0 0.5rem;
  }

  .carousel-slide-testimonial {
    padding: 0.9rem 0.7rem;
  }

  .video-wrapper {
    height: 160px;
  }
}


 /* Why ambassador  */
.appealing-left-image-text {
    max-width: 1200px;
    margin: 4rem auto;
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.appealing-left-image-text h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #be2c2c;
    margin: 0;
    line-height: 1.2;
    flex: 1 1 100%;
    text-align: center;  /* Base: Always center */
    order: 1;
}

.appealing-left-image-text > div:first-of-type {
    flex: 1 1 300px;
    min-width: 280px;
    height: clamp(250px, 30vh, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

.appealing-left-image-text img {
    width: 100%;
    height: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.appealing-left-image-text img:hover {
    filter: grayscale(0%);
}

.appealing-left-image-text > div:last-of-type {
    flex: 2 1 400px;
    padding: 0 0.5rem;
    order: 3;
}

.appealing-left-image-text p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* Tablet: Image left, Text right */
@media (min-width: 768px) {
    .appealing-left-image-text {
        flex-direction: row;
        align-items: center;
    }
    
    .appealing-left-image-text h1 {
        flex: 1 1 100%;
        text-align: center;
        padding-left: clamp(0, 5vw, 80px);
        order: 0;
    }
    
    .appealing-left-image-text > div:first-of-type {
        order: 1;
        flex: 1 1 35%;
        height: clamp(280px, 32vh, 360px);
    }
    
    .appealing-left-image-text > div:last-of-type {
        flex: 1 1 60%;
        order: 2;
    }
}

/* Desktop: Optimized layout */
@media (min-width: 1024px) {
    .appealing-left-image-text {
        gap: 3rem;
        margin: 5rem auto;
    }
    
    .appealing-left-image-text h1 {
        font-size: 2.5rem;
        padding-left: 10px;
    }
    
    .appealing-left-image-text > div:first-of-type {
        flex: 0 1 420px;
        height: 350px;
    }
    
    .appealing-left-image-text img {
        max-width: 390px;
    }
    
    .appealing-left-image-text > div:last-of-type {
        flex: 1 1 auto;
        max-width: 550px;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .appealing-left-image-text {
        max-width: 1400px;
    }
}

/* Drag reveal technology section */
.technology-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 950px;
    margin: 60px auto;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .drag-reveal-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .drag-reveal-container img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
  }
  .image-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
    transition: clip-path 0.15s ease-out;
    z-index: 2;
  }
  .image-after {
    z-index: 1;
  }
  .slider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, #ff3d6d, #be2c2c);
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 3;
    user-select: none;
  }
  .slider-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3d6d;
    transition: box-shadow 0.3s ease-in-out;
  }
  .slider:hover .slider-handle,
  .slider:active .slider-handle {
    box-shadow: 0 0 15px #ff6693;
  }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  color: #be2c2c;
  /* opacity: 0.7; */
  cursor: pointer;
  user-select: none;
  z-index: 4;
  /* transition: opacity 0.3s ease; */
  opacity: 1;
  animation: flicker 0.6s infinite alternate;
  font-weight: bold;
}
@keyframes flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.slider-arrow:hover {
  opacity: 1;
}

.left-arrow {
  left: 190px;
  padding-bottom: 10px;
  transform: translateY(-50%) rotate(180deg); /* Flip arrow for left */
}

.right-arrow {
  right: 190px;
  padding-bottom: 5px;
  /* No rotation needed for right arrow */
}

 /* For text animation in technology section */
  .slide-item {
    font-size: 16px;
    color: #444;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .slide-item.visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Media coverage section */
.media-carousel {
  position: relative;
  max-width: 1020px;
  margin: 28px auto;
  display: flex;
  align-items: center;
}

.mc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: 1.5px solid #ececec;
  color: #be2c2c;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  user-select: none;
}

.mc-arrow.mc-prev {
  left: -25px;
}

.mc-arrow.mc-next {
  right: -25px;
}

.mc-arrow:hover {
  background: #be2c2c;
  color: white;
}

.mc-carousel-viewport {
  overflow: hidden;
  width: 100%;
  flex: 1;
}

.mc-carousel-track {
  display: flex;
  gap: 18px;
  transition: transform 0.37s cubic-bezier(.86,0,.07,1);
  scroll-behavior: smooth;
}

/* Each card shown 1/3 width on large screen */
.mc-linkcard {
  flex: 0 0 calc((100% / 3) - 12px); /* Show 3 cards with gap */
  max-width: calc((100% / 3) - 12px);
  background: #fff;
  border: 1.5px solid #e5e5e7;
  border-radius: 12px;
  padding: 3px 8px 1px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 72px;
  margin: 0;
  text-decoration: none;
  transition: border 0.2s, box-shadow 0.22s;
}

.mc-linkcard:hover,
.mc-linkcard:focus {
  border-color: #be2c2c;
  box-shadow: 0 2px 12px rgba(190, 44, 44, 0.07);
}

/* Responsive for tablets and smaller - show 1 card only */
@media (max-width: 768px) {
  .mc-linkcard {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .mc-arrow {
    display: none;
  }
}
  
/* Hide arrows on small screens if desired */
@media (max-width: 480px) {
  .mc-arrow {
    display: none;
  }
}



/* Founders video section */
.founder-video-section {
  position: relative;
  width: 900px;
  margin-left: 130px;
  padding-top: 10px;
}
.video-container {
  position: relative;
  width: 100%;
  height: 500px;
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  border-radius: 8px;
}
/* Responsive adjustments */
/* === Global Box-Sizing and Image/Video Scaling === */
* {
  box-sizing: border-box;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Responsive Layouts === */

/* Main Sections: Flexible and Wrapping */
.video-text-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 1rem;
}
.text-content {
  flex: 1 1 350px;
  max-width: 600px;
  padding: 0 1rem;
}
.phone-container {
  flex: 1 1 280px;
  max-width: 350px;
  margin: 0 auto;
}



/* Timeline section responsiveness */
.timeline-section {
  padding: 20px;
}
.timeline-item {
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  .icon-container {
    margin-bottom: 1rem;
  }
}

/* Founder Video: Limit width and center */
.founder-video-section {
  max-width: 90%;
  margin: 40px auto;
  padding: 0 1rem;
}
.video-container {
  height: auto;
}

/* Footer icons alignment */
.footer-social-icons {
  justify-content: center;
  flex-wrap: wrap;
}

/* === Media Queries for fine adjustments === */

/* Tablets and small desktops */
@media (max-width: 992px) {
  .text-content h2 {
    font-size: 1.8rem;
  }
}

/* Phones and very small screens */
@media (max-width: 600px) {
  body {
    padding: 12px;
  }
  .text-content {
    padding: 0;
    text-align: center;
  }
  .text-content h2 {
    font-size: 1.5rem;
  }
  .text-content p {
    font-size: 0.95rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .carousel-slide, .carousel-slide-testimonial {
    flex-direction: column;
    gap: 1rem;
  }
  .timeline-section {
    max-width: 95vw;
  }
}

/* Large desktops */
@media (min-width: 1400px) {
  .text-content {
    max-width: 700px;
  }
  .video-text-section {
    max-width: 1200px;
  }
}


/* Gallery section */

/* === Our Gallery Section === */
#ourGallerySection {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 410px;
  max-width: 1240px;      /* <-- Add this line */
  margin-left: auto;      /* <-- Add this line */
  margin-right: auto;     /* <-- Add this line */
}


.gallery-heading {
  font-size: 2.3rem;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.gallery-heading span {
  color: #ff3d6d;
}

.gallery-subtitle {
  color: #bbb;
  max-width: 550px;
  margin: 0 auto 0px;
  font-size: 1.1rem;
}

.gallery-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-carousel {
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  animation: scrollGallery 25s linear infinite;
}

.gallery-slide {
  min-width: calc(100% / 3);
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.gallery-slide img {
  width: 100%;
  height: 230px;
  object-fit:cover;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 18px rgba(255, 61, 109, 0.2);
}

.gallery-slide h3 {
  color: #ff3d6d;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.gallery-slide p {
  color: #ccc;
  font-size: 0.95rem;
}
/* 
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
} */

/* .gallery-dots .dot {
  width: 10px;
  height: 10px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.gallery-dots .dot.active {
  background: #ff3d6d;
} */

/* Responsive */
@media (max-width: 900px) {
  .gallery-slide {
    min-width: 50%;
  }
}
@media (max-width: 600px) {
  .gallery-slide {
    min-width: 100%;
  }
}

/* How ambassador program works section */
#ambassador-steps-section {
  max-width: 800px;
  margin: 44px auto;
  padding: 0 8px;
  color: black;
}
.steps-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}
.highlight {
  color: #DC2626;
}
.steps-subheading {
  text-align: center;
  color: #211111;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 36px;
}
.steps-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}
.step-card {
  aspect-ratio: 1 / 1;
  width: 200px;
  min-width: 140px;
  max-width: 220px;
  /* background: #000; */
  background: white;
  border: #000;
  border-radius: 14px;
  padding: 18px 10px;
  box-shadow: 0 2px 16px 0 rgba(17, 27, 27, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease,
    width 0.3s ease,
    max-width 0.25s ease;
  z-index: 0;
}
.step-card:hover,
.step-card:focus {
  width: 280px;
  max-width: 260px;
  /* background: linear-gradient(135deg, #18181b 70%, #dc2626 140%); */
  box-shadow: 0 8px 36px 3px rgba(220, 38, 38, 0.22);
  z-index: 2;
}
.step-badge {
  position: absolute;
  right: 13px;
  top: 8px;
  width: 24px;
  height: 24px;
  background-color: #DC2626;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.7);
  transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
  z-index: 2;
}
.step-card:hover .step-badge {
  transform: scale(1.3) rotate(360deg);
  color: #000;
}
.step-card p {
  font-size: 14px;
  margin: 8px 0 0 0;
  color: #000;

}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #be2c2c;
}
.step-detail {
  font-size: 14px;
  color: #eee;
  opacity: 0;
  max-height: 0;
  margin-top: 5px;
  padding-top: 3px;
  border-top: 1px solid #222;
  overflow: wrap;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
.step-card:hover .step-detail,
.step-card:focus .step-detail {
  color: #be2c2c;
  opacity: 1;
  max-height: 75px;
}.step-arrow {
  width: 20px;
  height: 140px;
  position: relative;
  align-self: center;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  width: 22px;
  height: 3px;
  background-color: #DC2626; /* Solid red line */
  border-radius: 1.5px;
}

/* Remove arrowhead */
.step-arrow::after {
  display: none;
}

/* SVG Icons size and stroke */
/* .step-svg svg {
  stroke: #DC2626;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
} */
.icon-img {
  width: 32px;
  height: 32px;
  /* filter:invert(); */
  /* background-image: url('C:\Users\ii234\Desktop\Ambassador_portal\assets\Icons\growth.png'); */
  /* filter: drop-shadow(0 0 7px #be2c2c); */
  /* background-color: #be2c2c; */
  margin-bottom: 10px;
  display: block;
}

/* Ambassador badge */
.ambassador-badge {
  /* background: #be2c2c;
  color: #fff; */
  background: #fff;
  color:#000 ;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
  border-radius: 9px;
  border: 1px solid #000;
  padding: 6px 20px;
  margin-bottom: 12px;
  font-family: 'Courier New', Courier, monospace;
}
/* Responsive */
@media (max-width: 800px) {
  #ambassador-steps-section {
    max-width: 98vw;
  }
  .steps-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .step-card,
  .step-arrow {
    width: 90vw;
    max-width: 230px;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: 230px;
    min-width: 110px;
    min-height: 110px;
  }
  .step-arrow {
    display: none;
  }
}
#ratingTiles {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#ratingContainer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#ratingLabels {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#ratingTiles button {
  margin-bottom: 0 !important;
}

/* How it works */
.how-it-works-section {
  display: flex;
  align-items: center;
  padding: 20px 50px;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* Video container flexibility */
.shahid-video {
  flex: 0 0 auto;    /* Fix intrinsic size */
  padding-left: 70px;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}

.shahid-video video {
  width: 100%;
  max-width: 500px;
  height: auto;     /* Maintain aspect ratio */
  border-radius: 8px;
  display: block;
}

/* Text content flexibility */
.shahid-text {
  flex: 1 1 0;
  justify-content: center;
  padding-top: 50px;
  height: auto;      /* Let height adapt */
  max-width: 370px;
  text-align: justify;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .how-it-works-section {
    gap: 30px;
    padding: 20px 25px;
  }
  .shahid-video {
    padding-left: 0;
    max-width: 100%;
  }
  .shahid-video video {
    max-width: 100%;
    height: auto;
  }
  .shahid-text {
    max-width: 100%;
    padding-top: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .how-it-works-section {
    flex-direction: column;
    padding: 15px 10px;
  }
  .shahid-video {
    width: 100%;
    padding-left: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .shahid-text {
    width: 100%;
    max-width: 100%;
    padding-top: 10px;
    text-align: center;
  }
}

/* roi-section-slider */
.roi-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 850px;
    width: 90%;
    margin: 60px auto;
    padding: 40px 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .roi-text {
    flex: 1;
    padding-right: 20px;
  }
  .roi-text h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #be2c2c;
    font-weight: 700;
  }
  .roi-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .roi-btn {
    background-color: #be2c2c;
    border: none;
    color: white;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  /* .roi-btn:hover {
    background-color: #e2335f;
  } */
  .roi-chef-image {
    width: 260px;
    height: auto;
    /* Start offscreen */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1.2s ease, opacity 1.2s ease;
  }
  .roi-chef-image.slide-in {
    transform: translateX(0);
    opacity: 1;
  }
  @media (max-width: 900px) {
    .roi-section {
      flex-direction: column;
      text-align: center;
      padding: 30px 25px;
    }
    .roi-text {
      padding-right: 0;
    }
    .roi-chef-image {
      width: 220px;
      margin-top: 25px;
    }
    .roi-text h2 {
      font-size: 24px;
    }
    .roi-text p {
      font-size: 16px;
    }
  }

/* Lead form section */
/* ============ Lead form section (optimized for all devices) ============ */
.contact-split {
  position: relative;
  overflow: hidden;
  background: #f4f1ea;
  margin: 80px 0 0;
}

.contact-split-bg {
  position: absolute;
  inset: 0;
  background: #be2c2c;
  clip-path: polygon(43% 0, 100% 0, 100% 100%, 62% 100%);
  z-index: 0;
}

.contact-split-inner {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px 60px;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* ---------- LEFT: Heading + Form ---------- */
.contact-left {
  flex: 1 1 520px;
  min-width: 320px;
}

.contact-heading {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 30px;
}
.contact-heading .red { color: #be2c2c; }
.contact-heading .gray { color: #444; }

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  max-width: 500px;
}

.c-field-full { grid-column: 1 / -1; }

.c-field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b6b6b;
  margin-bottom: 7px;
}
.c-field label .req { color: #be2c2c; }

.c-field input,
.c-field select,
.c-field textarea {
  width: 100%;
  border: 1.5px solid #e3dfd8;
  background: #fff;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 16px; /* prevents iOS auto-zoom on focus */
  color: #222;
  outline: none;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(17, 27, 27, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 46px; /* comfortable touch target */
}

.c-field textarea { resize: vertical; min-height: 70px; }

.c-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23777' stroke-width='1.6' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.c-field select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.c-field input:focus,
.c-field select:focus,
.c-field textarea:focus {
  border-color: #be2c2c;
  box-shadow: 0 4px 16px rgba(190, 44, 44, 0.12);
}

/* City tag/search input */
.city-tag-input {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e3dfd8;
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 2px 10px rgba(17, 27, 27, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.city-tag-input:focus-within {
  border-color: #be2c2c;
  box-shadow: 0 4px 16px rgba(190, 44, 44, 0.12);
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #be2c2c;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 8px 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.city-tag-remove {
  background: rgba(255,255,255,0.25);
  border: none;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-tag-remove:hover { background: rgba(255,255,255,0.45); }

#citySearchBox {
  flex: 1 1 140px;
  min-width: 140px;
  min-height: 32px !important;
  border: none !important;
  box-shadow: none !important;
  padding: 6px 4px !important;
  font-size: 16px !important; /* iOS zoom fix */
}

.city-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border: 1px solid #e3dfd8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 27, 27, 0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 20;
  display: none;
}

.city-suggestion-item {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: background 0.15s ease;
}
.city-suggestion-item:hover,
.city-suggestion-item:active {
  background: #fbeaea;
  color: #be2c2c;
}

/* Radio pills */
.radio-pill-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.radio-pill { position: relative; cursor: pointer; flex: 1 1 auto; }
.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.radio-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  min-height: 44px;
  box-sizing: border-box;
  border: 1.5px solid #e3dfd8;
  background: #fff;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
  box-shadow: 0 2px 10px rgba(17, 27, 27, 0.05);
  transition: all 0.2s ease;
  text-align: center;
}
.radio-pill input:checked + span {
  background: #be2c2c;
  border-color: #be2c2c;
  color: #fff;
  box-shadow: 0 4px 14px rgba(190, 44, 44, 0.25);
}
.radio-pill input:focus-visible + span {
  outline: 2px solid #be2c2c;
  outline-offset: 2px;
}

/* ---------- Experience Center: preview box ---------- */
.ec-preview-box {
  margin-top: 16px;
  border: 1.5px solid #cfe3ec;
  background: #f3f9fb;
  border-radius: 10px;
  padding: 14px 16px 16px;
}

.ec-preview-title {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2b6f86;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ec-preview-title i { font-size: 0.95rem; }

.ec-preview-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ec-preview-thumbs img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex: 1 1 140px;
  max-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.ec-view-details-btn {
  background: none;
  border: none;
  color: #2457c5;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0; /* bigger tap target */
}
.ec-view-details-btn:hover { text-decoration: underline; }
.ec-view-details-btn i { font-size: 0.75rem; }

/* ---------- Experience Center: details modal ---------- */
.ec-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 8, 0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ec-modal-overlay.is-open { display: flex; }

.ec-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 32px 36px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.ec-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #fff;
  border: 1px solid #eee;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.ec-modal-close:hover { color: #be2c2c; }

.ec-modal-header {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 26px;
  padding-right: 30px;
}
.ec-modal-header-text { flex: 1 1 320px; min-width: 220px; }
.ec-modal-header-text h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
}
.ec-modal-header-text p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #555;
}
.ec-modal-hero-img {
  flex: 1 1 280px;
  width: 280px;
  max-width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.ec-modal-section { margin-bottom: 22px; }
.ec-modal-section h4,
.ec-snapshot-card h4,
.ec-gallery-card h4,
.ec-benefits-card h4 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.ec-feature-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ec-feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ec-feature i {
  font-size: 1.4rem;
  color: #be2c2c;
  margin-bottom: 4px;
}
.ec-feature strong {
  font-size: 0.84rem;
  color: #1a1a1a;
  line-height: 1.25;
}
.ec-feature span {
  font-size: 0.76rem;
  color: #777;
  line-height: 1.35;
}

.ec-modal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.ec-snapshot-card {
  background: #f7f6f2;
  border-radius: 12px;
  padding: 20px 22px;
}
.ec-snapshot-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.ec-snapshot-item:last-of-type { margin-bottom: 8px; }
.ec-snapshot-item i {
  color: #be2c2c;
  font-size: 1.05rem;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}
.ec-snapshot-item div { display: flex; flex-direction: column; }
.ec-snapshot-item strong { font-size: 0.85rem; color: #1a1a1a; }
.ec-snapshot-item span { font-size: 0.85rem; color: #555; }
.ec-snapshot-note {
  margin: 4px 0 0;
  font-size: 0.74rem;
  color: #999;
  font-style: italic;
}

.ec-gallery-card { display: flex; flex-direction: column; }
.ec-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  flex: 1;
}
.ec-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.ec-gallery-grid img:first-child {
  grid-row: 1 / 3;
}

.ec-benefits-card {
  background: #fbeceb;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 26px;
}
.ec-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.ec-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #333;
}
.ec-benefit-item i { color: #2a9d5b; font-size: 0.95rem; flex-shrink: 0; }

.ec-modal-gotit-btn {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  background: #be2c2c;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 20px;
  min-height: 48px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(190,44,44,0.3);
  transition: background 0.25s ease, transform 0.2s ease;
}
.ec-modal-gotit-btn:hover { background: #9e2424; transform: translateY(-2px); }

/* Submit */
.c-submit-wrap { grid-column: 1 / -1; margin-top: 14px; }

.c-submit-wrap button {
  background-color: #be2c2c;
  border: none;
  color: #fff;
  padding: 15px 48px;
  min-height: 48px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(190,44,44,0.3);
  transition: background 0.25s ease, transform 0.2s ease;
  width: 100%;
}
.c-submit-wrap button:hover { background-color: #9e2424; transform: translateY(-2px); }
.c-submit-wrap button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- RIGHT: Info card + pin + social trail ---------- */
.contact-right {
  flex: 1 1 360px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.info-card {
  background: #f4f1ea;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  max-width: 280px;
  margin: 0 0 0 40px;
  position: relative;
  z-index: 2;
}
.info-card h4 { color: #be2c2c; font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.info-card p { color: #555; font-size: 0.9rem; line-height: 1.5; margin: 0; }

.map-pin-line {
  width: 2px;
  height: 50px;
  background: rgba(244,241,234,0.7);
  margin: 0 0 0 70px;
}

.map-pin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244,241,234,0.15);
  border: 1.5px solid rgba(244,241,234,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 50px;
}

.social-trail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 0 90px;
}

.social-pin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.social-pin:hover { transform: scale(1.12); }
.s1 { background: #3b5998; margin-left: 0; }
.s2 { background: #1da1f2; margin-left: 22px; }
.s3 { background: #0077b5; margin-left: 44px; }
.s4 { background: #e4405f; margin-left: 66px; }

.contact-bottom-bar {
  position: relative;
  z-index: 1;
  background: #111;
  color: #ddd;
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 18px 20px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.contact-bottom-bar i { color: #be2c2c; margin-right: 8px; }

/* ---------- Responsive breakpoints ---------- */

/* Tablet: stack left/right, single-column form fields */
/* Give the form its own surface on mobile so it's not sitting on raw red */
@media (max-width: 900px) {
  .contact-split-bg { clip-path: none; background: #be2c2c; }

  .contact-split-inner {
    flex-direction: column;
    padding: 40px 16px 50px;
    align-items: stretch;
  }

  .contact-heading {
    text-align: center;
    color: #fff !important; /* override — needs to sit on red, not fight it */
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.3;
    padding: 0 8px;
    margin-bottom: 28px;
  }
  .contact-heading .gray { color: #be2c2c; }
  .contact-heading .red { color: #be2c2c; } /* light coral, readable on red */

  .contact-left {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    gap: 18px;
  }

  .contact-right {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 30px 20px;
    margin-top: 24px;
    align-items: center;
  }
  .info-card { margin: 0 auto; text-align: center; max-width: 320px; }
  .map-pin-line, .map-pin { margin-left: auto; margin-right: auto; }
  .social-trail {
    flex-direction: row;
    justify-content: center;
    margin: 24px auto 0;
  }
  .s1, .s2, .s3, .s4 { margin-left: 0; }

  /* fix disabled select contrast */
  .c-field select:disabled {
    opacity: 1;
    background-color: #f2f2f2;
    color: #999;
    border-color: #e3dfd8;
  }

  .ec-modal-box { padding: 26px 20px 28px; }
  .ec-modal-header { flex-direction: column; padding-right: 0; }
  .ec-modal-hero-img { width: 100%; }
  .ec-feature-row { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .ec-modal-two-col { grid-template-columns: 1fr; }
  .ec-benefits-grid { grid-template-columns: 1fr; }
  .ec-preview-thumbs img { max-width: none; }
}

/* Phones */
@media (max-width: 600px) {
  .contact-split { margin-top: 50px; }
  .contact-split-inner { padding: 40px 16px; }
  .contact-heading { font-size: 1.5rem; margin-bottom: 24px; }

  .radio-pill-group { gap: 8px; }
  .radio-pill span { padding: 11px 14px; font-size: 0.84rem; }

  .ec-preview-thumbs img { height: 80px; }
  .ec-feature-row { grid-template-columns: repeat(2, 1fr); }

  .info-card { padding: 18px 20px; }
  .social-trail { gap: 10px; }
  .social-pin { width: 36px; height: 36px; }
}

/* Small phones */
@media (max-width: 400px) {
  .contact-heading { font-size: 1.3rem; }
  .c-field input, .c-field select, .c-field textarea { padding: 12px; }
  .radio-pill-group { flex-direction: column; }
  .radio-pill span { width: 100%; }
  .ec-preview-thumbs { justify-content: center; }
  .ec-modal-box { padding: 60px 14px 24px; }
  .ec-modal-header-text h3 { font-size: 1.15rem; }
  .ec-feature-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ec-gallery-grid img { min-height: 70px; }
}
/* Absolute floor: 320px width devices */
@media (max-width: 340px) {
  .contact-split-inner { padding: 32px 10px 40px; }

  .contact-heading {
    font-size: 1.25rem;
    line-height: 1.28;
    padding: 0 4px;
    margin-bottom: 22px;
  }

  .contact-left { padding: 20px 14px 18px; }

  .contact-form-grid { gap: 14px; }

  .c-field label { font-size: 0.7rem; }
  .c-field input,
  .c-field select,
  .c-field textarea {
    padding: 11px 12px;
    font-size: 16px; /* keep — do not shrink below this or iOS zooms */
  }
  .c-field select { padding-right: 30px; background-position: right 10px center; }

  .city-tag-input { padding: 8px 10px; }
  #citySearchBox { min-width: 100px; }

  .radio-pill-group { flex-direction: column; gap: 8px; }
  .radio-pill span { width: 100%; padding: 11px 12px; font-size: 0.82rem; }

  .ec-preview-thumbs { justify-content: center; }
  .ec-preview-thumbs img { width: 100%; max-width: 140px; height: 80px; }

  .info-card { padding: 16px 16px; max-width: 100%; }
  .social-pin { width: 34px; height: 34px; font-size: 0.9rem; }
  .social-trail { gap: 8px; }

  .c-submit-wrap button { padding: 14px 20px; font-size: 0.9rem; }

  .ec-modal-box { padding: 56px 12px 20px; }
  .ec-modal-header-text h3 { font-size: 1.05rem; }
  .ec-feature-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ec-modal-two-col { gap: 14px; }
  .ec-gallery-grid img { min-height: 65px; }
}