
/* --- UPDATED style.css --- */
:root {
    --primary: #003366; /* Industrial Blue */
    --primary-dark: #002244;
    --accent: #ff6600;  /* Highlight Orange */
    --accent-hover: #e65c00;
    --light: #f8f9fa;
    --dark: #212529;
    --text-gray: #6c757d;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { color: var(--dark); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Navigation */

.logo { font-size: 1.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.logo span { color: var(--accent); }
nav ul { display: flex; gap: 25px; }
nav a { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--accent); }

/* Buttons */
.btn { display: inline-block; background: var(--accent); color: white; padding: 12px 25px; border-radius: 4px; font-weight: 600; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary); }

/* Hero Section */
.hero { 
    background: linear-gradient(rgba(0, 30, 60, 0.8), rgba(0, 30, 60, 0.8)), url('/src/hero_img.png');
    background-size: cover; background-position: center; 
    color: white; padding: 120px 5%; text-align: center; 
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.9; }
.hero-btns { display: flex; gap: 15px; justify-content: center; }

/* Brand Strip */
.brands-strip { background: var(--light); padding: 30px 5%; text-align: center; border-bottom: 1px solid #ddd; }
.brands-strip p { font-weight: bold; color: var(--text-gray); margin-bottom: 15px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.brand-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; font-weight: 700; color: #888; font-size: 1.5rem; }

/* Features / Why Choose Us */
.section { padding: 80px 5%; }
.bg-light { background: var(--light); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 10px; }
.section-title p { color: var(--text-gray); max-width: 600px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: white; padding: 30px; border-radius: 8px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 15px; color: var(--primary); }

/* Categories Grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.cat-card { position: relative; height: 250px; border-radius: 8px; overflow: hidden; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.cat-card:hover img { transform: scale(1.1); }
.cat-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 20px; color: white; }
.cat-overlay h3 { margin: 0; font-size: 1.4rem; }

/* CTA Strip */
.cta-strip { background: var(--primary); color: white; padding: 60px 5%; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cta-strip h2 { margin-bottom: 15px; }

/* Footer */
footer { background: #1a1a1a; color: #aaa; padding: 60px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-col h3 { color: white; margin-bottom: 20px; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--accent); }
.copyright { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-container { flex-direction: column; height: auto; padding: 15px 0; }
    nav ul { margin-top: 15px; gap: 15px; }
    .hero-btns { flex-direction: column; }
}



/* --- FIXED PRODUCT GRID & CARD STYLES --- */

/* The Grid Layout */
.product-grid { 
   display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px; 
    padding-bottom: 50px;
}

/* The Card Box */
.product-card { 
    width: 18rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px; 
    overflow: hidden; 
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;           /* Flexbox ensures footer aligns at bottom */
    flex-direction: column;  
    height: 100%;            /* Forces all cards to match height */
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.product-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
    border-color: #003366;
}

/* FIXED Image Container */
.product-img { 
    width: 100%;
    height: 250px;          /* FIXED HEIGHT for all images */
    background: #f8f9fa;    /* Light gray background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;          /* Padding inside so image doesn't touch border */
    border-bottom: 1px solid #eee;
}

/* The Image Itself */
.product-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;    /* CRITICAL: Shows WHOLE part, does not crop/cut */
    mix-blend-mode: multiply; /* Helps image blend if white background */
}

/* Card Details Section */
.p-details { 
    padding: 0.8rem; 
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;           /* Fills the rest of the card height */
}

/* Product Name */
.p-details p { 
    font-size: 1rem; 
    font-weight: 500;
    color: #333;
    margin: 0.8rem;
    text-transform: uppercase;
    display: -webkit-box;
    height: 2.4rem; /* Enforces text height consistency */
}

/* Buttons */
.inquire-btn {
    margin-top: auto; /* Pushes button to bottom of card */
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    transition: 0.3s;
}
.inquire-btn:hover { background-color: #1ebc57; }

/* Category Badge */
.cat-badge {
    background: #003366;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* --- ABOUT PAGE STYLES --- */

/* Company Stats Strip */
.stats-row {
    display: flex;
    justify-content: space-around;
    background: var(--primary);
    color: white;
    padding: 40px 5%;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 50px;
}
.stat-box h2 { font-size: 2.5rem; color: var(--accent); margin-bottom: 5px; }
.stat-box p { font-size: 1rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }

/* Owner Card Design */
.owner-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f4f4f4;
}

.profile-card {
    background: white;
    width: 100%;
    max-width: 800px;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.profile-card:hover { transform: translateY(-5px); }

/* Left Side: Photo */
.profile-img-col {
    width: 40%;
    background-image: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=800&q=80'); /* Replace with Owner Photo */
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Right Side: Info */
.profile-info-col {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-role {
    color: var(--accent);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.profile-info-col h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.profile-quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Social Buttons in Card */
.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}
.btn-wa { background: #25D366; }
.btn-call { background: #003366; }
.btn-mail { background: #dd4b39; }
.action-btn:hover { transform: scale(1.1); }

/* Responsive Mobile for Card */
@media (max-width: 768px) {
    .profile-card { flex-direction: column; }
    .profile-img-col { width: 100%; height: 300px; }
    .profile-info-col { width: 100%; padding: 30px; }
}



/* --- CONTACT PAGE STYLES --- */

/* Split Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 50px 0;
}

/* Left Column: Info */
.contact-info-box h2 { color: var(--primary); margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
.contact-icon { 
    background: var(--light); 
    color: var(--accent); 
    width: 50px; height: 50px; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.2rem; margin-right: 15px; 
}
.contact-text h4 { margin-bottom: 5px; color: #333; }
.contact-text p, .contact-text a { color: #666; font-size: 0.95rem; }

/* The Map */
.map-container {
    width: 100%;
    height: 250px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Right Column: Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; }
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s;
}
.form-control:focus { border-color: var(--primary); outline: none; }

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-form { padding: 25px; }
}


/* --- NEW STYLES FOR INDEX.HTML --- */

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    letter-spacing: 0.5px;
}
.hero-btns { display: flex; gap: 20px; justify-content: center; }
.hero .btn { 
    padding: 15px 35px; 
    font-size: 1.1rem; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}
.hero .btn-outline { 
    background: transparent; 
    border: 2px solid white; 
    color: white; 
    box-shadow: none;
}
.hero .btn-outline:hover { background: rgba(255, 255, 255, 0.2); }

/* Brand Strip - Slightly modified */
.brands-strip { 
    background: var(--light); 
    padding: 40px 5%; 
    text-align: center; 
    border-bottom: 1px solid #e0e0e0;
}
.brands-strip p { font-weight: 600; color: var(--text-gray); margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1.5px; }
.brand-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; font-weight: 700; color: #666; font-size: 1.3rem; opacity: 0.8; }

/* Featured Categories - Using a Carousel-like Structure */
.featured-categories { padding: 80px 0; }
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.carousel-track {
    display: flex;
    overflow-x: auto; /* Allows horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snaps to each item */
    gap: 20px;
    padding-bottom: 20px; /* For scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}
.carousel-item {
    flex: 0 0 300px; /* Width of each item */
    scroll-snap-align: start; /* Align to the start */
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    background: white;
}
.carousel-item:hover { transform: translateY(-5px); }
.carousel-item img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
    border-bottom: 1px solid #eee;
}
.carousel-item-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.carousel-item-content h3 { 
    color: var(--primary); 
    margin-bottom: 10px; 
    font-size: 1.3rem;
}
.carousel-item-content p { color: var(--text-gray); font-size: 0.9rem; }

/* Custom Scrollbar for Carousel (Optional) */
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px;}
.carousel-track::-webkit-scrollbar-thumb { background: #888; border-radius: 10px; }
.carousel-track::-webkit-scrollbar-thumb:hover { background: #555; }

/* Why Choose Us - Icon Section */
.why-choose-us { padding: 80px 5%; background: var(--light); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.choose-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.choose-item:hover { transform: translateY(-5px); }
.choose-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
    opacity: 0.8;
}
.choose-item h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

/* CTA Banner - Full width at bottom */
.cta-banner {
    background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.9)), url('https://images.unsplash.com/photo-1453817303472-7717f53e6d6a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cta-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}
.cta-banner p {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 30px;
    opacity: 0.9;
}
.cta-banner .btn {
    background: var(--accent);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

/* --- ULTIMATE PRO STYLE.CSS --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --primary: #003366; /* Deep Industrial Blue */
    --primary-dark: #001a33;
    --accent: #ff6600;  /* Safety Orange */
    --accent-hover: #e65c00;
    --light: #f4f6f9;
    --dark: #1a1a1a;
    --text-gray: #555;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--dark); overflow-x: hidden; background-color: #fff; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- 1. GLASS NAVBAR --- */
header { 
    background: rgba(0, 51, 102, 0.95); 
    backdrop-filter: blur(10px); 
    padding: 0 5%; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}
.logo { font-size: 2rem; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 1px; }
.logo span { color: var(--accent); }
nav ul { display: flex; gap: 30px; }
nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 1rem; position: relative; }
nav a:hover, nav a.active { color: white; }
nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--accent); transition: 0.3s; }
nav a:hover::after { width: 100%; }

/* --- 2. HERO SECTION WITH PARALLAX --- */
.hero { 
    background: linear-gradient(rgba(0, 20, 40, 0.8), rgba(0, 30, 60, 0.7)), url('/src/hero_img.png');
    background-attachment: fixed; /* Parallax Effect */
    background-size: cover; 
    background-position: center; 
    height: 85vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

/* Animation for Hero Text */
.hero-content { animation: fadeUp 1s ease-out; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 1.3rem; margin-bottom: 35px; opacity: 0.9; max-width: 700px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn-group { display: flex; gap: 20px; justify-content: center; }
.btn { 
    padding: 15px 35px; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer; 
}
.btn-primary { background: var(--accent); color: white; border: 2px solid var(--accent); }
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary); }

/* --- 3. SCROLLING MARQUEE --- */
.marquee-section { background: var(--light); padding: 15px 0; border-bottom: 1px solid #ddd; overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: scroll 20s linear infinite; }
.marquee-item { display: inline-block; font-size: 1.2rem; font-weight: 700; color: #888; margin: 0 40px; text-transform: uppercase; }
.marquee-item i { color: var(--accent); margin-right: 10px; }

/* --- 4. STATS COUNTER --- */
.stats-section { padding: 60px 5%; background: white; text-align: center; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; max-width: 1200px; margin: 0 auto; }
.stat-box { padding: 20px; }
.stat-box h2 { font-size: 3rem; color: var(--primary); margin-bottom: 5px; font-weight: 800; }
.stat-box p { color: var(--text-gray); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- 5. CATEGORY CARDS (HOVER EFFECTS) --- */
.section { padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); position: relative; display: inline-block; margin-bottom: 15px; }
.section-title h2::after { content: ''; width: 60px; height: 4px; background: var(--accent); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }
.section-title p { color: var(--text-gray); font-size: 1.1rem; }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.cat-card { 
    position: relative; 
    height: 350px; 
    border-radius: 15px; 
    overflow: hidden; 
    cursor: pointer; 
    box-shadow: var(--shadow); 
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.cat-card:hover img { transform: scale(1.1); }
.cat-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); 
    padding: 30px 20px; 
    color: white; 
    transform: translateY(10px); 
    transition: 0.3s; 
}
.cat-card:hover .cat-overlay { transform: translateY(0); }
.cat-overlay h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--accent); }

/* --- 6. WHY CHOOSE US (ICON BOXES) --- */
.bg-light { background: #f8f9fa; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; }
.feature-box { 
    background: white; padding: 40px 30px; border-radius: 10px; 
    text-align: center; transition: 0.3s; border-bottom: 4px solid transparent; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.feature-box:hover { transform: translateY(-10px); border-bottom: 4px solid var(--accent); box-shadow: var(--shadow); }
.feature-icon { font-size: 3rem; color: var(--primary); margin-bottom: 25px; }
.feature-box h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--dark); }

/* --- 7. CTA & FOOTER --- */
.cta-section { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); 
    color: white; padding: 80px 5%; text-align: center; 
}
footer { background: #111; color: #bbb; padding: 60px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;  }
.footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.3rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

/* Animations Keyframes */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .btn-group { flex-direction: column; }
    .nav-container { flex-direction: column; height: auto; padding: 15px 0; }
    nav ul { gap: 15px; margin-top: 15px; }
    .marquee-content { animation: scroll 10s linear infinite; } /* Faster on mobile */
}



/* --- PREMIUM ABOUT PAGE STYLES --- */

/* 1. About Hero */
.page-header {
    background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 30, 60, 0.85)), url('/src/about_us.png');
    background-size: cover;
    background-position: center;
    padding: 100px 5%;
    text-align: center;
    color: white;
}
.page-header h1 { font-size: 3rem; margin-bottom: 15px; }
.page-header p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* 2. Story Section (Split Layout) */
.story-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.story-img {
    flex: 1;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--light); /* Stylish Offset Border */
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-content { flex: 1; }
.story-content h2 { color: var(--primary); margin-bottom: 20px; font-size: 2.2rem; }
.story-content p { color: var(--text-gray); margin-bottom: 20px; line-height: 1.8; font-size: 1.05rem; }

/* 3. Mission & Vision Cards */
.mv-section { background: var(--light); padding: 80px 5%; }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.mv-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.mv-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.mv-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark); }

/* 4. Owner Section (Executive Style) */
.owner-spotlight {
    padding: 80px 5%;
    background: white;
    text-align: center;
}
.owner-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 50px rgba(0,51,102,0.3);
}
.owner-photo {
    flex: 1;
    background-image: url('src/owner.jpg'); /* Ensure owner.jpg exists in src */
    background-size: cover;
    background-position: top center;
    min-height: 400px;
}
/* If no photo, show gray bg */
.owner-photo:empty { background-color: #ccc; }

.owner-text { flex: 1.5; padding: 50px; text-align: left; display: flex; flex-direction: column; justify-content: center; }
.owner-text h2 { font-size: 2.2rem; margin-bottom: 5px; }
.owner-text span { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.owner-text p { margin-top: 20px; opacity: 0.9; line-height: 1.7; font-style: italic; }
.sign { margin-top: 30px; font-family: cursive; font-size: 1.5rem; color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
    .story-wrapper, .owner-container { flex-direction: column; }
    .story-img { width: 100%; height: 250px; }
    .owner-photo { width: 100%; height: 300px; }
    .owner-text { padding: 30px; }
}

/* --- UPDATED TEAM SECTION (For 3 Owners) --- */
.team-section {
    padding: 80px 5%;
    background: #f8f9fa;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;

}
.team-card {
   display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-top: 4px solid var(--accent);
}
.team-card:hover { transform: translateY(-10px); }
.team-photo {
    margin:1rem;
    height: 15rem;
    width:140%;
    background-color: #ddd;
    background-image: url('https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=400&q=80'); /* Placeholder */
    background-size: cover;
    background-position: center;
}
.team-info { padding: 25px; }
.team-info h3 { color: var(--primary); margin-bottom: 5px; font-size: 1.4rem; }
.team-info span { color: var(--accent); font-weight: bold; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* Timeline Badge Updates */
.badge-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.badge-box {
    text-align: center;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.badge-box strong { display: block; font-size: 1.5rem; color: var(--primary); }
.badge-box span { font-size: 0.9rem; color: #666; }






/* --- TULSI TEX ENGINEERING: PRO INDUSTRIAL THEME --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;800&family=Oswald:wght@400;500;700&display=swap');

:root {
    --primary: #0f172a;       /* Dark Navy (Professional) */
    --accent: #f97316;        /* Safety Orange (High Visibility) */
    --accent-hover: #ea580c;
    --text-dark: #1e293b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --glass: rgba(15, 23, 42, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { 
    font-family: 'Manrope', sans-serif; 
    color: var(--text-dark); 
    background-color: var(--white); 
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }

/* --- 1. GLASS HEADER --- */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-container {
    max-width: 100%; margin: 0 auto; padding: 0 30px;
    height: 6rem; display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 1.8rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--accent); }
.logo i { font-size: 1.4rem; color: var(--accent); }

nav ul { display: flex; gap: 30px; list-style: none; }
nav a { color: #cbd5e1; font-weight: 600; text-decoration: none; font-size: 0.95rem; transition: 0.3s; position: relative; }
nav a:hover, nav a.active { color: var(--white); }
nav a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 0; background: var(--accent); transition: 0.3s;
}
nav a:hover::after { width: 100%; }

/* --- 2. HERO SECTION (PARALLAX) --- */
.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)), 
                url('/src/hero_img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--white);
    padding: 0 20px;
}
.hero-content { max-width: 900px; animation: fadeInUp 1s ease-out; }

.hero-badge {
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent);
    padding: 5px 15px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 700;
    border: 1px solid var(--accent);
    display: inline-block; margin-bottom: 20px;
}
.hero h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.hero p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 40px; max-width: 700px; margin-inline: auto; }

.btn-group { display: flex; gap: 20px; justify-content: center; }
.btn {
    padding: 15px 35px; border-radius: 4px; font-weight: 700; text-decoration: none;
    transition: 0.3s; text-transform: uppercase; font-size: 0.9rem;
}
.btn-primary { background: var(--accent); color: var(--white); border: 2px solid var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }

/* --- 3. SCROLLING MARQUEE --- */
.marquee-strip { background: var(--accent); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
.marquee-tag { 
    display: inline-block; color: var(--primary); font-weight: 800; font-size: 1.1rem; 
    margin: 0 40px; text-transform: uppercase; font-family: 'Oswald', sans-serif;
}

/* --- 4. ABOUT & STATS GRID --- */
.about-section { padding: 100px 5%; background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h4 { color: var(--accent); font-size: 1rem; margin-bottom: 10px; }
.about-text h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.about-text p { color: #64748b; margin-bottom: 20px; }

.stats-row { display: flex; gap: 40px; margin-top: 30px; }
.stat-item h3 { font-size: 2.5rem; color: #ffffff ; margin-bottom: 0; }
.stat-item p { font-size: 0.9rem; color: #ffffff; font-weight: 600; text-transform: uppercase; }

.about-img { 
    position: relative; height: 500px; 
    background: url('https://images.unsplash.com/photo-1612152605332-959c9b68a33a?auto=format&fit=crop&w=800&q=80');
    background-size: cover; border-radius: 8px;
    box-shadow: 20px 20px 0 var(--light-bg);
}

/* --- 5. CATEGORIES (Cards) --- */
.products-section { padding: 100px 5%; background: var(--light-bg); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.cat-card {
    background: var(--white); border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transition: 0.3s;
    group: relative;
}
.cat-card:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.cat-img { height: 250px; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.cat-card:hover .cat-img img { transform: scale(1.1); }
.cat-info { padding: 25px; border-bottom: 3px solid transparent; transition: 0.3s; }
.cat-card:hover .cat-info { border-bottom-color: var(--accent); }
.cat-info h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; }
.cat-info p { color: #64748b; font-size: 0.95rem; margin-bottom: 15px; }
.cat-link { color: var(--accent); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 5px; }

/* --- 6. PROPRIETORS (Leadership) --- */
.team-section { padding: 100px 5%; background: var(--white); text-align: center; }
.team-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 50px; }
.leader-card {
    background: var(--white); border: 1px solid #e2e8f0; padding: 30px;
    border-radius: 8px; width: 300px; transition: 0.3s;
}
.leader-card:hover { border-color: var(--accent); }
.leader-icon { 
    width: 70px; height: 70px; background: #fff7ed; color: var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 20px;
}
.leader-card h3 { color: var(--primary); margin-bottom: 5px; }
.leader-card span { color: #64748b; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }

/* --- 7. FOOTER --- */
footer { background: var(--primary); color: #94a3b8; padding: 80px 5% 30px; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; }
.footer-brand h2 { color: var(--white); font-size: 2rem; margin-bottom: 20px; }
.footer-brand span { color: var(--accent); }
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.copyright { text-align: center; padding-top: 30px; font-size: 0.9rem; }

/* Animations & Responsive */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .nav-container { flex-direction: column; height: auto; padding: 15px 0; }
    nav ul { margin-top: 15px; gap: 15px; }
}

.hero-content-h {font-size: 2.5rem !important; font-weight: 600;}






header { background: var(--primary); color: white; padding: 0 5%; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
