body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #ffdb580d;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
.logo-add{
    flex-direction: column;
}
.logo-add h4{
        font-size: 32px;
    margin-bottom: 0px;
    font-family: "Pacifico", cursive;
    font-weight: 500;
    letter-spacing: 1px;
}
.logo-add h6{
    
    margin-bottom: 0px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
/* MAIN WIDGET WRAPPER */
.sbf-widget-box {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  max-width: 780px;
  margin: 0px auto 50px;

}

/* LOGO */
.sbf-widget-logo img {
  width: 130px;
  height: auto;
  border-radius: 8px;
}

/* TEXT AREA */
.sbf-widget-content {
  flex: 1;
}

/* BADGE */
.sbf-badge {
  display: inline-block;
  background: var(--sbf-accent);
  padding: 6px 12px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sbf-brown);
  margin-bottom: 6px;
}

/* TITLE */
.sbf-widget-title {
  font-size: 1.2rem;
  color: var(--sbf-brown);
  margin: 4px 0 12px;
}

/* INTAKE CARDS */
.sbf-intake-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sbf-intake-card {
  flex: 1;
  min-width: 140px;
  background: #FFF9EC;
  border: 1px solid #EFE2C2;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(90,62,27,0.07);
}

.sbf-intake-label {
  font-size: 0.85rem;
  color: #6B5643;
}

.sbf-intake-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sbf-brown);
  margin-top: 4px;
}

/* NOTE BOX */
.sbf-note-box {
  margin-top: 14px;
  padding: 12px;
  background: #FBFAF4;
  border-left: 4px solid var(--sbf-olive);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--sbf-text-dark);
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 520px) {
  .sbf-widget-box {
    flex-direction: column;
    text-align: left;
  }
  
  .sbf-widget-logo img {
    width: 160px;
  }
}
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fffbef;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

nav {
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    width: 250px;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 10px;
        padding-top: 4px;
    padding-bottom: 8px;
}
.logo-img{
    width: 100%;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 2rem;
}

.logo-icon {
    font-size: 2.5rem;
    animation: rotate 20s linear infinite;
}

.navbar {
    padding: 0px;
}
.product-attributes {
    margin-bottom: 10px;
}

.attr-row {
    display: flex;
    font-size: 14px;
   border-bottom: 1px solid #dddddd66;
    padding: 5px 0px;
}

.attr-label {
    flex: 0 0 100px;
    font-weight: 600;
    color: #6a7b57;
}

.attr-value {
    flex: 1;
    color: #44513b;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-accent);
}
.nav-links a.active {
    border-bottom: 2px solid var(--color-accent);
}
.header-cta {
    padding: 12px 30px;
    background: var(--color-mustard);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 219, 88, 0.3);
}

.header-cta:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.4);
}

:root {
    --color-primary: #573814;
    --color-secondary: #C9A66B;
    --color-accent: #6B8E23;
    --color-dark: #2C3E2C;
    --color-light: #F5F1E8;
    --color-white: #FFFFFF;
    --color-mustard: #FFDB58;
    --color-green: #6b993c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*    body {
            font-family: 'Plus Jakarta Sans', sans-serif;      
            background:#f7f8f4;
            color: var(--color-dark);
            line-height: 1.6;
            overflow-x: hidden;
        } */



.hero h1 {
    font-size: 48px;
    margin-top: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    /*  font-size: 1.15rem; */
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: var(--color-mustard);
    color: var(--color-dark);
}

.cta-primary:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(107, 142, 35, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    backdrop-filter: blur(1px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 50px 20px;

}

.section-title {
    text-align: center;
    font-size: 28px;
    color: var(--color-primary);

    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 32px;
    opacity: 0.8;
}

.feature-card {
    background: #fff;
    padding: 16px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: inline-block;
    /* animation: float 3s ease-in-out infinite; */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-card h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.9rem;
}
/* SunnyBunny – Certification Deck */
.sb-cert-section {
  padding: 0rem 1.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sb-cert-inner {
  max-width: 960px;
  width: 100%;
}

.sb-cert-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Left – badges + logos */
.sb-cert-badges-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
}

.sb-cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.sb-cert-logo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sb-cert-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.sb-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.sb-cert-badge {
  min-width: 80px;
  padding: 0.75rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f6fff8;
  text-align: center;
}

.sb-cert-badge-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.75;
}

.sb-cert-badge-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Right – text */
.sb-cert-content {
  flex: 1;
  min-width: 220px;
}

.sb-cert-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #888;
}

.sb-cert-title {
  font-size: 1.1rem;
 
  margin-bottom: 0.4rem;
}

.sb-cert-subtitle {
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  color: #555;
}

/* .sb-cert-highlight {
  font-weight: 600;
} */

/* List for About page */
.sb-cert-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  font-size: 0.9rem;
}

.sb-cert-list li {
  margin-bottom: 0.25rem;
}

/* Small note */
.sb-cert-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #777;
}

/* Accent theme (match your palette) */
.sb-cert-title,
.sb-cert-highlight {
  color: var(--color-primary); /* Sunny green accent */
}

.sb-cert-badge-msme {
  background: #fff7e8;
  border-color: #ffd28a;
}

.sb-cert-badge-fssai {
  background: #e9f6ff;
  border-color: #9fd5ff;
}

/* Responsive */
@media (max-width: 640px) {
  .sb-cert-card {
    padding: 1.25rem 1.5rem;
  }

  .sb-cert-section {
    padding: 1.5rem 1rem;
  }

  .sb-cert-badges-wrapper {
    width: 100%;
  }
}

/* Products Section */
.products {
    padding: 20px 20px 20px;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;

    /*  height: 250px;
            background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-content {
    padding: 16px;
}

.product-content h3 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-content p {
    color: var(--color-dark);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-price {
    font-size: 1.4rem;
    color: var(--color-green);
    font-weight: 600;
    margin-bottom: 5px;
}

.product-button {
    display: inline-block;
    padding: 8px 18px;
    background: var(--color-green);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.product-button:hover {
    background: var(--color-accent);
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: 100px 20px;

}

.testimonial-card {
    background: linear-gradient(135deg, #F5F1E8, #E8DCC4);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--color-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--color-dark);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--color-mustard);
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: var(--color-light);
    opacity: 0.8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
        letter-spacing: 0.3px;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--color-mustard);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 18px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Social Media Links */
.social-media-links {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 10px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.social-media-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-media-links a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 5px 20px rgba(107, 142, 35, 0.4);
}
    .shareYours{
            display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    margin-bottom: 0px;
    }
    .shareYours p{
        margin-bottom: 0px;
        margin-right:15px;
    }
    .shareYours .form-control{
            width: 30%;
    margin-right: 15px;
    }
/* Responsive */
@media (max-width: 768px) {
    .mini-flex-col{
        flex-direction: column;
    }
     .shareYours{
flex-direction: column;           
    }
    .shareYours p{
        margin-bottom: 3px;
         margin-right:0px;
    }
    .shareYours .form-control{
            width: 100%;
   margin-bottom: 15px;
    }
    .did-you-know {
        gap: 3px;
    }

    .didYouKnow {
        font-weight: normal;
        font-size: 14px !important;
    }
    .why-lead{
        font-size: 14px !important;
    }
    .hb-deck h2{
            font-size: 24px !important;
        font-weight: 600;
    }
    .why-enhanced {
        margin: 20px auto 20px;
        padding: 22px;
        color: #213226;
    }
    .section h2{
         font-size: 24px !important;  
    }
    .why-title {
        font-size: 24px !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0px 5px;

    }

    .section-title {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .social-media-links {
        right: 10px;
    }
}


.whatsapp-widget {
    position: fixed;
    bottom: 18px;
    background: #ffffff;
    color: #25D366;
    border: 1.5px solid #dfe6dd;
    padding: 8px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 1500;
    right: 16px;
}

.whatsapp-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.whatsapp-widget svg {
    width: 20px;
    height: 20px;
    stroke: #25D366;
}

.whatsapp-widget span {
    color: #203225;
    font-size: 0.92rem;
    letter-spacing: 0.3px;
}