:root {
    --primary-color: #F39C12;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F4F6F7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #1B2631;
    font-size: 28px;
    font-weight: 700;
}

.header-logo {
    height: 40px; /* Adjust based on desired size */
    margin-right: 10px; /* Space between logo and text */
    vertical-align: middle; /* Align with text */
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    text-align: center;
    color: white;
}

.hero .container {
    display: block;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 5px;
}

.highlight-item i {
    font-size: 22px;
    color: var(--primary-color);
}

.highlight-item span {
    font-size: 16px;
    font-weight: 700;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
    border: none;
}

.btn:hover {
    background: #e08e0b;
}

/* Quality & Price Section */
.quality-price {
    padding: 80px 0;
    background: #F4F6F7;
}

.quality-price h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1B2631;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature .icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    font-size: 18px;
    color: #666;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #fff;
}

.products h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1B2631;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product {
    background: #F4F6F7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.product ul {
    flex-grow: 1;
}

.product:hover {
    transform: translateY(-10px);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1B2631;
}

.product p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.product ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.product li {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 30px;
}

.product li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

/* Delivery Section */
.delivery {
    padding: 80px 0;
    background: #F4F6F7;
}

.delivery h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1B2631;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.delivery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.delivery-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.delivery-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.delivery-text ul {
    list-style: none;
}

.delivery-text li {
    font-size: 18px;
    padding: 10px 0;
    color: #333;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1B2631;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background: #F4F6F7;
}

.clients h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1B2631;
}

.client-logos img {
    height: 100px; /* Adjust as needed */
    width: auto;
    max-width: 200px;
    filter: grayscale(100%); /* Optional: desaturate logos */
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevent logos from shrinking */
    margin: 0 20px;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Delivery Section */
.delivery {
    padding: 80px 0;
    background: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1B2631;
}

.contact-info {
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s;
}

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

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--primary-color);
}

#form-messages {
    margin-top: 20px;
    text-align: center;
}

#form-messages p {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Success Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}

.popup-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #1B2631;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 900px; /* Limit width of grid */
    margin-bottom: 30px;
    text-align: left;
}

.footer-section h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer p {
    font-size: 16px;
    margin-top: 20px;
}

.msme-logo {
    width: 150px;
    height: auto; /* Adjust as needed */
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .highlights {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .quality-price h2,
    .products h2,
    .delivery h2,
    .contact h2 {
        font-size: 32px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .client-logos {
        justify-content: flex-start; /* Ensure logos start from left on small screens */
        gap: 20px; /* Reduce gap on smaller screens */
    }

    .client-logos img {
        height: 60px; /* Adjust logo size for smaller screens */
        max-width: 150px;
    }
    
    .product,
    .feature {
        padding: 20px;
    }
    
    .hero-image,
    .delivery-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero-image,
    .delivery-image {
        height: 250px;
    }
    
    .quality-price,
    .products,
    .delivery,
    .contact {
        padding: 50px 0;
    }
    
    .product,
    .feature {
        padding: 15px;
    }
    
    .product h3,
    .feature h3 {
        font-size: 22px;
    }
    
    .product p,
    .feature p {
        font-size: 16px;
    }
    
    .product img,
    .feature img {
        height: 180px;
    }
}
