:root {
    --color-navy: #0A192F;
    --color-navy-dark: #060f1c;
    --color-orange: #FE9404;
    --color-orange-dark: #e98800;
    --color-orange-light: rgba(255, 122, 0, 0.1);
    --color-white: #ffffff;
    --color-text: #334155;
    --color-text-light: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --header-height: 90px;
    --header-scrolled: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-navy-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==========================================
   HEADER & NAVIGATION 
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    z-index: 1000;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    height: var(--header-scrolled);
    box-shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    display: flex;
    margin-top: 16px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 17px;
    color: var(--color-navy);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

/* .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: width var(--transition-smooth);
} */

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-orange);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 15px;
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 122, 0, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn .bar {
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--color-navy);
    left: 0;
    transition: all var(--transition-smooth);
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 9px;
}

.bar:nth-child(3) {
    top: 18px;
}

/* ==========================================
   HERO SECTION 
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

/* Background & Overlays */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Pre-scale for animation */
    /* Use keyframes to add slow parallax feel */
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(10, 25, 47, 0.9) 0%,
            rgba(6, 15, 28, 0.75) 50%,
            rgba(255, 122, 0, 0.3) 100%);
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);
    /* Dark vignette edges */
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 40px;
    text-align: center;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Animation initial state */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: clamp(16px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin-bottom: 40px;
    text-align: center;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 1s ease-out 0.6s forwards;
}

.hero-subtitle p {
    margin-bottom: 12px;
}

.hero-subtitle strong {
    color: var(--color-white);
    font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;

    /* Animation initial state */
    opacity: 0;
    transform: scale(0.95);
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s forwards;
}

.btn-solid {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 4px;
}

.btn-solid:hover {
    background-color: var(--color-orange-dark);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    font-size: 16px;
    padding: 16px 36px;
    border: 2px solid var(--color-orange);
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: var(--color-orange);
    box-shadow: 0 10px 20px -10px rgba(255, 122, 0, 0.4);
}

/* Animations */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--color-orange);
    opacity: 0.15;
    z-index: 1;
    filter: blur(2px);
    pointer-events: none;
}

.p1 {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 15%;
    animation: float1 15s ease-in-out infinite alternate;
}

.p2 {
    width: 12px;
    height: 12px;
    bottom: 25%;
    right: 15%;
    opacity: 0.1;
    animation: float2 20s ease-in-out infinite alternate;
}

.p3 {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 25%;
    opacity: 0.08;
    animation: float1 18s ease-in-out infinite alternate-reverse;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -50px);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, -30px);
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    background-color: var(--color-white);
    padding: 100px 40px;
    color: var(--color-text);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-description {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 300;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.4;
}

.about-btn {
    border-radius: 4px;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    width: max-content;
}

.about-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 650px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   INDUSTRIES SECTION
   ========================================== */
.industries-section {
    background: linear-gradient(to bottom, #f0f3f7, #e6eaf0);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('crane_lifting_sunset.png');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(10, 25, 47, 0.1);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.industry-card:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.05);
}

.industry-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
}

/* ==========================================
   WHY CHOOSE SECTION
   ========================================== */
.why-choose-section {
    background-color: var(--color-white);
    padding: 100px 40px;
}

.benefit-list {
    margin-bottom: 40px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-icon {
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 3px;
}

.benefit-list span {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

.btn-navy {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    width: max-content;
    font-family: var(--font-heading);
    transition: all var(--transition-smooth);
}

.btn-navy:hover {
    background-color: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 122, 0, 0.5);
}

/* Utility */
.text-white {
    color: var(--color-white) !important;
}

.text-center {
    text-align: center;
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.categories-section {
    background-color: var(--color-navy-dark);
    padding: 100px 40px;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    background-color: #1e293b;
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 30px;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-link {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--color-navy-dark);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    padding: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.category-link:hover {
    background-color: var(--color-orange);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 80px 40px;
    background-color: var(--color-white);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-banner {
    background-color: #263c5a;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 60px 40px 60px 80px;
    position: relative;
    overflow: visible;
}

.cta-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    font-size: 15px;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all var(--transition-fast);
}

.btn-outline-white:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-image-wrapper {
    position: absolute;
    bottom: -41px;
    right: 2px;
    width: clamp(250px, 25vw, 400px);
    height: 130%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.cta-engineer-image {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    /* Optional blend mode if background image is totally solid white not transparent 
       mix-blend-mode: multiply; */
}

/* ==========================================
   POPULAR PRODUCTS SECTION
   ========================================== */
.popular-products-section {
    background-color: #f3f4f6;
    padding: 100px 40px;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.mt-40 {
    margin-top: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    text-align: center;
    transition: transform var(--transition-fast);
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image-box {
    background-color: #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-image-box img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.product-item:hover .product-image-box img {
    transform: scale(1.1);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: 0.5px;
}

/* ==========================================
   BRANDS CAROUSEL SECTION
   ========================================== */
.brands-carousel-section {
    background-color: var(--color-white);
    padding: 60px 0;
    overflow: hidden;
    border-top: 2px solid #57C3FF;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Gradient edge fading */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.carousel-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollCarousel 30s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.brand-logo {
    margin: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.brand-logo img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollCarousel {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background-color: var(--color-white);
    padding: 80px 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-navy);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-orange);
}

.btn-submit-large {
    width: 100%;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 18px;
    border: none;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-submit-large:hover {
    background-color: var(--color-orange-dark);
}

/* Contact Info */
.contact-info-wrapper {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-align: center;
}

.btn-request-quote {
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    padding: 14px 0;
    width: 100%;
    max-width: 350px;
    border-radius: 4px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.btn-request-quote:hover {
    background-color: var(--color-orange-dark);
}

.contact-divider {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background-color: #e2e8f0;
    margin: 40px 0;
}

.contact-details-list {
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-details-list span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
}

.map-container {
    width: 100%;
    max-width: 450px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e2e8f0;
}

/* ==========================================
   FOOTER CTA SECTION
   ========================================== */
.footer-cta-section {
    background-color: var(--color-navy-dark);
    padding: 100px 40px;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.footer-cta-subtitle {
    font-size: 16px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.4);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.site-footer {
    background-color: #0c203c;
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: #64748b;
    transition: color var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--color-white);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links-col ul li {
    margin-bottom: 16px;
}

.footer-links-col ul li a {
    font-size: 14px;
    color: #94a3b8;
    transition: color var(--transition-fast);
}

.footer-links-col ul li a:hover {
    color: var(--color-white);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-contact-list li svg {
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    color: #475569;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-cert {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================
   RESPONSIVE DESIGN 
   ========================================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: 20px;
    }

    .header-cta {
        display: flex;
        align-items: center;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        padding: 40px;
        flex-direction: column;
        overflow: visible;
    }

    .cta-image-wrapper {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .logo-text .tagline {
        display: none;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .header-cta .btn-primary {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-image-wrapper {
        min-height: 400px;
        order: -1;
    }

    .about-btn,
    .btn-navy {
        width: 100%;
        text-align: center;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industries-section,
    .why-choose-section,
    .categories-section,
    .cta-section,
    .popular-products-section,
    .contact-section {
        padding: 60px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-outline-white {
        width: 100%;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 20px;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================
   MANUFACTURING CAPABILITIES
   ========================================== */
.capabilities-section {
    padding: 100px 0;
    background-color: #f8fafc;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.sub-heading {
    display: block;
    color: var(--color-orange);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 14px;
}

.main-heading {
    color: var(--color-navy);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 15px;
}

.heading-desc {
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto 20px;
}

.heading-underline {
    width: 80px;
    height: 4px;
    background-color: var(--color-orange);
    margin: 0 auto;
    position: relative;
}

.heading-underline::before,
.heading-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--color-orange);
}

.heading-underline::before {
    left: -30px;
}

.heading-underline::after {
    right: -30px;
}

.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.capability-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 2px solid var(--color-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-orange);
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.1);
}

.capability-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.capability-card p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-arrow {
    color: var(--color-orange);
    font-size: 20px;
    margin-top: auto;
}

.features-bar {
    background-color: var(--color-navy);
    border-radius: 12px;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    color: var(--color-white);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feat-icon i {
    font-size: 28px;
    color: var(--color-orange);
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.feature-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mt-80 {
    margin-top: 80px;
}

.mb-60 {
    margin-bottom: 60px;
}

@media (max-width: 1200px) {
    .capability-card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .capability-card {
        width: calc(50% - 15px);
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Mobile Navigation Panel */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--color-navy);
        cursor: pointer;
        padding: 5px;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        transition: right var(--transition-smooth);
        display: flex;
        flex-direction: column;
        padding: 30px 40px;
    }

    .mobile-nav.active {
        right: 0;
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .mobile-logo {
        height: 40px;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 32px;
        color: var(--color-navy);
        cursor: pointer;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav-links li a {
        font-family: var(--font-heading);
        font-weight: 500;
        font-size: 20px;
        color: var(--color-navy);
        transition: color var(--transition-fast);
        display: block;
    }

    .mobile-nav-links li a:hover,
    .mobile-nav-links li a.active {
        color: var(--color-orange);
    }
}

@media (max-width: 768px) {
    .capability-card {
        width: 100%;
    }

    .features-bar {
        grid-template-columns: 1fr;
    }

    /* Hero Section Responsive */
    .hero {
        min-height: 500px;
        height: auto;
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn-solid,
    .hero-buttons .btn-outline {
        width: 100%;
    }
}