/* Global Styles */
:root {
    --primary: #002366;
    --secondary: #FFD700;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary);
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 35, 102, 0.7), rgba(0, 35, 102, 0.7)), url('../assets/banner_1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Stats Section */
.stats {
    background-color: var(--light);
    padding: 40px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--dark);
}

/* About Section */
.about {
    background-color: white;
}

.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.about-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

/* Products Section */
.products {
    background-color: var(--light);
}

.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 350px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.certification-item {
    transition: transform 0.3s;
}

.certification-item:hover {
    transform: translateY(-10px);
    transform: scale(1.1);
}

.gallery-section {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}

.gallery-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.swiper {
    width: 90%;
    /* max-width: 900px; */
    height: auto;
    margin: auto;
}

.swiper-slide img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Production Section */
.production {
    background-color: white;
}

.capacity-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.capacity-table th,
.capacity-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.capacity-table th {
    background-color: var(--primary);
    color: white;
}

.capacity-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Quality Section */
.quality {
    background-color: var(--light);
}

.certifications {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.certification-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* text-align: center;
    max-width: 300px; */
}

/* .certification-item img {
    height: 100px;
    margin-bottom: 20px;
} */

/* Contact Section */
/* .contact {
    background-color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
} */

.contact-section {
    padding: 40px 20px;
    background: #f9f9f9;
    /* max-width: 1200px; */
    margin: auto;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.location-block {
    /* display: flex; */
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    /* margin-bottom: 30px; */
    padding: 20px;
    box-shadow: 0 2px 10px #ccc;
    gap: 20px;
}

.address {
    flex: 1 1 250px;
    /* min-height: 170px; */
    margin-bottom: 20px;
}

.address h3 {
    color: #002366;
    font-size: 25px;
    margin-bottom: 10px;
}

.map {
    flex: 2 1 400px;
}

.map iframe {
    width: 100%;
    /* height: 200px; */
    border: 0;
    border-radius: 6px;
}

.qr {
    flex: 0 1 120px;
    text-align: center;
}

.qr img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
}

/* Production Capacity Section Styles */
/* Production Capacity Section */
.production {
    background-color: white;
    padding: 60px 0;
}

.capacity-section {
    margin-bottom: 50px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.capacity-subtitle {
    color: #002366;
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    padding-bottom: 10px;
}

.capacity-subtitle:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #FFD700;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.production-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.production-table th {
    background-color: #002366;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.production-table td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.production-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.production-table tr:hover {
    background-color: #f0f7ff;
}

.capacity-highlight {
    background: #002366;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.capacity-note {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin: 25px 0;
    border-left: 4px solid #FFD700;
}

.capacity-note p {
    font-weight: 500;
    color: #002366;
    margin: 0;
}

.division-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.division-title {
    color: #002366;
    font-size: 20px;
    margin: 0;
}

.brand-tag {
    display: inline-block;
    background: #002366;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-range {
    margin-top: 40px;
}

.range-title {
    color: #002366;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.range-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #FFD700;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.range-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.range-column {
    flex: 1;
    min-width: 250px;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    background: #f8f8f8;
    margin-bottom: 10px;
    padding: 12px 20px;
    border-left: 3px solid #002366;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 4px;
}

.product-list li:hover {
    background: #e6f2ff;
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .capacity-section {
        padding: 20px;
    }

    .production-table {
        font-size: 14px;
    }

    .production-table th,
    .production-table td {
        padding: 10px 12px;
    }

    .range-columns {
        flex-direction: column;
    }

    .division-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .production-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .capacity-subtitle {
        font-size: 20px;
    }

    .capacity-highlight,
    .capacity-note {
        font-size: 15px;
    }
}

/* Woven Production Capacity Styles */
/*
.woven-capacity-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.section-title {
    color: #002366;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
}

.woven-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.woven-table th {
    background-color: #002366;
    color: white;
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
}

.woven-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.woven-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.minimum-qty {
    background: #f0f7ff;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #002366;
}

.minimum-qty h3 {
    color: #002366;
    margin-bottom: 10px;
    font-size: 18px;
}

.minimum-qty p {
    margin: 8px 0;
    font-weight: 500;
}

.range-title {
    color: #002366;
    font-size: 22px;
    text-align: center;
    margin: 40px 0 20px;
    position: relative;
}

.range-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #FFD700;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.range-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.range-column {
    flex: 1;
    min-width: 250px;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    background: #f8f8f8;
    margin-bottom: 12px;
    padding: 12px 20px;
    border-left: 3px solid #002366;
    font-weight: 500;
    transition: all 0.3s;
}

.product-list li:hover {
    background: #e6f2ff;
    transform: translateX(5px);
}
 */
/* Responsive adjustments */
/* @media (max-width: 768px) {
    .woven-capacity-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .woven-table {
        font-size: 14px;
    }
    
    .range-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .range-column {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .woven-table {
        display: block;
        overflow-x: auto;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .range-title {
        font-size: 20px;
    }
} */

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        transition: all 0.3s;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .stat-item {
        min-width: 150px;
        margin-bottom: 20px;
    }
}

.address-container {
    display: grid;
    /* Creates 6 equal-width columns */
    gap: 5px;
    /* Space between columns */
    margin-top: 20px;
}

.address-item {
    /* background: lightgray; */
    padding: 20px 0px;
    text-align: center;
    /* border: 1px solid #777; */
    transition: 0.3s;
}

.contact-section {
    background-color: white;
}

@media screen and (min-width: 800px) {

    .address-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .address-item {
        padding: 20px;
    }
}