/* GLOBAL RESETS */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: #fff; color: #333; line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* COLORS */
:root {
    --primary-red: #b71c1c;
    --primary-blue: #0d47a1;
    --light-grey: #f4f4f4;
    --dark-overlay: rgba(0, 0, 0, 0.6);
}

/* HEADER */
header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo { font-size: 24px; font-weight: 800; color: var(--primary-blue); text-transform: uppercase; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 15px; color: #444; }
.nav-links a:hover { color: var(--primary-red); }
.hamburger { display: none; font-size: 24px; cursor: pointer; }

/* HERO BANNER (New) */

.hero-bg {
            /* Replace the URL below with your image file path */
            background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.2) 100%), 
                        url('images/1.1.jpg');
            background-size: cover;
            background-position: center;
        }
/*.hero-banner {
    background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://placehold.co/1200x600?text=Premium+Sportswear+Manufacturing');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
    float: left;
}
.hero-title { font-size: 3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; }*/

/* WHY US SECTION (New) */
.why-us-section { text-align: center; padding: 40px 20px; background: #fff; margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }
.feature-item { padding: 20px; border: 1px solid #eee; border-radius: 5px; transition: 0.3s; }
.feature-item:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* SECTIONS */
.section-title { font-size: 1.8rem; color: var(--primary-blue); text-align: center; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 40px; font-size: 1rem; }

/* PRODUCT GRID */
.product-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 50px; }
.category-card { background: #fff; text-align: center; border: 1px solid #eee; padding-bottom: 20px; transition: transform 0.2s; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.cat-img { height: 250px; width: 100%; object-fit: cover; background: #ddd; }
.cat-content { padding: 20px; }
.cat-title { color: var(--primary-blue); margin-bottom: 10px; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; }
.cat-desc { font-size: 0.9rem; color: #666; margin-bottom: 20px; min-height: 40px; }

/* BUTTONS */
.btn { display: inline-block; padding: 10px 25px; border-radius: 4px; font-weight: 600; text-align: center; border: none; cursor: pointer; }
.btn-red { background: var(--primary-red); color: white; }
.btn-red:hover { background: #8e0000; }
.btn-blue { background: var(--primary-blue); color: white; }
.btn-blue:hover { background: #002171; }
.btn-lg { padding: 15px 40px; font-size: 1.1rem; }

/* CUSTOMIZATION */
.custom-banner { background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.2) 100%), 
                        url('images/1.1.jpg'); padding: 50px 0; text-align: center; margin: 40px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.process-flow { display: flex; justify-content: center; align-items: center; gap: 20px; margin: 40px 0; flex-wrap: wrap; }
.process-item { text-align: center; width: 150px; }
.arrow { font-size: 2rem; color: #ccc; }

/* EXPORT */
.export-section { background: #fff; padding: 50px 0; text-align: center; }
.flags { font-size: 2.5rem; margin: 20px 0; letter-spacing: 15px; }

/* GET QUOTE CTA (New) */
.cta-banner { background: var(--primary-blue); color: white; padding: 40px 20px; text-align: center; margin-top: 40px; }
.cta-banner h2 { color: white; margin-bottom: 15px; }

/* FORMS & FOOTER */
.form-box { background: #fff; padding: 30px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 3px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-detail-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

footer { background: #f0f0f0; padding: 30px 0; margin-top: auto; border-top: 1px solid #ddd; font-size: 0.85rem; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links a { margin-right: 20px; font-weight: 600; color: #444; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; width: 100%; background: #fff; padding: 20px; box-shadow: 0 5px 5px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .product-category-grid, .features-grid, .grid-2, .team-grid, .product-detail-container { grid-template-columns: 1fr; }
    .process-flow { flex-direction: column; }
    .arrow { transform: rotate(90deg); }
}



/* --- CUSTOMIZATION PAGE SPECIFIC STYLES --- */

/* Top Mini Process Strip [cite: 77] */
.mini-process-strip {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}
.mini-step img {
    height: 50px;
    margin: 0 auto 10px;
    display: block;
}

/* Main Process Section [cite: 81-87] */
.process-main {
    text-align: center;
    padding: 50px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}
.process-card {
    text-align: center;
    position: relative;
}
.process-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.process-arrow {
    position: absolute;
    right: -15px;
    top: 40%;
    font-size: 24px;
    color: #ccc;
    display: none; /* Hidden on mobile, shown on desktop via media query */
}

/* Full Customization Options Section  */
.options-container {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid #eee;
}
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.option-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.option-card {
    text-align: center;
}
.option-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}
.cta-box-blue {
    background: var(--primary-blue); /* Dark Blue */
    color: white;
    padding: 40px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.cta-box-blue h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (min-width: 769px) {
    .process-arrow { display: block; }
    .process-card:last-child .process-arrow { display: none; }
}
@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
    .option-items { grid-template-columns: 1fr 1fr; } /* Keep small items side-by-side */
}




/* --- ABOUT US PAGE SPECIFIC STYLES --- */

/* Hero Section with Background Image  */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://placehold.co/1200x600?text=Factory+Floor+Background');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}
.about-hero h1 { font-size: 2.5rem; margin-bottom: 10px; text-transform: uppercase; }
.about-hero p { font-size: 1.1rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; color: #ddd; }

/* Mission & Vision Cards [cite: 103-108] */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.mission-card {
    background: #f9f9f9;
    padding: 30px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.mission-card h3 { color: var(--primary-blue); margin-bottom: 15px; text-transform: uppercase; }
.mission-card.vision { border-left-color: var(--primary-blue); }

/* Team & Capabilities Section  */
.capabilities-container {
    background: #fff;
    padding: 50px 0;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Text Left, Images Right */
    gap: 40px;
    align-items: center;
}
.cap-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: #444;
}
.cap-list li::before {
    content: '☑';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}
.factory-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.factory-images img {
    border-radius: 4px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Quality & Certifications  */
.cert-section {
    text-align: center;
    padding: 40px 20px;
    background: #eef2f6; /* Light Blue/Grey background */
    margin-bottom: 50px;
}
.cert-flags {
    font-size: 3rem;
    margin-top: 20px;
    letter-spacing: 20px;
}

/* Why Partner With Us Checklist [cite: 115-117] */
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-grid, .capabilities-grid, .partner-grid { grid-template-columns: 1fr; }
    .factory-images { grid-template-columns: 1fr; }
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }



