/* === VARIABLES & RESET === */
:root {
    --primary-blue: #0b3d91;   /* Royal Blue */
    --accent-gold: #ffcc00;    /* Gold */
    --dark-text: #222;
    --light-text: #555;
    --bg-light: #f4f7f9;
    --white: #fff;
    --border-color: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--dark-text); background-color: var(--bg-light); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* === BUTTONS & ACTIONS === */
.btn-fill {
    background: var(--primary-blue); color: var(--white); padding: 10px 25px; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-fill:hover { background: var(--accent-gold); color: var(--dark-text); }

.btn-outline {
    background: transparent; border: 2px solid var(--primary-blue); color: var(--primary-blue); padding: 10px 25px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-outline:hover { background: var(--primary-blue); color: var(--white); }

.btn-gold-outline {
    background: transparent; border: 2px solid var(--accent-gold); color: var(--accent-gold); padding: 10px 25px; font-weight: 600; cursor: pointer; transition: 0.3s; text-transform: uppercase;
}
.btn-gold-outline:hover { background: var(--accent-gold); color: var(--primary-blue); }

/* PRODUCT CARD BUTTONS (NEW) */
.card-actions { margin-top: 15px; border-top: 1px solid #eee; padding-top: 15px; }
.btn-get-quote {
    width: 100%;
    background: #e63946; /* Strong Red for CTA */
    color: white;
    border: none;
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
}
.btn-get-quote:hover { background: #d62839; box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3); }

.secondary-links { display: flex; justify-content: space-between; font-size: 13px; font-weight: 500; }
.view-details { color: var(--primary-blue); }
.download-specs { color: #666; }
.download-specs:hover { color: var(--dark-text); }

/* === HEADER SECTION === */
.top-header { background: #062766; color: rgba(255,255,255,0.9); padding: 8px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-contact a, .top-social span { margin-right: 15px; }
.top-contact i, .top-social i { color: var(--accent-gold); margin-right: 5px; }

.main-header { background: var(--white); padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.logo-section { display: flex; align-items: center; gap: 15px; }
.header-logo { height: 95px; } /* Adjusted size */
.company-info h1 { font-size: 24px; color: var(--primary-blue); line-height: 1.2; }
.company-info p { font-size: 13px; color: var(--light-text); margin-top: 5px; }
.header-actions { display: flex; gap: 10px; }

/* --- Updated Header Icons --- */

/* Sirf Phone/Email icon ko flip (mirror) karne ke liye */
.top-contact i { 
    display: inline-block;      /* Transform ke liye zaroori hai */
    transform: scaleX(-1);      /* Ye icon ko horizontally palat dega */
    color: var(--accent-gold); 
    margin-right: 5px; 
}

/* Social media icons ko seedha rakhne ke liye (alag rule) */
.top-social i { 
    color: var(--accent-gold); 
    margin-right: 5px; 
    /* Yahan transform nahi lagaya taki Facebook/Insta ulte na dikhe */
}

.top-contact a, .top-social span { margin-right: 15px; }

/* === NAVIGATION === */
.sticky-nav { background: var(--primary-blue); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-links { display: flex; }
.nav-links li a { display: block; padding: 15px 20px; color: var(--white); font-weight: 500; text-transform: uppercase; font-size: 14px; }
.nav-links li a:hover, .nav-links li a.active { background: var(--accent-gold); color: var(--primary-blue); }
.menu-toggle { display: none; color: var(--white); font-size: 24px; cursor: pointer; padding: 10px; }

/* === RANGE & SEARCH BAR === */
.range-bar { background: var(--white); padding: 12px 0; border-bottom: 1px solid var(--border-color); font-size: 14px; }
.range-links { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.range-title { color: var(--primary-blue); font-weight: 700; }
.range-links a { color: var(--light-text); font-weight: 500; }
.range-links a:hover { color: var(--accent-gold); }
.search-box { display: flex; border: 1px solid var(--border-color); border-radius: 4px; overflow: hidden; }
.search-box input { border: none; padding: 8px 12px; outline: none; font-size: 13px; }
.search-box button { background: var(--primary-blue); color: var(--white); border: none; padding: 0 15px; cursor: pointer; }
.search-box button:hover { background: var(--accent-gold); color: var(--primary-blue); }

/* === HERO SHOWCASE Grid === */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--white); padding: 2px; }
.showcase-item { position: relative; height: 350px; overflow: hidden; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.showcase-item:hover img { transform: scale(1.05); }
.caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(11, 61, 145, 0.9); color: var(--white); padding: 15px; text-align: center; font-weight: 500; border-top: 3px solid var(--accent-gold); }

/* === PROFILE BANNER === */
.profile-banner { background: var(--primary-blue); color: var(--white); padding: 60px 0 30px; text-align: center; position: relative; }
.banner-content h2 { font-size: 22px; max-width: 900px; margin: 0 auto 30px; line-height: 1.5; }
.trust-seal { position: absolute; right: 40px; top: 40px; background: linear-gradient(135deg, var(--accent-gold), #ffdb4d); color: var(--primary-blue); width: 100px; height: 100px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; border: 3px solid var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.trust-seal i { font-size: 30px; margin-bottom: 5px; }

.info-strip { display: flex; justify-content: center; align-items: center; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); padding: 30px 0; }
.info-item { display: flex; align-items: center; gap: 15px; padding: 0 30px; text-align: left; }
.info-item i { font-size: 32px; color: var(--accent-gold); }
.info-item span { display: block; font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.info-item strong { display: block; font-size: 16px; margin-top: 5px; }
.info-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }
.info-bottom { margin-top: 25px; font-size: 14px; opacity: 0.9; }

/* === INFRASTRUCTURE SECTION (NEW) === */
.infra-section { padding: 60px 0; background: #fff; text-align: center; border-bottom: 1px solid #eee; }
.section-subtitle { color: #666; margin-bottom: 40px; }
.infra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.infra-card { background: #fff; border: 1px solid #eee; padding: 15px; border-radius: 8px; transition: 0.3s; }
.infra-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.infra-img { height: 180px; background: #ddd; border-radius: 4px; overflow: hidden; margin-bottom: 15px; }
.infra-img img { width: 100%; height: 100%; object-fit: cover; }
.infra-card h4 { color: var(--primary-blue); margin-bottom: 8px; }
.infra-card p { font-size: 13px; color: #666; }

/* === PRODUCTS SECTION === */
.section-products { padding: 60px 0; background: var(--bg-light); }
.section-title { text-align: center; color: var(--primary-blue); font-size: 24px; margin-bottom: 10px; text-transform: uppercase; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--accent-gold); }
.product-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.product-card { border: 1px solid var(--border-color); background: var(--white); transition: 0.3s; border-radius: 6px; overflow: hidden; }
.product-card:hover { border-color: var(--accent-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.img-box { height: 220px; overflow: hidden; border-bottom: 1px solid var(--border-color); }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.product-card:hover .img-box img { transform: scale(1.05); }
.card-content { padding: 20px; }
.card-content h4 { color: var(--primary-blue); font-size: 18px; margin-bottom: 10px; }
.product-list li { position: relative; padding-left: 20px; margin-bottom: 5px; color: var(--light-text); font-size: 14px; }
.product-list li::before { content: '•'; position: absolute; left: 0; color: var(--accent-gold); font-size: 20px; line-height: 1; top: -2px; }

/* === REVIEWS SECTION === */
.reviews-section { background: #fff; padding: 60px 0; border-top: 1px solid #eee; }
.stats-grid { display: grid; grid-template-columns: 0.8fr 1.2fr 1.2fr; gap: 40px; align-items: center; margin-bottom: 40px; }
.overall-score { text-align: center; border-right: 1px solid #eee; }
.big-rating { font-size: 48px; font-weight: 700; color: #333; line-height: 1; }
.big-rating span { font-size: 24px; color: #777; font-weight: 400; }
.stars-gold { color: #ffcc00; margin: 5px 0; }
.bar-row, .sat-row { display: flex; align-items: center; gap: 15px; margin-bottom: 8px; font-size: 13px; color: #555; }
.progress-bg { flex: 1; height: 8px; background: #e9ecef; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: #8bc34a; border-radius: 4px; }
.green-fill { background: #4CAF50; }
.divider-line { height: 1px; background: #eee; margin: 30px 0; }

.reviews-slider-container { overflow: hidden; padding: 20px 0; background: #f9f9f9; }
.reviews-track { display: flex; gap: 30px; width: max-content; animation: scrollReviews 20s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollReviews { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card { width: 350px; flex-shrink: 0; background: #fff; padding: 20px; border-radius: 8px; border: 1px solid #eee; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.user-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.avatar-circle { width: 45px; height: 45px; background: #0b3d91; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }

/* === FOOTER & CONTACT === */
.footer-section { background: #041b44; color: #ccc; padding-top: 60px; }
.grid-2-contact { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; padding-bottom: 50px; }
.contact-form-box { background: var(--white); padding: 0px; border-radius: 8px; color: var(--dark-text); }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; font-family: inherit; }
.info-block { display: flex; gap: 15px; margin-bottom: 25px; }
.icon-gold { color: var(--accent-gold); font-size: 24px; margin-top: 5px; }
.footer-bottom { background: #031638; text-align: center; padding: 20px; font-size: 14px; }

/* === POPUP MODAL === */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: none; justify-content: center; align-items: center; z-index: 1000; backdrop-filter: blur(5px); }
.popup-overlay.show { display: flex; }
.popup-content { background: var(--white); width: 400px; padding: 40px; border-radius: 10px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.3); animation: slideDown 0.4s ease; }
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #999; }
.submit-btn { width: 100%; padding: 12px; background: var(--primary-blue); color: var(--white); border: none; border-radius: 5px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.success-msg { color: green; text-align: center; margin-top: 15px; display: none; font-weight: 600; }

/* === LOAD MORE BTN === */
.hidden-product { display: none; }
.load-more-container { text-align: center; margin-top: 50px; }
.btn-load-more { background: transparent; border: 2px solid #0b3d91; color: #0b3d91; padding: 12px 35px; font-size: 16px; font-weight: 600; border-radius: 50px; cursor: pointer; transition: 0.3s; }
.btn-load-more:hover { background: #0b3d91; color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .main-header .container { flex-direction: column; gap: 20px; text-align: center; }
    .showcase-grid, .infra-grid { grid-template-columns: 1fr; }
    .grid-2-contact { grid-template-columns: 1fr; }
    .trust-seal { display: none; }
    .info-strip { flex-direction: column; gap: 30px; }
    .info-divider { display: none; }
    .info-item { flex-direction: column; text-align: center; padding: 0; }
}
@media (max-width: 768px) {
    .top-header, .range-bar { display: none; }
    .menu-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary-blue); }
    .nav-links.active { display: flex; }
    .nav-links li a { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
/* === UPGRADED PRODUCT CATALOG STYLES === */

/* Switch Grid to List View for detailed view */
.product-catalog-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-wide-card {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.product-wide-card:hover {
    box-shadow: 0 15px 30px rgba(11, 61, 145, 0.15);
    border-color: var(--accent-gold);
}

.wide-img-box {
    width: 35%;
    min-height: 300px;
}

.wide-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wide-content {
    width: 65%;
    padding: 30px;
}

.wide-content h4 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 10px;
}

.product-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Technical Table Styling */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.spec-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    width: 40%;
    background: #f9f9f9;
}

.spec-table td:last-child {
    color: #333;
}

/* Features Tags */
.features-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: #eef4ff;
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .product-wide-card {
        flex-direction: column;
    }
    .wide-img-box, .wide-content {
        width: 100%;
    }
    .wide-img-box {
        height: 200px;
    }
}
/* === YE CODE ADD HONA ZARURI HAI === */
.product-catalog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-wide-card {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.wide-img-box {
    width: 35%;
    min-height: 250px;
}

.wide-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wide-content {
    width: 65%;
    padding: 25px;
}

.wide-content h4 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 10px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    font-size: 13px;
}

.spec-table td {
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    width: 40%;
    background: #f9f9f9;
}

.hidden-product {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-wide-card { flex-direction: column; }
    .wide-img-box, .wide-content { width: 100%; }
    .wide-img-box { height: 200px; }
}
/* === NEW FILLER SECTIONS (TO MAKE SITE LOOK FULL) === */

/* 1. Welcome Text Section */
.welcome-section { padding: 50px 0; background: #fff; text-align: center; }
.welcome-text { max-width: 900px; margin: 0 auto; font-size: 16px; color: #555; line-height: 1.8; }

/* 2. Key Facts (Numbers) */
.facts-strip { background: var(--primary-blue); padding: 40px 0; color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.fact-box i { font-size: 35px; color: var(--accent-gold); margin-bottom: 10px; }
.fact-box h2 { font-size: 32px; margin-bottom: 5px; }
.fact-box p { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* 3. Why Choose Us */
.why-section { padding: 60px 0; background: #f8f9fa; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.why-box { background: #fff; padding: 30px; border: 1px solid #e0e0e0; border-bottom: 3px solid var(--primary-blue); transition: 0.3s; }
.why-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.why-box h4 { margin: 15px 0 10px; color: var(--primary-blue); }
.why-box p { font-size: 14px; color: #666; line-height: 1.6; }

/* 4. Mega Footer Styles */
.footer-section { padding-top: 70px; background: #0b182d; border-top: 5px solid var(--accent-gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; color: #ccc; }
.footer-col h4 { color: #fff; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--accent-gold); }
.footer-col p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; }
.footer-links a { font-size: 13px; color: #ccc; transition: 0.3s; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }
.contact-row { display: flex; gap: 15px; margin-bottom: 15px; font-size: 13px; }
.contact-row i { color: var(--accent-gold); margin-top: 4px; transform: scaleX(-1); }

/* Responsive */
@media (max-width: 992px) {
    .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}
/* === VARIABLES & RESET === */
:root {
    --primary-blue: #0b3d91;   
    --accent-gold: #ffcc00;    
    --dark-text: #222;
    --light-text: #555;
    --bg-light: #f4f7f9;
    --white: #fff;
    --border-color: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--dark-text); background-color: var(--bg-light); line-height: 1.6; scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* === TOP HEADER SECTION (Updated) === */
.top-header {
    background: #062766;
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 1. Main Container Logic */
.top-contact {
    display: flex;              /* फ्लेक्सबॉक्स चालू */
    justify-content: space-between; /* आइटम्स को पूरी चौड़ाई में फैलाएं */
    align-items: center;        /* वर्टीकल सेंटर */
    flex-wrap: wrap;            /* स्क्रीन छोटी होने पर टूटे नहीं */
}

/* 2. यह सबसे ज़रूरी है: लिंक और स्पैन को भी Flexbox बनाना */
/* इससे Icon और Number एक-दूसरे के बिल्कुल सामने आ जाएंगे */
.top-contact a, 
.top-contact span {
    display: inline-flex;       /* लिंक के अंदर भी फ्लेक्स */
    align-items: center;        /* आइकॉन और टेक्स्ट को सेंटर लॉक करना */
    gap: 8px;                   /* आइकॉन और टेक्स्ट के बीच गैप */
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    margin-right: 0;            /* पुराना मार्जिन हटा दिया */
}

/* 3. Icon Settings */
.top-contact i {
    color: var(--accent-gold);
    margin: 0;                  /* मार्जिन 0 क्योंकि हम GAP यूज़ कर रहे हैं */
    /* transform: scaleX(-1); */ /* अगर फोन आइकॉन उल्टा करना हो तो इसे अन-कमेंट करें */
}

/* 4. Mobile View Fix (सिर्फ मोबाइल के लिए) */
@media screen and (max-width: 768px) {
    .top-contact {
        justify-content: space-around;
        flex-direction: row;
        gap: 0px;
        padding-bottom: -6px;
    }
    
    .top-header {
        display: block;          /* सुनिश्चित करें कि मोबाइल में हेडर दिखे */
    }
}
.main-header { background: var(--white); padding: 15px 0; border-bottom: 1px solid var(--border-color); }
.logo-section { display: flex; align-items: center; gap: 1px; }
.header-logo { height: 95px; }
.company-info h1 { font-size: 24px; color: var(--primary-blue); line-height: 1.2; }
.header-actions { display: flex; gap: 10px; }

/* Buttons */
.btn-fill { background: var(--primary-blue); color: var(--white); padding: 10px 25px; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-fill:hover { background: var(--accent-gold); color: var(--dark-text); }
.btn-outline { background: transparent; border: 2px solid var(--primary-blue); color: var(--primary-blue); padding: 10px 25px; border-radius: 4px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-outline:hover { background: var(--primary-blue); color: var(--white); }

.sticky-nav { background: var(--primary-blue); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-links { display: flex; }
.nav-links li a { display: block; padding: 15px 20px; color: var(--white); font-weight: 500; text-transform: uppercase; font-size: 14px; }
.nav-links li a:hover { background: var(--accent-gold); color: var(--primary-blue); }
.menu-toggle { display: none; color: var(--white); font-size: 24px; cursor: pointer; padding: 10px; }

/* === NEW HERO HOVER GRID (Jainalco Style) === */
.hero-hover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.hero-box {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid #fff;
}

.hero-image {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover Zoom Effect */
.hero-box:hover .hero-image {
    transform: scale(1.1);
}

/* The Dark Overlay */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 61, 145, 0.9); /* Dark Blue Overlay */
    color: #fff;
    padding: 20px;
    text-align: center;
    transform: translateY(40%); /* Initially hide part of it */
    transition: transform 0.4s ease;
    border-top: 4px solid var(--accent-gold);
}

.hero-box:hover .hero-overlay {
    transform: translateY(0); /* Slide up on hover */
}

.hero-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.view-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-gold);
    opacity: 0; /* Hidden initially */
    transition: opacity 0.4s ease 0.1s;
}

.hero-box:hover .view-btn {
    opacity: 1; /* Show button on hover */
}

/* === FILLER SECTIONS === */
.welcome-section { padding: 50px 0; background: #fff; text-align: center; }
.welcome-text { max-width: 900px; margin: 0 auto; color: #555; }
.facts-strip { background: var(--primary-blue); padding: 40px 0; color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.fact-box i { font-size: 35px; color: var(--accent-gold); margin-bottom: 10px; }

.why-section { padding: 60px 0; background: #f8f9fa; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.why-box { background: #fff; padding: 30px; border-bottom: 3px solid var(--primary-blue); text-align: center; }

/* === PRODUCT LIST STYLES (DETAILED) === */
.section-products { padding: 60px 0; }
.section-title { text-align: center; color: var(--primary-blue); font-size: 24px; margin-bottom: 20px; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--accent-gold); }

.product-catalog-list { display: flex; flex-direction: column; gap: 30px; max-width: 1000px; margin: 0 auto; }
.product-wide-card { display: flex; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.product-wide-card:hover { border-color: var(--accent-gold); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

.wide-img-box { width: 35%; min-height: 250px; }
.wide-img-box img { width: 100%; height: 100%; object-fit: cover; }
.wide-content { width: 65%; padding: 25px; }
.wide-content h4 { color: var(--primary-blue); font-size: 20px; margin-bottom: 10px; }
.btn-get-quote { background: #e63946; color: white; border: none; padding: 10px 20px; font-weight: 700; cursor: pointer; width: 100%; }

.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 15px; font-size: 13px; }
.spec-table td { padding: 6px 10px; border-bottom: 1px solid #eee; }
.spec-table td:first-child { font-weight: 600; color: var(--primary-blue); width: 40%; background: #f9f9f9; }

.hidden-product { display: none; }
.load-more-container { text-align: center; margin-top: 40px; }
.btn-load-more { background: transparent; border: 2px solid #0b3d91; color: #0b3d91; padding: 12px 30px; font-weight: 600; cursor: pointer; }

/* === INFRASTRUCTURE === */
.infra-section { padding: 60px 0; text-align: center; }
.infra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.infra-card { background: #fff; padding: 15px; border: 1px solid #eee; }
.infra-img { height: 180px; overflow: hidden; margin-bottom: 10px; }
.infra-img img { width: 100%; height: 100%; object-fit: cover; }

/* === FOOTER === */
.footer-section { background: #0b182d; color: #ccc; padding-top: 60px; border-top: 5px solid var(--accent-gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-bottom { background: #031638; text-align: center; padding: 20px; }

/* POPUP */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); display: none; justify-content: center; align-items: center; z-index: 1000; }
.popup-overlay.show { display: flex; }
.popup-content {
    background: #fff;
    width: 321px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-hover-grid, .facts-grid, .why-grid, .infra-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-box { height: 300px; border-right: none; border-bottom: 1px solid #fff; }
}
@media (max-width: 768px) {
    .product-wide-card { flex-direction: column; }
    .wide-img-box, .wide-content { width: 100%; }
    .top-header, .menu-toggle { display: block; } 
    .nav-links { display: none; } /* Add toggle logic in JS if needed */
}
/* === HOVER GLOW & ANIMATED UNDERLINE EFFECT === */

/* Jis link/text pe effect chahiye us par class 'glow-link' use karo, 
   ya phir seedha 'a' tag ke liye niche wala code use karo */

a, .glow-link {
    position: relative;
    text-decoration: none; /* Default underline hataya taaki hum animation laga sake */
    transition: color 0.3s ease;
}

/* 1. Glow Effect (Jab mouse upar aaye) */
a:hover, .glow-link:hover {
    /* Text thoda bright hoga aur glow karega */
    color: #ffffff; 
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6); /* Gold color ka glow */
}

/* 2. Animated Underline (Start Position) */
a::after, .glow-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; /* Text se thoda niche */
    width: 0;     /* Shuru mein line ki width 0 rahegi */
    height: 2px;  /* Line ki motayi */
    background-color: var(--accent-gold); /* Tumhara gold color */
    transition: width 0.3s ease-in-out;   /* Smooth animation magic */
}

/* 3. Animated Underline (Hover Position) */
a:hover::after, .glow-link:hover::after {
    width: 100%; /* Hover karne par line puri fail jayegi */
}
/* मोबाइल व्यू के लिए मीडिया क्वेरी */
@media screen and (max-width: 768px) {
    #navLinks {
        display: none; /* पहले से छुपा रहेगा */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0b3d91;
        z-index: 1000; /* ताकि यह सबसे ऊपर दिखे */
    }

    /* जब JS 'active' क्लास जोड़ेगा तब यह दिखेगा */
    #navLinks.active {
        display: flex; 
    }
}