
      /* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #ea580c;
    --secondary: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
}
 body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
body {
    font-family: 'Inter', sans-serif;
    /* color: var(--text); */
    line-height: 1.6;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Header */
#header {
    /* position: fixed; */
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1rem 0; */
}
.log-img{
    height: 150px;
    width: 250px;
    background-size: cover;
    /* border-radius: 40px; */
    /* object-fit: contain; */
}

.logo {
    font-size: 1.5rem;
    /* font-weight: 700; */
    /* color: var(--secondary); */
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text);
    /* font-weight: 500; */
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin-right: 30px;
    color: var(--secondary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    height: 75vh;
    width: 100%;
    /* background: url('/image/decorativeslider4.png') center/cover; */
    object-fit: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

/* Categories */
.categories {
    background: var(--bg-light);
}

.category-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; */
     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
    /* padding: 20px 30px;  */
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
     object-fit: cover;
    transition: transform 0.3s;
}

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

.category-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.category-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Products */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* SECTION WRAPPER — isolates styles from Bootstrap */
.products-section * {
    box-sizing: border-box;
}

/* GRID */
.products-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 20px;
}

/* CARD */
.products-section .product-card1 {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.products-section .product-card1:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.products-section .product-image {
    height: 350px;
    overflow: hidden;
}

.products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* INFO */
.products-section .product-info {
    padding: 1.2rem 1.4rem;
}

.products-section .product-category {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.products-section .product-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

/* PRICE */
.products-section .product-price {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

/* BUTTONS */
.products-section .product-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.products-section .cta-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.products-section .cta-btn:hover {
    background: #0b5ed7;
}

/* About */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

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

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
}

 .lx-footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #d1d5db;
  padding-top: 70px;
}

.lx-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* Brand */
.lx-footer-brand {
  position: relative;
}

.lx-footer-logo {
  height: 90px;
  width: auto;
  border-radius: 14px;
  margin-bottom: 16px;
}

.lx-footer-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
}

/* Admin Icon */
.lx-admin-link {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 5px;
  color: #9ca3af;
  transition: color 0.3s ease;
  z-index: 1;
}

.lx-admin-link:hover {
  color: #38bdf8;
}

/* Links */
.lx-footer-links h4 {
  font-size: 17px;
  margin-bottom: 18px;
  color: #ffffff;
}

.lx-footer-links a {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.lx-footer-links a:hover {
  color: #38bdf8;
  padding-left: 6px;
}

/* Bottom bar */
.lx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 18px 10px;
  font-size: 14px;
  color: #9ca3af;
}

/* Tablet */
@media (max-width: 992px) {
  .lx-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .lx-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lx-footer-logo {
    height: 75px;
  }

  .lx-admin-link {
    top: -35px;
  }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
         font-weight: 500;
    }
    
    .menu-btn {
        display: block;
        font-size: 25px;
         font-weight: 500;
    }
    
    .hero {
        height: 70vh;
    }
    
    section {
        padding: 3rem 0;
    }
    .log-img{
    height: 115px;
    width: 200px;
    background-size: cover;
}
}
/* index pages style */

/* product btn style */
.cta-btn1{
  
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  color:#3a2600;

  /* Yellow → Orange premium gradient */
  background:linear-gradient(135deg,#ffe98a,#ffb64c);

  box-shadow:0 6px 16px rgba(255,170,50,0.35);
  transition:0.25s;
}

.cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(255,150,0,0.45);
  background:linear-gradient(135deg,#fff3b3,#ffc46a);
}

.cta-btn:active{
  transform:scale(0.97);
}
/* end */
    /* about design open */
    :root{
    --bg:#f5f8fa;
    --card:#ffffffcc;
    --muted:#6b7280;
    --accent1:#ff6a00;
    --accent2:#ff9a2e;
    --glass-border: rgba(255,255,255,0.6);
    --shadow: 0 10px 30px rgba(12, 30, 50, 0.08);
    --radius:14px;
    --max-width:1100px;
  }

  html,body{
    height:100%;
    margin:0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(180deg, #f6fbfd 0%, #f1f6f8 100%);
    color:#0f1724;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }

  .wrap{
    max-width: var(--max-width);
    margin:48px auto;
    padding:40px;
  }

  .heading{
    text-align:center;
    margin-bottom:28px;
    font-family: "Playfair Display", serif;
    font-size:44px;
    color:#0b2030;
    letter-spacing:0.4px;
  }

  .grid{
    display:grid;
    grid-template-columns: 1fr 360px;
    gap:28px;
    align-items:start;
  }

  /* Card / container */
  .panel{
    background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(250,250,250,0.6));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding:28px;
    border: 1px solid rgba(11,25,35,0.04);
  }

  /* Left: form */
  form .label{
    display:block;
    font-weight:600;
    margin:8px 0 8px;
    color:#0b2433;
    font-size:14px;
  }

  .field{
    width:100%;
    padding:14px 16px;
    border-radius:10px;
    border:1px solid rgba(17,24,39,0.08);
    background:#fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    font-size:15px;
    outline:none;
    transition: box-shadow .18s ease, transform .12s ease, border-color .15s ease;
  }

  .field:focus{
    box-shadow: 0 6px 28px rgba(15, 50, 80, 0.06);
    transform: translateY(-2px);
    border-color: rgba(255,136,30,0.18);
  }

  .row{ margin-bottom:18px; }

  textarea.field{
    min-height:50px;
    resize:vertical;
    padding-top:16px;
  }

  .actions{
    margin-top:6px;
    display:flex;
    gap:12px;
    align-items:center;
  }

  .btn{
    display:inline-block;
    background: linear-gradient(90deg,var(--accent1),var(--accent2));
    color:white;
    padding:14px 22px;
    border-radius:12px;
    border: none;
    font-weight:600;
    cursor:pointer;
    box-shadow: 0 8px 20px rgba(255,106,0,0.15);
    transition: transform .12s ease, box-shadow .12s ease;
  }

  .btn:active{ transform: translateY(1px); }
  .btn[disabled]{ opacity:0.6; cursor:default; transform:none; box-shadow:none; }

  .hint{ color:var(--muted); font-size:14px; }

  /* Right: contact info card */
  .info{
    padding:24px;
    border-radius:12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(250,250,250,0.5));
    border: 1px solid rgba(11,25,35,0.04);
    box-shadow: 0 8px 30px rgba(10,20,30,0.03);
  }

  .info h4{
    margin:0 0 12px;
    font-family:"Playfair Display", serif;
    font-size:20px;
    color:#10212b;
  }

  .meta{ color:var(--muted); line-height:1.8; font-size:15px; margin-bottom:14px; }

  .contact-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin:14px 0;
  }

  .icon-wrap{
    min-width:36px;
    height:36px;
    display:inline-grid;
    place-items:center;
    border-radius:8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(245,245,247,0.6));
    border:1px solid rgba(15,30,50,0.03);
    box-shadow: 0 6px 18px rgba(10,20,30,0.03);
  }

  .icon{
    width:18px; height:18px; opacity:0.92;
    fill:#ff6d12;
  }

  .small-title{ font-weight:600; color:#0b2433; font-size:14px; margin-bottom:6px; }

  .info .hours{ font-size:14px; color:var(--muted); }

  /* subtle divider */
  .divider{
    height:1px;
    background: linear-gradient(90deg, transparent, rgba(15,25,35,0.04), transparent);
    margin:16px 0;
    border-radius:2px;
  }

  /* responsiveness */
  @media (max-width:980px){
    .grid{ grid-template-columns: 1fr; }
    .info{ margin-top:8px; }
    .wrap{ padding:20px; }
  }

  /* validation styles */
  .field.error{
    border-color: #ff3b30;
    box-shadow: 0 6px 20px rgba(255,59,48,0.06);
  }

  .note{
    font-size:13px; color:var(--muted); margin-top:8px;
  }

  /* seo contetnt in index.js */
   .seo-content {
  padding: 70px 0;
  background: #f9fafb;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card base */
.seo-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Main card spans full width */
.seo-card-main {
  grid-column: span 3;
}

.seo-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.seo-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.seo-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15.5px;
}

/* Tablet */
@media (max-width: 991px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-card-main {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .seo-card-main {
    grid-column: span 1;
  }

  .seo-card {
    padding: 22px;
  }

  .seo-card h2 {
    font-size: 22px;
  }
}
    /* about design close  */
:root{
--bg:#f5f8fb;
--card:#ffffff;
--accent:#ff6a00;
--muted:#6b7280;
--heading:#0f1724;
}
*{box-sizing:border-box}
body{font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; background:var(--bg); color:var(--heading);}


.section{max-width:1200px; margin:48px auto; padding:48px 24px;}
.card{display:grid; grid-template-columns:1fr 520px; gap:36px; align-items:center; background:linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9)); padding:36px; border-radius:16px; box-shadow:0 8px 30px rgba(15,23,36,0.06);}


/* Left content */
.hero-head{font-size:40px; line-height:1.05; font-weight:700; margin:0 0 18px; letter-spacing:-0.02em;}
.sub{color:var(--muted); font-size:16px; margin:0 0 28px; max-width:56ch}


.cta-row{display:flex; gap:12px; align-items:center}
.btn{background:var(--accent); color:#fff; padding:12px 18px; border-radius:10px; font-weight:600; text-decoration:none; display:inline-block; box-shadow:0 6px 18px rgba(255,106,0,0.18);}
.btn.secondary{background:transparent; color:var(--heading); border:1px solid rgba(15,23,36,0.06); box-shadow:none;}


.stats{display:flex; gap:28px; margin-top:28px;}
.stat{min-width:120px}
.stat .num{font-size:28px; font-weight:800; color:var(--accent)}
.stat .label{font-size:12px; color:var(--muted); letter-spacing:0.08em}


/* Right image panel */
.image-panel{position:relative; height:420px; border-radius:12px; overflow:hidden; background:linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);}
.image-panel img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform:scale(1.02); transition:transform .8s ease;}
.image-panel:hover img{transform:scale(1)}


/* Decorative overlay */
.overlay-shape{position:absolute; right:-60px; top:-60px; width:220px; height:220px; background:linear-gradient(90deg, rgba(255,106,0,0.12), rgba(255,106,0,0.04)); transform:rotate(25deg); filter:blur(28px);}


/* Responsive */
@media (max-width:980px){
.card{grid-template-columns:1fr;}
.image-panel{height:320px}
.section{padding:28px 16px}
.hero-head{font-size:32px}
.stats{flex-wrap:wrap}
}


/* small animation for numbers */
.num[data-target]{visibility:visible}

/* map style */
    /* body {
      margin: 0;
      padding: 0;
      background: #f4f6f9;
      font-family: Arial, sans-serif;
    } */

    .map-container {
      width: 100%;
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
    }

    /* Map Box */
    #map {
      height: 420px;
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    /* Marker Popup Style */
    .leaflet-popup-content-wrapper {
      border-radius: 12px;
      padding: 5px;
    }

    .leaflet-popup-content {
      font-size: 15px;
      font-weight: bold;
      padding: 6px;
    }

    /* Zoom Button Styling */
    .leaflet-control-zoom a {
      background-color: #000 !important;
      color: #fff !important;
      border-radius: 8px !important;
      width: 34px;
      height: 34px;
      font-size: 20px;
      line-height: 32px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .leaflet-control-zoom a:hover {
      background-color: #ff4a4a !important;
    }
#carouselExample {
  height: 500px; /* Desktop ke liye height set */
  overflow: hidden;

}

#carouselExample .carousel-item img {
  
  width: 100%;
 height: 500px;
 background-size: cover;
background-size: cover;
   /* Image crop hogi but fat nahi hogi */
   /* object-position: center;   */
}
@media (max-width: 768px) {
  #carouselExample {
    height: 400px;
  }
  .carousel-item img{
    width: 100%;
    height: 350px;
object-fit: cover;
  }
}




/* footer content div */
.features-section {
  width: 100%;
  background: #ffffff;
  padding: 30px 15px;
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.feature-box {
  text-align: center;
}

.feature-box img {
  max-width: 80px;
  height: auto;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* Tablet */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-box img {
    max-width: 65px;
  }

  .feature-box p {
    font-size: 13px;
  }
}
/* end */
/* product style */
   .cta-btn1{
  
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  color:#3a2600;

  /* Yellow → Orange premium gradient */
  background:linear-gradient(135deg,#ffe98a,#ffb64c);

  box-shadow:0 6px 16px rgba(255,170,50,0.35);
  transition:0.25s;
}
.filters {
  display: flex;
  flex-wrap: wrap;          /* desktop ke liye */
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;     /* text break na ho */
  font-size: 14px;
}

.filter-btn.active {
  background: #f15a00;
  color: #fff;
  border-color: #f15a00;
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .filters {
    flex-wrap: nowrap;      /* ek line me */
    overflow-x: auto;       /* horizontal scroll */
    justify-content: flex-start;
    padding-bottom: 5px;
  }

  .filters::-webkit-scrollbar {
    display: none;          /* clean look */
  }

  .filter-btn {
    flex: 0 0 auto;         /* button shrink na ho */
    font-size: 13px;
    padding: 7px 14px;
  }
}

/* modal responsive */
.customModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;        /* ✅ default close */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 10px;
}
.modalBox {
  background: #fff;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  position: relative;
}
.leftSection,
.rightSection {
  padding: 20px;
}

.leftSection {
  width: 45%;
  background: #f7f7f7;
}

.rightSection {
  width: 55%;
}
.imgWrapper img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  border-radius: 10px;
}
.formGroup {
  margin-bottom: 12px;
}

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

.mobileBox {
  display: flex;
  gap: 8px;
}

.flag {
  padding: 10px;
  background: #eee;
  border-radius: 6px;
}
.closeBtn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  cursor: pointer;
}
@media (max-width: 768px) {

  .modalBox {
    flex-direction: column;       /* 🔥 single column */
    max-height: 90vh;             /* screen ke andar */
    overflow-y: auto;             /* scroll enable */
  }

  .leftSection,
  .rightSection {
    width: 100%;
    padding: 15px;
  }

  .imgWrapper img {
    max-height: 250px;
  }

  .quoteTitle {
    text-align: center;
  }

  .submitBtn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
/* end */
/* showinfopage style */

/* end */