*{
    margin: 0;
    padding: 0;
}
body {
    font-family: "Heebo", sans-serif;
    margin: 0;
    padding: 0;

    background: linear-gradient(180deg, #f8f6f0 0%, #ecfdf5 100%);

    -webkit-text-size-adjust: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}




/* --------------------------
   Premium glass navbar (final)
   -------------------------- */

/* NAVBAR BASE */
.navbar {
  position: relative;
  left: 0;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* GREEN GLASS LOOK */
  background: rgba(220, 252, 231, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-bottom: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);

  background-size: cover;
  background-position: center;
  z-index: 1000;
  padding: 0 20px;
  box-sizing: border-box;
}

/* LEFT AREA */
.nav-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 30px;
  height: 100%;
}

@media (max-width: 768px) {
  .navbar {
    height: 60px;
    padding: 0 10px;
  }

  .nav-left {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .logo img {
    height: 40px;
    display: block;
    margin: 0;
    padding: 0;
  }

 .checkbtn {
  font-size: 30px;
  cursor: pointer;
  color: #e67e22; /* logo matching orange */
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
}
}

/* NAVBAR CONTAINER */
.navbar-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 10px;
}

/* NAV LINKS */
.navbar a {
  color: #f97316;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.22s ease-in-out;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(249,115,22,0.25);
}

/* Hover */
.navbar a:hover {
  background: rgba(249,115,22,0.16);
  color: #ea580c;
  box-shadow: 0 6px 18px rgba(249,115,22,0.18);
  transform: translateY(-2px);
}

/* Active */
.navbar a:focus,
.navbar a.active {
  outline: none;
  background: rgba(251,146,60,0.18);
  color: #c2410c;
  box-shadow: 0 8px 24px rgba(249,115,22,0.22);
}

/* Toggle button */
.checkbtn {
  display: none;
  font-size: 1.8em;
  color: #fb923c;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease-in-out, color 0.3s ease;
  position: absolute;
  right: 20px;
}

.checkbtn:hover {
  transform: scale(1.1);
  color: #f97316;
}

.checkbtn:active,
.checkbtn:focus {
  color: #ea580c;
  outline: none;
}#check {
  display: none;
}
/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    height: 64px;
    padding: 0 14px;
  }

  .nav-left {
    margin-left: 8px;
    gap: 12px;
  }

  .logo img { height: 42px; }

  .navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1012;
  }

  /* GREEN TOGGLE */
  .checkbtn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 0;
  border-radius: 12px;
  border: 1px solid rgba(249,115,22,0.38);
  background: linear-gradient(145deg, rgba(255,237,213,0.95), rgba(253,186,116,0.85));
  box-shadow: 0 10px 24px rgba(249,115,22,0.24);
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 1015;
  color: #ea580c;
}
  .checkbtn::before {
    content: '\2630';
    font-size: 20px;
    font-weight: 700;
  }

  #check:checked + .checkbtn::before {
    content: '\2715';
  }

  .checkbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(22,163,74,0.3);
  }

  /* MENU BG */
  .navbar-container {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    width: 100% !important;
    background: rgba(6, 78, 59, 0.45);
    backdrop-filter: blur(6px) saturate(115%);
    padding: 86px 14px 20px;
    gap: 12px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px);
  }

  .navbar-container::before {
    content: "Belpatra Foods";
    position: absolute;
    top: 26px;
    right: 18px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ecfdf5;
    border: 1px solid rgba(34,197,94,0.4);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(34,197,94,0.3), rgba(132,204,22,0.3));
  }

  #check:checked ~ .navbar-container {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* MENU LINKS */
  .navbar a {
    display: block;
    width: min(86vw, 340px);
    margin-left: auto;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid rgba(34,197,94,0.4);
    color: #ecfdf5;
    font-weight: 700;
    font-size: 1.02rem;
    background: linear-gradient(140deg, rgba(22,163,74,0.9), rgba(132,204,22,0.85));
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
    transition: transform .22s ease;
  }

  .navbar a:hover {
    background: linear-gradient(140deg, rgba(21,128,61,0.9), rgba(22,163,74,0.9));
    color: #f0fdf4;
    border-color: rgba(134,239,172,0.6);
    transform: translateX(-4px);
  }

  .navbar a:focus {
    outline: 3px solid rgba(134,239,172,0.5);
    outline-offset: 3px;
  }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .navbar, .navbar * { transition: none !important; animation: none !important; }
}
/* Main Section Styles */
/* Base CSS */
.main-section {
    margin-top: 5%;
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #16a34a, #84cc16, #166534);
}

.product {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    width: 90%;
    min-height: 540px;
}

.product-left,.product-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    min-height: 540px;
}

.product-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.18);
}

.product-right {
    padding: 28px;
    align-items: flex-start;
    justify-content: flex-start;
    background: #f0fdf4;
    border: 1px solid rgba(34,197,94,0.25);
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.14);
}

.product-right h1 {
    margin: 0 0 14px;
    font-size: 2.2em;
    color: #166534;
}

.product-right p {
    font-size: 1.04em;
    line-height: 1.72;
    width: 100%;
    color: #15803d;
    margin: 0 0 12px;
}

.cta {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background: linear-gradient(135deg, #16a34a, #84cc16);
    color: #ecfdf5;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(22,163,74,0.25);
}

.cta:hover {
    background: linear-gradient(135deg, #15803d, #16a34a);
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

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

    .product {
        flex-direction: column;
        min-height: unset;
    }

    .product-left, .product-right {
        width: 100%;
        min-height: unset;
    }

    .product-left img {
        height: auto;
        max-height: 360px;
    }

    .product-right h1 {
        font-size: 1.8em;
    }

    .product-right p {
      font-size: 1em;
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      max-height: 4.5em;
    }

    .product-right p.expanded {
      -webkit-line-clamp: unset;
      line-clamp: none;
      max-height: none;
    }

    .cta {
        width: 80%;
    }
}

/* Certifications */
.certification-showcase {
    width: 100%;
    margin-top: 8px;
}

.certification-title {
    margin: 0 0 12px;
    font-size: 1.6rem;
    color: #166534;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 12px;
}

.certification-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 10px 14px;
    border-radius: 18px;

    background: #ecfdf5;
    border: 1px solid rgba(34,197,94,0.4);
    box-shadow: 0 6px 16px rgba(22,163,74,0.12);

    color: #166534;
    font-size: 1.1rem;
    font-weight: 700;
}

.certification-icon {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(34,197,94,0.4);
    color: #16a34a;
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .certification-grid {
        grid-template-columns: repeat(3, minmax(130px, 1fr));
    }
}

@media (max-width: 768px) {
    .certification-title {
        font-size: 1.35rem;
    }
    .certification-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 10px;
    }
    .certification-pill {
        min-height: 56px;
        font-size: 1rem;
        border-radius: 14px;
    }
}/* Main Advantages Section */
/* Advantages Section */
.advantages {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8EDE3;
    padding: 40px 20px;
}

/* Container for Text and Image */
.advantages-container {
    display: flex;
    /* flex-direction: row; */
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap; /* Enable wrapping for smaller screens */
}

/* Left Section: Text Content */
.advantages-left {
    width: 45%;
    text-align: left;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    line-height: 1.6;
    padding: 5% 7%;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.advantages-left h2 {
    font-size: 1.8rem;
    color: #9a3412;
    margin-bottom: 15px;
}

.advantages-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantages-left ul {
    list-style: none;
    padding: 0;
    margin: 0;

/* ===== Responsive hero & lazy-bg helper ===== */
.hero-carousel { width:100%; }
.hero-slide {
  background-size: cover;
  background-position: center center;
  min-height: 300px;
  transition: background-image 0.36s ease-in-out, opacity 0.3s ease;
  background-repeat: no-repeat;
}
.hero-slide.bg-lazy { background-color: #efe6db; opacity: 0.95; }

@media (max-width: 768px) {
  .hero-slide { min-height: 160px; }
  .logo img { height: 34px; }
}

/* Ensure all images are responsive and don't overflow */
img { max-width: 100%; height: auto; display: block; }

/* Mobile nav small refinements */
@media (max-width:420px){
  .navbar-container { width: 100% !important; }
  .navbar a { font-size: 15px; padding: 14px 14px; }
}

/* Mobile usability improvements */
@media (max-width: 480px) {
  /* make touch targets larger and full-width for CTAs */
  .navbar a { padding: 14px 14px; font-size: 16px; }
  .checkbtn { width: 44px; height: 44px; font-size: 0; padding: 0; }
  .buy-now, .cta, .btn { width: 100%; box-sizing: border-box; }
  /* reduce hero height on smallest screens */
  .hero-slide { min-height: 140px; }
}

/* Gallery layout responsive grid */
.gallery { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); align-items: center; }
.gallery img { width: 100%; height: auto; object-fit: cover; border-radius: 6px; }

/* Lightbox improvements for mobile */
.lightbox { display:none; position:fixed; inset:0; background:rgba(128,0,64,0.9); z-index:2000; align-items:center; justify-content:center; padding:16px; }
.lightbox .lightbox-content { max-width:92vw; max-height:92vh; width:auto; height:auto; border-radius:6px; box-shadow:0 8px 30px rgba(128,0,64,0.6); }
.lightbox .close { position:absolute; top:12px; right:14px; font-size:28px; color:#ff4da6; background:transparent; border:none; }

/* Focus-visible for keyboard users */
:focus { outline: none; }
*:focus-visible { outline: 3px solid #ff4da6; outline-offset: 2px; }
/* Ensure form controls are full width on small screens */
@media (max-width: 768px){
  input, select, textarea { width: 100%; box-sizing: border-box; }
}
}

.advantages-left ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1rem;
}



/* Right Section: Image */
.advantages-right {
    width: 45%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantages-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .advantages-container {
        flex-direction: column;
        align-items: stretch;
    }

  @media (max-width: 768px) {
    .advantages-left,
    .advantages-right {
        flex: unset;
        max-width: 100%;
    }
}


    .advantages-left h2 {
        font-size: 1.5rem;
    }

    .advantages-left ul li {
        font-size: 0.95rem;
    }
}


/* Typography */
h2 {
    font-size: 1.8rem; /* Heading size */
    color: #9a3412; /* Dark text color */
    margin-bottom: 15px; /* Space below heading */
}

p {
    font-size: 1rem; /* Paragraph text size */
    color: #555; /* Slightly lighter text color */
    margin-bottom: 20px; /* Space below paragraph */
}

ul {
    list-style-type: disc; /* Bullet points for list */
    padding-left: 20px; /* Indent list */
    margin-bottom: 20px; /* Add spacing below list */
    color: #333; /* Dark text color */
}

ul li {
    margin-bottom: 10px; /* Add space between list items */
}

/* Call-to-Action Button */
.cta {
    display: inline-block; /* Block element for button */
    padding: 12px 30px; /* Padding for button */
    background-color: #e36b1c; /* Button color */
    color: #fff; /* Button text color */
    border-radius: 5px; /* Rounded corners for button */
    font-weight: bold; /* Bold text */
    text-decoration: none; /* Remove underline */
    margin-top: 15px; /* Space above button */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.cta:hover {
    background-color: #d15f17; /* Darker shade on hover */
}

/* Responsive Design: Medium Screens */
@media (max-width: 768px) {
    .advantages-container {
        width: 90%; /* Adjust width for better spacing */
             flex-direction: column;
        align-items: stretch; /* Center align */
    }

    .advantages-left,
    .advantages-right {
        flex: 1 1 100%; /* Full width on small screens */
        width: 100%; /* Full width on small screens */
    }

    .advantages-right {
        margin-top: 20px; /* Space above image on small screens */
    }
}

/* Responsive Design: Small Screens */
@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem; /* Smaller heading size on mobile */
    }

    p, ul {
        font-size: 0.9rem; /* Smaller text for better fit */
    }

    .cta {
        padding: 10px 20px; /* Adjust padding for smaller screens */
        font-size: 0.9rem; /* Adjust button font size */
    }
}


/* Reach Section Styles */

.reach {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60vh;
    background-color: #F8EDE3;
    
}
.reach-right {
    width: 50%;
    height: 80vh;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.reach-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reach-left img {
    width: 80%;
    height: 55vh;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reach-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80vh;
    padding-right: 40px;
}

.reach-right h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.reach-right p {
    font-size: 1.2em;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px) {
    .reach {
        width: 100%;
        flex-direction: column;
        height: auto; /* Adjust height for small screens */
        overflow: hidden; /* Prevent overflow */
        gap : 40px;
    }

    .reach-left,
    .reach-right {
        width: 120%;
          flex: 1 1 100%;
      
    }

    .reach-left {
        order: 2; /* Move .reach-left to the bottom */
        
    }

    .reach-right {
        order: 1; /* Move .reach-right to the top */
        padding: 0 10px; /* Add some padding for better spacing */
    }

    .reach-right h2 {
        font-size: 1.8em;
    }

    .reach-right p {
        font-size: 1em;
    }
}

/* General styles for navbar */
.navbar-container {
    display: flex;
    justify-content: center;
    /* background-color: #DFD3C3; */
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.navbar-container a {
    color: white;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
}

/* Button styling */
.toggle-btn {
    display: none; /* Initially hidden */
    /* background-color: #DFD3C3; */
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Hover effects */
.navbar-container a:hover {
    background-color: #ddd;
    color: black;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    /* Show the button for mobile view */
    .toggle-btn {
        display: block;
    }

    /* Initially hide the navbar */
    .navbar-container {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 50px;
        right: 0;
        background-color: #e2ddc17a;
    }

    /* Display navbar links in column format */
    .navbar-container a {
        text-align: left;
        /* padding: 12px; */
        border-bottom: 1px solid #444;
    }
}


.logo {
    /* Align the logo container to the left */
    display: flex;
    justify-content: flex-start; /* Align to the left */
    align-items: center;         /* Vertically center the logo */
    /* margin: 20px;                Add space around the logo */
}

.logo img {
    /* Control the size of the logo */
    max-width: 100%;          /* Make sure the logo doesn't overflow */
    height: auto;             /* Maintain the logo's aspect ratio */
    width: 200px;             /* Set a fixed width, adjust as needed */
    object-fit: contain;      /* Ensure the image scales properly */
}

/* Optional: Add a background color or other styles to the logo container */

.notification-top{
    position: fixed;
    top: 0;
    background-color: #ec4899;
    color: white;
    /* padding: 10px; */
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    width: 90%;
   
}


.reviews {
    padding: 2em 0;
    background-color:  #F8EDE3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.reviews-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
    
}

.review {
    background-color:  #8D493A;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    flex: 1;
    max-width: 22%;
}
.review p{
    color: white;
}

.review img {
    border-radius: 50%;
    margin-bottom: 10px;
}
@media (max-width: 992px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Mobile View (Swipeable) ===== */
@media (max-width: 576px) {
    .reviews-container {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .review {
        min-width: 85%;
        scroll-snap-align: center;
        padding: 18px;
    }

    .customer-image {
        width: 60px;
        height: 60px;
    }

    .review p {
        font-size: 15px;
    }

    /* Hide scrollbar (optional) */
    .reviews-container::-webkit-scrollbar {
        display: none;
    }
}

.stars {
    color: #ffc107;
}
/* FINAL — WORKING GEOMETRIC LINE FOOTER */
.premium-footer {
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
  position: relative;
  overflow: hidden;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #fed7aa;
  box-shadow: 0 -4px 18px rgba(230,126,34,0.08);
}

/* ORANGE + GREEN ACCENT */
.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(230,126,34,0.18) 0%, transparent 60%),
    linear-gradient(300deg, rgba(22,101,52,0.10) 20%, transparent 70%),
    linear-gradient(45deg, rgba(245,158,11,0.15) 10%, transparent 80%);
  opacity: 1;
  z-index: 1;
}

/* CONTENT ABOVE BACKGROUND */
.premium-footer-container,
.footer-section,
.footer-section *,
.footer-bottom {
  position: relative;
  z-index: 5;
}

/* GRID */
.premium-footer-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 45px;
}

/* TITLES */
.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #e67e22;
  font-weight: 600;
  position: relative;
}

/* ACCENT LINE */
.footer-section h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #166534;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* TEXT + LINKS */
.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #9a3412;
  text-decoration: none;
  transition: 0.3s ease;
}

/* HOVER */
.footer-section a:hover {
  color: #166534;
  padding-left: 4px;
}

/* SOCIAL */
.footer-social a {
  margin-right: 14px;
  display: inline-block;
  color: #e67e22;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #166534;
  transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 30px;
  border-top: 1px solid #fed7aa;
}

.footer-bottom p {
  font-size: 13px;
  color: #9a3412;
}

/* MOBILE */
@media (max-width: 768px) {
  .premium-footer-container {
    gap: 30px;
  }

  .footer-section h3,
  .footer-social {
    text-align: center;
  }

  .footer-social a {
    display: inline-block;
    margin: 8px;
  }
}
/* Existing styles */

/* Existing styles */

/* Updated Popup Styles */
/* POPUP BACKGROUND */
.popup-container{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  z-index:2147483647;
  justify-content:center;
  align-items:center;
}

/* POPUP BOX */
.popup{
  background:#fff;
  padding:2rem;
  border-radius:8px;
  max-width:360px;
  width:90%;
  text-align:center;
  position:relative;
  box-shadow:0 10px 40px rgba(0,0,0,0.25);
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:10px;
  right:-150px;
  background:none;
  border:none;
  font-size:1.5rem;
  cursor:pointer;
}

/* INPUT */
.popup input{
  width:100%;
  margin-bottom:1rem;
  padding:0.5rem;
}

/* BUTTON */
.popup button[type="submit"]{
  padding:0.5rem 1rem;
  cursor:pointer;
}

/* LOADER */
#loader{
  display:none;
  margin-top:10px;
}

.loader-circle{
  border:4px solid #f3f3f3;
  border-top:4px solid #000;
  border-radius:50%;
  width:28px;
  height:28px;
  margin:10px auto;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}

/* THANK YOU */
.thank-you{
  display:none;
  margin-top:1rem;
  font-weight:600;
}

.contact-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
}

.popup-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.close-btn {
    align-self: flex-end;
    cursor: pointer;
    font-size: 1.5em;
    padding: 5px;
    color: #333;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #e74c3c;
}

.contact-popup h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
}

.contact-popup form label {
    margin: 10px 0 5px;
    color: #333;
}

.contact-popup form input,
.contact-popup form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-popup form button {
    padding: 10px 20px;
    background-color: #ffc107;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-popup form button:hover {
    background-color: #e0a800;
}

/* Animation for FadeIn Effect */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* landig page */
/* Existing styles */

.landing {
    height: 100vh;
    background: url('image/bbb-6.html') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.landing-content {
    max-width: 80%;
}

.landing h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0.5em 0;
}

.landing p {
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 10px;
    }

    .navbar a {
        padding: 1px;
        border-bottom: 0;
    }

    .product {
        flex-direction: column;
    }

    .advantages {
        flex-direction: column;
    }
    .reach {
        display: flex;
        align-items: center;
        padding: 20px;
        margin: 20px 0;
    }
    
    .reach-left {
        flex: 1;
        text-align: center;
    }
    
    .reach-left .map {
        max-width: 100%;
        height: auto;
        border-radius: 10px; /* Optional: adds rounded corners */
    }
    
    .reach-right {
        flex: 2;
        padding-left: 20px;
    }
    
    .reach-right h2 {
        font-size: 24px; /* Adjust font size as needed */
        margin-bottom: 10px;
    }
    
    .info-box {
        border: 1px solid #ccc; /* Light gray border */
        padding: 15px; /* Space inside the box */
        background-color: #f9f9f9; /* Light background color for the box */
        border-radius: 8px; /* Rounded corners */
        margin-top: 10px; /* Space above the box */
    }
    
    .info-box p {
        font-size: 16px; /* Adjust font size as needed */
        line-height: 1.5; /* Improve readability */
        color: #333; /* Text color */
    }
    .hidden-keywords {
        display: none; /* This will hide the keywords from view */
    }
        
    
    .map {
        width: 100%; /* Ensure the image is responsive */
        height: auto; /* Maintain aspect ratio */
        border-radius: 10px; /* Optional: add rounded corners to the image */
    }
    
    h2 {
        color: #333; /* Dark color for the heading */
        margin-bottom: 10px; /* Space below the heading */
    }
    
    p {
        color: #555; /* Lighter color for the paragraph text */
        line-height: 1.6; /* Improve readability with line height */
    }
    

    .review {
        max-width: 100%;
    }

    footer {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        width: 100%;
    }

    .landing h1 {
        font-size: 2em;
    }

    .landing p {
        font-size: 1em;
    }
}
/* Floating WhatsApp button */
.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #25d366, #1fb95a);
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(18, 92, 46, 0.35);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.whatsapp-button:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(18, 92, 46, 0.42);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.42);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .whatsapp-button {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
  .whatsapp-button img {
    width: 27px;
    height: 27px;
  }
}
/* product */
/* Product Category Section Styles */
/* =========================================
   PREMIUM PRODUCT CATEGORY (UPDATED)
   ========================================= */

.product-category {
  text-align: center;
  padding: 70px 0;
  background: linear-gradient(135deg, #e67e22, #f59e0b, #f0fdf4);
}

/* Title */
.product-category h2 {
  margin-bottom: 40px;
  font-size: 2.4em;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(22,101,52,0.25);
}

/* Grid Layout */
.category-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  width: 92%;
  margin: auto;
}

/* Card */
.category-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(230,126,34,0.10);
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid rgba(230,126,34,0.12);
}

/* Hover */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(230,126,34,0.22);
}

/* Image */
.category-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: transform .4s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

/* Title */
.category-card h3 {
  font-size: 1.35rem;
  margin: 10px 0;
  color: #e67e22;
  font-weight: 700;
}

/* Description */.category-card span {
  font-size: 0.95rem;
  color: #c2410c;
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
  background: rgba(255, 237, 213, 0.55);
  padding: 8px 12px;
  border-radius: 10px;
  border-left: 3px solid #e67e22;
}

/* Package text */
.category-card p {
  font-size: 0.95rem;
  color: #9a3412;
  margin-bottom: 15px;
  font-weight: 600;
  background: rgba(255, 247, 237, 0.75);
  padding: 8px 12px;
  border-radius: 10px;
  border-left: 3px solid #f59e0b;
}
/* BUY BUTTON */
.buy-now {
  display: inline-block;
  background: linear-gradient(135deg, #e67e22, #f59e0b);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(230,126,34,0.25);
}

/* Hover */
.buy-now:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #166534, #22c55e);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width:768px) {
  .category-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .category-card img {
    height: 200px;
  }

  .product-category h2 {
    font-size: 1.8rem;
  }
}
/* CONTACT */
.contact-form-section { 
    max-width: 600px; width: 100%; 
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: auto;
    margin-top: 80px;
}

.contact-form-section h1 { 
    text-align: center; 
    color: #166534; 
    margin-bottom: 20px; 
}

.contact-form-section label { 
    margin-bottom: 5px; 
    color: #334155; 
}

.contact-form-section input, 
.contact-form-section textarea {
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 18px;
    width: calc(100% - 30px);
}

.contact-form-section button { 
    padding: 15px; 
    background-color: #16a34a; 
    color: white; 
    border: none; 
    border-radius: 4px; 
    font-size: 18px; 
    cursor: pointer; 
}

.contact-form-section button:hover { 
    background-color: #15803d; 
}

/* NAV LINKS */
.navbar-container a {
    color: #1f2937;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.navbar-container a:hover {
    background-color: rgba(34,197,94,0.25);
}

.hidden-keywords {
    display: none;
}/* Gallery Section */
#gallery-section {
    font-family: "Inter", "Poppins", "Segoe UI", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #fff7ed 0%, #f0fdf4 100%);
    padding: 34px 0;
    margin-top: 50px;
}

#gallery-section h1 {
    margin: 0 0 20px;
    font-size: clamp(1.7rem, 1.35rem + 1vw, 2.2rem);
    color: #e67e22;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 12px rgba(22,101,52,0.18);
}

#gallery-section .gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: min(1200px, 92%);
    margin: 0 auto;
}

#gallery-section .gallery img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(230,126,34,0.12);
    box-shadow: 0 10px 24px rgba(230,126,34,0.10);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    cursor: pointer;
}

#gallery-section .gallery img:hover {
    transform: translateY(-4px);
    border-color: rgba(230,126,34,0.45);
    box-shadow: 0 16px 30px rgba(22,101,52,0.15);
}

/* Featured tile rhythm */
#gallery-section .gallery img:nth-child(1),
#gallery-section .gallery img:nth-child(8),
#gallery-section .gallery img:nth-child(13) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

#gallery-section .gallery img:nth-child(5),
#gallery-section .gallery img:nth-child(11) {
    aspect-ratio: 1 / 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.88);
}

/* image */
.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* caption */
#caption {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    color: #fff7ed;
    font-size: 15px;
    font-weight: 600;
}

/* close button */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox .close:hover {
    color: #e67e22;
}

/* Responsive */
@media (max-width: 800px) {
    #gallery-section h1 { font-size: 1.5em; }

    #gallery-section .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    #gallery-section .gallery img { min-height: 180px; }

    #gallery-section .gallery img:nth-child(1),
    #gallery-section .gallery img:nth-child(8),
    #gallery-section .gallery img:nth-child(13) {
        grid-column: span 2;
    }

    .lightbox-content { margin-top: 50%; }
}

@media (max-width: 400px) {
    #gallery-section h1 { font-size: 1.2em; }

    #gallery-section .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    #gallery-section .gallery img {
        min-height: 210px;
        aspect-ratio: 4 / 3;
    }

    #gallery-section .gallery img:nth-child(1),
    #gallery-section .gallery img:nth-child(8),
    #gallery-section .gallery img:nth-child(13) {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230,126,34,0.35);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
    animation: slideInLeft 0.5s ease-out;
}

.modal-content {
    background: linear-gradient(45deg, #e67e22, #f59e0b);
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0px 4px 12px rgba(22,101,52,0.25);
    position: relative;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.close:hover {
    color: #dcfce7;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.modal-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
}

.modal-content p {
    margin-bottom: 15px;
    text-align: center;
    font-size: 16px;
}

.modal-content button {
    background-color: #166534;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.modal-content button:hover {
    background-color: #14532d;
}/* Form Container */
#purchaseForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

#purchaseForm label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

#purchaseForm input,
#purchaseForm textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

#purchaseForm textarea {
    resize: vertical;
    min-height: 100px;
}

#purchaseForm button {
    padding: 12px;
    background-color: #4CAF50;
    color: #DFD3C3;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#purchaseForm button:hover {
    background-color: #45a049;
}

#purchaseForm p {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

/* Responsive Design for smaller screens */
@media (max-width: 600px) {
    #purchaseForm {
        width: 90%;
        padding: 15px;
    }

    #purchaseForm button {
        font-size: 14px;
    }
}
/* Container for the calculator */
/* Default styles for small screens (mobile) */
#IncotermCalculator {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, #e0f7fa, #ffffff);
      margin: 0;
      padding: 0;
}
   
.containerCalculator {
  max-width: 90%;
  width: 550px;
  margin: 30px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-in-out;
  /* transition: background 0.3s, color 0.3s; */
}
#totalPrice {
  text-align: center;
  text-decoration: solid;
    font-size: 20px;
    font-weight: bold;
}

body.dark-mode .containerCalculator {
  background: #1f1f1f;
  color: #e0e0e0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h2, h3, h4 {
  text-align: center;
  color: #00695c;
}

body.dark-mode h2, body.dark-mode h3, body.dark-mode h4 {
  color: #4dd0e1;
}

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

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}


select, button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

select:focus, button:focus {
  border-color: #00897b;
  outline: none;
}

button {
  background: #00897b;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #00695c;
}

#resultBox, #responsibilityBox {
  display: none;
  margin-top: 25px;
  background: #e0f2f1;
  padding: 20px;
  border-radius: 12px;
  animation: fadeIn 0.5s ease-in;
}

ul {
  list-style: none;
  padding: 0;
}

/* ul li::before {
  content: '✅';
  margin-right: 8px;
} */

.responsibility-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.responsibility-columns > div {
  flex: 1;
  min-width: 130px;
}

.loader {
  display: none;
  margin: 20px auto;
  border: 6px solid #ccc;
  border-top: 6px solid #00796b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mfu-label {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  margin-top: 15px;
  text-align: center;
}

.tooltip-content {
  display: none;
  position: absolute;
  background: #ffffff;
  padding: 10px;
  border: 1px solid #ccc;
  z-index: 10;
  width: 250px;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 14px;
}

.tooltip:hover .tooltip-content {
  display: block;
}

@media (max-width: 600px) {
  .containerCalculator {
    padding: 20px;
  }

  select, button {
    font-size: 15px;
    padding: 10px;
  }
}
@media print {
  /* Hide everything */
  body * {
    display: none !important;
  }
  /* Only show the calculator section */
  .containerCalculator,
  .containerCalculator * {
    display: block !important;
  }
  /* Position the calculator at the top */
  .containerCalculator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}



.foxnut {
    position: absolute;
    width: 80%;
    height: 40px;
    background: url('front/image/onemakhana.html') no-repeat center/cover;
    border-radius: 50%;
    background-size: contain;
    opacity: 0.9;
    z-index: 1000;
}
@media (max-width: auto) {
    body{overflow-x: hidden;}
    .foxnut {
        width: 40px;        /* Adjust width to fit properly in smaller screens */
        left: 15%;         /* Centered for smaller width */
    }
    #foxnut{
        width: 40px;
    }
}
.customer-image {
    width: 100px; /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
    margin: 10px; /* Optional: Add some margin for spacing */
}


.conuntr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #f0f8ff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    max-width: 260px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.conuntr .visit-label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.conuntr img {
    height: 25px;
    border: none;
}

@keyframes gradientChange {
    0% {
        background: linear-gradient(90deg, #ff9a9e, #fad0c4);
    }
    25% {
        background: linear-gradient(90deg, #fbc2eb, #a6c1ee);
    }
    50% {
        background: linear-gradient(90deg, #a1c4fd, #c2e9fb);
    }
    75% {
        background: linear-gradient(90deg, #d4fc79, #96e6a1);
    }
    100% {
        background: linear-gradient(90deg, #ff9a9e, #fad0c4);
    }
}
.warning-message {
    animation: gradientChange 6s ease-in-out infinite;

    /* readable on light bg */
    color: #14532d;

    padding: 14px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;

    /* soft green-beige bg */
    background: linear-gradient(135deg, #fefce8, #ecfdf5);

    transition: background 1.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

#blog.container-fluid {
  background: linear-gradient(180deg, #f8f6f0 0%, #ecfdf5 100%) !important;
  padding: 20px 0 !important;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Main Carousel Slide */
.hero-carousel .hero-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: -1;
}

/* Optional overlay (soft green tint) */
.hero-carousel .hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;

  background: rgba(22,163,74,0.08);
}

/* Hide content */
.hero-carousel .container {
  display: none !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-carousel .hero-slide {
    height: 45vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
  }

  .hero-carousel .hero-slide::before {
    background-color: transparent;
  }
}

/* Decorative glows */
#blog.container-fluid::before,
#blog.container-fluid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.35;
  z-index: 0;
}

/* left glow (lime soft) */
#blog.container-fluid::before {
  left: -8%;
  top: -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(132,204,22,0.18), transparent 45%);
}

/* right glow (warm beige mix) */
#blog.container-fluid::after {
  right: -6%;
  bottom: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 60% 40%, rgba(250,204,21,0.12), transparent 45%);
}

/* Container */
.containerBlog {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header */
.containerBlog .mx-auto.text-center.mb-5 {
  max-width: 720px;
  margin-bottom: 32px !important;
}

.containerBlog h6.text-primary.text-uppercase {
  /* 👇 fresh green accent */
  color: #22c55e;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.containerBlog h1.display-5 {
  font-size: 2.25rem;

  /* 👇 same heading style (white for green bg) */
  color: #f0fdf4;

  font-weight: 800;
  margin: 0;
  line-height: 1.02;

  /* 👇 depth */
  text-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Carousel spacing */
.owl-carousel.blog-carousel .owl-item {
  padding: 0 10px !important;
  display: flex !important;
  height: auto !important;
}

.owl-carousel .owl-stage {
  display: flex !important;
}

/* Grid fallback */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px !important;
}/* ============================================
   BLOG CARD – PREMIUM GLASS DESIGN
   ============================================ */
.blog-item {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px) saturate(125%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.45);
  min-height: 390px;
  padding: 16px !important; 
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 2;

  box-shadow:
    0 18px 40px rgba(20,24,30,0.08),
    0 8px 16px rgba(255,255,255,0.22) inset,
    0 0 28px rgba(255,200,120,0.05) inset;

  transition: transform .28s ease, box-shadow .28s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(20,24,30,0.14),
    0 12px 22px rgba(255,255,255,0.26) inset;
}

/* ============================================
   SOFT ANIMATED GLOW BEHIND CARDS
   ============================================ */
.blog-item::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 6%;
  width: 110%;
  height: 80%;
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;

  background: radial-gradient(circle at 30% 20%, rgba(255,214,138,0.15), transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(255,240,220,0.08), transparent 45%);

  filter: blur(24px);
  opacity: 0.75;
  animation: glowFloat 6s ease-in-out infinite;
}

@keyframes glowFloat {
  0% { transform: translateY(6px) scale(0.99); opacity: .7; }
  50% { transform: translateY(-6px) scale(1.02); opacity: 1; }
  100% { transform: translateY(6px) scale(0.99); opacity: .7; }
}

/* keep content above glow */
.blog-item > * { position: relative; z-index: 3; }

/* ============================================
   GOLDEN ACCENT STRIP
   ============================================ */
.blog-item::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 6px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(180deg,#f0c15c,#d3a646);
  box-shadow: 0 8px 16px rgba(210,170,70,0.25);
  z-index: 5;
}

/* ============================================
   IMAGE BLOCK
   ============================================ */
.blog-item img {
  width: 100%;
  height: 190px !important;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  transition: transform .4s ease;
  display: block;
}

.blog-item:hover img {
  transform: scale(1.06);
}

/* ============================================
   TEXT CONTENT
   ============================================ */
.blog-item h5 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 8px 0 10px;
  color: #222;
}

.blog-item p {
  font-size: .98rem;
  line-height: 1.6;
  color: #4f4f4f;
  flex-grow: 1;
  margin: 0;
}

/* ============================================
   FOOTER BUTTONS
   ============================================ */
.btn-action {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn.bg-primary {
  background: #16a34a !important; /* main green */
  color: #fff !important;
  border: none !important;
  box-shadow: 0 12px 30px rgba(34,197,94,0.18);
}

.btn.bg-primary:hover {
  background: #15803d !important; /* darker green */
}

.btn.bg-secondary {
  background: #84cc16 !important; /* light fresh green */
  color: #fff !important;
  border: none !important;
}

.blog-cta-btn,
.blog-share-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  font-weight: 700 !important;
  letter-spacing: .01em;
  border-radius: 10px !important;
  text-decoration: none !important;

  /* 🌿 premium green gradient */
  background: linear-gradient(45deg, #22c55e, #16a34a);

  color: #ffffff !important;
}

.blog-share-btn:hover {
  background: linear-gradient(45deg, #15803d, #4ade80);
}

.blog-cta-btn i,
.blog-share-btn i {
  font-size: 1rem;
  line-height: 1;
}

.blog-item h5 {
  line-height: 1.35;
}

.blog-item p {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}/* ============================================
   text-center fix (equal height)
   ============================================ */
.blog-item.text-center {
  height: 100% !important;
  min-height: 440px !important;
  display: flex !important;
  flex-direction: column;
  text-align: center;
}
.blog-item.text-center h5,
.blog-item.text-center p { text-align: center !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1150px) {
  .blog-item { min-height: 420px; }
  .blog-item img { height: 175px !important; }
}
@media (max-width: 900px) {
  .blog-item { min-height: 400px; }
  .blog-item img { height: 170px !important; }
}
@media (max-width: 600px) {
  #blog.container-fluid { padding: 48px 0 !important; }
  .blog-item { min-height: auto; padding: 16px; }
  .blog-item img { height: 180px !important; }
  .blog-item h5 { font-size: 1.08rem; }
  .blog-item p { font-size: .94rem; }
  .btn-action { gap: 8px; }
  .blog-cta-btn,
  .blog-share-btn {
    min-width: 122px;
    justify-content: center;
  }
  .owl-nav { display:flex !important; justify-content:center; gap: 10px; margin-top: 12px; }
  .owl-nav button { background: #ff4da6; color: #ffffff; border-radius: 6px; padding: 8px 12px; border: none; }
  .owl-nav button:hover { background: #e04396; }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .blog-item::before { animation: none !important; transform: none !important; }
  .blog-item, .blog-item * { transition: none !important; }
}
.email-float-button {
    position: fixed;
    bottom: 90px; /* adjust if you already have a WhatsApp button */
    right: 20px;
    z-index: 9999;
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
  }
  
  .email-float-button img {
    width: 40px;
    height: 40px;
  }
  
  .email-float-button:hover {
    transform: scale(1.1);
  }
   .popup-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;

  /* dark green farm overlay */
  background: rgba(10, 40, 20, 0.55);

  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Popup Box - organic white + green glow */
.popup {
  background: linear-gradient(145deg, #ffffff, #f1f8e9);
  padding: 22px 30px;
  border-radius: 14px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;

  border: 1px solid rgba(46, 125, 50, 0.15);
  box-shadow: 0 12px 30px rgba(27, 94, 32, 0.25);

  animation: fadeIn 0.4s ease;
}

/* Smooth pop animation */
@keyframes fadeIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button - leaf style */
.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 18px;
  background: rgba(255, 237, 213, 0.92);
  border: 1px solid rgba(249, 115, 22, 0.22);
  color: #ea580c;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.close-btn:hover {
  background: #fed7aa;
  color: #c2410c;
  transform: rotate(90deg);
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

input[type="email"] {
  padding: 10px;
  border: 1px solid #fdba74;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  color: #7c2d12;
}

button[type="submit"] {
  padding: 10px;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(135deg,#f97316,#ea580c,#16a34a);
}

button[type="submit"]:hover {
  background: linear-gradient(135deg,#ea580c,#c2410c,#15803d);
}

.thank-you {
  color: #ea580c;
  font-weight: bold;
  display: none;
}

#popupContainer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background:
    radial-gradient(circle at 15% 20%, rgba(249,115,22,.18), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(251,191,36,.20), transparent 38%),
    rgba(20,14,6,.38);
}

#popupContainer .popup {
  width: min(100%, 430px);
  border-radius: 20px;
  padding: 30px 24px 22px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.26);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  box-shadow: 0 24px 52px rgba(92,53,0,.28);
  animation: popupPremiumIn .35s ease;
}

#popupContainer .popup h2 {
  margin: 0 0 6px;
  color: #ea580c;
  font-size: clamp(1.3rem,1.1rem + 1vw,1.75rem);
  font-weight: 700;
  font-family: "Poppins","Heebo",sans-serif;
}

#popupContainer .popup p {
  margin: 0 0 16px;
  color: #c2410c;
  font-size: .95rem;
  font-family: "Poppins","Heebo",sans-serif;
}

/* form layout */
#popupContainer .popup form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* input wrapper */
#popupContainer .email-input-wrap {
  position: relative;
}

/* icon */
#popupContainer .email-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #f97316;
  pointer-events: none;
}

/* input field */
#popupContainer #email {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid rgba(249,115,22,.35);
  background: rgba(255,247,237,.88);
  color: #7c2d12;
  padding: 12px 14px 12px 40px;
  font-size: .95rem;
  font-family: "Poppins","Heebo",sans-serif;
  transition: border-color .22s ease, box-shadow .22s ease, transform .2s ease;
}

#popupContainer #email::placeholder{
  color:#fb923c;
}

/* focus */
#popupContainer #email:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 4px rgba(249,115,22,.18);
  transform: translateY(-1px);
}

/* button */
#popupContainer button[type="submit"] {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: "Poppins","Heebo",sans-serif;
  background: linear-gradient(135deg,#f97316,#ea580c,#16a34a);
  box-shadow: 0 12px 24px rgba(249,115,22,.28),
              0 6px 12px rgba(22,163,74,.18);
  transition: transform .2s ease, filter .2s ease, box-shadow .22s ease;
}

#popupContainer button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  background: linear-gradient(135deg,#ea580c,#c2410c,#15803d);
  box-shadow: 0 18px 30px rgba(234,88,12,.32);
}

/* trust note */
#popupContainer .trust-note {
  color: #b45309;
  text-align: center;
  font-size: .8rem;
  font-family: "Poppins","Heebo",sans-serif;
}

/* close button */
#popupContainer .close-btn {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  background: rgba(255,237,213,.78);
  color: #ea580c;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

#popupContainer .close-btn:hover {
  transform: rotate(90deg);
  background-color: rgba(254,215,170,.95);
  color:#c2410c;
}

/* Loader */
#popupContainer #loader {
  display: none;
}

#popupContainer .loader-circle {
  border: 4px solid rgba(255,237,213,.9);
  border-top: 4px solid #ea580c;
}

/* Thank you */
#popupContainer .thank-you {
  display: none;
  margin-top: 12px;
  text-align: center;
  color: #ea580c;
  font-size: .92rem;
  font-family: "Poppins","Heebo",sans-serif;
}

@keyframes popupPremiumIn {
  from { transform: translateY(12px) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width:520px) {
  #popupContainer .popup {
    border-radius: 18px;
    padding: 24px 16px 18px;
  }
}

:root {
  --mbz-heading:#ea580c;
  --mbz-text:#7c2d12;
  --mbz-link:#f97316;
  --mbz-link-hover:#fff7ed;
}html {
  font-size: 16px;
}

body {
  color: var(--mbz-text);
  line-height: 1.65;
}

/* ===== THEME COLORS ===== */


/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--mbz-heading);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

/* ===== FONT SIZES ===== */
h1 { font-size: clamp(1.9rem, 1.2rem + 1.8vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 1rem + 1.2vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 0.9rem + 0.7vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, 0.9rem + 0.4vw, 1.25rem); }

/* ===== TEXT ===== */
p, li {
  font-size: clamp(0.98rem, 0.9rem + 0.25vw, 1.08rem);
  line-height: 1.7;
  color: var(--mbz-text);
}

/* ===== LINKS ===== */
a {
  color: var(--mbz-link);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: #22c55e; /* brighter green hover */
}
a:hover {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(255,255,255,0.4);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 2px;
}
    /* Responsive Blog Popup Styles */
#blog1Popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18,15,10,0.75);
  backdrop-filter: blur(4px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

#blog1Popup > div {
  background: #fff;
  width: min(1080px, 92vw);
  max-height: min(88vh, 920px);
  overflow-y: auto;
  border-radius: 14px;
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  box-sizing: border-box;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

#blog1PopupContent {
  overflow-y: auto;
  padding: 0 .35rem .35rem 0;
}

#blog1Popup .blog-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

#blog1Popup button[onclick*="closeBlog1Popup"] {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.95rem;
  cursor: pointer;
  color: #333;
  z-index: 2;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

@media (max-width: 600px) {
  #blog1Popup > div {
    padding: 1rem 0.75rem 0.8rem;
    width: 96vw;
    max-height: 92vh;
    border-radius: 12px;
  }
  #blog1Popup .blog-image img {
    max-width: 100%;
    max-height: 40vh;
  }
  #blog1Popup button[onclick*="closeBlog1Popup"] {
    top: 8px;
    right: 8px;
    font-size: 1.35rem;
  }
  #blog1PopupContent {
    font-size: 1rem;
  }
}

/* Expandable description: mobile-safe "Read more" layout */
.expandable-text { position: relative; width: 100%; box-sizing: border-box; }
.expandable-text .content {
  line-height: 1.6rem;
  transition: max-height 280ms ease;
  position: relative;
}

/* subtle fade for collapsed mobile copy */
.expandable-text.collapsed .content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.6rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.88) 60%, rgba(255,255,255,1) 100%);
}

.expand-toggle {
  display: none;
  color: #fff7f2;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.95rem;
  padding: 0;
}

@media (max-width: 768px) {
  .expandable-text .content {
    overflow: hidden;
    max-height: 6.6rem;
  }
  .expandable-text.expanded .content {
    max-height: 200vh;
  }
  .expandable-text.expanded .content::after {
    display: none;
  }
  .expand-toggle {
    display: inline-flex;
    position: static;
    margin-top: 10px;
    align-self: flex-start;
    line-height: 1.2;
  }
}

@media (min-width: 769px) {
  .expandable-text .content {
    overflow: visible;
    max-height: none;
  }
  .expandable-text .content::after { display: none; }
  .expand-toggle { display: none !important; }
}
/* ===============================
   BLOG VISIBILITY & UI IMPROVEMENT
   =============================== */

.blog-section{
    background:#ffffff;
    padding:70px 0;
}

.blog-container{
    max-width:900px;
    margin:auto;
    padding:40px 25px;
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 8px 35px rgba(0,0,0,0.06);
    line-height:1.85;
}

.blog-container h1{
    font-size:2.5rem;
    margin-bottom:20px;
    color:#0d1b2a;
    font-weight:700;
}

.blog-container h2{
    font-size:1.7rem;
    margin-top:40px;
    margin-bottom:15px;
    color:#9a3412;
}

.blog-container p{
    font-size:1.08rem;
    color:#333;
    margin-bottom:20px;
}

.blog-container img{
    width:100%;
    border-radius:10px;
    margin:25px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.blog-container ul{
    padding-left:20px;
    margin-bottom:20px;
}

.blog-container ul li{
    margin-bottom:10px;
    font-size:1.05rem;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:40px 0;
}

.blog-card{
    background:#ffffff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 14px 40px rgba(0,0,0,0.15);
}

.blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-card-content{
    padding:20px;
}

.blog-card-content h3{
    font-size:1.2rem;
    margin-bottom:10px;
    color:#0d1b2a;
}

.blog-card-content p{
    font-size:0.95rem;
    color:#555;
}

.blog-cta{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    padding:14px 24px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    z-index:999;
}

@media(max-width:768px){

.blog-container{
    padding:25px 18px;
}

.blog-container h1{
    font-size:1.8rem;
}

.blog-container h2{
    font-size:1.4rem;
}

.blog-container p{
    font-size:1rem;
}

.blog-card img{
    height:180px;
}

}
/* ================= PREMIUM REVIEW SECTION ================= */

.reviews-premium{
    padding:80px 20px;
    background: linear-gradient(180deg, #fff7f2, #fde2e4);
    text-align:center;
    overflow:hidden;
}

.reviews-premium h2{
    font-size:2.3rem;
    margin-bottom:40px;
    font-weight:800;
    color:#9a3412; /* peanut brown */
}

/* Slider */
.reviews-slider{
    display:flex;
    gap:22px;
    overflow:hidden;
    scroll-behavior:smooth;
    padding:26px 8px 14px;
    margin-top:2%;
    align-items:stretch;
    will-change:transform;
}

/* Card */
.review-card{
    flex:0 0 calc((100% - 44px) / 3);
    min-width:calc((100% - 44px) / 3);
    background:linear-gradient(180deg,#ffffff,#fff7ed);
    border-radius:18px;
    padding:22px 18px 16px;
    box-shadow:0 12px 35px rgba(230,126,34,0.12);
    position:relative;
    transition:transform .35s ease, box-shadow .35s ease;
    min-height:220px;
    border:1px solid rgba(230,126,34,0.18);
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(22,101,52,0.18);
}

/* Image top left */
.review-img{
    width:55px;
    height:55px;
    border-radius:50%;
    position:absolute;
    top:-25px;
    left:20px;
    border:4px solid #ffedd5;
    box-shadow:0 6px 16px rgba(230,126,34,0.18);
}

/* Content */
.review-content{
    margin-top:30px;
    text-align:left;
}

.review-content h3{
    margin:0;
    font-size:1.1rem;
    color:#e67e22;
    font-weight:700;
}

.stars{
    color:#f59e0b;
    margin:5px 0;
}

.review-content p{
    font-size:0.96rem;
    color:#166534;
    line-height:1.6;
}

/* Tablet */
@media(max-width:1100px){
  .review-card{
    flex:0 0 calc((100% - 22px) / 2);
    min-width:calc((100% - 22px) / 2);
  }
}

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

  .reviews-premium{
    padding:60px 15px;
  }

  .reviews-premium h2{
    font-size:1.8rem;
    margin-bottom:30px;
    color:#e67e22;
  }

  .reviews-slider{
    gap:16px;
    padding:12px 2px 10px;
    overflow:hidden;
  }

  .review-card{
    flex:0 0 88%;
    min-width:88%;
    max-width:88%;
    margin:0 auto;
    padding:18px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(230,126,34,0.15);
  }

  .review-img{
    width:50px;
    height:50px;
    top:-20px;
    left:15px;
  }

  .review-content{
    margin-top:25px;
  }

  .review-content h3{
    font-size:1rem;
  }

  .review-content p{
    font-size:0.9rem;
    line-height:1.5;
  }

  .stars{
    font-size:14px;
  }

}/* ===============================
   FINAL NAVBAR OVERRIDE (CLEAN)
   =============================== */
.navbar .logo,
.navbar .logo:hover,
.navbar .logo:focus {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.navbar .logo img {
  width: auto;
  max-width: 180px;
  height: 42px;
  object-fit: contain;
}

/* NAV LINKS */
.navbar .navbar-container a {
  color: #d45f1f; /* dark orange */
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .22s ease-in-out;
  background: rgba(230,122,46,0.10);
  border: 1px solid rgba(230,122,46,0.30);
}

.navbar .navbar-container a:hover {
  background: rgba(230,122,46,0.20);
  color: #e67a2e;
  box-shadow: 0 6px 18px rgba(230,122,46,0.25);
  transform: translateY(-2px);
}

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

  .navbar .logo img {
    height: 40px !important;
    max-width: 160px;
  }

  .navbar .navbar-container {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: none !important;

    /* ORANGE OVERLAY */
    background: linear-gradient(
      135deg,
      rgba(230,122,46,0.25),
      rgba(245,158,11,0.25)
    ) !important;

    backdrop-filter: blur(6px) saturate(115%);
    -webkit-backdrop-filter: blur(6px) saturate(115%);
    padding: 86px 14px 20px !important;
    gap: 12px !important;
    z-index: 1001 !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(18px) !important;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease !important;
  }

  #check:checked ~ .navbar-container {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(0) !important;
  }

  .navbar .navbar-container a {
    display: block !important;
    width: min(86vw, 340px) !important;
    margin-left: auto !important;
    padding: 15px 16px !important;
    border-radius: 14px !important;

    border: 1px solid rgba(230,122,46,0.35) !important;
    color: #fff7ed !important;

    font-weight: 700 !important;
    font-size: 1.02rem !important;

    background: linear-gradient(
      140deg,
      rgba(230,122,46,0.95),
      rgba(245,158,11,0.90)
    ) !important;

    box-shadow: 0 10px 24px rgba(0,0,0,.3) !important;
    text-shadow: none !important;
    border-bottom: 0 !important;
  }

  .navbar .navbar-container a:hover {
    background: linear-gradient(
      140deg,
      rgba(212,95,31,0.95),
      rgba(230,122,46,0.90)
    ) !important;

    color: #fff7ed !important;
    border-color: rgba(253,186,116,0.6) !important;
    transform: translateX(-4px) !important;
  }
}