



bg-7{
    background-color:#F2DDA4; 
}

bg-8{
    background-color:#E7EFC5;
}

bg-9{
    background-color:#BFD7B5; 
}

bg-9{
    background-color:#A3C4BC;
}


bg-10{
    background-color:#413C58;
}


body {
    font-family: "Poppins", sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── HERO BACKGROUND BLOBS ─── */
  .hero-blobs {
    position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none;
  }
  .blob {
    position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.18;
    animation: float 8s ease-in-out infinite alternate;
  }
  .blob-1 { width: 420px; height: 420px; background: var(--primary); top: -80px; left: -80px; animation-delay: 0s; }
  .blob-2 { width: 320px; height: 320px; background: var(--accent); top: 40px; right: -60px; animation-delay: 2s; }
  .blob-3 { width: 260px; height: 260px; background: var(--accent2); bottom: -40px; left: 30%; animation-delay: 4s; }

  @keyframes float {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-30px) scale(1.07); }
  }

  /* ─── TOPNAV ─── */
  .topnav {
    overflow: hidden;
    background-color: #413C58;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 4px 24px rgba(65,60,88,0.25);
    animation: slideDown 0.6s cubic-bezier(.23,1,.32,1) both;
  }
  @keyframes slideDown { from { transform: translateY(-100%); opacity:0; } to { transform: translateY(0); opacity:1; } }

  .topnav a {
    float: left; display: block; color: #ffffff;
    text-align: center; font-weight: 700;
    padding: 14px 16px; text-decoration: none; font-size: 15px;
    letter-spacing: 0.3px; transition: background 0.25s, color 0.25s;
  }
  .topnav a:hover { background-color: #A3C4BC; color: #413C58; }
  .topnav a.active { background-color: #BFD7B5; color: #413C58; }
  .topnav .icon { display: none; }
  .topnav .brand {
    font-size: 17px; font-weight: 800; letter-spacing: -0.5px;
    color: #fff !important; display: flex; align-items: center; gap: 8px;
  }
  .topnav::after { content: ""; display: table; clear: both; }

  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) { display: none; }
    .topnav a.icon { float: right; display: block; }
  }
  @media screen and (max-width: 600px) {
    .topnav.responsive { position: relative; }
    .topnav.responsive .icon { position: absolute; right: 0; top: 0; }
    .topnav.responsive a { float: none; display: block; text-align: left; }
  }

  /* ─── GRID SYSTEM ─── */
  .grid-container {
    display: grid; gap: 20px;
    width: 100%; padding: 0;
  }
  .row-1  { grid-template-columns: 1fr; }
  .row-2  { grid-template-columns: 1fr 1fr; }
  .row-3  { grid-template-columns: 1fr 1fr 1fr; }
  .row-4  { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .row-5  { grid-template-columns: 1fr 2fr 1fr 1fr; }
  .row-6  { grid-template-columns: 1fr 3fr 1fr; }
  .row-7  { grid-template-columns: 1fr 2fr 2fr 1fr; }
  .row-8  { grid-template-columns: 2fr 2fr; }
  .row-9  { grid-template-columns: 3fr 1fr; }

  @media screen and (max-width: 767px) {
    .grid-container { grid-template-columns: 1fr !important; }
  }

  .grid-item img { max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: 12px; }

  /* ─── SECTIONS ─── */
  section { padding: 70px 40px; max-width: 1200px; margin: 0 auto; }
  .section-full { max-width: 100%; padding: 0; }

  /* ─── HERO ─── */
  .hero {
    position: relative; background: linear-gradient(135deg, #413C58 0%, #5a5370 60%, #2b2740 100%);
    padding: 100px 40px 80px; text-align: center; overflow: hidden;
  }
  .hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
  .hero-badge {
    display: inline-block; background: rgba(163,196,188,0.18); border: 1.5px solid var(--accent);
    color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; padding: 6px 18px; border-radius: 100px; margin-bottom: 24px;
    animation: fadeUp 0.8s 0.2s both;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #fff;
    line-height: 1.15; margin-bottom: 18px;
    animation: fadeUp 0.8s 0.35s both;
  }
  .hero h1 span { color: var(--accent); }
  .hero p {
    font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 36px;
    animation: fadeUp 0.8s 0.5s both;
  }
  .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.65s both; }
  .btn-primary {
    background: var(--accent); color: #2b3d3a; font-weight: 700;
    padding: 14px 32px; border-radius: 100px; border: none; cursor: pointer;
    font-family: inherit; font-size: 15px; transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(163,196,188,0.5); }
  .btn-ghost {
    background: transparent; color: #fff; font-weight: 600;
    padding: 14px 32px; border-radius: 100px; border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer; font-family: inherit; font-size: 15px;
    transition: border-color 0.2s, background 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

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

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--primary); display: flex; justify-content: space-around; flex-wrap: wrap;
    padding: 28px 40px; gap: 20px;
  }
  .stat { text-align: center; color: #fff; }
  .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--accent); display: block; }
  .stat-label { font-size: 13px; opacity: 0.85; letter-spacing: 0.5px; }

  /* ─── SECTION HEADING ─── */
  .section-heading { text-align: center; margin-bottom: 48px; }
  .section-heading .eyebrow {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
    padding: 5px 14px; background: rgba(65,60,88,0.08); border-radius: 100px;
  }
  .section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800; color: var(--dark); }
  .section-heading p { color: var(--muted); margin-top: 10px; max-width: 520px; margin-left: auto; margin-right: auto; }

  /* ─── PRODUCT CARDS ─── */
  .product-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform 0.28s, box-shadow 0.28s;
    display: flex; flex-direction: column;
    animation: fadeUp 0.7s both;
  }
  .product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(65,60,88,0.18); }
  .product-img {
    height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden;
    position: relative;
  }
  .product-img svg { width: 120px; height: 120px; }
  .product-img .tag {
    position: absolute; top: 12px; right: 12px;
    background: var(--accent2); color: #5a3e00; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 100px;
  }
  .product-body { padding: 20px; flex: 1; }
  .product-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
  .product-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .product-price {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; border-top: 1px solid #e7efc5;
  }
  .price { font-weight: 800; font-size: 1.2rem; color: var(--primary); }
  .add-btn {
    background: var(--primary); color: #fff; border: none; cursor: pointer;
    padding: 8px 18px; border-radius: 100px; font-family: inherit; font-weight: 600; font-size: 13px;
    transition: background 0.2s, transform 0.15s;
  }
  .add-btn:hover { background: #2e2a40; transform: scale(1.04); }

  /* BG PASTEL COLORS FOR PRODUCT IMG */
  .bg-pink   { background: #e7efc5; }
  .bg-mint   { background: #bfd7b5; }
  .bg-yellow { background: #f2dda4; }
  .bg-blue   { background: #a3c4bc; }
  .bg-peach  { background: #e7efc5; }
  .bg-lavender { background: #d4d0e0; }

  /* ─── WHY US ─── */
  .why-grid .grid-item {
    background: #fff; border-radius: var(--radius); padding: 32px 24px;
    box-shadow: var(--shadow); text-align: center;
    transition: transform 0.25s;
  }
  .why-grid .grid-item:hover { transform: translateY(-6px); }
  .why-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 28px;
  }
  .why-grid h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
  .why-grid p { font-size: 13px; color: var(--muted); line-height: 1.7; }

  /* ─── ABOUT SPLIT ─── */
  .about-section { background: linear-gradient(120deg, #f7faf5 60%, #e7efc5 100%); padding: 70px 40px; }
  .about-text { padding: 20px 0; }
  .about-text h2 { font-size: clamp(1.5rem,3vw,2.4rem); font-weight: 800; margin-bottom: 14px; color: var(--dark); }
  .about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
  .about-visual {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 16px 50px rgba(65,60,88,0.15);
    display: flex; align-items: center; justify-content: center;
    min-height: 300px; background: linear-gradient(135deg, #413C58, #A3C4BC);
    position: relative;
  }
  .about-visual svg { width: 100%; height: 100%; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { background: var(--dark); padding: 70px 40px; }
  .testimonials-section .section-heading h2 { color: #fff; }
  .testimonials-section .section-heading p { color: rgba(255,255,255,0.55); }
  .testimonials-section .eyebrow { background: rgba(163,196,188,0.15); color: var(--accent); }
  .testimonial-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 28px 24px;
    transition: border-color 0.25s, transform 0.25s;
  }
  .testimonial-card:hover { border-color: var(--accent); transform: translateY(-4px); }
  .stars { color: var(--accent2); font-size: 18px; margin-bottom: 14px; }
  .testimonial-card p { color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; color: #fff;
  }
  .reviewer-info strong { display: block; color: #fff; font-size: 13px; }
  .reviewer-info span { font-size: 12px; color: rgba(255,255,255,0.45); }

  /* ─── CATEGORIES ─── */
  .category-pill {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border-radius: 100px; padding: 14px 22px;
    box-shadow: var(--shadow); font-weight: 600; font-size: 14px;
    transition: transform 0.2s, background 0.2s; cursor: pointer;
    color: var(--dark); text-decoration: none;
  }
  .category-pill:hover { background: var(--primary); color: #fff; transform: scale(1.04); }
  .category-pill:hover .cat-icon { background: rgba(255,255,255,0.2); }
  .cat-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(65,60,88,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }

  /* ─── CONTACT / CTA ─── */
  .cta-section {
    background: linear-gradient(135deg, #413C58 0%, #2b3d3a 100%);
    padding: 80px 40px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-section h2 { font-size: clamp(1.7rem,3vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
  .cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1rem; }
  .cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
  .cta-form input {
    flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 100px; border: none;
    font-family: inherit; font-size: 14px; outline: none;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #1e1c28; color: rgba(255,255,255,0.5); padding: 40px;
    display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
    font-size: 13px;
  }
  .footer-brand { font-weight: 800; font-size: 18px; color: var(--accent); }
  .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--accent); }

  /* ─── SCROLL REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── FLOATING SHAPES (decorative) ─── */
  .shape {
    position: absolute; border-radius: 50%; opacity: 0.08; pointer-events: none;
    animation: floatShape 10s ease-in-out infinite alternate;
  }
  @keyframes floatShape {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-40px) rotate(25deg); }
  }


  .img-1{
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }