*{
    margin: 0;
    padding: 0;
}
body {
    font-family: "Heebo", sans-serif;;
    margin: 0;
    padding: 0;
    background-color:  #F8EDE3;
    -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;
  /* Warm welcoming gold-beige glass color */

    background: rgba(255, 245, 225, 0.50); /* light & premium */
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);

    border-bottom: 1px solid rgba(210, 180, 120, 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 (logo + small utilities) */
.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: #000;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
  }
}


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

/* NAV LINKS (desktop) */
.navbar a {
  color: #4a1f3d;
  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(255,255,255,0.12);
}

/* Hover - warm golden highlight */
.navbar a:hover {
  background: rgba(255,205,120,0.22);
  color: #48bb78;
  box-shadow: 0 6px 18px rgba(255,200,120,0.12);
  transform: translateY(-2px);
}

/* Active / focus */
.navbar a:focus,
.navbar a.active {
  outline: none;
  background: rgba(255,205,120,0.30);
  color: #48bb78;
  box-shadow: 0 8px 24px rgba(255,200,120,0.16);
}

/* Toggle button (hamburger) - desktop hidden by default */
.checkbtn {
  display: none;
  font-size: 1.8em;
  color: #2f855a;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease-in-out;
  position: absolute;
  right: 20px;
}
.checkbtn:hover { transform: scale(1.1); }

/* Hide the checkbox visually but keep accessible */
#check { display: none; }

/* ===========================
   MOBILE: slide-in menu (right)
   =========================== */
@media (max-width: 768px) {

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

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

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

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

  /* Luxury toggle */
  .checkbtn {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.5);
    background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,236,201,0.78));
    box-shadow: 0 10px 24px rgba(56,38,9,0.16);
    position: absolute;
    right: 12px;
    top: 10px;
    z-index: 1015;
    color: #61380f;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .checkbtn::before {
    content: '\2630';
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
  }

  #check:checked + .checkbtn::before {
    content: '\2715';
    font-size: 19px;
  }

  .checkbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(56,38,9,0.2);
  }

  /* Overlay + right-side premium menu */
  .navbar-container {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    background: rgba(15, 11, 7, 0.42);
    backdrop-filter: blur(6px) saturate(115%);
    -webkit-backdrop-filter: blur(6px) saturate(115%);
    padding: 86px 14px 20px;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
    gap: 12px;
    z-index: 1001;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px);
  }

  .navbar-container::before {
    content: "Makhveda";
position: absolute;
top: 26px;
right: 18px;
padding: 6px 12px;
font-size: 11px;
letter-spacing: .08em;
text-transform: uppercase;
color: #fff7f2;
border: 1px solid rgba(244,114,182,0.35);
border-radius: 999px;
background: linear-gradient(135deg, rgba(236,72,153,0.25), rgba(47,133,90,0.25));
  }

  /* Open state */
  #check:checked ~ .navbar-container {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  
  /* Premium menu links */
  .navbar a {
   display: block;
width: min(86vw, 340px);
margin-left: auto;
padding: 15px 16px;
border-radius: 14px;
border: 1px solid rgba(244,114,182,0.35);
color: #fff7f2;
font-weight: 700;
font-size: 1.02rem;
letter-spacing: .01em;
background: linear-gradient(140deg, rgba(236,72,153,0.85), rgba(47,133,90,0.85));
box-shadow: 0 10px 24px rgba(0,0,0,0.3);
text-shadow: none;
transition: transform .22s ease, background-color .22s ease, border-color .22s ease;
  }

  .navbar a:hover {
    background: linear-gradient(140deg, rgba(101,69,27,0.86), rgba(50,36,16,0.82));
    color: #fff4dd;
    border-color: rgba(255,211,148,0.5);
    transform: translateX(-4px);
  }

  .navbar a:focus {
    outline: 3px solid rgba(255, 207, 133, 0.45);
    outline-offset: 3px;
  }
}

/* Accessibility: 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, #2f855a, #f472b6, #7c2d12);
}

.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(64, 45, 18, 0.18);
}

.product-right {
    padding: 28px;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fffaf3;
    border: 1px solid #eadfce;
    box-shadow: 0 10px 28px rgba(64, 45, 18, 0.14);
}

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

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

.cta {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #ffc107;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.cta:hover {
    background-color: #e0a800;
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

/* Responsive design */
@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;
      /* fallback for browsers without -webkit-box support */
      display: block;
      display: -webkit-box;
      -webkit-line-clamp: 5; /* WebKit prefixed clamping */
      line-clamp: 5; /* Standard property (where supported) */
      -webkit-box-orient: vertical;
      box-orient: vertical; /* non-prefixed fallback */
      overflow: hidden;
      text-overflow: ellipsis;
      transition: max-height 0.3s ease;
      max-height: 4.5em; /* Adjust based on line height */
    }

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

    .cta {
        width: 80%;
    }
}

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

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

.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: #fff7f2; /* soft lotus cream */

border: 1px solid rgba(244,114,182,0.4); /* lotus pink border */

box-shadow: 0 6px 16px rgba(42, 28, 7, 0.08);

color: #be185d; /* rich rani pink text */
    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(244,114,182,0.4);
    color: #be185d;
    font-size: 16px;
    line-height: 1;
    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: #007b5e;
    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: #333; /* 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: #fff7fb; /* soft lotus pink white */
    position: relative;
    overflow: hidden;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #f3d6e4;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.05);
}

/* LOTUS COLOR ACCENT (same structure, color changed) */
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(120deg, rgba(255, 182, 193, 0.25) 0%, transparent 60%),
        linear-gradient(300deg, rgba(255, 160, 180, 0.25) 20%, transparent 70%),
        linear-gradient(45deg, rgba(255, 200, 210, 0.25) 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 (unchanged) */
.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: #7a2e4d; /* lotus deep pink */
    font-weight: 600;
    position: relative;
}

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

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

/* HOVER */
.footer-section a:hover {
    color: #d63384; /* vibrant lotus pink */
    padding-left: 4px;
}/* SOCIAL */
.footer-social a {
    margin-right: 14px;
    display: inline-block;
    color: #234a77;
    transition: 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #234a77;
}

/* 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, #2f855a, #ff9ec4, #0f3d3e);
}

/* Title */
.product-category h2 {
    margin-bottom: 40px;
    font-size: 2.4em;
    color: #0d1b2a;
    font-weight: 800;
    letter-spacing: 1px;
}

/* 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(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
}

/* Premium hover */
.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

/* 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.08);
}

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

/* Description */
.category-card span {
    font-size: 0.95rem;
    color: #555;
    display: block;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Package text */
.category-card p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/* BUY BUTTON (EXPORT STYLE) */
.buy-now {
 display: inline-block;
background: linear-gradient(135deg,#ec4899,#48bb78);
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(236,72,153,0.35);
}

/* Hover */
.buy-now:hover {
   transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg,#be185d,#2f855a);
  
  color: #ffffff !important; /* 👈 force white */
  
  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;
}

}

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

    .category-card {
        max-width: 100%;
    }
} */
.buy-now {
    display: inline-block;
    background-color: #4CAF50; /* Green background */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px; /* Adjust padding */
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.buy-now:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.buy-now:active {
    transform: translateY(0); /* Reset lift on click */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.buy-now:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.6); /* Focus outline */
}

.map{
    width: 70%;
}
/* contact-us-page */
.contact-form-section { 
    max-width: 600px; width: 100%; 
    padding: 20px;
     background-color: white; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); border-radius: 8px; display: flex; flex-direction: column; align-items: center; margin: auto; margin-top: 80px; /* Adjust for the fixed navbar height */}
     .contact-form-section h1 { text-align: center; color: #fff; margin-bottom: 20px; }
     .contact-form-section form { display: flex; flex-direction: column; width: 100%; }
     .contact-form-section label { margin-bottom: 5px; color: #fff; } .contact-form-section .required { color: red; margin-left: 5px; } .contact-form-section input, .contact-form-section textarea { padding: 15px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 18px; width: calc(100% - 30px); /* Ensure inputs span the full width with padding */ } .contact-form-section button { padding: 15px; background-color: #28a745; color: white; border: none; border-radius: 4px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; } .contact-form-section button:hover { background-color: #218838; } 
     /* Media queries */
      @media (max-width: 768px) { .toggle-btn { display: block; } .navbar-container { right: -250px; /* Ensure initial hidden position */ } }
      
      
      .navbar-container a {
        color: #0e0e0e; /* Text color */
         background: rgba(255, 255, 255, 0.08);   /* ultra-light transparent layer */
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
    
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.20);

    transition: all 0.3s ease;
    }
    
    .navbar-container a:hover {
        background-color: rgba(255, 146, 28, 0.8); /* Semi-transparent orange on hover */
    }
    
    .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, #f4ebdc 0%, #efe1cc 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: #2a1f10;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.02em;
}

#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(66, 45, 15, 0.18);
    box-shadow: 0 10px 24px rgba(36, 24, 7, 0.12);
    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(245, 158, 11, 0.52);
    box-shadow: 0 16px 30px rgba(36, 24, 7, 0.18);
}

/* Featured tile rhythm for premium arrangement */
#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: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(128, 0, 64, 0.9);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}
#caption {
    margin: 15px auto;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.lightbox .close:hover {
    color: #ffe4f0;
}

/* Responsive Adjustments */
@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;
    }
}

/* Updated Style for Modal */
    /* Modal overlay */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 64, 0.5); /* lotus-magenta overlay */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
    animation: slideInLeft 0.5s ease-out;
}

/* Modal content box */
.modal-content {
    background: linear-gradient(45deg, #ff4da6, #ff85c1); /* lotus pink + magenta */
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0px 4px 12px rgba(128, 0, 64, 0.4);
    position: relative;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    animation: fadeIn 0.3s ease-in-out;
}

/* Close button */
.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: #ffe4f0; /* soft lotus highlight */
}

/* Modal transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
    /* Slide-in effect from the left */
    @keyframes slideInLeft {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }

    /* Add some padding to the modal content */
    .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: #DFD3C3; /* Colorful button */
        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: #DFD3C3; /* Button hover color */
    }

/* 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;
    color: #7a0000;
    padding: 14px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background 1.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}#blog.container-fluid {
  background: linear-gradient(180deg, #f8f2e7 0%, #f3eadc 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 dark overlay */
.hero-carousel .hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

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

/* Responsive for mobile */
@media (max-width: 768px) {
  .hero-carousel .hero-slide {
    height: 45Svh; /* Adjust height as needed */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
  }

  .hero-carousel .hero-slide::before {
    background-color: transparent; /* Remove overlay if needed */
  }
}
/* Decorative soft glows */
#blog.container-fluid::before,
#blog.container-fluid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.42;
  z-index: 0;
}

#blog.container-fluid::before {
  left: -8%;
  top: -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(255,200,120,0.16), transparent 45%);
}

#blog.container-fluid::after {
  right: -6%;
  bottom: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 60% 40%, rgba(255,210,140,0.14), transparent 45%);
}

/* Inner container (your .containerBlog) */
.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 {
  color: #c79a32; /* golden tone */
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.containerBlog h1.display-5 {
  font-size: 2.25rem;
  color: #222;
  font-weight: 800;
  margin: 0;
  line-height: 1.02;
}

/* Owl.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: #4CAF50 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 12px 30px rgba(212,162,79,0.14);
}

.btn.bg-primary:hover {
  background: #d63384 !important;
}

.btn.bg-secondary {
  background: #fa5b71 !important;
  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;
  background: linear-gradient(45deg, #ff4da6, #ff85c1); /* lotus + magenta */
  color: #ffffff !important;
}

.blog-share-btn:hover {
  background: linear-gradient(45deg, #e04396, #ff6bb5);
}
.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;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    /* Popup Box */
    .popup {
      background: #fff;
      padding: 20px 30px;
      border-radius: 12px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      position: relative;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      animation: fadeIn 0.4s ease;
    }

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

    /* Close Button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 18px;
      background: none;
      border: none;
      color: #888;
      cursor: pointer;
      padding: 4px 8px;
      line-height: 1;
      border-radius: 50%;
      transition: background 0.2s, color 0.2s;
    }

    .close-btn:hover {
      background: #f0f0f0;
      color: #333;
    }

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

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

    button[type="submit"] {
      padding: 10px;
      background-color: #ec4899;
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    button[type="submit"]:hover {
      background-color: #e27d10;
    }

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

/* Makhanabazar premium email popup (keeps existing JS IDs intact) */
#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(245, 158, 11, 0.18), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(248, 212, 122, 0.22), transparent 38%),
    rgba(20, 14, 6, 0.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, 0.55);
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  box-shadow: 0 24px 52px rgba(92, 53, 0, 0.28);
  animation: popupPremiumIn .35s ease;
}

#popupContainer .popup h2 {
  margin: 0 0 6px;
  color: #be185d;
  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: #be185d;
  font-size: 0.95rem;
  font-family: "Poppins", "Heebo", sans-serif;
}

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

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

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

#popupContainer #email {
  width: 100%;
  border-radius: 12px;
  border: 1.4px solid rgba(245, 158, 11, 0.38);
  background: rgba(255, 255, 255, 0.8);
  color: #2c2c2c;
  padding: 12px 14px 12px 40px;
  font-size: 0.95rem;
  font-family: "Poppins", "Heebo", sans-serif;
  transition: border-color .22s ease, box-shadow .22s ease, transform .2s ease;
}

#popupContainer #email:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
  transform: translateY(-1px);
}

#popupContainer button[type="submit"] {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: "Poppins", "Heebo", sans-serif;
background: linear-gradient(135deg, #d63384, #f7c873);
box-shadow: 0 12px 24px rgba(214, 51, 132, 0.35), 
            0 6px 12px rgba(247, 200, 115, 0.25);
  transition: transform .2s ease, filter .2s ease, box-shadow .22s ease;
}

#popupContainer button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 30px rgba(245, 158, 11, 0.42);
}

#popupContainer .trust-note {
  color: #6e5a35;
  text-align: center;
  font-size: 0.8rem;
  font-family: "Poppins", "Heebo", sans-serif;
}

#popupContainer .close-btn {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: #7a4600;
  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(255, 255, 255, 0.82);
}

#popupContainer #loader {
  display: none;
}

#popupContainer .loader-circle {
  border: 4px solid rgba(245, 245, 245, 0.9);
  border-top: 4px solid #f59e0b;
}

#popupContainer .thank-you {
  display: none;
  margin-top: 12px;
  text-align: center;
  color: #0e7a31;
  font-size: 0.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;
  }
}

/* Readability + SEO-focused typography improvements */
:root {
  --mbz-text: #1f2937;
  --mbz-heading: #111827;
  --mbz-link: #8a4b00;
  --mbz-link-hover: #5d3300;
}

html {
  font-size: 16px;
}

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

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

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); }

p, li {
  font-size: clamp(0.98rem, 0.9rem + 0.25vw, 1.08rem);
  line-height: 1.7;
}

a {
  color: var(--mbz-link);
}

a:hover {
  color: var(--mbz-link-hover);
}

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:#1a1a1a;
}

.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:#F8EDE3;
    text-align:center;
    overflow:hidden;
}

.reviews-premium h2{
    font-size:2.3rem;
    margin-bottom:40px;
    font-weight:800;
    color:#0d1b2a;
}

/* 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:white;
    border-radius:18px;
    padding:22px 18px 16px;
    box-shadow:0 12px 35px rgba(0,0,0,0.1);
    position:relative;
    transition:transform .35s ease, box-shadow .35s ease;
    min-height: 220px;
    
}

.review-card:hover{
    transform:translateY(-10px);
}

/* Image top left */
.review-img{
    width:55px;
    height:55px;
    border-radius:50%;
    position:absolute;
    top:-25px;
    left:20px;
    border:4px solid white;
}

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

.review-content h3{
    margin:0;
    font-size:1.1rem;
}

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

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

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

@media (max-width: 768px) {

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

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

  .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(0,0,0,0.12);
  }

  .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;
}

.navbar .navbar-container a {
  color: #6d2e4f; /* lotus dark pink */
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .22s ease-in-out;
  background: rgba(244,114,182,0.08);
  border: 1px solid rgba(244,114,182,0.25);
}

.navbar .navbar-container a:hover {
  background: rgba(47,133,90,0.18);
  color: #1f5130;
  box-shadow: 0 6px 18px rgba(47,133,90,0.18);
  transform: translateY(-2px);
}
@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;
  background: linear-gradient(
    135deg,
    rgba(244,114,182,0.18),
    rgba(47,133,90,0.18)
  ) !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(255,255,255,.2) !important;
    color: #fde2e4 !important;
    font-weight: 700 !important;
    font-size: 1.02rem !important;
    letter-spacing: .01em !important;
    background: linear-gradient(140deg, rgba(76,53,21,.8), rgba(35,26,12,.78)) !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(190,24,93,.95), rgba(47,133,90,.9)) !important;
  color: #fff7f2 !important;
  border-color: rgba(244,114,182,.5) !important;
  transform: translateX(-4px) !important;
}
}
