/* CSS Variables for design color palette */
:root {
    --primary-navy: #192d48;
    --accent-orange: #f26522;
    --background-light: #f8f9fa;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-light: #e0e0e0;
    --white: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* --- Header / Hero Section --- */
.hero-section {
    background-color: #f0f4f7;
    /* Light blue base */
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    /* Zero gap between menu and slider */
    align-items: center;
    height: 100vh;
    /* full screen height */
    display: flex;
}

/* Detailed background image of a PCB */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../img/home-banner.jpg'); */
    /* background-size: cover; */
    background-position: center;
    /* opacity: 0.15; Subtly integrated */
    z-index: 0;
    background: linear-gradient(142deg,
            rgb(56 94 157 / 71%) 0%,
            rgb(56 94 157 / 39%) 52%,
            rgb(55 94 156 / 39%) 51%,
            rgb(253 253 253 / 0%) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-weight: 700;
    color: var(--white);
    font-size: 3rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    /* opacity: 0.8; */
    max-width: 600px;
    font-weight: 400;
    /*font-weight: 900;*/
}

/* Reusable button styles */
.btn-orange {
    background-color: #e30522 !important;
    color: white !important;
    border-radius: 5px !important;
    font-weight: 500 !important;
    padding: 0.75rem 2rem !important;
    border: 2px solid #e30522 !important;
    transition: all 0.3s ease !important;
}

.btn-orange:hover {
    background-color: white !important;
    color: #e30522 !important;
}

.btn-light-outline {
    background-color: #ffffff !important;
    color: var(--primary-navy) !important;
    border-radius: 5px !important;
    font-weight: 500 !important;
    padding: 0.75rem 2rem !important;
    border: 2px solid rgba(25, 45, 72, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-light-outline:hover {
    background-color: rgba(25, 45, 72, 0.05) !important;
    color: #f8f9fc !important;
    border: 2px solid rgb(253 254 255) !important;
}

/* --- Global Sections Styling --- */
.section-padding {
    padding: 3rem 0;
    background-color: #f0f4f7;
    margin: 0;
}

section.formix-section-padding {
    padding: 0rem 0;
    background-color: #f0f4f7;
    margin: 0;
}

section.quotes-section-padding {
    padding: 2.5rem 0;
    background-color: #f0f4f7;
    margin: 0;
}

.section-title {
    color: #25272D;
    /*color: var(--primary-navy);*/
    font-weight: 700;
    position: relative;
    margin-bottom: 2.5rem;
    font-size: 1.8rem174
}

.card-body.p-4.p-md-5 {
    background-color: #25272D;
}

.section-title span {
    color: var(--text-dark);
}

/* --- High-End Product Category Showcase --- */
.category-showcase-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #e30522;
    background: rgba(227, 5, 34, 0.06);
    border: 1px solid rgba(227, 5, 34, 0.18);
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(227, 5, 34, 0.08);
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e30522 0%, #0f172a 100%);
    border-radius: 2px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.card-corner-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    z-index: 2;
    transition: all 0.3s ease;
}

.product-card:hover .card-corner-tag {
    background: #e30522;
    color: #ffffff;
    border-color: #e30522;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e30522 0%, #004b93 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-container {
    height: 140px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.product-card:hover .product-image-container {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    border-color: #cbd5e1;
    box-shadow: inset 0 2px 6px rgba(15, 23, 42, 0.04);
}

.product-image-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06));
}

.product-card:hover .product-image-container img {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

.category-chip {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #0284c7;
    background: rgba(2, 132, 199, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.product-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-type {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
    text-align: left;
    height: auto;
    transition: color 0.25s ease;
}

.product-card:hover .product-type {
    color: #e30522;
}

.product-desc {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 1.2rem;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.5rem;
}

.btn-product-action {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    padding: 0.65rem 1rem !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15) !important;
}

.btn-product-action i {
    transition: transform 0.3s ease !important;
}

.btn-product-action:hover {
    background: linear-gradient(135deg, #e30522 0%, #b91c1c 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(227, 5, 34, 0.35) !important;
    transform: translateY(-1px) !important;
}

.btn-product-action:hover i {
    transform: translateX(5px) !important;
}

.product-specs {
    font-size: small;
    color: #888;
    margin-bottom: 1rem;
    height: 2.5rem;
}

.product-rating {
    color: gold;
    margin-bottom: 0.5rem;
}

/* Specific card for LED display, needs different height logic */
.product-card.special-led {
    height: auto;
    margin-bottom: 1.5rem;
}

.btn-card {
    font-size: 16px !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
}

.btn-navy-fill {
    /*background-color: var(--primary-navy) !important;
    color: white !important;*/
    background-color: transparent !important;
    color: #0d6efd !important;
    border: 1px solid #0d6efd !important;
}

.btn-navy-fill:hover {
    /*background-color: var(--primary-navy) !important;
    color: white !important;*/
    background-color: #0d6efd !important;
    color: #ffffff !important;
    border: 1px solid #0d6efd !important;
}

.btn-orange-outline {
    background-color: transparent !important;
    color: var(--accent-orange) !important;
    border: 1px solid var(--accent-orange) !important;
}

.btn-orange-outline:hover {
    background-color: var(--accent-orange) !important;
    color: white !important;
}

/* --- FEATURED COMPONENTS STAGGERED LAYOUT --- */
.featured-section {
    padding: 30px 0;
    background-color: #fff;
}

.industry-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.industry-item {
    flex: 0 0 150px;
    /* Fixed width to keep them uniform */
    text-align: center;
    transition: all 0.3s ease;
}

/* The "Up-Down" Logic: Even items move down */
.industry-item:nth-child(even) {
    margin-top: 40px;
    /* Pushes the 2nd, 4th, 6th item down */
}

/* Icon Styling */
.industry-icon-circle {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--f-navy);
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.industry-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--f-navy);
    margin-bottom: 8px;
}

.industry-item p {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.3;
}

/* Responsive: Remove stagger on mobile so they don't look broken */
@media (max-width: 768px) {
    .industry-item:nth-child(even) {
        margin-top: 0;
    }

    .industry-container {
        gap: 30px 10px;
    }

    .industry-item {
        flex: 0 0 45%;
        /* 2 per row on mobile */
    }
}

/* --- Why Choose Section --- */
.why-choose-section {
    background: linear-gradient(rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.60)), url('../img/Why%20Choose%20Formix.png') no-repeat center center / cover;
    color: var(--text-light);
    padding: 75px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-header {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.reason-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.reason-icon {
    margin-right: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Sub-panel in 'Why Choose' (white/orange area) */
.white-subpanel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.white-subpanel-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.subpanel-content-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Industries We Serve sub-icons */
.serves-item {
    text-align: center;
    flex: 0 0 25%;
    padding: 0 5px;
}

.serves-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    /* filter: grayscale(1) brightness(2) contrast(0.5); Silhouetted white look */
    margin-bottom: 0.5rem;
}

.serves-item span {
    display: block;
    font-size: 16px;
    /*font-size: 0.75rem;*/
    font-weight: 400;
}

/* --- India Section (Mid-Right on desktop) --- */
.india-section {
    padding: 32px 10px 0px 10px;
    /*padding-top: 2rem;*/
}

.india-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.india-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.india-image-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.india-image-container img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Learn More button from the design */
.btn-navy-learn-more {
    background-color: #25272D !important;
    color: white !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    padding: 0.6rem 2.5rem !important;
    font-size: 0.9rem !important;
}

/* --- Brands We Deal In Section --- */
.brands-section {
    background: white !important;
    padding: 3rem 0 !important;
    border-top: 1px solid var(--border-light) !important;
    border-bottom: 1px solid var(--border-light) !important;
}

.logo-scroll-container {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    overflow-x: auto !important;
    /* Basic responsiveness */
    padding: 1rem 0 !important;
}

.logo-item img {
    height: 100px;
    object-fit: contain;
    margin: 0 15px;
    /* opacity: 0.8; */
    transition: opacity 0.3s ease;
    border: 2px solid #dd1010bd;
    border-radius: 15px;
}

.logo-item img:hover {
    opacity: 1;
}

/* --- BOQ Upload & Get Quote Section (Dark Navy) --- */
.boq-quote-section {
    background-color: var(--primary-navy) !important;
    /* color: white !important; */
    padding: 30px 20px !important;
    /*padding: 1rem !important;*/
    border-radius: 30px !important;
    margin-top: 0rem !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Abstract blue network lines background */
.boq-quote-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('../img/home-baanner-quote.png') !important;
    background-size: cover !important;
    background-position: center !important;
    /* opacity: 0.08 !important; Very subtle */
    z-index: 0 !important;
}

.boq-content {
    position: relative;
    z-index: 1;
}

.boq-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.boq-text {
    color: rgb(255 255 255 / 95%);
    font-size: 0.9rem;
    margin-bottom: 0px;
    /*margin-bottom: 2rem;*/
    /*comment on 15/04/2026*/
    max-width: 500px;
}

/* The stylized square buttons */
.btn-boq {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    padding: 12px 32px !important;
    /*padding: 1.2rem !important;*/
    border-radius: 8px !important;
    width: 100% !important;
    max-width: 280px !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
}

.btn-boq-orange {
    background-color: var(--accent-orange) !important;
    color: white !important;
    border: none !important;
    text-decoration: none;
}

.btn-boq-navy {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 2px solid rgb(255 255 255 / 50%) !important;
    text-decoration: none;
}

.btn-boq-navy:hover {
    background-color: white !important;
    color: var(--primary-navy) !important;
}

.btn-boq-icon {
    margin-right: 12px !important;
    font-size: 1.3rem !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .why-choose-section {
        margin-top: 2rem;
    }

    .boq-quote-section {
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-title {
        font-size: 44px;
        /*font-size: 1.8rem;*/
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0.5rem;
    }

    .industry-feature {
        padding: 1rem;
    }

    .india-image-container img {
        height: 180px;
    }

    .serves-item span {
        font-size: 0.65rem;
    }

    .boq-buttons-flex {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Footer from design (placeholder/minimal representation of the content) */
.minimal-footer {
    background-color: #f0f4f7;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

.minimal-footer span {
    margin: 0 10px;
    cursor: pointer;
}

.minimal-footer span:hover {
    color: var(--accent-orange);
}


/* vission and mission Content */

/* Styling the Mission/Vision accent bars */
.border-success {
    border-color: #28a745 !important;
    /* Adjust to match your brand green */
}

.bg-danger {
    /* background: linear-gradient(145deg, #e63946, #c1121f) !important; */
    background: linear-gradient(145deg, #1a2d48, #1a2d48) !important;
}

/* Bootstrap Icons (if not already included) */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");

/*
    Brands makes for home page listingß
*/
.brand-slider {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #fff;
}

.brand-track {
    display: flex;
    width: calc(280px * 12);
    /* Width of 1 item * total items (original + duplicate) */
    animation: scroll 30s linear infinite;
}

.brand-item {
    width: 250px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.brand-item img {
    /* max-width: 150px; */
    max-height: 150px;
    /* filter: grayscale(100%); Optional: makes logos grayscale */
    /* opacity: 0.6; */
    transition: all 0.3s ease;
    border: 2px solid #dd1010bd;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 1px 3px 12px 2px #888888;
}

.brand-item img:hover {
    filter: grayscale(0%);
    /* Color on hover */
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }

    /* Half of the total width (the first set) */
}

/* Pause animation on hover */
.brand-slider:hover .brand-track {
    animation-play-state: paused;
}

/*.header-search {
    position: relative;
    display: block;
    height: 0px;
    z-index: 999;
    top: 8rem;
    width: 100%;
}*/

/*
    Modal overlaping issue
*/

.modal-dialog {
    top: 9.5rem;
}

/* .nice-select ul.list
 {
    height: 14rem;
    width: 20rem;
    overflow-y: auto;
} */

/*
* New Home page CSS for Theme Home page 
* 14/04/26 Created new / Dhara 
*/

.search-box-wrapper input {
    height: 50px;
    padding-left: 20px;
}

.nice-select ul.list {
    height: 14rem;
    width: 20rem;
    overflow-y: auto;
}



/* on 15/04/2026*/
.hero-section {
    height: 600px;
    position: relative;
    color: white;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Optional dark overlay for readability */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}



/* counter fonts css added on 15/4/2026*/

/*.counter-section{
    padding-top: 40px;
    padding-bottom: 40px;
   
}*/
.counter-section h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Make number + suffix inline */
.counter-section h2 {
    font-size: 80px;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    line-height: 1;
    color: #fff;
}

h1.section-title {
    text-align: left;
}

.counter-right p.small-text {
    padding-left: 60px;
    color: #fff;
}

/* Style the + or M+ */
.counter-section span {
    font-size: 50px;
    font-weight: 700;
    margin-left: 5px;
    vertical-align: top;
    color: #fff;
}

/* Optional: align everything nicely */
.counter-section .col-md-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    border: solid 2px #7fad39;
    border-radius: 20px;
    /* width: 23.86%;*/
}

.counter-section .row.text-center {
    gap: 20px;
}

@media (max-width: 768px) {
    .counter-section h2 {
        font-size: 40px;
    }

    .counter-section span {
        font-size: 20px;
    }
}


.industries-section {
    background: #ffffff;
}

/* Heading */
.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    max-width: 700px;
    margin: 10px auto 0;
    color: #555;
}

.industries-section .row.g-4.mt-4 {
    text-align: center;
    margin: 0 auto;
    gap: 30px;
    width: 1200px;
}

.industries-section .row.g-4.mt-4 .col-md-4 {
    width: 31%;
}


/* Card */
.industry-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-8px);
}

/* Image */
.industry-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Title */
.industry-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.industry-card p {
    font-size: 16px;
    color: #666;
}


p.lead.text-muted {
    font-size: 16px !important;
}



/* Tablet */
@media (max-width: 992px) {
    .industries-section .row.g-4.mt-4 {
        width: 100% !important;
        gap: 20px;
    }

    .industries-section .row.g-4.mt-4 .col-md-4 {
        width: 48% !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .industries-section .row.g-4.mt-4 {
        width: 100% !important;
        gap: 15px;
    }

    .industries-section .row.g-4.mt-4 .col-md-4 {
        width: 100% !important;
    }

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

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






/* FULL SECTION */
.split-layout {
    width: 100%;
}

.split-layout .row {
    margin: 0;
}

.split-layout .col-lg-6 {
    padding: 0;
}

/* LEFT SIDE */
.counter-left {
    background: #f3f3f3;
    display: flex;
    align-items: center;
}

.counter-content {
    /*max-width: 650px;*/
    padding: 50px 50px 50px 300px;
}

/* HEADING */
.counter-content h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* TEXT */
.counter-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

/* BUTTON */
.btn-red {
    background: #ff3b2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
}

/* RIGHT SIDE */
.counter-right {
    background: #f2382c;
    color: #fff;
    display: flex;
    align-items: center;
}

/* INNER SPACING (IMPORTANT) */
.counter-inner {
    width: 100%;
    padding: 120px 100px;
}

/* SMALL TOP TEXT */
.small-text {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 60px;
}

/* COUNTER GRID */
.counter-right .row {
    row-gap: 70px;
}

/* EACH BLOCK ALIGN LEFT */
.counter-right .col-md-6 {
    text-align: left;
}

/* BIG NUMBERS */
.counter-right h2 {
    font-size: 95px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

/* + / M+ */
.counter-right span {
    font-size: 42px;
    margin-left: 6px;
}

/* LABEL TEXT */
.counter-right h5 {
    font-size: 15px;
    margin-top: 10px;
    color: #fff;
    font-weight: 500;
}


@media (max-width: 768px) {
    .counter-content {
        padding: 50px 20px;
    }

    .counter-inner {
        padding: 50px 20px;
    }

    .counter-content h2 {
        font-size: 32px;
    }

    .counter-right h2 {
        font-size: 70px;
    }

    .counter-right .col-md-6 {
        text-align: center;
    }

    .humberger__menu__contact ul {
        padding-left: 0px;
    }
}


@media (min-width: 1024px) and (max-width:1440px) {
    .counter-content {
        padding: 50px 30px 50px 60px;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .counter-right .container {
        padding: 40px 40px 40px 40px !important;
    }

    .industries-section .row.g-4.mt-4 {

        width: 100%;
    }

}

@media (max-width: 768px) {
    .counter-content {
        padding: 30px 20px;
    }

    .counter-right .container {
        padding: 40px 30px 40px 40px !important;
    }
}



@media (min-width: 768px) {
    .counter-section .col-md-4 {
        width: 45%;
    }
}

@media (min-width: 992px) {
    .counter-section .col-md-4 {
        width: 30%;
    }
}



@media (min-width: 1200px) {
    .counter-section h2 {
        font-size: 80px;
    }
}

@media (min-width: 1400px) {
    .counter-right .container {
        padding: 40px 300px 40px 40px;
    }
}

/* Comprehensive Mobile & Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        padding: 3rem 0 3rem 0 !important;
        margin-top: 0 !important;
        /* Zero gap between header menu and slider */
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
    }

    .hero-subtitle {
        font-size: 1.05rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .counter-right .container {
        padding: 40px 20px !important;
    }

    .counter-content {
        padding: 40px 20px !important;
    }

    .counter-content h2 {
        font-size: 32px !important;
    }

    .counter-right h2 {
        font-size: 52px !important;
    }

    .why-choose-section {
        background-size: cover !important;
        padding: 32px 20px !important;
        min-height: auto !important;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .search-box-wrapper .form-control {
        font-size: 0.85rem !important;
        padding: 0.65rem 0.85rem !important;
    }

    .search-box-wrapper .btn {
        padding: 0.65rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .boq-buttons-flex {
        flex-direction: column;
        width: 100%;
    }

    .btn-boq {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .counter-right .col-md-6 {
        width: 100% !important;
        text-align: center !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }
}

/* Mobile Social Icons (Scoped strictly to Mobile Drawer Menu) */
.humberger__menu__wrapper .mobile-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.humberger__menu__wrapper .mobile-social-icon:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.humberger__menu__wrapper .mobile-social-icon.linkedin:hover,
.humberger__menu__wrapper .mobile-social-icon.linkedin:focus {
    background: #0a66c2 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(10, 102, 194, 0.35) !important;
}

.humberger__menu__wrapper .mobile-social-icon.facebook:hover,
.humberger__menu__wrapper .mobile-social-icon.facebook:focus {
    background: #1877f2 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(24, 119, 242, 0.35) !important;
}

.humberger__menu__wrapper .mobile-social-icon.instagram:hover,
.humberger__menu__wrapper .mobile-social-icon.instagram:focus {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(220, 39, 67, 0.35) !important;
}

.humberger__menu__wrapper .mobile-social-icon.twitter:hover,
.humberger__menu__wrapper .mobile-social-icon.twitter:focus {
    background: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.35) !important;
}

.mobile-user-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.humberger__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #475569;
    transition: all 0.2s ease;
}

.humberger__close:hover {
    background: #0f172a;
    color: #ffffff;
}

.mobile-header-bar {
    background: #25272D !important;
    border-bottom: 1px solid #33363f !important;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25); */
}


/* Mobile Logo & Drawer Sub-menu Styling */
.header__logo {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.header__logo a,
.mobile-header-bar .header__logo a,
.humberger__menu__logo a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.header__logo img,
.mobile-header-bar .header__logo img,
.humberger__menu__logo img {
    height: auto !important;
    max-height: 56px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block;
    transition: max-height 0.3s ease;
}

@media (max-width: 1199.98px) {
    .header__logo img {
        max-height: 40px !important;
    }
}

@media (max-width: 991.98px) {
    .mobile-header-bar .header__logo img {
        max-height: 60px !important;
    }

    .humberger__menu__logo img {
        max-height: 60px !important;
    }
}

@media (max-width: 575.98px) {
    .mobile-header-bar .header__logo img {
        max-height: 60px !important;
    }

    .humberger__menu__logo img {
        max-height: 60px !important;
    }
}

.slicknav_nav {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.slicknav_nav ul {
    margin: 0 !important;
    padding: 0 !important;
}

/* Base Level 1 items & rows */
.slicknav_nav .slicknav_row,
.slicknav_nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: #0f172a !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    font-size: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 2px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

/* Clear padding/margin on inner links inside slicknav_row */
.slicknav_nav .slicknav_row a {
    padding: 0 !important;
    margin: 0 !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Level 2 items (Dropdown children) */
.slicknav_nav ul .slicknav_row,
.slicknav_nav ul a {
    padding-left: 28px !important;
    font-size: 14px !important;
    color: #334155 !important;
    font-weight: 500 !important;
}

/* Level 3 items (Sub-dropdown children) */
.slicknav_nav ul ul .slicknav_row,
.slicknav_nav ul ul a {
    padding-left: 42px !important;
    font-size: 13.5px !important;
    color: #475569 !important;
    font-weight: 450 !important;
}

/* Hover & Active highlight */
.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
    color: #e30522 !important;
    background: #f8fafc !important;
}

.slicknav_nav li.active>a,
.slicknav_nav li.active>.slicknav_row {
    color: #e30522 !important;
    background: #fef2f2 !important;
    font-weight: 600 !important;
}

/* SlickNav Dropdown Arrow */
.slicknav_arrow {
    font-size: 10px !important;
    float: right !important;
    color: #64748b !important;
    margin-left: 8px !important;
    transition: transform 0.2s ease !important;
}

.slicknav_open>.slicknav_row .slicknav_arrow {
    color: #e30522 !important;
}


/* Premium Desktop Menu Dropdown Styling - Vertical Listing */
.header__menu ul li.has-dropdown {
    position: relative !important;
}

/* Invisible hover bridge to prevent cursor dropping hover state between link and menu */
.header__menu ul li.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

/* Vertical listing container for dropdowns */
.header__menu ul.header__menu__dropdown,
.header__menu ul.sub-dropdown,
.header__menu ul li ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    list-style: none !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18) !important;
    border: 1px solid #e2e8f0 !important;
}

.header__menu ul li ul.header__menu__dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 250px !important;
    width: max-content !important;
    z-index: 1000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(8px) !important;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s !important;
    pointer-events: none !important;
}

.header__menu ul li:hover>ul.header__menu__dropdown,
.header__menu ul li.has-dropdown:hover>ul.header__menu__dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.header__menu ul li ul.header__menu__dropdown li,
.header__menu ul li ul.sub-dropdown li {
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    white-space: normal !important;
}

.header__menu ul li ul.header__menu__dropdown li a,
.header__menu ul li ul.sub-dropdown li a {
    color: #1e293b !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
    width: 100% !important;
}

.header__menu ul li ul.header__menu__dropdown li:hover>a,
.header__menu ul li ul.sub-dropdown li:hover>a {
    color: #e30522 !important;
    background: #f8fafc !important;
    padding-left: 24px !important;
}

.header__menu ul li ul.header__menu__dropdown li.submenu {
    position: relative !important;
}

/* Hover bridge for sub-dropdown */
.header__menu ul li ul.header__menu__dropdown li.submenu::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -20px;
    bottom: -5px;
    width: 30px;
    z-index: 10;
}

.header__menu ul li ul.header__menu__dropdown li.submenu ul.sub-dropdown {
    position: absolute !important;
    left: 100% !important;
    top: 0 !important;
    min-width: 270px !important;
    width: max-content !important;
    z-index: 1001 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(8px) !important;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s !important;
    pointer-events: none !important;
}

.header__menu ul li ul.header__menu__dropdown li.submenu:hover>ul.sub-dropdown,
.header__menu ul li ul.header__menu__dropdown li.submenu:focus-within>ul.sub-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

/* Desktop Navigation Header Social Icons */
.header__menu ul li .header__top__right__social a,
.header__menu .header__top__right__social a,
.header__top__right__social a {
    font-size: 17px !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 8px !important;
    margin-right: 2px !important;
    margin-bottom: 8px !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease !important;
}

.header__menu ul li .header__top__right__social a:hover,
.header__menu .header__top__right__social a:hover,
.header__top__right__social a:hover {
    color: #e30522 !important;
}

/* Responsive Footer Enhancements */
.footer-logo-img {
    max-height: 48px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

.footer-cert-img {
    max-height: 44px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    border-radius: 4px;
    background: #ffffff;
    padding: 2px;
}

.footer__widget ul li a {
    transition: color 0.2s ease, padding-left 0.2s ease !important;
}

.footer__widget ul li a:hover {
    color: #e30522 !important;
    padding-left: 4px !important;
}

.footer__about li span {
    font-size: 13.5px;
    line-height: 1.5;
    color: #e2e8f0;
}

@media (max-width: 767.98px) {
    .footer {
        padding-top: 40px !important;
        padding-bottom: 25px !important;
    }

    .footer__widget {
        margin-bottom: 20px;
    }

    .footer-logo-img {
        max-height: 40px !important;
    }

    .footer-cert-img {
        max-height: 38px !important;
    }

    .container.copyright {
        margin-top: 20px !important;
        padding-top: 15px !important;
    }

    .container.copyright p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
}

/* ==========================================================================
   SUPER PROFESSIONAL RESPONSIVE HEADER & NAVIGATION (900px - 1400px+)
   ========================================================================== */

.header-bottom {
    background-color: #25272D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 !important;
}

.header__desktop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 0 !important;
}

/* Big Logo - Prominent & Crisp Sizing */
.header__logo {
    display: flex;
    align-items: center;
    padding: 2px 0;
    flex-shrink: 0;
}

.header__logo a {
    display: inline-flex;
    align-items: center;
}

.header__logo img {
    height: 90px !important;
    max-height: 90px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
}

/* Header Menu Alignment & Compact Nav Height */
.header__menu {
    padding: 0 !important;
    margin: 0 !important;
}

.header__menu>ul {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
}

.header__menu>ul>li {
    list-style: none !important;
    margin-right: 24px !important;
    position: relative !important;
    white-space: nowrap !important;
}

.header__menu>ul>li:last-child {
    margin-right: 0 !important;
}

.header__menu>ul>li>a {
    font-size: 16px !important;
    color: #f8fafc !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px !important;
    padding: 10px 0 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
}

.header__menu>ul>li:hover>a,
.header__menu>ul>li.active>a {
    color: #e30522 !important;
}

/* Action Cluster: User Icon -> Cart Symbol -> Social Icons */
.header__right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-action-btn {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.header-action-btn:hover {
    background: #e30522 !important;
    border-color: #e30522 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 5, 34, 0.35);
}

.header-action-btn .cart-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    background: #e30522 !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 3px !important;
    border: 2px solid #25272D !important;
    line-height: 1 !important;
}

.header-action-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0 5px;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-social-icons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.header-social-icons a:hover {
    color: #ffffff !important;
    background: #e30522 !important;
    border-color: #e30522 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(227, 5, 34, 0.3);
}

/* Media Queries for 900px - 1400px Range */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header__logo img {
        height: 62px !important;
        max-height: 66px !important;
    }

    .header__menu>ul>li {
        margin-right: 18px !important;
    }

    .header__menu>ul>li>a {
        font-size: 14.5px !important;
        letter-spacing: 0.2px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .header__logo img {
        height: 75px !important;
        max-height: 75px !important;
    }

    .header__menu>ul>li {
        margin-right: 10px !important;
    }

    .header__menu>ul>li>a {
        font-size: 13px !important;
        letter-spacing: 0px !important;
        padding: 8px 0 !important;
    }

    .header-action-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }

    .header-social-icons a {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
    }

    .header-social-icons {
        gap: 4px !important;
    }

    .header-action-divider {
        margin: 0 3px !important;
    }
}

/* Fixed Header & Hero Slider Section Proper Spacing */
.hero-section {
    padding-top: 95px !important;
    padding-bottom: 50px !important;
    min-height: 580px;
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 75px !important;
        padding-bottom: 40px !important;
        min-height: 480px;
    }
}