/* Basic Reset and Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section {
    padding: 60px 20px;
    margin: 20px 0;
    text-align: center;
}

h1, h2, h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Header/Hero Section */
.hero-section {
    background-color: #ffffff;
    padding: 40px 0;
    border-bottom: 5px solid #0056b3;
}

.logo-area {
    margin-bottom: 30px;
}

.logo {
    width: 100px; /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.hero-section h1 {
    color: #0056b3; /* A deep blue based on the logo's color */
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 5px;
}

.header-images {
    padding: 20px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for Page 2 layout */
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #ddd;
}


/* About, Mission/Vision Sections */
.about-section {
    background-color: #e9ecef;
}

.mission-vision-section {
    background-color: #ffffff;
    border-left: 5px solid #28a745; /* Green accent */
    max-width: 800px;
    margin: 40px auto;
}

.mission-vision-section h3 {
    color: #28a745;
    margin-top: 30px;
}

/* Product Section */
.product-section {
    background-color: #f8f9fa;
}

.pillars {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pillars span {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
}

.fabric-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.fabric-list li {
    background-color: #6c757d;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
}

/* Certifications Section */
.certification-section {
    background-color: #ffffff;
}

.certification-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.certification-grid img {
    width: 80px; /* Fixed size for logos */
    height: 80px;
    object-fit: contain;
    padding: 5px;
    border: 1px solid #eee;
    background-color: white;
}

.product-type-note {
    font-style: italic;
    color: #555;
    margin-top: 20px;
}

/* Why Choose Us & Buyer Section */
.why-choose-us-section {
    background-color: #e9ecef;
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    padding: 40px;
    border-radius: 8px;
}

.why-choose-us-section ul {
    list-style: disc;
    margin-left: 20px;
}

.buyer-section {
    background-color: #ffffff;
    padding-top: 40px;
}

.buyer-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.buyer-names span {
    background-color: #ffc107; /* Yellow accent */
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}


/* Footer/Contact Section */
.contact-section {
    background-color: #343a40;
    color: white;
    padding: 50px 20px;
}

.contact-section h2 {
    color: white;
}

.contact-section a {
    color: #ffc107;
    font-weight: bold;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
    }

    .pillars {
        flex-direction: column;
    }
}