/* ===================================
   BS Steel Industries - Premium Stylesheet
   Theme Colors: #0B2A4A (Dark Blue), #D62828 (Red)
   Author: Senior PHP Full Stack Developer
   =================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #1f5682;
    /* Logo Blue */
    --secondary-color: #db1f25;
    /* Logo Red */
    --accent-color: #1A1A1A;
    /* Dark Background */
    --white: #FFFFFF;
    --light-grey: #F8F9FA;
    --lighter-grey: #FAFBFC;
    --dark-grey: #2C3E50;
    --text-grey: #5A6C7D;
    --border-color: #E8ECEF;
    --border-radius: 12px;
    --transition: all 0.4s ease;
    --box-shadow: 0 5px 25px rgba(74, 144, 199, 0.08);
    --box-shadow-hover: 0 10px 40px rgba(74, 144, 199, 0.15);
    --gradient-primary: linear-gradient(135deg, #4A90C7 0%, #db1f25 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-grey);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: var(--primary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
    background-color: #ffffff;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo wrapper clips the drop-in */
.loader-logo-wrap {
    overflow: hidden;
    padding-bottom: 5px;
    margin-bottom: 18px;
}

/* Logo drops from top and bounces on landing */
.loader-logo-img {
    width: 140px;
    height: auto;
    object-fit: contain;
    display: block;
    animation: logoDrop 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes logoDrop {
    0% {
        transform: translateY(-240px);
        opacity: 0;
    }

    55% {
        transform: translateY(20px);
        opacity: 1;
    }

    72% {
        transform: translateY(-12px);
        opacity: 1;
    }

    85% {
        transform: translateY(6px);
        opacity: 1;
    }

    93% {
        transform: translateY(-3px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Brand name fades in after logo lands */
.loader-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 4px;
    animation: fadeInUp 0.5s ease 0.9s both;
}

.loader-brand span {
    color: var(--secondary-color);
}

/* Tagline */
.loader-tagline {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 6px 0 18px;
    animation: fadeInUp 0.5s ease 1.05s both;
}

/* Loading bar */
.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    animation: fadeInUp 0.4s ease 1.1s both;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 3px;
    animation: loaderBar 1.5s ease 1.1s both;
}

@keyframes loaderBar {
    0% {
        width: 0%;
    }

    60% {
        width: 75%;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.section-divider.left {
    margin: 0 0 15px;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(231, 69, 69, 0.3);
}

.btn-primary-custom:hover {
    background: #D63434;
    border-color: #D63434;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 69, 69, 0.45);
    color: var(--white);
}

.btn-outline-custom {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-dark-custom {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(74, 144, 199, 0.25);
}

.btn-dark-custom:hover {
    background: #3A7AB5;
    border-color: #3A7AB5;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 199, 0.35);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 0;
    box-shadow: 0 2px 25px rgba(74, 144, 199, 0.08);
    transition: var(--transition);
    border-bottom: 1px solid rgba(74, 144, 199, 0.06);
}

.navbar-custom.scrolled {
    padding: 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(74, 144, 199, 0.12);
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px;
    /*padding: 18px 0;*/
}

.navbar-brand span {
    color: var(--secondary-color);
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--text-grey) !important;
    font-weight: 600;
    padding: 22px 18px !important;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-custom .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border-color: var(--primary-color) !important;
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74, 144, 199, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    background: var(--primary-color);
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1.2s;
    transition-property: opacity;
}

.hero-carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-carousel .carousel-inner {
    height: 100%;
}

.hero-carousel .carousel-item {
    height: 100%;
    position: relative;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(74, 144, 199, 0.88) 0%, rgba(231, 69, 69, 0.75) 50%, rgba(74, 144, 199, 0.82) 100%); */
    z-index: 1;
    background: linear-gradient(135deg, rgb(0 0 0 / 31%) 0%, rgb(0 0 0 / 68%) 50%, rgb(0 0 0 / 29%) 100%);
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-carousel .carousel-control-prev {
    left: 30px;
}

.hero-carousel .carousel-control-next {
    right: 30px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--secondary-color);
    opacity: 1;
    border-color: var(--secondary-color);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: var(--transition);
}

.hero-carousel .carousel-indicators .active {
    width: 40px;
    border-radius: 6px;
    background: var(--secondary-color);
    border-color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
    /* Hidden when using carousel */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    animation: fadeInUp 0.9s ease 0.2s both;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.5px;
}

.hero-title span {
    color: #db1f25;
    display: inline-block;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    animation: fadeInUp 0.9s ease 0.4s both;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    animation: fadeInUp 0.9s ease 0.6s both;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0;
    animation: fadeInUp 1s ease 0.8s both;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    white-space: nowrap;
}

.hero-stat-item {
    text-align: center;
    color: var(--white);
    padding: 18px 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #db1f25;
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-light {
    background: var(--light-grey);
}

.section-white {
    background: var(--white);
}

.section-dark {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about-preview {
    padding: 100px 0;
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 450px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 69, 69, 0.4);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content {
    padding: 20px 0 20px 40px;
}

.about-icon-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-icon-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.about-icon-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--light-grey);
    padding: 100px 0;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--secondary-color);
}

.product-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-img-wrap {
    overflow: hidden;
    height: 220px;
}

.product-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-card-desc {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 12px;
}

.product-sizes-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.size-badge {
    background: #f0f4f8;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #dde3ea;
}

.product-card-footer {
    margin-top: auto;
}

/* ===== WHY CHOOSE US ===== */
.why-us-section {
    background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80') center center / cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 25, 45, 0.88);
    z-index: 0;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

.why-us-section .section-title {
    color: var(--white);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    background: rgba(231, 69, 69, 0.15);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(231, 69, 69, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--white);
    color: var(--secondary-color);
}

.feature-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--secondary-color);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
    background-color: #69696969;
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
    height: 80px;
    margin: auto;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    background: var(--light-grey);
    color: var(--primary-color);
    border: 2px solid transparent;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    cursor: pointer;
    margin-bottom: 24px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(74, 144, 199, 0.9) 0%, rgba(231, 69, 69, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-icon {
    transform: scale(1);
}

/* ===== CONTACT CTA ===== */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* background-color: #06111e; */
    background-image: url(./assets/images/process-of-manufacturing.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 25, 45, 0.87);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-icons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 5px;
}

.cta-icons a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: #060f1a;
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-about {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f285';
    font-family: 'Bootstrap-icons';
    font-size: 0.7rem;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    background: url('./assets/images/Slide-5.webp') center center / cover no-repeat;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 55%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 10;
}

.page-hero-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff !important;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    color: #ffffff !important;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.9rem;
    text-decoration: none;
}

.page-hero .breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 600;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Force all page-hero text pure white */
.page-hero *,
.page-hero span,
.page-hero p,
.page-hero nav {
    position: relative;
    z-index: 2;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 100px 0;
}

.mission-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--box-shadow);
    height: 100%;
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.mission-card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-grey);
    border-radius: 10px;
    transition: var(--transition);
}

.value-item:hover {
    background: #d5d5d5;
    color: var(--white);
}

.value-item:hover h5 {
    color: var(--white);
}

.value-item:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.value-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-item:hover .value-icon {
    color: var(--secondary-color);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    max-width: 400px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--secondary-color);
}

.timeline-year {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* ===== LEADERSHIP CARDS ===== */
.leadership-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.leader-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 4px;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.leader-card-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    margin: 30px auto 20px;
    display: block;
    background: linear-gradient(135deg, var(--primary-color), #1a3d5c);
}

.leader-avatar {
    /* width: 300px;
    height: 400px; */
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #1a3d5c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto 20px;
    font-size: 3rem;
    color: var(--white);
    /* border: 5px solid var(--secondary-color); */
}

.leader-avatar img {
    width: 100%;
    border-radius: 20px;
}

.leader-role {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.leader-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
    background: var(--light-grey);
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--box-shadow);
    margin-bottom: 24px;
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-hover);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 45px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
    outline: none;
    font-family: inherit;
}

.form-control-custom:focus {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.08);
}

.form-label-custom {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 5px 20px rgba(214, 40, 40, 0.4);
    transition: var(--transition);
}

.scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* ===== PRODUCT FILTER ===== */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--light-grey);
    color: var(--primary-color);
    border: 2px solid #ddd;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* ===== ALERTS ===== */
.alert-success-custom {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error-custom {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    z-index: 1;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-custom .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .navbar-custom .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-brand {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .about-content {
        padding: 30px 0 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        border-right: none;
        border-left: 4px solid var(--secondary-color);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        display: none;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
}

/* ===== UTILITY ===== */
.text-red {
    color: var(--secondary-color);
}

.text-navy {
    color: var(--primary-color);
}

.bg-red {
    background: var(--secondary-color);
}

.bg-navy {
    background: var(--primary-color);
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.divider-line {
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

img[loading="lazy"] {
    transition: opacity 0.4s ease;
}

/* ===== PRODUCT CARD MOBILE FIX ===== */
@media (max-width: 575px) {
    .product-card[style*="flex-direction:row"] {
        flex-direction: column !important;
    }

    .product-card[style*="flex-direction:row"]>div:first-child {
        width: 100% !important;
        min-width: 100% !important;
        height: 200px;
        border-radius: 12px 12px 0 0 !important;
    }
}

/* ===== GALLERY HIDDEN ===== */
.gallery-item-wrapper.hidden {
    display: none;
}

/* ===== AOS FALLBACK ===== */
[data-aos].aos-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-init.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"].aos-init {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-init.aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"].aos-init {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-init.aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"].aos-init {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-init.aos-animate {
    transform: scale(1);
}

[data-aos="fade-down"].aos-init {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-init.aos-animate {
    transform: translateY(0);
}

/* ===== PRINT STYLES ===== */
@media print {

    .navbar-custom,
    .whatsapp-float,
    .scroll-to-top,
    .page-loader {
        display: none;
    }

    body {
        padding-top: 0;
    }
}

/* ===== CAROUSEL FADE TRANSITIONS ===== */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 1.2s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .carousel-item-next:not(.carousel-item-start),
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* ===== LIGHT THEME ENHANCEMENTS ===== */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(11, 42, 74, 0.06);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(11, 42, 74, 0.12);
    border-color: var(--secondary-color);
}

/* ===== ADDITIONAL MOBILE RESPONSIVENESS ===== */
@media (max-width: 767px) {
    .hero-carousel .carousel-indicators {
        bottom: 20px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .hero-carousel .carousel-control-prev {
        left: 10px;
    }

    .hero-carousel .carousel-control-next {
        right: 10px;
    }
}

/* ===== LIGHT THEME SECTION OVERRIDES ===== */

/* About Preview - Light */
.about-preview {
    background: var(--white);
}

.about-image-wrapper {
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(11, 42, 74, 0.1);
}

/* Stats Section - Light Variant */
.stats-section {
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1600&q=80') center center / cover no-repeat;
    padding: 55px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 25, 45, 0.84);
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

/* Product Cards - Light */
.products-section {
    background: var(--lighter-grey);
}

.product-card-img-wrap {
    overflow: hidden;
    height: 230px;
    position: relative;
}

.product-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.size-badge {
    background: #EEF2F8;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid #D8E2EE;
    letter-spacing: 0.3px;
}

/* Feature Cards - Light version on dark section */
.why-us-section {
    background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80') center center / cover no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-section::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(11, 25, 45, 0.88); */
    z-index: 0;
}

.why-us-section .container {
    position: relative;
    z-index: 1;
}

/* Gallery - Light Theme */
.gallery-section {
    background: var(--white);
}

.gallery-filter-btn {
    background: var(--white);
    color: var(--text-grey);
    border: 2px solid var(--border-color);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(11, 42, 74, 0.05);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(11, 42, 74, 0.2);
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 42, 74, 0.08);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 8px 35px rgba(11, 42, 74, 0.15);
    transform: translateY(-4px);
}

/* Section Tag Badges - Light */
.section-tag {
    display: inline-block;
    background: rgba(231, 69, 69, 0.08);
    color: var(--secondary-color);
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 2px solid rgba(231, 69, 69, 0.15);
}

/* Contact Info Cards - Light */
.contact-info-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(11, 42, 74, 0.06);
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 30px rgba(11, 42, 74, 0.1);
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 40px rgba(11, 42, 74, 0.08);
    border: 1px solid var(--border-color);
}

.form-control-custom {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--lighter-grey);
}

.form-control-custom:focus {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.06);
}

/* Mission Cards - Light */
.mission-card {
    border-top: 4px solid var(--secondary-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(11, 42, 74, 0.07);
    background: var(--white);
}

.mission-card:hover {
    box-shadow: 0 8px 35px rgba(11, 42, 74, 0.12);
}

/* Timeline - Light */
.timeline-content {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(11, 42, 74, 0.07);
}

.timeline-content:hover {
    box-shadow: 0 8px 35px rgba(11, 42, 74, 0.12);
}

/* Leader Cards - Light */
.leader-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(11, 42, 74, 0.07);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 42, 74, 0.13);
    border-color: var(--secondary-color);
}

/* Page Hero Banner - Improved */
.page-hero {
    background: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1600&q=80') center center / cover no-repeat;
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 55%);
    z-index: 1;
}

.page-hero .container,
.page-hero>.container {
    position: relative;
    z-index: 10;
}

.page-hero h1,
.page-hero .page-hero-tag,
.page-hero .breadcrumb,
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a,
.page-hero nav {
    position: relative;
    z-index: 10;
    color: #ffffff !important;
}

/* CTA Section - Light */
.cta-section {
    /* background: url('https://images.unsplash.com/photo-1565193566173-7a0ee3dbe261?w=1600&q=80') center center / cover no-repeat; */
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background-color: #06111e;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 25, 45, 0.87);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Footer - Refined */
.footer {
    background: #06111e;
}

/* About Icon List - Light */
.about-icon-list li {
    color: var(--text-grey);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

/* Section background alternation (light / white) */
.section-bg-alt {
    background: var(--lighter-grey);
}

/* Value items - Light */
.value-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(11, 42, 74, 0.04);
}

.value-item:hover {
    background: #d5d5d5;
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(11, 42, 74, 0.15);
}

/* Hero scroll down indicator - light */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    animation: bounceDown 2.2s infinite;
    cursor: pointer;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.12);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* WhatsApp Float - Enhanced */
.whatsapp-float {
    width: 58px;
    height: 58px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    font-size: 1.7rem;
}

/* Scroll to Top - Enhanced */
.scroll-to-top {
    border-radius: 12px;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 18px rgba(214, 40, 40, 0.3);
}

/* ===== NAVBAR CONTACT BUTTON ===== */
.navbar-contact-btn {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(231, 69, 69, 0.25);
}

.navbar-contact-btn:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 199, 0.4) !important;
}

.navbar-contact-btn::after {
    display: none !important;
}

/* ===== LOGO STYLING ===== */
.navbar-brand img {
    transition: var(--transition);
    max-height: 80px;
    width: auto;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.footer-logo img {
    max-width: 100px;
    height: auto;
    transition: var(--transition);
}

.page-loader img {
    max-width: 140px;
    height: auto;
    filter: brightness(1.1);
}

/* Logo responsive adjustments */
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 100%;
    }

    .navbar-brand span {
        font-size: 1.3rem;
    }

    .page-loader img {
        max-width: 100px;
    }
}

/* Logo alt text styling when image not loaded */
.navbar-brand img[alt]::after {
    content: attr(alt);
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== CTA SECTION h2 FIX ===== */
.cta-section h2 {
    color: var(--white);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ===================================================
   FINAL OVERRIDES - Page Hero Text (Pure White)
   =================================================== */
.page-hero {
    position: relative;
}

.page-hero::before,
.page-hero::after {
    z-index: 1 !important;
}

.page-hero .container,
.page-hero>.container {
    position: relative !important;
    z-index: 10 !important;
}

/* All text inside page hero = pure white */
.page-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6) !important;
}

.page-hero .page-hero-tag {
    position: relative !important;
    z-index: 10 !important;
    color: #ffffff !important;
}

.page-hero .breadcrumb {
    position: relative !important;
    z-index: 10 !important;
}

.page-hero .breadcrumb-item {
    color: #ffffff !important;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.page-hero .breadcrumb-item a:hover {
    color: #ffffff !important;
}

.page-hero .breadcrumb-item.active {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Bootstrap override for breadcrumb */
.page-hero .breadcrumb-item+.breadcrumb-item::before {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.6) !important;
}

/* ==============================================
   TOP HEADER BAR
   ============================================== */
.top-header {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.top-header-item {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-header-item:hover {
    color: #ffffff;
}

.top-header-item i {
    color: var(--secondary-color);
    font-size: 0.78rem;
}

.top-header-divider {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 4px;
}

.top-header-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}

.top-header-social a {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.72rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.top-header-social a:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* ==============================================
   MAIN NAVBAR — Redesigned
   ============================================== */

/* Push content below fixed top-header + navbar */
.top-header+.fixed-top-main+*,
body>.page-loader+.top-header+.fixed-top-main+* {
    margin-top: 0;
}

.navbar-custom,
.fixed-top-main {
    background: #ffffff !important;
    box-shadow: 0 3px 25px rgba(74, 144, 199, 0.10);
    border-bottom: 2px solid var(--border-color);
    padding: 0px 0 !important;
    position: fixed !important;
    top: 38px;
    /* sits right below top-header */
    left: 0;
    width: 100%;
    z-index: 1038;
    /* below top-header (1040) */
    transition: top 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* When scrolled: top-header slides away, navbar snaps to 0 */
.navbar-custom.scrolled,
.fixed-top-main.scrolled {
    top: 0 !important;
    box-shadow: 0 4px 30px rgba(74, 144, 199, 0.18);
    border-bottom-color: var(--secondary-color);
}

/* ===== LOGO ===== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 6px 0 6px !important;
}

.navbar-logo-img {
    height: 70px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo-img {
    transform: scale(1.05);
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.brand-name .text-red {
    color: var(--secondary-color);
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== NAV LINKS ===== */
.navbar-custom .navbar-nav .nav-link,
.fixed-top-main .navbar-nav .nav-link {
    color: #333333 !important;
    font-weight: 600;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active,
.fixed-top-main .navbar-nav .nav-link:hover,
.fixed-top-main .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-custom .navbar-nav .nav-link::after,
.fixed-top-main .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-custom .navbar-nav .nav-link:hover::after,
.navbar-custom .navbar-nav .nav-link.active::after,
.fixed-top-main .navbar-nav .nav-link:hover::after,
.fixed-top-main .navbar-nav .nav-link.active::after {
    width: 70%;
}

/* ===== CONTACT US BUTTON ===== */
.nav-contact-btn {
    display: inline-flex;
    align-items: center;
    background: var(--secondary-color);
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 18px rgba(231, 69, 69, 0.3);
    border: 2px solid var(--secondary-color);
    white-space: nowrap;
}

.nav-contact-btn:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(231, 69, 69, 0.2);
}

.nav-contact-btn.active-contact {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 18px rgba(74, 144, 199, 0.3);
}

/* Toggler for light navbar */
.navbar-toggler {
    border: 2px solid #e6e6e6 !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74,144,199,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== BODY OFFSET — push content below top-header + navbar ===== */
body {
    padding-top: 122px !important;
    /* 38px top-header + 90px navbar */
}

/* Hero section fills full screen from top */
.hero-section {
    margin-top: -128px;
    padding-top: 128px;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

/* Tablet */
@media (max-width: 991px) {

    .navbar-custom,
    .fixed-top-main {
        top: 38px;
        padding: 6px 0 !important;
    }

    .navbar-logo-img {
        height: 52px !important;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-sub {
        font-size: 0.6rem;
    }

    /* Mobile nav links - full width */
    .navbar-custom .navbar-nav .nav-link,
    .fixed-top-main .navbar-nav .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-custom .navbar-nav .nav-link::after,
    .fixed-top-main .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-contact-btn {
        margin: 14px 20px 8px;
        justify-content: center;
        display: flex;
    }

    body {
        padding-top: 112px !important;
    }

    .hero-section {
        margin-top: -112px;
        padding-top: 112px;
    }

    /* ===== MOBILE DRAWER — slides from LEFT ===== */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: -280px !important;
        width: 280px !important;
        height: 100vh !important;
        background: #ffffff !important;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15) !important;
        z-index: 9999 !important;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
        padding: 0 !important;
    }

    .navbar-collapse.show {
        left: 0 !important;
    }

    /* Drawer Header */
    .navbar-collapse::before {
        content: '';
        display: block;
        background: var(--primary-color);
        height: 70px;
        width: 100%;
    }

    .navbar-collapse .navbar-nav {
        padding: 10px 0 20px !important;
        flex-direction: column !important;
    }

    .navbar-collapse .navbar-nav .nav-link {
        padding: 13px 25px !important;
        font-size: 0.88rem !important;
        border-bottom: 1px solid #f0f0f0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        color: #333 !important;
    }

    .navbar-collapse .navbar-nav .nav-link:hover,
    .navbar-collapse .navbar-nav .nav-link.active {
        background: rgba(231, 69, 69, 0.06) !important;
        color: var(--secondary-color) !important;
        padding-left: 30px !important;
    }

    .navbar-collapse .nav-contact-btn {
        margin: 15px 20px 10px !important;
        border-radius: 8px !important;
        text-align: center !important;
        justify-content: center !important;
        width: calc(100% - 40px) !important;
    }

    /* Dark backdrop overlay */
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        backdrop-filter: blur(2px);
    }

    .mobile-nav-overlay.active {
        display: block;
    }
}

/* Mobile */
@media (max-width: 767px) {

    /* Hide top-header on mobile completely */
    .top-header {
        display: none !important;
    }

    .navbar-custom,
    .fixed-top-main {
        top: 0 !important;
        /* no top-header on mobile */
    }

    body {
        padding-top: 74px !important;
    }

    .hero-section {
        margin-top: -74px;
        padding-top: 74px;
    }

    .navbar-logo-img {
        height: 46px !important;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-sub {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
    }
}


/* ==============================================
   MOBILE SIDEBAR DRAWER
   ============================================== */

/* Dark overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.35s ease;
    opacity: 0;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Sidebar panel */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 285px;
    height: 100vh;
    background: #ffffff;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    box-shadow: 6px 0 40px rgba(0, 0, 0, 0.18);
    transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mobile-sidebar.open {
    left: 0;
}

/* ── Sidebar Header ── */
.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 18px 16px 18px 18px;
    flex-shrink: 0;
    min-height: 85px;
    border-bottom: 1px solid #d5d5d5;
}

.mobile-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-sidebar-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.mobile-sidebar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mobile-sidebar-brand .brand-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.mobile-sidebar-brand .brand-name .text-red {
    color: var(--secondary-color);
}

.mobile-sidebar-brand .brand-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Close button */
.mobile-sidebar-close {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgb(178 178 178 / 25%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #535353;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.mobile-sidebar-close:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: rotate(90deg);
}

/* ── Nav Links ── */
.mobile-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mobile-sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f2f2f2;
    transition: all 0.25s ease;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(74, 144, 199, 0.06);
    color: var(--primary-color);
    padding-left: 28px;
}

.mobile-nav-link.active {
    background: rgba(231, 69, 69, 0.06);
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 18px;
}

.mobile-nav-icon {
    width: 34px;
    height: 34px;
    background: var(--light-grey);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mobile-nav-link:hover .mobile-nav-icon,
.mobile-nav-link.active .mobile-nav-icon {
    background: var(--secondary-color);
    color: #ffffff;
}

.mobile-nav-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── Sidebar Footer ── */
.mobile-sidebar-footer {
    padding: 16px 18px 24px;
    background: var(--light-grey);
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(231, 69, 69, 0.3);
    margin-bottom: 14px;
}

.mobile-contact-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(74, 144, 199, 0.35);
}

.mobile-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-sidebar-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-grey);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-sidebar-info a i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.mobile-sidebar-info a:hover {
    color: var(--primary-color);
}

/* Hide default Bootstrap collapse on mobile */
@media (max-width: 991px) {
    #navbarDesktop {
        display: none !important;
    }

    .navbar-collapse {
        display: none !important;
    }
}

/* Only show mobile sidebar on < 992px */
@media (min-width: 992px) {

    .mobile-sidebar,
    .mobile-nav-overlay {
        display: none !important;
    }

    #mobileMenuToggle {
        display: none !important;
    }
}

/* ==============================================
   FIX: Horizontal scroll caused by AOS animations
   fade-left / fade-right slide elements off-screen
   ============================================== */

/* Wrap every section so overflow-x is clipped */
section,
.hero-section,
.stats-section,
.about-preview,
.products-section,
.why-us-section,
.gallery-section,
.cta-section,
.about-section,
.leadership-section,
.contact-section {
    overflow-x: hidden;
}

/* Clip AOS animated elements that go off the sides */
[data-aos="fade-left"],
[data-aos="fade-right"],
[data-aos="fade-up"],
[data-aos="fade-down"],
[data-aos="zoom-in"] {
    overflow: hidden visible;
    /* allow vertical, clip horizontal */
}

/* Prevent the AOS init transform from creating scrollbar */
[data-aos].aos-init:not(.aos-animate) {
    /* clip any overflow during animation */
    overflow: clip;
}

/* Ensure container never bleeds outside viewport */
.container,
.container-fluid {
    overflow-x: clip;
}

/* Global safety net — never allow horizontal scroll */
html,
body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

/* ==============================================
   MOBILE: 1 Column Layout for all sections
   ============================================== */
@media (max-width: 575px) {

    /* Stats Section — 1 column on mobile */
    .stats-section .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .stat-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        background-color: #69696969;
        border-radius: 15px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Product Cards — 1 column */
    .products-section .col-md-6,
    .products-section .col-lg-3 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Feature Cards (Why Us) — 1 column */
    .why-us-section .col-md-6,
    .why-us-section .col-lg-3 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Gallery — 1 column */
    .gallery-item-wrapper.col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Leadership cards — 1 column */
    .leader-card {
        width: 100% !important;
    }

    /* Footer columns — 1 column */
    .footer .col-lg-4,
    .footer .col-lg-3,
    .footer .col-lg-2,
    .footer .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Mission / Values — 1 column */
    .values-grid {
        grid-template-columns: 1fr !important;
    }

    /* Hero buttons — 1 column stack */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }

    /* CTA icons — 1 column */
    .cta-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-icons a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin: 0 !important;
    }

    /* Contact form card padding */
    .contact-form-card {
        padding: 24px 16px !important;
    }

    /* About content padding */
    .about-content {
        padding: 20px 0 0 !important;
    }

    /* Section title font */
    .section-title {
        font-size: 1.7rem !important;
    }

    /* Hero title font */
    .hero-title {
        font-size: 1.6rem !important;
    }

    /* Product card horizontal layout fix on mobile */
    .product-card[style*="flex-direction:row"],
    .product-card[style*="flex-direction: row"] {
        flex-direction: column !important;
    }

    .product-card[style*="flex-direction:row"]>div:first-child,
    .product-card[style*="flex-direction: row"]>div:first-child {
        width: 100% !important;
        min-width: 100% !important;
        height: 200px !important;
        border-radius: 16px 16px 0 0 !important;
    }
}

/* ==============================================
   LEGAL PAGES (Terms, Privacy)
   ============================================== */
.legal-section-box {
    background: var(--light-grey);
    border-radius: 12px;
    padding: 22px 24px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 40px;
}

.legal-section-box p,
.legal-section-box ul,
.legal-section-box li {
    color: var(--text-grey);
    line-height: 1.9;
    font-size: 0.93rem;
    margin: 0;
}

.legal-icon-box {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ==============================================
   QUALITY PAGE
   ============================================== */
.quality-step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 28px;
    height: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.quality-step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-hover);
}

.quality-step-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ==============================================
   PRODUCT DETAIL PAGES
   ============================================== */
.product-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.product-spec-table tr td {
    padding: 12px 18px;
    color: var(--text-grey);
}

.product-spec-table tr td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    border-right: 1px solid var(--border-color);
    width: 42%;
}

.product-spec-table tr:nth-child(even) td {
    background: var(--light-grey);
}

.product-size-chip {
    background: var(--primary-color);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    display: inline-block;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-grey);
}

.product-feature-item i {
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Product quick inquiry box */
.product-inquiry-box {
    background: var(--light-grey);
    border-radius: 14px;
    padding: 28px;
    margin-top: 24px;
    border-left: 4px solid var(--secondary-color);
}

/* Related products section */
.related-products-section {
    padding: 60px 0;
    background: var(--light-grey);
}

/* ==============================================
   404 PAGE
   ============================================== */
.error-404-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -4px;
    opacity: 0.1;
}

.error-404-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(231, 69, 69, 0.3);
}

/* ==============================================
   MOBILE RESPONSIVE - New Pages
   ============================================== */
@media (max-width: 575px) {
    .product-feature-grid {
        grid-template-columns: 1fr;
    }

    .product-size-chip {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .legal-section-box {
        padding: 18px 16px;
    }

    .error-404-number {
        font-size: 5rem;
    }
}

/* ==============================================
   PRODUCTS PAGE — Uniform Card Design
   ============================================== */

/* Each card is a flex column, fixed equal height via row-equal-height */
#productsGrid {
    align-items: stretch;
    /* makes all col divs same height */
}

#productsGrid>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.product-card-uniform {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(74, 144, 199, 0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* fills the col height */
}

.product-card-uniform:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(74, 144, 199, 0.14);
    border-color: var(--secondary-color);
}

/* Image — fixed height for all cards */
.pcu-img-wrap {
    position: relative;
    height: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.pcu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}

.product-card-uniform:hover .pcu-img-wrap img {
    transform: scale(1.07);
}

/* Category badge on image */
.pcu-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Body — grows to fill remaining space */
.pcu-body {
    padding: 26px 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcu-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.pcu-desc {
    font-size: 0.88rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 16px;
    flex-shrink: 0;
    /* Fixed 3 lines so all cards align */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
    /* 3 lines × 1.8 line-height × 0.88rem */
}

.pcu-sizes-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.pcu-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
    /* Fixed height so all cards have equal size area */
    min-height: 62px;
    align-content: flex-start;
}

.pcu-more {
    background: var(--lighter-grey) !important;
    color: var(--text-grey) !important;
    border: 1px dashed var(--border-color) !important;
    font-style: italic;
    font-weight: 600 !important;
}

/* Footer — always at bottom, never pushed up */
.pcu-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.pcu-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: inline-flex !important;
    align-items: center;
    padding: 11px 16px !important;
    font-size: 0.82rem !important;
    min-width: 0;
}

/* Mobile: stack buttons */
@media (max-width: 480px) {
    .pcu-footer {
        flex-direction: column;
    }

    .pcu-btn {
        width: 100% !important;
    }

    .pcu-img-wrap {
        height: 200px;
    }

    .pcu-body {
        padding: 20px 18px 18px;
    }
}

/* ==============================================
   GLOBAL CARD ALIGNMENT & SHADOW OVERHAUL
   Applied to ALL card types across the website
   ============================================== */

/* ── Product Cards (Homepage & Products Page) ── */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(74, 144, 199, 0.07),
        0 6px 24px rgba(74, 144, 199, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 28px rgba(74, 144, 199, 0.13),
        0 18px 40px rgba(74, 144, 199, 0.09);
    border-color: var(--secondary-color);
}

/* ── Uniform Product Cards (Products Page) ── */
.product-card-uniform {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(74, 144, 199, 0.07),
        0 6px 24px rgba(74, 144, 199, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-uniform:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 28px rgba(74, 144, 199, 0.13),
        0 18px 40px rgba(74, 144, 199, 0.09);
    border-color: var(--secondary-color);
}

/* ── Feature Cards (Why Us, Quality Page) ── */
.feature-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 36px 26px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}

.feature-card .feature-icon {
    margin-bottom: 22px;
    flex-shrink: 0;
}

.feature-card .feature-title {
    margin-bottom: 10px;
}

.feature-card .feature-desc {
    flex: 1;
}

/* ── Mission / Vision Cards ── */
.mission-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border-top: 4px solid var(--secondary-color);
    border: 1px solid var(--border-color);
    border-top-width: 4px;
    box-shadow: 0 2px 14px rgba(74, 144, 199, 0.07),
        0 8px 28px rgba(74, 144, 199, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(74, 144, 199, 0.13),
        0 18px 40px rgba(74, 144, 199, 0.08);
}

/* ── Value Items (About Page) ── */
.value-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(74, 144, 199, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.value-item:hover {
    background: #e3e3e3;
    border-color: #d5d5d5;
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(74, 144, 199, 0.18);
}

.value-item:hover h5,
.value-item:hover p {
    color: rgba(255, 255, 255, 0.88);
}

.value-item:hover h5 {
    color: #fff;
}

/* ── Timeline Cards ── */
.timeline-content {
    background: var(--white);
    border-radius: 14px;
    padding: 26px;
    border-left: 4px solid var(--secondary-color);
    border: 1px solid var(--border-color);
    border-left-width: 4px;
    box-shadow: 0 2px 12px rgba(74, 144, 199, 0.07),
        0 6px 22px rgba(74, 144, 199, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    max-width: 400px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(74, 144, 199, 0.13),
        0 16px 36px rgba(74, 144, 199, 0.08);
}

/* ── Leadership Cards ── */
.leader-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    text-align: center;
    padding-bottom: 30px;
    box-shadow: 0 2px 14px rgba(74, 144, 199, 0.07),
        0 8px 28px rgba(74, 144, 199, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 32px rgba(74, 144, 199, 0.14),
        0 20px 48px rgba(74, 144, 199, 0.09);
    border-color: var(--secondary-color);
}

/* ── Contact Info Cards ── */
.contact-info-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 30px;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary-color);
    border: 1px solid var(--border-color);
    border-left-width: 4px;
    box-shadow: 0 2px 12px rgba(74, 144, 199, 0.07),
        0 6px 22px rgba(74, 144, 199, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(74, 144, 199, 0.12),
        0 14px 36px rgba(74, 144, 199, 0.07);
}

/* ── Contact Form Card ── */
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(74, 144, 199, 0.08),
        0 12px 40px rgba(74, 144, 199, 0.05);
}

/* ── Gallery Items ── */
.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(74, 144, 199, 0.09),
        0 8px 28px rgba(74, 144, 199, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(74, 144, 199, 0.14),
        0 18px 40px rgba(74, 144, 199, 0.1);
}

/* ── Quality Step Cards ── */
.quality-step-card,
div[style*="border-top: 4px solid var(--secondary-color)"] {
    box-shadow: 0 2px 14px rgba(74, 144, 199, 0.07),
        0 8px 28px rgba(74, 144, 199, 0.05) !important;
}

/* ── About Image Wrapper ── */
.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(74, 144, 199, 0.12),
        0 20px 56px rgba(74, 144, 199, 0.08);
}

/* ── Stats Section stat-item ── */
.stat-item {
    text-align: center;
    color: var(--white);
    padding: 24px 20px;
}

/* ── Footer contact icon ── */
.footer-contact-icon {
    width: 42px;
    height: 42px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(231, 69, 69, 0.3);
}

/* ── About Badge ── */
.about-badge {
    box-shadow: 0 8px 28px rgba(231, 69, 69, 0.35);
}

/* ==============================================
   CARD TEXT ALIGNMENT — consistent across all
   ============================================== */

/* All card headings left aligned */
.product-card-uniform .pcu-title,
.product-card .product-card-title,
.mission-card h3,
.feature-card .feature-title,
.leader-card .leader-name,
.contact-info-card h5,
.timeline-content .timeline-title {
    text-align: left;
}

/* Feature cards center aligned (dark bg) */
.feature-card .feature-title,
.feature-card .feature-desc {
    text-align: center;
}

/* Leader cards center */
.leader-card .leader-name,
.leader-card .leader-role {
    text-align: center !important;
    display: block;
}

/* Consistent card body padding */
.pcu-body,
.product-card-body {
    padding: 24px 26px 22px !important;
}

/* Size badges uniform */
.size-badge {
    background: #EEF2F8;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid #D8E2EE;
    letter-spacing: 0.3px;
    display: inline-block;
    line-height: 1.4;
}

/* ==============================================
   RESPONSIVE CARD FIXES
   ============================================== */
@media (max-width: 767px) {
    .contact-form-card {
        padding: 28px 20px !important;
    }

    .mission-card {
        padding: 26px 22px !important;
    }

    .pcu-img-wrap {
        height: 210px !important;
    }

    .contact-info-card {
        padding: 22px 20px !important;
    }
}

@media (max-width: 575px) {
    .pcu-img-wrap {
        height: 185px !important;
    }

    .pcu-body {
        padding: 18px 16px 16px !important;
    }

    .leader-card {
        border-radius: 14px !important;
    }
}

/* ==============================================
   FIX: Scrollbar showing in page-hero / breadcrumb
   ============================================== */
.page-hero {
    overflow: hidden !important;
}

.page-hero *,
.page-hero .container,
.page-hero .breadcrumb,
.page-hero nav[aria-label="breadcrumb"] {
    overflow: visible !important;
    max-width: 100% !important;
}

/* Prevent any child element creating scroll inside hero */
.page-hero .row,
.page-hero .col-12,
.page-hero ol.breadcrumb {
    overflow: hidden !important;
    max-width: 100% !important;
}

/* ==============================================
   HERO TYPING EFFECT
   ============================================== */

/* Wrapper keeps typed text inline with title */
.hero-typed-wrap {
    display: inline;
    white-space: nowrap;
}

/* The typed text itself — red color */
#heroTyped {
    color: var(--secondary-color);
    font-weight: 900;
    position: relative;
}

/* Blinking cursor */
.typed-cursor {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 300;
    font-size: 0.9em;
    margin-left: 2px;
    animation: typedBlink 0.75s step-end infinite;
    vertical-align: baseline;
    opacity: 1;
}

@keyframes typedBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive: wrap on small screens */
@media (max-width: 575px) {
    .hero-typed-wrap {
        white-space: normal;
    }
}