* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fefefe;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3e 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.9rem;
    color: #c8e6c9;
    letter-spacing: 1px;
    margin-top: 5px;
}

.logo-tm {
    font-size: 0.7rem;
    vertical-align: super;
    color: #ffd700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 8px 0;
    position: relative;
}

nav a:hover {
    color: #ffd700;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ffd700;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - FIXED FOR MOBILE */
.hero {
    background: url('ChatGPT Image Jan 8, 2026, 10_15_07 AM.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Changed from fixed to scroll for mobile */
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Products Section */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #1a472a;
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #ffd700;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.product-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
    background: linear-gradient(to bottom, #f9f9f9, white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a472a;
    text-align: center;
}

.product-subtitle {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center;
}

.product-tag {
    display: inline-block;
    background-color: #1a472a;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: center;
    min-height: 60px;
}

.product-features {
    list-style: none;
    margin-top: 15px;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-features li {
    padding: 5px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.9rem;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: #1a472a;
    margin-right: 8px;
    font-size: 0.8rem;
}

.product-weight {
    color: #1a472a;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

/* Buy Now Button */
.buy-now-btn {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.buy-now-btn:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.buy-now-btn i {
    font-size: 1.1rem;
}

/* WhatsApp Catalog Link in Footer */
.whatsapp-catalog-link {
    color: #25D366 !important;
    font-weight: bold;
}

.whatsapp-catalog-link i {
    margin-right: 5px;
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
}

.contact-info h3 {
    color: #1a472a;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 25px;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    background-color: #f0f7f0;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 350px;
    justify-content: center;
}

.contact-details i {
    background-color: #1a472a;
    color: #ffd700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
}

.contact-details .contact-text {
    text-align: left;
}

.contact-details strong {
    display: block;
    color: #1a472a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* About Section */
.about-section {
    background-color: #f0f7f0;
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: 10px;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: #1a472a;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.benefit-item i {
    color: #1a472a;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #49544d;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #ffd700;
    transform: translateY(-5px);
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #c8e6c9;
}

/* Responsive Styles - UPDATED HERO SECTION FOR MOBILE */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
    }
    
    nav {
        width: 100%;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .logo-main {
        font-size: 1.8rem;
    }
    
    /* HERO FIX FOR MOBILE */
    .hero {
        padding: 60px 0;
        min-height: 70vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-details li {
        min-width: 280px;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 1.5rem;
    }
    
    /* HERO FIX FOR SMALL MOBILE */
    .hero {
        padding: 50px 0;
        min-height: 60vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .contact-details li {
        min-width: 100%;
        padding: 15px 20px;
    }
    
    .contact-details i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details p {
        font-size: 1.3rem;
    }
}

/* Additional fix for very small screens */
@media (max-width: 320px) {
    .hero {
        min-height: 50vh;
        padding: 40px 0;
    }
}