
    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #f5f2ec;
      color: #3b2e2e;
      line-height: 1.6;
    }

    /* Navbar */
    header {
      background-color: #2f4f2f;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    nav{
      background-color: #2f4f2f;
    }

    header h1 {
      color: #f2e8d5;
      font-size: 28px;
    }

    nav ul {
  display: flex;
  
  
  /* flex-wrap: wrap; */
}


    nav a:hover {
      color: #c0a060;
    }


    /* Navbar Links */
/* Navbar Links */
nav a {
  text-decoration: none;
  color: #f2e8d5;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover Effect */
nav a:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}
header span:hover {
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
}

/* Active Link with pill-style */
header span.active{
   background: linear-gradient(135deg, #ffd700, #c0a060);
  color: #2f4f2f;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}
header span.active::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 30px;
  background: rgba(255, 215, 0, 0.3);
  filter: blur(10px);
  z-index: -1;
  animation: glowPulse 2s infinite alternate;
}

header span.active {
  color: #fff;
  background: linear-gradient(90deg, #c0a060, #6b4226);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(192,160,96,0.4);
  transition: all 0.3s ease-in-out;
}

div ul a.active{
background: linear-gradient(135deg, #ffd700, #c0a060);
  color: #2f4f2f;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}
div ul a.active::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 30px;
  background: rgba(255, 215, 0, 0.3);
  filter: blur(10px);
  z-index: -1;
  animation: glowPulse 2s infinite alternate;
}

div ul a.active {
  color: #fff;
  background: linear-gradient(90deg, #c0a060, #6b4226);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(192,160,96,0.4);
  transition: all 0.3s ease-in-out;
}




nav a.active {
  background: linear-gradient(135deg, #ffd700, #c0a060);
  color: #2f4f2f;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

/* Smooth "glow" animation */
nav a.active::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 30px;
  background: rgba(255, 215, 0, 0.3);
  filter: blur(10px);
  z-index: -1;
  animation: glowPulse 2s infinite alternate;
}

nav a.active {
  color: #fff;
  background: linear-gradient(90deg, #c0a060, #6b4226);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(192,160,96,0.4);
  transition: all 0.3s ease-in-out;
}

@keyframes glowPulse {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0.9;
  }
}

@media (max-width: 767px) {
  header {
    padding: 2px 4px !important; /* Mobile pe kam padding */
  }
  header img {
    height: 90px !important;
    width: 90px !important; /* Logo chhota ho jayega */
  }
  header span {
    font-size: 14px; /* Mobile pe active page text bhi chhota */
  }
}





   /* Hero Section */
/* Reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* Hero Section Full Body */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 300%; /* jitni slides hain */
  height: 100%;
}

.slide {
  flex: 1 0 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* full screen fit */
  display: block;
  border: none; /* koi border nahi */
}

/* Text Overlay */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  z-index: 2;
}

.hero-text h2 {
  font-size: 52px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 22px;
  margin-bottom: 20px;
}

.btn {
  background-color: #6b4226;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #4e2f1c;
}


/* Carousel Buttons & Dots */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  background: #fff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.7;
}

.dot.active {
  opacity: 1;
  background: #6b4226;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

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


    /* Products */
    .products {
      padding: 50px 20px;
      text-align: center;
    }

    .products h3 {
      font-size: 32px;
      margin-bottom: 30px;
      color: #2f4f2f;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .product {
      background-color: #fff;
      border: 2px solid #c9b79c;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s;
    }

    .product:hover {
      transform: scale(1.05);
    }

    .product img {
      width: 70px;
      margin-bottom: 10px;
    }

    .product h4 {
      margin: 10px 0;
      color: #6b4226;
    }

    /* About */
    .about {
      background-color: #f2e8d5;
      padding: 50px 20px;
      text-align: center;
    }

    .about h3 {
      font-size: 28px;
      color: #2f4f2f;
      margin-bottom: 20px;
    }

    .about p {
      max-width: 700px;
      margin: auto;
      font-size: 16px;
      color: #3b2e2e;
    }

    /* about us */
.about-container {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero */
.about-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(4, 27, 11, 0.888)), url('juice-bg.jpg') center/cover;
  color: #fff;
}
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

/* Intro */
.about-intro {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
  font-size: 1.1rem;
  padding: 0 20px;
}

/* Story */
.story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 60px 20px;
}
.story-text {
  flex: 1 1 45%;
}
.story-image {
  flex: 1 1 45%;
}
.story-image img {
  width: 100%;
  border-radius: 12px;
}
.btn {
  background: #6b4226;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.btn:hover { background: #4a2b1b; }

/* Values */
.values {
  text-align: center;
  padding: 60px 20px;
  background: #f7f7f7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.value {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Team */
.team {
  text-align: center;
  padding: 60px 20px;
  background: #f9f6f1;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2f4f2f;
  position: relative;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #c0a060;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #333;
}

.team-member p {
  font-size: 0.95rem;
  color: #777;
}


    /* Footer */
    .footer {
  background: #6b4226;
  color: #fff;
  padding: 50px 20px;
  margin-top: 10%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* responsive */
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  margin: 15px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #6b4226;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #ffcc66;
}

/* Social Icons */
.social-links a {
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffcc66;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}


    /* Responsive Design */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
      }

      .hero h2 {
        font-size: 32px;
      }

      .hero p {
        font-size: 16px;
      }

      .products h3 {
        font-size: 26px;
      }

      .about h3 {
        font-size: 24px;
      }
    }

    @media (max-width: 480px) {
      header h1 {
        font-size: 22px;
      }

      nav ul {
        width: 100%;
        align-items: flex-start;
      }

      .hero h2 {
        font-size: 26px;
      }

      .btn {
        font-size: 16px;
        padding: 10px 20px;
      }

      .product img {
        width: 60px;
      }
    }
  

     section {
      padding: 60px 20px;
      text-align: center;
    }

    h2 {
      font-size: 36px;
      margin-bottom: 40px;
      color: #2f4f2f;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: auto;
    }

    .menu-card {
      background: #fff;
      border: 2px solid #c9b79c;
      border-radius: 12px;
      padding: 30px 20px;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    .menu-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .menu-card img {
      width: 70px;
      margin-bottom: 15px;
    }

    .menu-card h3 {
      font-size: 20px;
      color: #6b4226;
      margin-bottom: 8px;
    }

    .menu-card p {
      font-size: 14px;
      color: #3b2e2e;
    }

    @media (max-width: 480px) {
      h2 {
        font-size: 28px;
      }
    }





     .carousel {
      position: relative;
      max-width: 100%;
      height: 400px;
      margin: auto;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      min-width: 100%;
      height: 100%;
    }

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

    /* Navigation Buttons */
    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      font-size: 24px;
      padding: 10px 16px;
      cursor: pointer;
      border-radius: 50%;
      transition: background 0.3s;
    }

    .prev:hover, .next:hover {
      background: rgba(0,0,0,0.8);
    }

    .prev { left: 15px; }
    .next { right: 15px; }

    /* Dots */
    .dots {
      text-align: center;
      position: absolute;
      bottom: 15px;
      width: 100%;
    }

    .dot {
      height: 12px;
      width: 12px;
      margin: 0 4px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background 0.3s;
    }

    .active {
      background-color: #6b4226;
    }

    @media (max-width: 600px) {
      .carousel { height: 250px; }
      .prev, .next { font-size: 18px; padding: 8px 12px; }
    }


    /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding: 60px 40px;
      background: #f0fdf4;
      text-align: center;
    }
    .feature {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .feature h3 {
      margin: 10px 0;
      color: #047857;
    }

    /* Testimonials */
    .testimonials {
      padding: 60px 40px;
      background: #f0fdf4;
      text-align: center;
    }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: auto;
    }
    .testimonial {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      font-style: italic;
    }

     .story {
    padding: 80px 40px;
    background: #fff;
  }
  .story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }
  .story-text {
    flex: 1;
    min-width: 300px;
  }
  .story-text h2 {
    font-size: 36px;
    color: #065f46;
    margin-bottom: 20px;
  }
  .story-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .story-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  .story-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  @media (max-width: 768px) {
    .story-content {
      flex-direction: column;
      text-align: center;
    }
    .story-text h2 {
      font-size: 28px;
    }
  }




.card-content {
  flex: 1 1 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* text upar */
  height: 100%;
}

.card-actions {
  margin-top: auto; /* button hamesha niche */
}

.card-actions .btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  padding: 14px 24px;
  background: #6b4226;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: auto;
}
.card-actions .btn:hover {
  background: #e09a00;
}





    /* vegetable juices */
     h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #333;
    }

   /* moktail */
   
    .menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Har row me 3 card */
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto; /* center align */
}


    .card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      text-align: center;
      overflow: hidden;
      transition: transform 0.3s ease;
      position: relative;
      
    }
    .card:hover {
      transform: translateY(-6px);
    }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card h2 {
      margin: 15px 0 10px;
      font-size: 1.3rem;
      color: #333;
    }
    .price {
      color:  #e36f21;
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 1.1rem;
    }
    .btn {
      display: inline-block;
      background:  #6b4226;
      color: #fff;
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 6px;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background 0.3s ease;
    }
    .btn:hover {
      background:  #b0724a;
    }

    
    /* furqan css */
      /* frenchising */

  .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 40px 0;
      display: flex;
      gap: 30px;
    }

    .left, .right {
      flex: 1;
    }

    .franchise-title {
      font-size: 28px;
      color: #28a745;
      margin-bottom: 15px;
    }

    .franchise-info {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .franchise-info ul {
      list-style: none;
      margin-top: 15px;
    }

    .franchise-info ul li {
      margin-bottom: 8px;
    }

    .franchise-info img {
      width: 100%;
      border-radius: 10px;
      margin-top: 15px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .form-card {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .form-card h3 {
      text-align: center;
      margin-bottom: 20px;
      color: #444;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 15px;
    }

    .form-group textarea {
      resize: none;
    }

    .btn-submit {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 6px;
      background: #6b4226;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-submit:hover {
      background: #4e2f1c;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .container {
        flex-direction: column;
      }
    }
    
  /* catering */
.catering-container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
      text-align: center;
    }

    .catering-container h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #6b4226;
    }

    .catering-container p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #555;
    }

    .catering-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 per row */
      gap: 20px;
    }

    .catering-grid img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
      object-fit: fill;
    }

    .catering-grid img:hover {
      transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .catering-grid {
        grid-template-columns: repeat(2, 1fr); /* tablet pe 2 */
      }
    }

    @media (max-width: 600px) {
      .catering-grid {
        grid-template-columns: 1fr; /* mobile pe 1 */
      }
    }
 /* Modal Styling */
  .modal2 {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px; /* thoda breathing space */
  box-sizing: border-box;
}

.modal2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal2-content img {
  max-width: 90%;
  max-height: 80vh;   /* viewport ke andar rahe */
  border-radius: 10px;
  object-fit: contain; /* stretch nahi hogi */
}

.modal2 button {
  margin-top: 20px;
  padding: 12px 24px;
  background: #6b4226;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.modal2 button:hover {
  background: #8c5a36;
}

.close {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}


    /* Responsive */
    @media (max-width: 992px) {
      .catering-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .catering-grid {
        grid-template-columns: 1fr;
      }
    }

/* hassan css */
/* File: styles.css */

.feedback-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 40px;
  }

  .form-side {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }

  .image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-side img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
  }

  .form label {
    display: block;
    margin-top: 12px;
    font-weight: bold;
  }

  .form input, 
  .form select, 
  .form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .btn {
    margin-top: 15px;
    padding: 12px;
    background: #6b4226;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .btn:hover {
    background: #4e2f1c;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .feedback-section {
      flex-direction: column;
    }
    .image-side img {
      max-width: 100%;
    }
  }


  /* Same card, form, btn classes as feedback */

.form-image {
  flex: 1;
  min-height: 400px;
}

.form-content {
  flex: 1;
  padding: 30px;
}

.form-layout {
  display: flex;
  flex-wrap: wrap;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* sirf image box ke andar fill ho */
  display: block;
}


/* Responsive */
@media (max-width: 768px) {
  .form-layout {
    flex-direction: column;
  }

}

 

/* store location */
.store-locations {
  padding: 50px;
  background: #f9f9f9;
  text-align: center;
}

.store-locations h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #333;
}

.store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px;
}

.store.reverse {
  flex-direction: row-reverse;
}

.details {
  flex: 1;
  text-align: left;
}

.details h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #27ae60;
}

.details p {
  margin: 5px 0;
  color: #555;
}

.map {
  flex: 1;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .store {
    flex-direction: column;
  }
  .store.reverse {
    flex-direction: column;
  }
  .details {
    text-align: center;
  }
}



 .blur-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.blur-bg {
  background: url('crousal image/assortment-fruit-juices.jpg') no-repeat center center/cover;
  filter: blur(8px) brightness(0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
}

.blur-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.blur-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.blur-content p {
  font-size: 1.5rem;
  margin-top: 10px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .blur-content h1 {
    font-size: 2.5rem;
  }
  .blur-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .blur-content h1 {
    font-size: 2rem;
  }
  .blur-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blur-content h1 {
    font-size: 1.6rem;
  }
  .blur-content p {
    font-size: 0.9rem;
  }
}

.previous-btn {
  text-align: center;
  margin: 30px 0; /* footer se upar gap */
}

.previous-btn button {
  background: #28a745; /* green button */
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  background: linear-gradient(90deg, rgb(192, 160, 96), rgb(107, 66, 38));
}

.previous-btn button:hover {
  background: linear-gradient(90deg, rgb(137, 129, 113), rgb(107, 66, 38));
}

