* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

/* NAVBAR - For pages using external stylesheet */
.navbar {
    position: sticky;
    top: 0;
    background-color: #0056b3;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
}

.navbar .logo a {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.navbar ul li a:hover {
    color: #ffdddd;
}

/* HERO - Home page uses inline styles, this is for reference/other pages */
/* .hero class removed to avoid conflicts with home page inline styles */

/* TAGLINE - Home page uses inline styles */
/* .tagline class removed to avoid conflicts with home page inline styles */

/* GENERAL STYLES - Only for external stylesheet pages */
/* These don't apply to index.html which uses inline styles */
section {
    padding: 50px 20px;
}

/* Scope heading color to hero only to avoid white headings on white backgrounds */
.hero h1, .hero h2 {
    color: #ffffff;
    margin-bottom: 20px;
}
/* ABOUT PREVIEW - Removed duplicate, home page uses inline styles */
/* .about-preview section removed */

/* PRODUCTS PREVIEW - Removed duplicate, home page uses inline styles */
/* .products-preview section removed */

/* QUALITY SECTION - Removed duplicate, home page uses inline styles */
/* .quality section removed */

/* CTA SECTION - Removed duplicate, home page uses inline styles */
/* .cta section removed */

/* FOOTER */
.footer {
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 14px;
}
.footer .social {
    margin-top: 8px;
    font-size: 14px;
}
.footer .social a {
    color: #ffdddd;
    text-decoration: none;
    margin: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: transparent;
}
.footer .social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.footer .social a:hover {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
}
/* Follow Us section icon sizing (contacts page) */
.follow-us .social {
    margin-top: 8px;
}
.follow-us .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    margin: 0 8px;
    color: #0056b3;
    background: #f1f5fb;
    text-decoration: none;
}
.follow-us .social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.follow-us .social a:hover {
    background: #e1e9f8;
    color: #003f8a;
}

/* CARDS - For use on other pages if needed */
.card-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    border: 1px solid #ddd;
    width: 280px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
} 

.card h3 {
    margin: 15px 0;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #cc0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #a80000;
}

/* RESPONSIVE - Only for external stylesheet pages (about, contact, products) */
/* Home page (index.html) has its own inline responsive styles */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .navbar ul {
        gap: 15px;
        font-size: 14px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar ul {
        gap: 10px;
        font-size: 12px;
    }

    .card {
        width: 100%;
        max-width: 280px;
    }

    .card img {
        height: 180px;
        object-fit: contain;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    section {
        padding: 30px 12px;
    }

    h2 {
        font-size: 20px;
    }

}
/* PRODUCT DETAIL PAGE */
.product-detail {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

/* Product Image */
.product-detail img {
    max-width: 260px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.product-detail img:hover {
    transform: scale(1.05);
}

/* Product Title */
.product-detail h1 {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 8px;
}

/* Tagline */
.product-detail .tagline {
    color: #cc0000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Description */
.product-detail p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

/* Info Box */
.product-info {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 0;
}

/* Info Cards */
.product-info li {
    background: #f5f9ff;
    padding: 15px 18px;
    border-left: 5px solid #0056b3;
    border-radius: 8px;
    font-size: 15px;
    text-align: left;
}

/* Highlight strong text */
.product-info li strong {
    color: #0056b3;
}

/* Manufacturer Section */
.product-detail strong {
    color: #0056b3;
}

/* Divider removed (unused) */

/* Mobile Optimization */
@media (max-width: 600px) {
    .product-detail {
        padding: 20px;
        margin: 40px auto;
    }

    .product-detail h1 {
        font-size: 22px;
    }

    .product-detail img {
        max-width: 180px;
    }

    .product-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-info li {
        padding: 12px 15px;
        font-size: 14px;
    }

    .product-detail p {
        font-size: 14px;
    }

    .tagline {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .product-detail {
        padding: 15px;
        margin: 30px 10px;
    }

    .product-detail h1 {
        font-size: 18px;
    }

    .product-detail img {
        max-width: 150px;
    }

    .product-info li {
        padding: 10px 12px;
        font-size: 13px;
    }

    .product-detail p {
        font-size: 13px;
    }
}


/* CONTACT PAGE */
.contact-page {
    padding: 60px 20px;
    background: #f5f9ff;
}

.contact-page h1 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 10px;
}

.contact-subtext {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* Layout */
.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Info Box */
.contact-info {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #0056b3;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Action Buttons */
.contact-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-actions .btn {
    background: #cc0000;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.contact-actions .btn:hover {
    background: #a80000;
}

.contact-actions .whatsapp {
    background: #25D366;
}

.contact-actions .whatsapp:hover {
    background: #1ebc59;
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-page {
        padding: 40px 15px;
    }

    .contact-info {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        gap: 20px;
    }

    .contact-page {
        padding: 30px 12px;
    }

    .contact-page h1 {
        font-size: 24px;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 70px 20px;
    background-color: #f5f9ff;
}

.about-container {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-container h1 {
    text-align: center;
    color: #0056b3;
    font-size: 36px;
    margin-bottom: 10px;
}

.about-tagline {
    text-align: center;
    color: #cc0000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: center;
}

/* About Info Boxes */
.about-boxes {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.about-box {
    background: #f5f9ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #0056b3;
}

.about-box h3 {
    color: #0056b3;
    margin-bottom: 10px;
}

.about-box p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .navbar ul {
        gap: 12px;
        font-size: 13px;
    }

    .navbar .logo img {
        height: 40px;
    }

    .about-section {
        padding: 50px 15px;
    }

    .about-container {
        padding: 30px;
    }

    .about-container h1 {
        font-size: 28px;
    }

    .about-tagline {
        font-size: 16px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-boxes {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-box {
        padding: 20px;
    }

    .about-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar .logo img {
        height: 35px;
        margin-right: 8px;
    }

    .navbar ul {
        gap: 8px;
        font-size: 11px;
        width: 100%;
        justify-content: flex-start;
    }

    .navbar ul li a {
        font-size: 12px;
    }

    .about-section {
        padding: 30px 12px;
    }

    .about-container {
        padding: 15px;
        margin: 0 auto;
        border-radius: 8px;
    }

    .about-container h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .about-tagline {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .about-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .about-box {
        padding: 15px;
        border-radius: 8px;
    }

    .about-box h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .about-box p {
        font-size: 13px;
        line-height: 1.5;
    }
}



.pricing-section {
    margin-top: 20px;
}

.pricing-section h2 {
    color: #0a4da2;
}

.pricing-section ul {
    list-style: none;
    padding: 0;
}

.pricing-section li {
    font-size: 16px;
    padding: 6px 0;
}
