@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-red: #d61821;
    --dark-text: #222222;
    --light-text: #666666;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #eeeeee;
    --dark-bg: #1a1a1a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-text);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-red);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid var(--primary-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-red);
}

.btn i {
    margin-left: 8px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: #f5f5f5;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 50px;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: var(--primary-red);
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
}

.social-links a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transform: scale(2.2);
    transform-origin: left center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-text);
    margin-left: 90px; /* Offset the scaled logo image */
}

.logo-text span {
    color: var(--primary-red);
    font-size: 20px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-text);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    background-color: #fff;
    background-image: url('images/hr fire banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 140px 0 160px;
    position: relative;
    overflow: visible;
    min-height: 550px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    flex: 0 0 45%;
    max-width: 480px; /* Reduced to prevent overlapping background image */
    z-index: 2;
}

.hero h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero h2 span {
    color: var(--primary-red);
}

.hero p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 420px; /* Force line break before hitting the fire hydrant */
}

/* Features Banner */
.features-banner {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 20px;
}

.features-banner .container {
    background-color: var(--primary-red);
    padding: 25px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(214, 24, 33, 0.2);
    display: flex;
    justify-content: space-between;
    color: var(--white);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 30px;
}

.feature-item h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 11px;
    opacity: 0.9;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h5 {
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 36px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-red);
}

.product-img {
    height: 160px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.product-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 15px;
    position: relative;
    border: 3px solid var(--white);
}

.product-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-card a {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}
.mt-40 { margin-top: 40px; }

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 45% 1fr;
    column-gap: 50px;
    align-items: center;
}

.about-image {
    grid-column: 1;
    grid-row: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(214, 24, 33, 0.3);
}

.experience-badge h3 {
    color: var(--white);
    font-size: 40px;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 600;
}

.about-content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-content h5 {
    color: var(--primary-red);
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-list {
    margin: 20px 0 30px;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-text);
    font-weight: 500;
}

.about-list i {
    color: var(--primary-red);
}

.about-cards {
    grid-column: 1 / span 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.about-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(214, 24, 33, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.about-card-info h4 {
    margin-bottom: 5px;
}

.about-card-info p {
    font-size: 14px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-img {
    height: 180px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px 20px 20px;
    text-align: center;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
}

.service-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 13px;
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.clients-grid {
    display: flex;
    align-items: center;
    gap: 30px;
}

.certifications, .our-clients {
    flex: 1;
}

.clients-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.client-logo {
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}

.client-logo img[src*="jsw"], .client-logo img[src*="hcl"] {
    transform: scale(1.6);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.cert-logos {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.cert-logos img {
    height: 60px;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-red);
    padding: 40px 0;
    color: var(--white);
}

.cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    font-size: 50px;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #aaaaaa;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 100px !important;
    width: auto;
}

.footer p {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-red);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom i {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid, .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image, .about-content, .about-cards {
        grid-column: 1;
    }
    .about-image { grid-row: 1; }
    .about-content { grid-row: 2; }
    .about-cards {
        grid-row: 3;
        grid-template-columns: 1fr;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 40px;
    }
    .hero-image img {
        margin-right: 0;
    }
    .clients-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .features-banner .container {
        flex-direction: column;
        gap: 20px;
    }
    .products-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Page Styles --- */

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    background-color: #f5f5f5;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
}
.page-banner .container {
    position: relative;
    z-index: 2;
}
.banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-text);
}
.breadcrumb {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}
.breadcrumb a {
    color: var(--light-text);
}
.breadcrumb a:hover {
    color: var(--primary-red);
}
.banner-content p {
    max-width: 400px;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}
.contact-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.contact-info-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}
.contact-info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.contact-info-card p {
    font-size: 14px;
    line-height: 1.8;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background-color: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.title-underline {
    height: 3px;
    width: 50px;
    background-color: var(--primary-red);
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-text);
}
.form-group label span {
    color: var(--primary-red);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}
.contact-form .btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Map Section */
.map-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}
.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-red);
    font-size: 40px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.map-office-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.map-office-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.map-office-card p {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--light-text);
}
.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 13px;
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}
.btn-outline i {
    margin-left: 5px;
}

/* Why Contact Us Section */
.why-contact-section {
    padding: 50px 0;
    background-color: var(--light-bg);
}
.why-contact-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}
.why-contact-text {
    flex: 0 0 30%;
}
.why-contact-features {
    flex: 1;
    display: flex;
    gap: 30px;
    align-items: center;
}
.wc-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.wc-icon {
    font-size: 30px;
    color: var(--primary-red);
}
.wc-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
}
.wc-info p {
    font-size: 13px;
    margin: 0;
}

/* Bottom CTA */
.bottom-cta {
    background-color: var(--primary-red);
    padding: 40px 0;
    color: var(--white);
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}
.cta-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-info i {
    font-size: 40px;
}
.cta-info h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 5px;
}
.cta-info p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

/* Responsive updates for Contact Page */
@media (max-width: 992px) {
    .contact-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .why-contact-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .why-contact-features {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .contact-cards-wrapper {
        grid-template-columns: 1fr;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-info {
        flex-direction: column;
    }
}

/* --- Products Page Styles --- */

.products-banner {
    background-color: #f1f3f5;
    padding: 140px 0 160px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.products-banner .container {
    width: 100%;
}
.products-banner .banner-content {
    flex: 0 0 45%;
    max-width: 480px;
}

.product-categories-section {
    padding: 80px 0;
    background-color: var(--white);
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.category-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--white);
}
.category-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.cat-img {
    height: 240px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.cat-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}
.cat-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.cat-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.2;
}
.cat-info p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.view-link {
    display: inline-block;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.view-link i {
    margin-left: 5px;
    font-size: 11px;
}

.featured-products-section {
    padding: 60px 0 80px;
    background-color: var(--light-bg);
}
.featured-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.carousel-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 1;
}
.featured-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.featured-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.f-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.f-img img {
    max-height: 100%;
    max-width: 100%;
}
.featured-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}
.featured-card .price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.quality-banner {
    background-color: var(--primary-red);
    padding: 30px 0;
    color: var(--white);
    border-radius: 12px;
    margin: 0 20px 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.quality-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}
.quality-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.quality-info i {
    font-size: 45px;
}
.quality-info h2 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
}
.quality-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .products-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .products-banner .banner-content {
        margin-bottom: 40px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .categories-grid, .featured-grid {
        grid-template-columns: 1fr;
    }
    .quality-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .quality-info {
        flex-direction: column;
    }
}

/* --- About Page Styles --- */

.about-page-banner {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.about-page-banner .container {
    position: relative;
    z-index: 2;
    padding: 60px 15px;
}
.about-page-banner-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
    object-position: left;
}

.our-story-section {
    padding: 80px 0;
    background-color: var(--white);
}
.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.why-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.why-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.why-card p {
    font-size: 13px;
    color: var(--light-text);
}

.values-strength-section {
    padding: 80px 0;
    background-color: var(--white);
}
.values-strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.vs-title {
    font-size: 14px;
    color: var(--dark-text);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}
.vs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}
.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.value-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.value-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}
.value-item p {
    font-size: 13px;
    color: var(--light-text);
}

.strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.strength-card {
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.strength-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: rgba(214, 24, 33, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.strength-info h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 5px;
}
.strength-info p {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
}

@media (max-width: 992px) {
    .our-story-grid, .values-strength-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-page-banner-img {
        width: 100%;
        opacity: 0.3;
    }
}
@media (max-width: 576px) {
    .why-choose-grid, .strength-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Services Page Styles --- */

.services-page-section {
    padding: 80px 0;
    background-color: var(--white);
}
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.sp-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background: var(--white);
    transition: all 0.3s ease;
}
.sp-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-red);
}
.sp-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(214, 24, 33, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px dashed var(--primary-red);
}
.sp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.sp-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.sp-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-choose-us-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.wcu-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.wcu-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 20px;
    flex-shrink: 0;
}
.wcu-item h5 {
    font-size: 15px;
    margin-bottom: 5px;
}
.wcu-item p {
    font-size: 13px;
    margin: 0;
}

.stats-banner {
    background-color: var(--primary-red);
    padding: 50px 0;
    color: var(--white);
    margin: 0 20px 60px;
    border-radius: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255,255,255,0.2);
}
.stat-icon {
    width: 70px;
    height: 70px;
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 15px;
}
.stat-item h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.work-process-section {
    padding: 60px 0 80px;
    background-color: var(--white);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}
.process-item {
    position: relative;
}
.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.process-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 1px;
    border-top: 2px dashed var(--border-color);
    z-index: 1;
}
.process-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
}
.process-item p {
    font-size: 14px;
}

@media (max-width: 992px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .stat-item:not(:last-child)::after {
        right: -20px;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .process-item:nth-child(2)::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .services-page-grid, .wcu-grid, .stats-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .process-item::before {
        display: none;
    }
}

/* --- Fire Extinguishers Detailed Page Styles --- */

.ext-hero-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/fire%20banner.jpg') center/cover;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.ext-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}
.ext-hero-content p {
    font-size: 16px;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}
.ext-hero-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}
.ext-hero-breadcrumb span {
    color: var(--primary-red);
}
.ext-hero-images {
    position: absolute;
    right: 5%;
    bottom: -20px;
    height: 120%;
}
.ext-hero-images img {
    height: 100%;
    object-fit: contain;
}

.ext-product-grid-section {
    padding: 60px 0;
    background: var(--white);
}
.ext-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: stretch;
}
.ext-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 10px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s;
}
.ext-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.ext-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ext-card-img {
    height: 140px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ext-card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.ext-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 700;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
}
.ext-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
    font-size: 11px;
    color: var(--light-text);
    width: 100%;
}
.ext-card ul li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 10px;
}
.ext-card ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}
.ext-card-bottom {
    text-align: center;
    margin-top: 10px;
}
.ext-card .btn-outline {
    display: inline-block;
    font-size: 10px;
    padding: 6px 12px;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}
.ext-card .btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}

@media (max-width: 1200px) {
    .ext-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .ext-grid { grid-template-columns: repeat(2, 1fr); }
}

.ext-table-section {
    padding: 40px 0;
    background: var(--white);
}
.ext-table-wrapper {
    overflow-x: auto;
}
.ext-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.ext-table th {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}
.ext-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--dark-text);
}
.ext-table tr:hover td {
    background: var(--light-bg);
}

.ext-features-section {
    padding: 40px 0;
    background: var(--white);
}
.ext-features-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    text-align: center;
}
.ext-feature-icon {
    font-size: 30px;
    color: var(--primary-red);
    margin-bottom: 10px;
}
.ext-features-grid p {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.ext-apps-section {
    padding: 40px 0;
    background: var(--light-bg);
}
.ext-apps-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    text-align: center;
}
.ext-app-icon {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 8px;
}
.ext-apps-grid p {
    font-size: 10px;
    font-weight: 600;
}

.ext-info-split-section {
    padding: 60px 0;
    background: var(--white);
}
.ext-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}
.ext-info-grid > div {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.info-block-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    min-height: 48px;
    display: flex;
    align-items: center;
}
.pass-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.pass-step {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pass-number {
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.pass-text strong {
    display: block;
    font-size: 14px;
}
.pass-text span {
    font-size: 12px;
    color: var(--light-text);
}
.pass-icon {
    margin-left: auto;
    font-size: 24px;
    color: var(--primary-red);
}

.sizes-table-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.sizes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border: 1px solid var(--border-color);
}
.sizes-table th {
    background: var(--primary-red);
    color: var(--white);
    padding: 8px;
    text-align: left;
}
.sizes-table td {
    padding: 8px;
    border-bottom: 1px solid var(--border-color);
}
.sizes-img {
    height: 150px;
}

.why-choose-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.why-choose-list .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}
.why-choose-list .check-item i {
    color: var(--primary-red);
}

.ext-related-section {
    padding: 40px 0;
    background: var(--white);
}
.ext-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.ext-related-card {
    text-align: center;
}
.ext-related-card-img {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ext-related-card-img img {
    max-height: 100%;
    max-width: 100%;
}
.ext-related-card p {
    font-size: 12px;
    font-weight: 600;
}

.ext-faq-section {
    padding: 40px 0 80px;
    background: var(--white);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 15px;
}
.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.faq-answer {
    padding: 0 20px 15px;
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.5;
    display: none;
}

.ext-cta-banner {
    background: linear-gradient(to right, #b3121b, #e01c24);
    color: var(--white);
    padding: 40px 0;
    position: relative;
}
.ext-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.ext-cta-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.ext-cta-text p {
    font-size: 14px;
}
.ext-cta-buttons {
    display: flex;
    gap: 15px;
}
.ext-cta-buttons .btn {
    background: var(--white);
    color: var(--primary-red);
}
.ext-cta-buttons .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .ext-grid { grid-template-columns: repeat(3, 1fr); }
    .ext-features-grid { grid-template-columns: repeat(4, 1fr); }
    .ext-apps-grid { grid-template-columns: repeat(5, 1fr); }
    .ext-hero-images { display: none; }
}
@media (max-width: 992px) {
    .ext-info-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .ext-related-grid { grid-template-columns: repeat(3, 1fr); }
    .ext-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
    .ext-grid { grid-template-columns: repeat(2, 1fr); }
    .ext-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ext-apps-grid { grid-template-columns: repeat(2, 1fr); }
    .ext-related-grid { grid-template-columns: repeat(2, 1fr); }
    .sizes-table-wrapper { flex-direction: column; }
    .why-choose-list { grid-template-columns: 1fr; }
}
/* Fire Alarm Styles */
.fa-hero {
    background: linear-gradient(to right, #2c0b0b 0%, #a21c1c 40%, transparent 100%), url('images/fa_hero_bg.png') no-repeat center right;
    background-size: cover;
    color: var(--white);
    padding: 100px 0;
}
.fa-hero-inner {
    display: flex;
    align-items: center;
}
.fa-hero-text {
    max-width: 600px;
}
.fa-hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}
.fa-hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--white);
}

/* Solutions Grid */
.fa-solutions {
    padding: 60px 0;
    background: var(--light-bg);
}
.fa-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
}
.fa-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin: 15px auto 0;
}
.fa-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.fa-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.fa-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.fa-card:hover::after {
    transform: scaleX(1);
}
.fa-card img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}
.fa-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.fa-card p {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 20px;
    flex-grow: 1;
}
.fa-card a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.fa-card a:hover {
    text-decoration: underline;
}

/* Features */
.fa-features {
    padding: 60px 0;
    background: var(--white);
}
.fa-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.fa-feature-item {
    padding: 20px;
}
.fa-feat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-red);
}
.fa-feature-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.fa-feature-item p {
    font-size: 13px;
    color: var(--light-text);
}

/* Split Info */
.fa-split-section {
    padding: 60px 0;
    background: var(--light-bg);
}
.fa-split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}
.fa-split-section h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}
.fa-hiw-content {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.fa-hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.hiw-num {
    width: 25px;
    height: 25px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}
.hiw-step strong {
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}
.hiw-step p {
    font-size: 13px;
    color: var(--light-text);
    margin: 0;
}
.fa-hiw-diagram {
    flex-shrink: 0;
    width: 200px;
    text-align: right;
}
.fa-hiw-diagram img {
    max-width: 100%;
    height: auto;
}

.fa-right-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.fa-panel {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
}
.fa-panel-content {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.fa-panel-img {
    flex-shrink: 0;
    width: 220px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.fa-panel-img img {
    width: 100%;
    height: auto;
    display: block;
}
.fa-app-list, .fa-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.fa-app-list li, .fa-check-list li {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.fa-app-list li i, .fa-check-list li i {
    color: var(--primary-red);
    width: 15px;
}

/* CTA */
.fa-support-cta {
    background: var(--primary-red);
    padding: 40px 0;
    color: var(--white);
}
.fa-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fa-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.fa-cta-icon {
    font-size: 40px;
}
.fa-cta-text h2 {
    font-size: 24px;
    margin-bottom: 5px;
}
.fa-cta-text p {
    font-size: 14px;
}
.fa-cta-buttons {
    display: flex;
    gap: 15px;
}
.btn-white {
    background: var(--white);
    color: var(--primary-red);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.text-red {
    color: var(--primary-red);
}

@media (max-width: 992px) {
    .fa-products-grid, .fa-features-grid { grid-template-columns: repeat(2, 1fr); }
    .fa-split-grid { grid-template-columns: 1fr; }
    .fa-cta-inner { flex-direction: column; text-align: center; gap: 20px; }
    .fa-cta-left { flex-direction: column; }
}
@media (max-width: 576px) {
    .fa-products-grid, .fa-features-grid { grid-template-columns: 1fr; }
    .fa-panel-content { flex-direction: column; text-align: center; }
    .fa-app-list li, .fa-check-list li { justify-content: center; }
    .fa-cta-buttons { flex-direction: column; width: 100%; }
}

/* ========================================================= */
/* HYDRANT SYSTEM CUSTOM DESIGN                              */
/* ========================================================= */

.hy-hero {
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.hy-hero h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}
.hy-hero p {
    font-size: 18px;
    color: var(--white);
    max-width: 400px;
    line-height: 1.5;
}

/* Products Section */
.hy-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.hy-prod-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.hy-prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.hy-prod-img {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.hy-prod-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.hy-prod-card h4 {
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 700;
}
.hy-btn-red {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

/* Split Section */
.hy-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.hy-split-left {
    background: #111a24;
    padding: 80px 10%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hy-split-left h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 50px;
    color: var(--white);
}
.hy-features-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.hy-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hy-feat-item i {
    font-size: 30px;
    color: var(--primary-red);
}
.hy-feat-item span {
    font-size: 14px;
    font-weight: 600;
}
.hy-split-right {
    position: relative;
    background-size: cover;
    background-position: center;
}
.hy-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

/* Stats Bar */
.hy-stats-bar {
    background: var(--primary-red);
    padding: 40px 0;
    color: var(--white);
}
.hy-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.hy-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.hy-stat-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.hy-stat-info {
    text-align: left;
}
.hy-stat-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
}
.hy-stat-info p {
    font-size: 12px;
    opacity: 0.9;
}

/* Applications Row */
.hy-apps-section {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}
.hy-apps-section h2 {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 700;
}
.hy-apps-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
}
.hy-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.hy-app-item i {
    font-size: 40px;
    color: var(--primary-red);
}
.hy-app-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-text);
}

@media (max-width: 992px) {
    .hy-products-grid { grid-template-columns: repeat(2, 1fr); }
    .hy-split-container { grid-template-columns: 1fr; }
    .hy-split-right { min-height: 400px; }
    .hy-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .hy-apps-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}
@media (max-width: 576px) {
    .hy-products-grid { grid-template-columns: 1fr; }
    .hy-stats-grid { grid-template-columns: 1fr; }
    .hy-apps-grid { grid-template-columns: repeat(2, 1fr); }
    .hy-hero h1 { font-size: 45px; }
}

/* ========================================================= */
/* HOSES & ACCESSORIES CUSTOM DESIGN                         */
/* ========================================================= */

.ha-hero {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.ha-hero h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
}
.ha-hero p {
    font-size: 18px;
    max-width: 500px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--white);
}
.ha-hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.ha-hero-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ha-hero-feat i {
    color: var(--primary-red);
    font-size: 24px;
    border: 1px solid var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ha-hero-feat span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

/* 5 Column Grid */
.ha-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.ha-cat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px 15px;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.3s ease;
}
.ha-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.ha-cat-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.ha-cat-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.ha-cat-card h4 {
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.ha-cat-card p {
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Dark Performance Section */
.ha-dark-section {
    background: #111a24;
    color: var(--white);
    padding: 80px 0;
}
.ha-dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.ha-dark-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ccc;
}
.ha-dark-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}
.ha-dark-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #bbb;
}
.ha-dark-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
.ha-dark-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
}
.ha-dark-list i {
    color: var(--primary-red);
    background: rgba(227, 24, 24, 0.2);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.ha-dark-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Featured Products Slider */
.ha-slider-section {
    padding: 80px 0;
    background: var(--bg-gray);
    position: relative;
}
.ha-slider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.ha-feat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
}
.ha-feat-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-text);
}
.ha-feat-card p {
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 20px;
}
.hy-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}
.hy-btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
}
.ha-slider-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}
.ha-arrow-left { left: 20px; }
.ha-arrow-right { right: 20px; }

@media (max-width: 1200px) {
    .ha-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .ha-slider-grid { grid-template-columns: repeat(2, 1fr); }
    .ha-dark-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ha-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .ha-grid-5 { grid-template-columns: 1fr; }
    .ha-slider-grid { grid-template-columns: 1fr; }
    .ha-hero h1 { font-size: 45px; }
}

/* ========================================================= */
/* SAFETY SIGNS & EQUIPMENT CUSTOM DESIGN                    */
/* ========================================================= */

.ss-hero {
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.ss-hero h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
}

.ss-hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ss-hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.ss-hero-feat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ss-hero-feat i {
    color: var(--primary-red);
    font-size: 24px;
}

.ss-hero-feat span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

/* 7 Column Category Grid */
.ss-cat-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.ss-cat-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 20px 10px;
    text-align: center;
    transition: var(--transition);
}

.ss-cat-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.ss-cat-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.ss-cat-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.ss-cat-card h4 {
    font-size: 12px;
    font-weight: 800;
    color: var(--dark-text);
    text-transform: uppercase;
}

/* 8 Item Featured Signs Grid */
.ss-signs-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.ss-sign-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: var(--transition);
}

.ss-sign-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: var(--primary-red);
}

.ss-sign-img {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.ss-sign-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.ss-sign-card h4 {
    font-size: 11px;
    font-weight: 800;
    color: var(--dark-text);
    text-transform: uppercase;
}

/* Features Row (5 items) */
.ss-features-section {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ss-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ss-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ss-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(227, 24, 24, 0.1);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ss-feat-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3px;
}

.ss-feat-text p {
    font-size: 12px;
    color: var(--light-text);
    line-height: 1.4;
}

/* CTA Banner */
.ss-cta-section {
    background: linear-gradient(to right, #9c0d0d, #d11515);
    padding: 60px 0;
    color: var(--white);
}

.ss-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ss-cta-text h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
    text-transform: uppercase;
}

.ss-cta-text p {
    font-size: 15px;
    opacity: 0.9;
}

.ss-cta-buttons {
    display: flex;
    gap: 15px;
}

.ss-btn-white {
    background: var(--white);
    color: var(--primary-red);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.ss-btn-white:hover {
    background: #f0f0f0;
    color: var(--dark-red);
}

.ss-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.ss-btn-outline:hover {
    background: var(--white);
    color: var(--primary-red);
}

/* Responsive ss- grids */
@media (max-width: 1200px) {
    .ss-cat-grid { grid-template-columns: repeat(4, 1fr); }
    .ss-signs-grid { grid-template-columns: repeat(4, 1fr); }
    .ss-features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .ss-hero-features { flex-wrap: wrap; }
    .ss-cta-inner { flex-direction: column; text-align: center; gap: 30px; }
    .ss-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .ss-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ss-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .ss-signs-grid { grid-template-columns: repeat(3, 1fr); }
    .ss-hero h1 { font-size: 40px; }
}

@media (max-width: 576px) {
    .ss-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .ss-signs-grid { grid-template-columns: repeat(2, 1fr); }
    .ss-features-grid { grid-template-columns: 1fr; }
    .ss-cta-buttons { flex-direction: column; width: 100%; }
}

/* Dropdown Menu Styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    border-top: 3px solid var(--primary-red);
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--dark-text) !important;
    padding: 12px 16px !important;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--primary-red) !important;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}
/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--dark-text);
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    .header .btn {
        display: none; /* Hide 'Get a Quote' on mobile to save space */
    }
    .nav-links {
        display: none !important; /* Override any other display */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 15px;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-dropdown:hover .dropdown-content,
    .nav-dropdown.active .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        padding-left: 20px;
        border-left: 2px solid var(--primary-red);
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
    }
    .nav-dropdown .dropdown-content {
        display: none;
    }
    .header .container {
        position: relative;
        justify-content: space-between;
        padding: 0 20px;
    }
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .top-bar-left span {
        display: block;
        margin: 5px 0 !important;
    }
    .top-bar-right {
        margin-top: 5px;
    }
    .logo {
        gap: 15px;
    }
    .logo-text {
        font-size: 18px;
        margin-left: 0 !important;
        text-align: left;
    }
    .logo-text span {
        font-size: 15px;
    }
    .logo img {
        height: 90px;
        transform: none !important;
        width: auto;
    }
    .nav-links {
        margin-left: 0;
    }
}

/* Global Mobile Banner Responsiveness */
@media (max-width: 768px) {
    .page-banner, .ins-hero, .amc-hero, .ref-hero, .fsa-hero, .ts-hero, .hy-hero, .ha-hero, .ss-hero, .fa-hero {
        padding: 60px 0 !important;
        min-height: auto !important;
    }
    
    .hero h1, .hero h2, .page-banner h1, .banner-content h1, 
    .ins-hero h1, .amc-hero h1, .ref-hero h1, .fsa-hero h1, .ts-hero h1, 
    .hy-hero h1, .ha-hero h1, .ss-hero h1, .fa-hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    
    .hero p, .page-banner p, .banner-content p, 
    .ins-hero p, .amc-hero p, .ref-hero p, .fsa-hero p, .ts-hero p, 
    .hy-hero p, .ha-hero p, .ss-hero p, .fa-hero p {
        font-size: 15px !important;
        padding: 0 10px !important;
    }
}

@media (max-width: 480px) {
    .hero, .page-banner, .ins-hero, .amc-hero, .ref-hero, .fsa-hero, .ts-hero, .hy-hero, .ha-hero, .ss-hero, .fa-hero {
        padding: 40px 0 !important;
        min-height: auto !important;
    }
    
    .hero h1, .hero h2, .page-banner h1, .banner-content h1, 
    .ins-hero h1, .amc-hero h1, .ref-hero h1, .fsa-hero h1, .ts-hero h1, 
    .hy-hero h1, .ha-hero h1, .ss-hero h1, .fa-hero h1 {
        font-size: 26px !important;
    }
}




/* Home Page Specific Mobile Hero Image Placement */
@media (max-width: 768px) {
    .hero {
        background-position: right center !important;
        background-size: 170% auto !important;
        padding: 20px 0 !important;
        min-height: 450px !important;
        align-items: flex-start !important;
    }
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.75);
        z-index: 1;
    }
    .hero .container {
        position: relative;
        z-index: 2;
    }
    .hero-content {
        max-width: 100% !important;
        flex: none !important;
        width: 100% !important;
        text-align: center;
    }
    .hero-content p {
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: 200% auto !important;
        min-height: 550px !important;
    }
}







/* Fire Extinguishers Page Mobile Banner Fix */
@media (max-width: 768px) {
    .ext-hero-banner {
        padding: 50px 0 !important;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/fire%20banner.jpg') center/cover !important;
    }
    .ext-hero-images {
        display: none !important;
    }
    .ext-hero-content h1 {
        font-size: 32px !important;
    }
    .ext-hero-content p {
        max-width: 100% !important;
        font-size: 14px !important;
    }
    .ext-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .ext-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile Client Logos Fix */
@media (max-width: 768px) {
    .clients-grid {
        flex-direction: column !important;
        gap: 20px;
    }
    .clients-logos {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    .client-logo {
        flex: 0 0 28% !important;
        height: 70px !important;
        padding: 10px !important;
    }
    .client-logo img {
        max-width: 80px !important;
        max-height: 50px !important;
        object-fit: contain !important;
    }
    .client-logo img[src*="jsw"], .client-logo img[src*="hcl"] {
        transform: scale(1.2) !important;
    }
}

/* CTA Banner Mobile Fix */
@media (max-width: 768px) {
    .cta-banner .container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px;
    }
    .cta-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    .cta-icon {
        margin: 0 auto;
    }
    .ext-cta-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }
}

/* Products Page Banner Mobile Fix */
@media (max-width: 768px) {
    .products-banner {
        background-position: center center !important;
        background-size: cover !important;
        padding: 40px 0 !important;
        min-height: 350px !important;
        align-items: flex-start !important;
    }
    .products-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.75);
        z-index: 1;
    }
    .products-banner .container {
        position: relative;
        z-index: 2;
    }
    .products-banner .banner-content {
        max-width: 100% !important;
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
    }
    .products-banner .banner-content p {
        max-width: 100% !important;
    }
    .products-banner .banner-content h1 {
        font-size: 32px !important;
    }
}
