/* General Styling */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: #f4f4f477; overflow-x: hidden; scroll-behavior: smooth; }

/* Header Styling */
header {
    background: #fff;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-img { width: 50px; height: 50px; border-radius: 50%; }
.brand-name { font-size: 24px; font-weight: bold; color: #333; }
nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 600; }

/* WhatsApp Static Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* Hero Section */
.hero { position: relative; width: 100%; height: 500px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-text {
    position: absolute; top: 50%; left: 10%; transform: translateY(-50%);
    color: white; text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Product Section (Scrollable) */
.product-section { padding: 50px 5%; }
.section-title { text-align: center; margin-bottom: 30px; }
.product-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: thin;
}
.product-card {
    min-width: 250px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.product-card img { width: 100%; border-radius: 8px; }
.price { color: #e44d26; font-weight: bold; margin: 10px 0; }
.buy-link {
    display: inline-block;
    background: #333; color: white;
    padding: 8px 15px;
    text-decoration: none; border-radius: 5px;
}

/* Feature Section (Hover Cards) */
.feature-section { padding: 50px 5%; background: #fff; }
.feature-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.feature-card {
    position: relative;
    width: 300px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.feature-card img { width: 100%; transition: 0.5s; }
.feature-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); color: white;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: 0.5s; font-size: 20px; font-weight: bold;
}
.feature-card:hover img { transform: scale(1.1); }
.feature-card:hover .feature-overlay { opacity: 1; }

/* Brand Description */
.brand-desc { padding: 60px 10%; text-align: center; background: #eee; }
.brand-desc h2 { margin-bottom: 20px; }

/* Footer */
footer { background: #1a1a1a; color: white; padding: 40px 5% 10px; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-box h3 { margin-bottom: 15px; border-bottom: 2px solid #e44d26; display: inline-block; }
.social-icons { display: flex; gap: 20px; font-size: 24px; margin-top: 15px; }
.social-icons a { color: white; transition: 0.3s; }
.social-icons a:hover { color: #e44d26; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 14px; }


/* founder details */
.founder{
    display: grid;
    align-items: center;
    background-color: antiquewhite;
    margin: 20px 30px;
    padding: 20px 30px;
    justify-content: center;
   
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

}
.gridbox{
   max-width: 1000px;
    height: auto;
    
    display: grid;
    text-align: center;
    justify-content: center;
    justify-items: center;
}
    
   
.gridbox img{
    width: 220px;
    border: #1a1a1a solid 1px;
    border-radius: 12px;
    margin-top: 20px;
    

}

/* Mobile Responsive */
@media (max-width: 768px) {
    header .header-container { flex-direction: column; gap: 10px; }
    .hero { height: 300px; }
}