/* Global Reset & Theme Variables */
:root {
    --bcx-yellow: #FFCC00;
    --bcx-black: #050505;
    --bcx-dark-grey: #121212;
    --bcx-border: #222222;
    --text-light: #E0E0E0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; scroll-behavior: smooth; }

body { background-color: var(--bcx-black); color: var(--text-light); line-height: 1.6; }
h1, h2, h3 { color: #ffffff; text-transform: uppercase; letter-spacing: 1px; }
.highlight { color: var(--bcx-yellow); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; background: rgba(5, 5, 5, 0.95); position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid var(--bcx-border); }
.logo img { 
    width: 100px; 
    height: auto; 
    transform: scale(1.3); 
    transform-origin: left center;
    margin-top: 5px;
}
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-light); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--bcx-yellow); text-shadow: 0 0 8px rgba(255, 204, 0, 0.5); }
.btn { border: 1px solid var(--bcx-yellow); padding: 8px 20px; border-radius: 2px; color: var(--bcx-yellow) !important; }
.btn:hover { background: var(--bcx-yellow); color: var(--bcx-black) !important; box-shadow: 0 0 15px rgba(255, 204, 0, 0.4); }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background-position: center; background-size: cover; border-bottom: 2px solid var(--bcx-yellow); }
.hero h1 { font-size: 4rem; font-weight: 800; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; color: #aaaaaa; }
.btn-primary { background: var(--bcx-yellow); color: var(--bcx-black); padding: 15px 35px; text-decoration: none; font-weight: bold; text-transform: uppercase; border-radius: 2px; transition: 0.3s; }
.btn-primary:hover { box-shadow: 0 0 20px rgba(255, 204, 0, 0.6); transform: translateY(-2px); }
.btn-secondary { background: transparent; border: 1px solid #fff; color: #fff; padding: 15px 35px; text-decoration: none; font-weight: bold; text-transform: uppercase; margin-left: 15px; transition: 0.3s; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Product Grid */
.products-section { padding: 100px 0; background: var(--bcx-dark-grey); }
.products-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 10px; }
.section-intro { text-align: center; margin-bottom: 60px; color: #888; }
.product-grid { display: flex; gap: 30px; flex-wrap: wrap; }
.product-card { background: var(--bcx-black); padding: 20px; border: 1px solid var(--bcx-border); flex: 1; min-width: 300px; transition: 0.4s; position: relative; }
.product-card:hover { border-color: var(--bcx-yellow); transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.img-container { position: relative; margin-bottom: 20px; overflow: hidden; }
.product-card img { width: 100%; height: 220px; object-fit: cover; filter: grayscale(40%); transition: 0.4s; }
.product-card:hover img { filter: grayscale(0%); }
.overlay { position: absolute; top: 10px; right: 10px; background: var(--bcx-yellow); color: var(--bcx-black); padding: 4px 10px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }
.product-card h3 { color: var(--bcx-yellow); margin-bottom: 10px; }

/* Showcase Section */
.showcase { padding: 100px 0; border-top: 1px solid var(--bcx-border); }
.showcase-flex { display: flex; align-items: center; gap: 50px; }
.showcase-text { flex: 1; }
.showcase-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.showcase-img { flex: 1; }
.showcase-img img { width: 100%; border: 2px solid var(--bcx-yellow); box-shadow: -15px 15px 0px rgba(255, 204, 0, 0.1); }

/* Footer */
footer { text-align: center; padding: 40px; background: #000; border-top: 1px solid var(--bcx-border); color: #555; }

/* Responsive */
@media (max-width: 768px) {
    .showcase-flex { flex-direction: column; }
    .hero h1 { font-size: 2.8rem; }
    .btn-secondary { margin-left: 0; margin-top: 15px; display: block; }
}
/* About Section */
.about-section { padding: 80px 0; background: var(--bcx-black); text-align: center; border-bottom: 1px solid var(--bcx-border); }
.about-section h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-section .lead { color: var(--bcx-yellow); font-size: 1.2rem; font-weight: bold; margin-bottom: 20px; }
.about-section p { max-width: 800px; margin: 0 auto; color: #aaa; }

/* Clean Gallery Section */
.gallery-section { padding: 100px 0; background: var(--bcx-dark-grey); text-align: center; border-top: 1px solid var(--bcx-border); }
.gallery-section h2 { margin-bottom: 10px; font-size: 2.5rem; }

/* Making the grid spacious for large images */
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
    gap: 40px; 
    margin-top: 50px; 
    text-align: left; 
}

/* Individual Image Card */
.gallery-card { 
    background: var(--bcx-black); 
    border: 1px solid var(--bcx-border); 
    border-radius: 4px; 
    overflow: hidden; 
    transition: 0.3s; 
}
.gallery-card:hover { 
    border-color: var(--bcx-yellow); 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.6); 
}

/* Large, clean images */
.gallery-card img { 
    width: 100%; 
    height: 350px; 
    object-fit: cover; /* Yeh tasveer ko stretch nahi hone dega */
    border-bottom: 3px solid var(--bcx-yellow); 
}

/* Text area below the image */
.gallery-info { padding: 30px; }
.gallery-info h4 { color: var(--bcx-yellow); font-size: 1.4rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.gallery-info p { color: var(--text-light); font-size: 1.05rem; line-height: 1.6; }

/* Responsive for Mobile */
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card img { height: 250px; }
}

/* Contact Section & Form Styling */
.contact-section { padding: 80px 0; background: var(--bcx-black); text-align: center; }
.contact-section h2 { margin-bottom: 40px; font-size: 2.5rem; }

.contact-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.contact-card, .contact-form-container {
    flex: 1;
    background: var(--bcx-dark-grey);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid var(--bcx-border);
}

.contact-card { border-left: 4px solid var(--bcx-yellow); }
.contact-card h3, .contact-form-container h3 { color: var(--bcx-yellow); margin-bottom: 20px; font-size: 1.5rem; }
.contact-card p { margin-bottom: 15px; font-size: 1.1rem; }
.contact-card a { color: var(--text-light); text-decoration: none; transition: 0.3s; }
.contact-card a:hover { color: var(--bcx-yellow); }

/* Form Elements */
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--bcx-black);
    border: 1px solid var(--bcx-border);
    color: var(--text-light);
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--bcx-yellow);
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}
.contact-form button { cursor: pointer; border: none; font-size: 1rem; }

/* Responsive adjustments for phones */
@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; }
}