/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* Default: Hide mobile Order button on desktop */
.mobile-order {
  display: none;
}

/* Mobile layout (show beside logo and toggle) */
@media (max-width: 992px) {
  .mobile-order {
    display: inline-block;
    background: #d32f2f;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-left: auto; /* push it to right */
  }

  .mobile-order:hover {
    background: #b71c1c;
  }

  /* Hide the desktop Order button in nav */
  .desktop-order {
    display: none !important;
  }

  /* Adjust header layout to fit logo + button + toggle */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  /* Keep the toggle aligned on far right */
  .menu-toggle {
    order: 3;
  }

  .mobile-order {
    order: 2;
  }

  .navlogo {
    order: 1;
    width: 120px;
  }
}

/* ======= HEADER ======= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  transition: all 0.4s ease;
  z-index: 1000;
  background: transparent;
}

header.scrolled {
  background: #fdb827;
  padding: 12px 50px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navlogo {
  width: 180px;
  transition: all 0.3s ease;
}

header.scrolled .navlogo {
  width: 120px;
}

nav {
  flex: 1;
  text-align: center;
}

nav ul {
  list-style: none;
  display: inline-flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s;
}

.order-btn {
  background: #d32f2f;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: #b71c1c;
}

/* ======= TOGGLE BUTTON ======= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
  z-index: 99999; /* 👈 ensures it's on top of all slides */


}

/* ======= RESPONSIVE NAV ======= */
@media (max-width: 992px) {
  header {
    height: 60px;
    padding: 15px 25px;
  }

  /* Hide desktop nav by default */
  nav ul {
    z-index: 99999;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 25px;
    width: 230px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    text-align: center;
    animation: fadeIn 0.3s ease forwards;
  }

  /* Show menu when nav is active */
  nav.active ul {
    display: flex;
  }

  /* Show toggle icon */
  .menu-toggle {
    display: block;
  }

  nav ul li {
    padding: 5px 0;
    width: 100%;
  }

  nav ul li a {
    color: #000;
    width: 100%;
    display: block;
  }

  /* Order button inside dropdown */
  .order-btn {
    width: 80%;
    margin: 10px auto;
    font-size: 0.9rem;
  }
}

/* Small screens */
@media (max-width: 480px) {
  .navlogo {
    width: 140px;
  }

  nav ul {
    width: 180px;
    right: 15px;
  }

  .menu-toggle {
    font-size: 25px;
    right: 0;
  }
}

/* Animation for dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Only reduce Order Now BUTTON WIDTH on mobile */
@media (max-width: 992px) {

  /* Top Order Now beside logo */
  .mobile-order {
    width: 210px;   /* adjust this value as needed */
    text-align: center;
    font-size: 11px;
  }

  /* Order Now inside toggle dropdown */
  nav ul .order-btn {
    width: 210px;   /* adjust this value as needed */
        font-size: 11px;

  }
}

/* ✅ Extra small devices */
@media (max-width: 480px) {

  .mobile-order {
    width: 115px;
        font-size: 11px;

  }

  nav ul .order-btn {
    width: 120px;
        font-size: 12px;

  }
}
.linktree-btn {
  background: green; /* Linktree green */
  color: #fff;
  padding: 10px 25px;
  font-size: 13px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.linktree-btn:hover {
  background: #2bb97d;
}
/* ✅ Match Linktree button width with Order button on mobile */
@media (max-width: 992px) {
  .linktree-btn {
    width: 120px;      /* same as toggle Order button */
    text-align: center;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .linktree-btn {
    width: 120px; /* same as small-screen Order button */
  }
}
.seo-link,
.seo-link:hover,
.seo-link:focus,
.seo-link:active,
.seo-link:visited {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}


/* ==============================
   🔹 SECTION ONE (Hero Banner)
   ============================== */
.sectionone {
  background-image: url('images/test.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding-top: 120px;
  min-height: 90vh;
}

/* Main content container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px;
  flex-wrap: wrap;
  gap: 40px;
  position: relative; /* ✅ enables layering */
}

/* Left text block */
.text {
  max-width: 500px;
  flex: 1;
  z-index: 1;
  position: relative;
}

.text h4 {
  color: #b71c1c;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.text h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transform: translateZ(20px);
}
.text h2 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transform: translateZ(20px);
}

/* 🔴 Red box under image */
.text .details {
  background: #d32f2f;
  display: inline-block;
  padding: 25px;
  border-radius: 5px;
  margin-top: 40px;
  width: 130%;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1; /* ensures box is under image */
  position: relative;
 
}

.text .details span {
  margin-right: 15px;
  font-size: 1rem;
}

.text .price {
  font-size: 20px;
  font-weight: bold;
  margin-left: 20px;
}

/* 🖼️ Right image */
.image {
  flex: 1;
  text-align: right;
  position: relative;
  z-index: 3; /* ✅ ensures image overlaps the red box */
}

/* ==========================
   🧊 3D STYLE FOR SLIDER IMAGES
   ========================== */

/* Make the parent a 3D scene */
.image {
  flex: 1;
  text-align: right;
  position: relative;
  perspective: 1200px; /* ✅ Enables 3D space */
}

/* Add 3D transformation to each image */
.image img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin-top: -100px;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.073));
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(5deg) scale(1);
  transition: transform 0.8s ease, filter 0.8s ease;
}

/* Subtle floating animation */
@keyframes float {
  0%, 100% {
    transform: rotateY(-15deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-12deg) rotateX(6deg) translateY(-10px);
  }
}

.image img {
  animation: float 5s ease-in-out infinite;
}

/* Hover effect for more depth */
.image img:hover {
  transform: rotateY(-5deg) rotateX(2deg) scale(1.05);
}


/* Pagination styling */
.pagination {
  margin-left: 80px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  color: #fff;
  position: relative;
  bottom: 190px;
    pointer-events: auto; /* make sure it's clickable */
     z-index: 900;

}

.pagination .page {
  color: #fff;
  font-size: 14px;
}

.pagination .prev,
.pagination .next {
  cursor: pointer;
  font-size: 16px;
  color: #b71c1c;
  transition: color 0.3s ease;
}

.pagination .prev:hover,
.pagination .next:hover {
  color: #fff;
}


/* ==============================
   🔹 RESPONSIVE DESIGN
   ============================== */

/* Tablets (<=1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 40px;
    flex-direction: column;
    text-align: center;
  }

  .text {
    max-width: 100%;
    text-align: center;
  }

  .text h1 {
    font-size: 48px;
  }
   .text h2 {
    font-size: 48px;
  }

  .text h4 {
    font-size: 1rem;
  }

  .text .details {
    margin: 0 auto;
  }

  .image {
    text-align: center;
  }

  .image img {
    max-width: 350px;
  }

  .pagination {
    margin: 40px auto;
    justify-content: center;
  }
}

/* Mobile Landscape (<=768px) */
@media (max-width: 768px) {
  .sectionone {
    padding-top: 100px;
    min-height: 60vh;
  }

  .container {
    padding: 30px 25px;
  }

  .text h1 {
    font-size: 38px;
  }
   .text h2 {
    font-size: 38px;
  }

  .text .details {
    padding: 20px;
  }

  .text .details span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .image img {
    max-width: 350px;
  }

  .pagination {
    margin-top: 0;
    margin-bottom: 80px;
    font-size: 13px;
  }
}

/* Mobile Portrait (<=480px) */
@media (max-width: 480px) {
  .sectionone {
    padding-top: 80px;
    text-align: center;
    min-height: 40vh;
    padding-left: 30px;
  }

  .text h1 {
    font-size: 26px;
    text-align: left;
  }
  .text h2 {
    font-size: 26px;
    text-align: left;
  }

  .text h4 {
    font-size: 0.9rem;
    text-align: left;
  }

  .text .details {
    margin-top: 20px;
    padding: 10px;
    font-size: 10px;
    width: 145%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .text .details span {
      margin-right: 5px;
      font-size: 12px;
      margin-top: 10px;

}

  .text .price {
    font-size: 16px;
    margin-left: 10px;
    display: block;
    margin-top: 10px;
  }
  .image {
    text-align: center;
    margin-top: 60px;
    bottom: -30px;
    left: -60px;
  }

  .image img {
    width: 110%;         /* Keeps scaling nicely */
    height: auto;
   margin-right: 100px;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    margin-top: -150px;
  }

  .pagination {
    gap: 8px;
    bottom: 10px;
  }
}

/* ==============================
   📱 Image Size Fix for iPhone XR & Similar
   ============================== */
@media screen and (max-width: 480px) and (min-width: 400px) {
  .image {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    position: relative;
  }

  .image img {
    width: 100%;              /* 🔹 Smaller size to fit neatly */
    max-width: 380px;        /* 🔹 Prevents overflow or cropping */
    height: auto;
    margin: 0 auto;
    margin-top: -89px;       /* 🔹 Adjust vertical alignment */
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
  }

  .text {
    margin-top: 10px;
  }

  .text .details {
    margin-top: 15px;
  }
  #menubucket{
  max-width: 300px;
}
}
/* ==============================
   ✅ FINAL FIX — iPad Mini / Tablet (700px–1024px)
   Centered content, balanced height, bigger image
   ============================== */
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .sectionone {
    background-position: center;
    background-size: cover;
    padding: 30px 80px 50px;       /* Reduced excess top/bottom space */
    min-height: 40vh;           /* Balanced section height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    
  }
  .text h1 {
    text-align: left;
    font-size: 50px;
  }
    .text h2 {
    text-align: left;
    font-size: 50px;
  }

  .text h4 {
    margin-top: 80px;
    font-size: 0.9rem;
    text-align: left;
  }

/* 🔴 Red box under image */
.text .details {
  display: flex;
  flex-direction: row;
  padding: 20px;
  border-radius: 5px;
  margin-top: 40px;
  width: 180%;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1; /* ensures box is under image */
  position: relative;
 
}
#menubucket{
  max-width: 300px;
}
  /* 🖼️ Adjust image to be larger and centered visually */
  .image {
    width: 100%;
    text-align: center;
    margin-top: 0;
    position: relative;
  }

  .image img {
    width: 108%;                 /* Bigger image for tablet */
    max-width: 480px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;          /* Pull image closer to red box */
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.35));
  }

  /* Pagination centered properly */
  .pagination {
    position: static;
    margin-top: 15px;
    justify-content: center;
    font-size: 13px;
    gap: 8px;
  }
}
/* ==============================
   📱 FIX — Surface Duo / Medium Screens (480px–699px)
   ============================== */
@media screen and (min-width: 480px) and (max-width: 699px) {
  .sectionone {
    background-position: top center;
    background-size: cover;
    padding-top: 80px;           /* reduced spacing */
    padding-bottom: 50px;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 25px;
    gap: 15px;
    max-width: 640px;
    margin: 0 auto;
  }

  .text {
    width: 100%;
    max-width: 520px;
    z-index: 2;
  }

  .text h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .text h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 12px;
  }
    .text h2 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  /* 🔴 Red box – same look as mobile */
  .text .details {
    display: flex;
    flex-direction: row;
    width: 145%;
    max-width: 420px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  .text .details span {
    margin: 5px 0;
    padding: 10px;
    font-size: 0.95rem;
  }



  /* 🖼️ Adjust image size & alignment */
  .image {
    width: 100%;
    text-align: center;
    margin-top: -10px;
    position: relative;
  }

  .image img {
    width: 100%;                   /* slightly bigger */
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    margin-top: -30px;             /* pulls closer to text */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  }

  /* Pagination cleanly below image */
  .pagination {
    position: static;
    margin-top: 10px;
    justify-content: center;
    font-size: 12px;
    gap: 8px;
  }
}



.sectiontwo {
  margin-top: -140px;
  padding: 80px 0;
  display: flex;
  justify-content: center;

  /* Add background image */
  background-image: url('images/tt.png');
  background-size: cover;          /* Makes the image cover the whole section */
  background-position: center;     /* Centers the image */
  background-repeat: no-repeat;    /* Prevents the image from repeating */
}

.food-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.food-card {
  width: 280px;
  height: 340px;
    background: #fafafa;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Red Top Part */
.card-top {
  background: #d32f2f;
  padding: 30px 20px 70px; /* space so image overlaps */
  border-bottom-left-radius: 80px 40px; 
  border-bottom-right-radius: 80px 40px;
  color: #fff;
  position: relative;
}

.card-top h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

/* Button */
.food-btn {
  display: inline-block;
  background: #e53935;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}
.food-btnv{
    display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #1db954;
  transition: all 0.3s ease;
}
.food-btnv:hover {
  background: #1db954;
  color: #ffffff;
}
.food-btn:hover {
  background: #fff;
  color: #e53935;
}

/* Product Image */
.food-card img {
  width: 200px;
  position: absolute;
  bottom: 0px; /* overlaps white area */
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out; /* Smooth effect added */
}

/* Product Image Hover */
.food-card img:hover {
  width: 230px;
}


/* Base state — hidden and slightly below */
.food-card {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

/* When in view — visible and in place */
.food-card.show {
  opacity: 1;
  transform: translateY(0);
}

.food-card:nth-child(1) { transition-delay: 0.1s; }
.food-card:nth-child(2) { transition-delay: 0.3s; }
.food-card:nth-child(3) { transition-delay: 0.5s; }




.about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 10%;
  font-family: Arial, sans-serif;
}

.welcome-text {
  color: #e63946;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #222;
  line-height: 1.2;
}

.about-text {
  margin-top: 15px;
  color: #555;
  line-height: 1.6;
}

.btn {
  margin-top: 25px;
  background: #e63946;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: #d62839;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-us {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-image {
    margin-top: 20px;
  }
}

/* Animation setup */
.about-content,
.about-image {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

/* When in view */
.about-content.show,
.about-image.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Slight delay for image for better visual effect */
.about-image {
  transition-delay: 0.2s;
}



.offers-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 50px 10%;
  background: #f9f6f1;
  font-family: Arial, sans-serif;
}

.offer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card.green {
  background: #1db954;
  color: #fff;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.offer-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.offer-text p {
  font-size: 14px;
  margin-bottom: 10px;
  color: inherit;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #ffd32a;
}

.offer-card.green .price {
  color: #ffd32a;
}

.offer-img img {
  max-height: 100px;
  width: auto;
}

/* Animation setup for offer cards */
.offer-card {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
}

/* Show state */
.offer-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Add a small stagger effect using nth-child */
.offer-card:nth-child(1) {
  transition-delay: 0.1s;
}
.offer-card:nth-child(2) {
  transition-delay: 0.25s;
}
.offer-card:nth-child(3) {
  transition-delay: 0.4s;
}


.promo-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  perspective: 1px; /* enables pseudo 3D depth */
  transform-style: preserve-3d;
}

/* Background video with pseudo fixed effect */

 .promo-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}



/* Optional overlay for contrast */
.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Foreground content */
.promo-content {
  position: relative;
  z-index: 2;
  background: rgba(219, 219, 219, 0.25);
  padding: 40px 60px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.promo-content h2{
  font-size: 3rem;
  color: #ffb400;
}

.promo-content p {
  font-size: 1.5rem;
  margin: 10px 0;
}

.promo-content .offer {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.promo-btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  background: #ffb400;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.promo-btn:hover {
  background: #ffa000;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-section {
  position: relative;
  height: 50vh;
  }
  .promo-content {
    padding: 25px 35px;
  }

  .promo-content h2 {
    font-size: 2rem;
  }

  .promo-content .offer {
    font-size: 1.4rem;
  }
}




    
    .how-it-works {
      text-align: center;
      padding: 60px 20px;
    }

    .how-it-works h2 {
      font-size: 2.5rem;
      margin-bottom: 60px;
      color: #6a1b9a; /* purple */
    }

    .steps {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: nowrap;
      position: relative;
    }

    .step {
      flex: 1;
      max-width: 200px;
      text-align: center;
      position: relative;
    }

    .step img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .step h3 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: #9c0000ff;
    }

    .step p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.4;
    }

    /* Connector line */
    .step::after {
      content: "";
      position: absolute;
      top: 45px;
      right: -40px;
      width: 40px;
      height: 2px;
      border-top: 2px dashed #aaa;
    }

    .step:last-child::after {
      display: none; /* No line after the last step */
    }
/* Slightly longer stagger delays */

.step:nth-child(3)::after { top: 55px; }

/* Initial hidden state */
.step {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease;
}

/* When visible on scroll */
.step.show {
  opacity: 1;
  transform: translateX(0);
}

/* Slightly longer stagger delays */
.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.4s; }
.step:nth-child(3) { transition-delay: 0.7s; }
.step:nth-child(4) { transition-delay: 1s; }
.step:nth-child(5) { transition-delay: 1.3s; }





/* ==============================
   🔹 RESPONSIVE DESIGN
   ============================== */

/* Tablet screens */
@media (max-width: 992px) {
  .how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .steps {
    gap: 25px;
  }

  .step {
    max-width: 45%;
    flex: 1 1 45%;
  }

  .step::after {
    display: none; /* Hide connector lines */
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  .how-it-works {
    padding: 60px 15px;
  }

  .how-it-works h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .step img {
    width: 70px;
    height: 70px;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }

  .step::after {
    display: none;
  }
}
/* ==============================
   🔹 MOBILE ALTERNATE ANIMATION
   ============================== */
@media (max-width: 600px) {
  /* Reset base animation for mobile */
  .step {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }

  /* Odd steps: from left */
  .step:nth-child(odd) {
    transform: translateX(-80px);
  }

  /* Even steps: from right */
  .step:nth-child(even) {
    transform: translateX(80px);
  }

  /* When visible */
  .step.show {
    opacity: 1;
    transform: translateX(0);
  }

  /* Add stagger delay for smooth sequence */
  .step:nth-child(1) { transition-delay: 0.1s; }
  .step:nth-child(2) { transition-delay: 0.3s; }
  .step:nth-child(3) { transition-delay: 0.5s; }
  .step:nth-child(4) { transition-delay: 0.7s; }
  .step:nth-child(5) { transition-delay: 0.9s; }
}




    /* Arc background */
    section.testimonials {
      position: relative;
      padding: 80px 20px;
      text-align: center;
      overflow: hidden;
      
       
      background: url("images/Untitled\ design\ \(4\).png") no-repeat center center/cover;
      background-attachment: fixed; /* Keeps background fixed */

    }





    section.testimonials h2 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 40px;
      color: #222;
      position: relative;
      z-index: 2;
    }

    .carousel-container {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      z-index: 2;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .card {
      background: #fff;
      border-radius: 20px;
      padding: 24px;
      margin: 0 12px;
      min-width: 300px;
      max-width: 300px;
      flex-shrink: 0;
      text-align: left;
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .card img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .card .name {
      font-weight: 600;
      margin-bottom: 4px;
      color: #222;
    }

    .stars {
      color: #a50303ff;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .card p {
      font-size: 12px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 12px;
    }



    /* Arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      z-index: 5;
      transition: 0.3s;
    }
    .arrow:hover {
      background: #f3eefe;
    }
    .arrow.prev {
      left: -20px;
    }
    .arrow.next {
      right: -20px;
    }

    /* Pagination dots */
    .dots {
      margin-top: 20px;
      text-align: center;
      z-index: 2;
      position: relative;
    }
    .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: #ffffff;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .dot.active {
      background: rgb(249, 0, 0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .card {
        min-width: 260px;
        max-width: 260px;
      }
      .arrow.prev {
        left: 0;
      }
      .arrow.next {
        right: 0;
      }
    }



.footer-section {
    background-color: #000000; /* Main footer background color (dark green) */
    position: relative;
    color: #E0E0E0; /* Light text color for contrast */
    padding-top: 100px; /* Space for the wave to overlap from the top */
    padding-bottom: 30px; /* Space for the bottom text */
    overflow: hidden; /* Important for containing the wave background */
}


.footer-content-wrapper {
    position: relative;
    z-index: 2; /* Ensure content is above the wave */
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px; /* Space between columns */
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1; /* Allow columns to grow and shrink */
    min-width: 280px; /* Minimum width for each column before wrapping */
}

/* Footer Left - Contact Info */
.footer-left {
    text-align: left;
    line-height: 1.6;
}

.footer-left .get-in-touch {
    color: #AAD9BB; /* Lighter green for "Get In Touch" */
    font-size: 0.9em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-left .get-in-touch .fas {
    color: #AAD9BB; /* Lighter green for the heart icon */
}

.footer-left .contact-info-title {
    color: #F8F8F8; /* White/light gray for the title */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-left p {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.footer-left .contact-text {
    font-style: italic;
    font-size: 0.85em;
    margin-bottom: 20px;
}

.footer-left .phone-number,
.footer-left .email-address,
.footer-left .location {
    font-weight: 500;
}

/* Footer Middle - Navigation Links */
.footer-middle {
    display: flex;
    justify-content: space-around; /* Distribute link columns */
    gap: 20px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.footer-nav-list a:hover {
    color: #AAD9BB; /* Lighter green on hover */
}

.footer-nav-list a .fas {
    color: #AAD9BB; /* Lighter green for dot icons */
    font-size: 0.7em;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 90px;
}

.map-placeholder {
    width: 250px;      /* Circle width */
    height: 250px;     /* Circle height */
    border-radius: 10%; /* Makes container circular */
    overflow: hidden;  /* Clips the iframe inside circle */
    border: 5px solid #AAD9BB;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-color: #ccc; /* Optional fallback */
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
}


/* Footer Bottom - Copyright and Policy */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer-content-wrapper {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
        text-align: center; /* Center text for stacked columns */
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        min-width: unset; /* Remove min-width to allow full width */
        width: 100%;
        margin-bottom: 30px; /* Add space between stacked sections */
    }

    .footer-left {
        text-align: center;
    }

    .footer-left .get-in-touch {
        justify-content: center;
    }

    .footer-middle {
        flex-direction: row; /* Keep nav lists side-by-side if space allows */
        justify-content: center;
    }

    .footer-nav-list {
        margin: 0 15px; /* Add some margin between the two nav lists */
    }

    .footer-right {
        margin-bottom: 0; /* No extra margin for the last section */
    }
}

@media (max-width: 600px) {
    .footer-middle {
        flex-direction: column; /* Stack nav lists on very small screens */
        align-items: center;
    }
    .footer-nav-list {
        margin: 0 0 20px 0; /* Space out stacked lists */
    }
}



.loc{
  text-decoration: none;
  color: black;
}





/* =========================
   🔹 GLOBAL RESPONSIVE FIXES
   ========================= */

/* General container scaling */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Prevent zoom jump on mobile */
img, video {
  max-width: 100%;
  height: auto;
}




