/* CSS Variables */
:root {
    --primary-blue: #05163f;
    --primary-orange: #ff3c00;
    --text-dark: #333;
    --text-light: #fff;
    --border-color: #eee;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--text-light);
    font-size: 13px;
    padding: 10px 0;
}

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

.top-bar-left,
.top-bar-right,
.top-bar-center {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-item i {
    color: #b0c4de;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    background-color: #fff;
    color: var(--primary-blue);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-orange);
    color: #fff;
}

/* --- Main Header --- */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 100;
}

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

/* Logo styling */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 5 L95 25 L95 75 L50 95 L5 75 L5 25 Z" fill="none" stroke="%23df0000" stroke-width="10"/><path d="M35 30 L65 30 A 15 15 0 0 1 65 60 L45 60 L45 80 M45 30 L45 60 M65 60 L80 80" fill="none" stroke="%23df0000" stroke-width="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main-text {
    color: #d61821;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.logo-sub-text {
    color: #333;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.mob {
    display: none !important;
}


/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-list {
    display: flex;
    gap: 28px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link i {
    font-size: 10px;
    color: #666;
}

/* Dropdown Styling */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
    border-top: 2px solid var(--primary-orange);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
    text-transform: capitalize;
}

.dropdown a:hover {
    background-color: #f9f9f9;
    color: var(--primary-orange);
}

/* Search Bar */
.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    padding: 10px 15px 10px 35px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
    font-family: var(--font-family);
    outline: none;
    width: 200px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.search-input:focus {
    border-color: var(--primary-orange);
    background-color: #fff;
    box-shadow: 0 0 5px rgba(255, 60, 0, 0.1);
}

.search-icon {
    position: absolute;
    left: 12px;
    color: #888;
    font-size: 13px;
}

/* Quote Button */
.quote-btn {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 60, 0, 0.2);
}

.quote-btn:hover {
    background-color: #e03500;
    box-shadow: 0 6px 12px rgba(255, 60, 0, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #020719 0%, #020719 40%, rgba(2, 7, 25, 0.8) 55%, rgba(2, 7, 25, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #d0dbe8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e03500;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Features Bar */
.features-bar {
    background-color: #05163f;
    padding: 25px 0;
    color: #fff;
    border-top: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-orange);
    font-size: 28px;
    line-height: 1;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.feature-desc {
    font-size: 12px;
    color: #a0b2c6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-subtitle {
    font-size: 13px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-top: 25px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-list li i {
    color: #e03500;
    font-size: 18px;
}

.btn-dark {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-dark:hover {
    background-color: #03102e;
}

.about-image-collage {
    position: relative;
    padding-bottom: 40px;
}

.about-img-main {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: block;
}

.about-img-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    width: 90%;
}

.about-img-sm {
    width: 31%;
    border-radius: 12px;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Industries Section */
.industries-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-header-line {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.section-header-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eee;
    z-index: 1;
}

.section-title-badge {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.industry-card {
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    flex: 1 1 100px;
    max-width: 125px;
    padding: 25px 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.industry-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #e5e5e5;
    transform: translateY(-3px);
    background-color: #fff;
}

.industry-icon {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.industry-name {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

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

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

.product-card {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: #e0e0e0;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 233px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f5f5f5;
    border-radius: 12px 12px 0 0;
}

.product-img-wrapper img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 30px 15px 25px;
    position: relative;
}

.product-icon-circle {
    position: absolute;
    top: -20px;
    left: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border: 3px solid #fff;
}

.product-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.why-choose-left {
    padding-right: 10px;
}

.why-header {
    font-size: 14px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}

.why-header::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
    margin-right: 15px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
}

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

.why-feature-icon {
    font-size: 20px;
    color: var(--primary-blue);
    width: 25px;
    text-align: center;
}

.why-feature-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.why-stats-box {
    background-color: #05163f;
    border-radius: 16px;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
    position: relative;
}

.why-stats-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.why-stats-box::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.stat-icon {
    font-size: 32px;
    color: transparent;
    -webkit-text-stroke: 1.5px #6d86ab;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-text {
    font-size: 12px;
    color: #8fa5c2;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    padding: 40px 0;
    color: #fff;
}

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

.cta-image {
    flex: 0 0 150px;
}

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

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 13px;
    color: #b0c4de;
}

.cta-action {
    flex: 0 0 auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-orange);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #c92f00;
}

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

/* Footer Section */
.site-footer {
    background-color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #eaeaea;
}

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

.footer-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.footer-heading {
    font-size: 13px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

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

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.footer-contact-list i {
    color: #666;
    margin-top: 3px;
    width: 14px;
    text-align: center;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #25D366;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}

.footer-whatsapp-btn:hover {
    background-color: #f0fdf4;
}

.footer-whatsapp-btn i {
    font-size: 24px;
    color: #25D366;
}

.footer-whatsapp-text {
    display: flex;
    flex-direction: column;
}

.footer-whatsapp-text span:first-child {
    font-size: 12px;
    color: #25D366;
    font-weight: 600;
}

.footer-whatsapp-text span:last-child {
    font-size: 13px;
    color: #333;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 0.8;
}

.social-in {
    background-color: #0077b5;
}

.social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-fb {
    background-color: #1877f2;
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #888;
}

.accordion-icon {
    display: none;
}

.mobile-top-bar-content {
    display: none;
}

/* --- Responsive Styles --- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

@media (max-width: 1200px) {
    .nav-list {
        gap: 15px;
    }

    .main-nav {
        gap: 15px;
    }

    .search-input {
        width: 150px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }

    .feature-item:nth-child(3)::after {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-stats-box {
        max-width: 700px;

    }
}

@media (max-width: 992px) {
    .mob {
        display: flex !important;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .top-bar {
        display: none;
    }

    .mobile-top-bar-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }

    .mobile-top-bar-content .top-bar-item {
        color: var(--text-dark);
        font-size: 13px;
        font-weight: 500;
    }

    .mobile-top-bar-content .top-bar-item i {
        color: var(--primary-blue);
        width: 20px;
    }

    .mobile-top-bar-content .social-icons {
        margin-top: 5px;
        justify-content: flex-start;
    }

    .mobile-top-bar-content .social-icon {
        background-color: #f1f1f1;
        color: var(--primary-blue);
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1006;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        max-width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        padding-top: 30px;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        border-top: none;
        align-items: flex-start;
        z-index: 1005;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        display: flex;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
        border-top: none;
        border-left: 2px solid var(--primary-orange);
        margin-top: 10px;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .search-container {
        margin: 20px 0;
        width: 100%;
    }

    .search-input {
        width: 100%;
    }

    .quote-btn {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
    }

    .top-bar-left,
    .top-bar-right,
    .top-bar-center {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .accordion-icon {
        display: block;
        transition: transform 0.3s ease;
    }

    .footer-accordion-content {
        display: none;
        padding-top: 15px;
    }

    .footer-accordion-content.active {
        display: block;
    }

    .footer-accordion-header.active .accordion-icon {
        transform: rotate(180deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-img-row {
        position: static;
        width: 100%;
        margin-top: 15px;
    }

    .about-image-collage {
        padding-bottom: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(even)::after {
        display: none;
    }

    .feature-item:nth-child(3)::after {
        display: block;
    }

    .feature-item:not(:last-child)::after {
        height: 50%;
        top: 25%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .top-bar-left,
    .top-bar-center,
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }

    .logo-main-text {
        font-size: 24px;
    }

    .logo-sub-text {
        font-size: 8px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: 26px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item::after {
        display: none;
    }

    .feature-content {
        align-items: flex-start;
        text-align: left;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    .why-stats-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-stats-box::before,
    .why-stats-box::after {
        display: none;
    }

    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
}

/* Products Page Styles */
.products-page-hero {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle warehouse background image effect */
.products-page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8ed3c84a0c?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    /* Fade out towards the left so text is readable */
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.products-breadcrumb {
    font-size: 13px;
    color: #a0aec0;
    margin-bottom: 25px;
}

.products-breadcrumb a {
    color: #a0aec0;
    transition: color 0.3s;
}

.products-breadcrumb a:hover {
    color: #fff;
}

.products-hero-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.products-hero-subtitle {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 500px;
}

.products-main-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Styling */
.sidebar {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-blue);
    padding: 0 25px 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.sidebar-list {
    list-style: none;
}

.sidebar-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px;
    font-size: 14px;
    color: #475569;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.sidebar-item a:hover {
    background-color: #f1f5f9;
    color: var(--primary-blue);
}

.sidebar-item a i {
    font-size: 10px;
    color: #94a3b8;
    transition: transform 0.3s;
}

.sidebar-item.active a {
    background-color: #fff;
    color: var(--primary-blue);
    border-left-color: var(--primary-orange);
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Products Grid */
.products-grid-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card-item {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

.product-card-img {
    width: 100%;
    height: 200px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-card-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.product-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
}

.product-card-link i {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s;
}

.product-card-link:hover i {
    transform: translateX(3px);
}

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

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        padding: 15px;
    }

    .sidebar-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sidebar-title {
        padding: 0 0 15px 0;
        border-bottom: none;
    }

    .sidebar-item {
        flex: 1 1 calc(50% - 10px);
    }

    .sidebar-item a {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 15px;
        background-color: #fff;
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }

    .sidebar-item.active a {
        border-left: none;
        border-bottom-color: var(--primary-orange);
    }
}


/* Modal & Card Actions Styles */
.product-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 10px;
}

.quote-btn-small {
    padding: 8px 12px;
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quote-btn-small:hover {
    background-color: var(--primary-orange);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .quote-modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-orange);
}

.modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
}

.submit-quote {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-quote:hover {
    background-color: #e63600;
}

/* Tab Styles */
.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .products-grid-view {
        grid-template-columns: 1fr;
    }

    .sidebar-item {
        flex: 1 1 100%;
    }

    .products-hero-title {
        font-size: 32px;
    }
}


/* Features Bar */
.features-bar {
    background-color: #05163f;
    padding: 25px 0;
    color: #fff;
    border-top: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-orange);
    font-size: 28px;
    line-height: 1;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.feature-desc {
    font-size: 12px;
    color: #a0b2c6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-subtitle {
    font-size: 13px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-top: 25px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-list li i {
    color: #e03500;
    font-size: 18px;
}

.btn-dark {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-dark:hover {
    background-color: #03102e;
}

.about-image-collage {
    position: relative;
    padding-bottom: 40px;
}

.about-img-main {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: block;
}

.about-img-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    width: 90%;
}

.about-img-sm {
    width: 31%;
    border-radius: 12px;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Industries Section */
.industries-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-header-line {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.section-header-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eee;
    z-index: 1;
}

.section-title-badge {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.industry-card {
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    flex: 1 1 100px;
    max-width: 125px;
    padding: 25px 10px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.industry-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #e5e5e5;
    transform: translateY(-3px);
    background-color: #fff;
}

.industry-icon {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.industry-name {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

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

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

.product-card {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: #e0e0e0;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 233px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f5f5f5;
    border-radius: 12px 12px 0 0;
}

.product-img-wrapper img {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 30px 15px 25px;
    position: relative;
}

.product-icon-circle {
    position: absolute;
    top: -20px;
    left: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border: 3px solid #fff;
}

.product-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.why-choose-left {
    padding-right: 10px;
}

.why-header {
    font-size: 14px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}

.why-header::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
    margin-right: 15px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
}

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

.why-feature-icon {
    font-size: 20px;
    color: var(--primary-blue);
    width: 25px;
    text-align: center;
}

.why-feature-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.why-stats-box {
    background-color: #05163f;
    border-radius: 16px;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
    position: relative;
}

.why-stats-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.why-stats-box::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.stat-icon {
    font-size: 32px;
    color: transparent;
    -webkit-text-stroke: 1.5px #6d86ab;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-text {
    font-size: 12px;
    color: #8fa5c2;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    padding: 40px 0;
    color: #fff;
}

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

.cta-image {
    flex: 0 0 150px;
}

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

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-text {
    font-size: 13px;
    color: #b0c4de;
}

.cta-action {
    flex: 0 0 auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-orange);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #c92f00;
}

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

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
    }

    .top-bar-left,
    .top-bar-right,
    .top-bar-center {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .accordion-icon {
        display: block;
        transition: transform 0.3s ease;
    }

    .footer-accordion-content {
        display: none;
        padding-top: 15px;
    }

    .footer-accordion-content.active {
        display: block;
    }

    .footer-accordion-header.active .accordion-icon {
        transform: rotate(180deg);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-img-row {
        position: static;
        width: 100%;
        margin-top: 15px;
    }

    .about-image-collage {
        padding-bottom: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:nth-child(even)::after {
        display: none;
    }

    .feature-item:nth-child(3)::after {
        display: block;
    }

    .feature-item:not(:last-child)::after {
        height: 50%;
        top: 25%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .top-bar-left,
    .top-bar-center,
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }

    .logo-main-text {
        font-size: 24px;
    }

    .logo-sub-text {
        font-size: 8px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .hero-title {
        font-size: 26px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item::after {
        display: none;
    }

    .feature-content {
        align-items: flex-start;
        text-align: left;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    .why-stats-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-stats-box::before,
    .why-stats-box::after {
        display: none;
    }

    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-col h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info-col p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 15px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-detail-card {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-bottom: 3px solid var(--primary-orange);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background-color: #edf2f7;
    color: var(--primary-blue);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-detail-title {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-detail-text,
.contact-detail-link {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-link:hover {
    color: var(--primary-orange);
}

.contact-form-col {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.captcha-placeholder {
    background-color: #f1f5f9;
    border: 1px dashed #cbd5e1;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    color: #64748b;
    margin-bottom: 20px;
}

.btn-submit {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a365d;
}

.contact-map {
    height: 450px;
    width: 100%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 30px 20px;
    }
}

/* --- Blog Page Styles --- */
.blog-page-wrapper {
    background-color: #f9fafb;
    padding-bottom: 60px;
}

.blog-hero-banner {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 60px 30px;
    border-radius: 12px;
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.blog-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-hero-subtitle {
    font-size: 18px;
    color: #e2e8f0;
}

.blog-layout {
    display: flex;
    gap: 40px;
}

.blog-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.blog-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 10px;
    display: inline-block;
}

.small-blog-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.small-blog-card:hover {
    transform: translateY(-3px);
}

.small-blog-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.small-blog-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 15px 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.small-blog-title:hover {
    color: var(--primary-orange);
}

.blog-date {
    font-size: 13px;
    color: #64748b;
    margin: 0 15px 15px;
}

.blog-date i {
    margin-right: 5px;
}

.blog-main-content {
    flex: 1;
}

.blog-search-bar {
    display: flex;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    outline: none;
}

.blog-search-btn {
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blog-search-btn:hover {
    background-color: #e63600;
}

.main-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.large-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

.large-blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.large-blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 20px 20px 10px;
    line-height: 1.4;
    transition: color 0.3s;
}

.large-blog-title:hover {
    color: var(--primary-orange);
}

.large-blog-card .blog-date {
    margin: 0 20px 15px;
}

.large-blog-excerpt {
    font-size: 15px;
    color: #475569;
    margin: 0 20px 20px;
    line-height: 1.6;
    flex: 1;
}

@media (max-width: 992px) {
    .blog-layout {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
        order: 2;
        margin-top: 40px;
    }

    .blog-main-content {
        order: 1;
    }

    .small-blog-card {
        display: grid;
        grid-template-columns: 150px 1fr;
        align-items: center;
    }

    .small-blog-img img {
        height: 100%;
        min-height: 120px;
    }

    .small-blog-title {
        margin: 15px 15px 5px;
    }

    .blog-date {
        margin: 0 15px 15px;
    }
}

@media (max-width: 768px) {
    .main-blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero-title {
        font-size: 28px;
    }

    .small-blog-card {
        grid-template-columns: 1fr;
    }

    .small-blog-img img {
        height: 180px;
    }
}

/* --- About Us Page Styles --- */
.about-page-hero {
    display: flex;
    background-color: var(--primary-blue);
    color: var(--text-light);
    margin: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.about-hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-breadcrumb {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.about-breadcrumb a {
    color: #fff;
    transition: color 0.3s;
}

.about-breadcrumb a:hover {
    color: var(--primary-orange);
}

.about-page-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-page-subtitle {
    font-size: 18px;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 500px;
}

.about-hero-image {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.who-we-are-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.who-we-are-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-we-are-content h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.who-we-are-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
}

.who-we-are-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.who-we-are-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-feature-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.about-feature-icon {
    font-size: 36px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.about-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.about-why-choose-section {
    padding: 80px 0;
}

.about-why-header h3 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.about-stat-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f1f5f9;
    border-radius: 12px;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.about-stat-text {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
}

.about-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-reason-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.about-reason-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(255, 60, 0, 0.1);
}

.about-reason-icon {
    width: 40px;
    height: 40px;
    background-color: #f8fafc;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.about-reason-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .about-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .who-we-are-container {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page-hero {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-hero-content {
        padding: 40px 30px;
    }

    .about-page-title {
        font-size: 32px;
    }

    .who-we-are-features {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Product Listing Page Styles --- */
.product-listing-hero {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 60px 0 80px;
    background-image: linear-gradient(90deg, rgba(2, 7, 25, 0.95) 0%, rgba(2, 7, 25, 0.7) 100%), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.product-listing-breadcrumb {
    font-size: 13px;
    color: #b0c4de;
    margin-bottom: 25px;
}

.product-listing-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.product-listing-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-listing-subtitle {
    font-size: 16px;
    color: #d0dbe8;
    line-height: 1.6;
}

.product-range-section {
    padding: 60px 0 80px;
    background-color: #f9fafb;
}

.product-range-title {
    font-size: 28px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.product-range-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-range-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-range-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-range-img {
    padding: 30px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.product-range-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-range-content {
    padding: 0 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-range-content h3 {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    flex: 1;
}

.view-products-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.view-products-link:hover {
    color: #d63300;
}

@media (max-width: 992px) {
    .product-range-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-range-grid {
        grid-template-columns: 1fr;
    }
    
    .product-listing-title {
        font-size: 30px;
    }
}

/* --- Single Product Page Styles --- */
.product-single-section {
    padding: 60px 0 80px;
    background-color: #f9fafb;
}

.product-single-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-main-img {
    background-color: #f4f6f8;
    border-radius: 8px;
    padding: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-thumb {
    background-color: #f4f6f8;
    border-radius: 8px;
    padding: 10px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.product-thumb:hover, .product-thumb.active {
    border-color: var(--primary-orange);
}

.product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-specs-box {
    display: flex;
    flex-direction: column;
}

.product-specs-title {
    font-size: 22px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.product-specs-table tr {
    border-bottom: 1px solid #edf2f7;
}

.product-specs-table td {
    padding: 15px 10px;
    font-size: 15px;
    color: #4a5568;
}

.product-specs-table td:first-child {
    font-weight: 600;
    color: var(--primary-blue);
    width: 40%;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-full {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-red {
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
}

.btn-red:hover {
    background-color: #d63300;
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid #cbd5e1;
}

.btn-outline-dark:hover {
    border-color: var(--primary-blue);
    background-color: #f8fafc;
}

.product-desc-box {
    margin-top: 10px;
}

.product-section-title {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-desc-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.product-features-box {
    margin-top: 10px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product-features-list li i {
    color: var(--primary-orange);
    margin-top: 4px;
}

@media (max-width: 992px) {
    .product-single-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-single-section {
        padding: 40px 0 50px;
    }
    
    .product-single-layout {
        padding: 20px;
        gap: 25px;
    }
    
    .product-main-img {
        height: 250px;
        padding: 15px;
    }
    
    .product-thumb {
        height: 60px;
        padding: 5px;
    }
    
    .product-specs-title {
        font-size: 20px;
    }
    
    .product-specs-table td {
        padding: 10px 5px;
        font-size: 14px;
    }
    
    .product-actions .btn-full {
        padding: 12px;
        font-size: 15px;
    }
}

/* --- Utilities --- */
body.no-scroll {
    overflow: hidden;
}