   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #000000;
            --primary-light: #ffffff;
            --accent-blue: #0066cc;
            --accent-sea-blue: #006994;
            --accent-light-blue: #00a8e8;
            --accent-gray: #2a2f48;
            --text-primary: #000000;
            --text-secondary: #6b7280;
            --border-color: #e5e7eb;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-primary);
            background: var(--primary-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
        }

        section {
            scroll-margin-top: 140px;
        }

        /* ============================= */
        /*           TOP BAR             */
        /* ============================= */
        .top-bar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1100;
            height: 40px;

        }

        .top-bar {
            background: #000000;
            color: #fff;
            font-size: 0.85rem;
            padding: 8px 0;
        }

        .top-container {
            max-width: 1400px;
            margin: auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Left Side */
        .top-left {
            display: flex;
            gap: 20px;
        }

        .top-left a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

        .top-left a i {
            margin-right: 6px;
        }

        .top-left a:hover {
            color: #D53C3D;
        }

        /* Right Side */
        .top-right {
            display: flex;
            gap: 50px;
        }

        .top-right a {
            color: #fff;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .top-right a:hover {
            color: #D53C3D;
        }

        @media (max-width: 768px) {

            .top-container {
                flex-direction: row;
                /* Keep same row */
                justify-content: space-between;
                align-items: center;
                padding: 0 10px;
            }

            .top-left {
                gap: 10px;
                font-size: 12px;
            }

            .top-right {
                gap: 15px;
            }

            .top-bar {
                height: auto;
                padding: 6px 0;
            }

        }












        /* ===== HEADER ===== */
        header {
            margin-top: 35px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: #ffffff;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--border-color);
            padding: 1.2rem 0;
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
            animation: fadeInLeft 0.8s ease-out;
        }


/* Animated Line Under Navbar */
header {
    position: fixed;
    width: 100%;
}

/* Create animated bar */
header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #D53C3D,
        transparent
    );
    animation: moveLine 3s linear infinite;
}

/* Animation */
@keyframes moveLine {
    0% {
        left: -100%;
    }
    100% {
        left: 0%;
    }
}

        .logo-image {
            width: 100%;
            height: 80px;
        }

        /* ===== NAVBAR ===== */

        .navbar {
            display: flex;
            align-items: center;
        }

        .nav-links {
            width: 220px;
            max-width: 90vw;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }

        .nav-links li a {
            text-decoration: none;
            color: #000000;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.3s;
            position: relative;
        }

        /* .nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
} */

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a:hover {
            color: #D53C3D;
        }

        /* Hide hamburger on desktop */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #000000;
            cursor: pointer;
        }

        @media (max-width: 992px) {

            /* Hide desktop nav */
            .nav-links {
                position: absolute;
                top: 100%;
                right: 0;
                background: #ffffff;
                width: 240px;
                flex-direction: column;
                padding: 1.5rem;
                gap: 1.2rem;
                display: none;
                border-left: 2px solid #fff;
            }

            /* Show when active */
            .nav-links.active {
                display: flex;
            }

            .nav-links {
                background: #ffffff;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            }

            .nav-links li a {
                color: #000;
                font-weight: 500;
                padding: 8px 0;
                display: block;
            }

            .nav-links li a:hover {
                color: #D53C3D;
                padding-left: 8px;
            }

            /* Show hamburger */
            .menu-toggle {
                display: block;
            }
        }










        /* ===== MAIN CONTENT ===== */
        main {
            margin-top: 140px;
        }

        /* ===== NEW HERO SECTION ===== */

        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: #f5f7fa;
            padding: 4rem 2rem;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 4rem;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }

        .hero-content .accent {
            color: #D53C3D;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #555;
            max-width: 500px;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-image img {
            width: 100%;
            max-width: 650px;
        }

        /* ===== 3D MACHINE EFFECT ===== */

        .hero-image {
            perspective: 1200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-3d {
            transition: transform 0.6s ease;
            transform-style: preserve-3d;
            animation: floatMachine 5s ease-in-out infinite;
        }

        .image-3d img {
            width: 100%;
            max-width: 650px;
            filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
            transition: transform 0.6s ease;
        }

        /* Hover 3D Tilt */
        .image-3d:hover {
            transform: rotateY(15deg) rotateX(5deg) scale(1.05);
        }

        /* Floating Animation */
        @keyframes floatMachine {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .btn-primary {
            background: #9b0a0a;
            color: #fff;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-primary:hover {
            background: #b30404;
        }

        /* Responsive */

        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin: 0 auto 2rem auto;
            }

            .hero-image img {
                max-width: 450px;
                margin: auto;
            }
        }



        /* ===== MANUFACTURING SECTION ===== */

        .manufacturing {
            padding: 6rem 2rem;
            color: #000000;
        }

        .manufacturing-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .manufacturing-image img {
            width: 100%;
            max-width: 600px;
            filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
        }

        .manufacturing-content h2 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
        }

        .manufacturing-content .accent {
            color: #D53C3D;
        }

        .manufacturing-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #D53C3D;
        }

        .manufacturing-content p {
            color: rgba(0, 0, 0, 0.85);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .manufacturing-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .manufacturing-list li {
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .manufacturing-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .manufacturing-image img {
                margin: 0 auto;
            }
        }


        /* ===== MULTIPLE IMAGE POSITIONING ===== */

        .manufacturing-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-wrapper {
            position: relative;
            width: 100%;
            max-width: 350px;
            height: 350px;
        }

        .image-wrapper .img {
            position: absolute;
            width: 65%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: 0.5s ease;
        }

        /* Main Center Image */
        .img1 {
            top: 0;
            left: -60%;
            transform: translateX(-50%);
            z-index: 3;
        }

        /* Left Image */
        .img2 {
            bottom: 0;
            left: 10%;
            z-index: 2;
            transform: rotate(-8deg);
        }



        /* Hover Effect */
        .image-wrapper:hover .img2 {
            transform: rotate(-12deg) scale(1.05);
        }



        .image-wrapper:hover .img1 {
            transform: translateX(-50%) scale(1.08);
        }



        .image-wrapper {
            height: auto;
        }

        .image-wrapper .img {
            position: relative;
            width: 100%;
            margin-bottom: 1rem;
            transform: none !important;
        }



        @media (max-width: 992px) {

            .image-wrapper {
                height: auto;
            }

            .image-wrapper .img {
                position: relative !important;
                width: 100%;
                left: 0 !important;
                top: 0 !important;
                transform: none !important;
                margin-bottom: 1rem;
            }

        }



        /* ============================= */
        /*         ABOUT SECTION         */
        /* ============================= */

        .about-section {
            padding: 80px 5%;
            background: #f8f9fb;
        }

        .about-container {
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img {
            width: 400px;
            height: 400px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: 0.4s ease;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        .about-content {
            flex: 1;
            min-width: 300px;
        }

        .about-content h2 {
            font-size: 38px;
            margin-bottom: 20px;
            color: #111;
        }

        .about-content h2 span {
            color: #D53C3D;
        }

        .about-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .about-features {
            margin: 25px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            font-weight: 500;
            color: #222;
        }

        .about-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #D53C3D;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            transition: 0.3s ease;
        }

        .about-btn:hover {
            background: #970808;
            color: #000;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
                text-align: center;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }





        /* ============================= */
        /*         CONTACT SECTION       */
        /* ============================= */
        .contact-section {
            padding: 80px 5%;
            /* No background */
            color: #000;
        }

        .contact-container {
            max-width: 1300px;
            margin: auto;
            display: flex;
            gap: 60px;
            align-items: stretch;
            flex-wrap: wrap;
        }

        /* LEFT SIDE */
        .contact-left {
            flex: 1;
            min-width: 300px;
        }

        .contact-left h2 {
            font-size: 36px;
            margin-bottom: 25px;
        }

        .contact-left h2 span {
            color: #D53C3D;
        }

        .contact-info p {
            margin-bottom: 20px;
            color: #333;
            line-height: 1.6;
        }

        /* Social Icons */
        .contact-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .contact-social a {
            width: 45px;
            height: 45px;
            border: 1px solid #ccc;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s ease;
            text-decoration: none;
        }

        .contact-social a:hover {
            transform: translateY(-5px);
        }

        /* RIGHT SIDE (MAP) */
        .contact-right {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
        }

        .contact-right iframe {
            width: 100%;
            height: 100%;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }

            .contact-right {
                height: 350px;
            }
        }

.contact-info a{
    color: inherit;        /* same color as text */
    text-decoration: none; /* remove underline */
}

.contact-info a:hover{
    color: #D53C3D;        /* optional hover color */
}



        /* ============================= */
        /*           FOOTER              */
        /* ============================= */

        footer {
            background: #000000;
            /* Pure Black */
            color: #ffffff;
            padding: 4rem 2rem 2rem;
            border-top: 2px solid #D53C3D;
        }

        /* Container */
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        /* Section Title */
        .footer-section h4 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.2rem;
            color: #D53C3D;
            font-weight: 600;
        }

        /* Paragraph */
        .footer-section p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Links */
        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.95rem;
            margin-bottom: 0.7rem;
            transition: 0.3s ease;
        }

        .footer-section a:hover {
            color: #f83535;
            padding-left: 6px;
        }

        /* ============================= */
        /*        SOCIAL ICONS           */
        /* ============================= */

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .social-icons a {
            width: 42px;
            height: 42px;
            background: #000000;
            /* Black circle */
            border: 1px solid #333;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 16px;
            transition: 0.3s ease;
        }

        .social-icons a:hover {
            background: #f33a3a;
            border-color: #ffffff;
            color: #ffffff;

            transform: translateY(-5px);
        }

        /* ============================= */
        /*        FOOTER BOTTOM          */
        /* ============================= */

        .footer-bottom {
            border-top: 1px solid #222;
            margin-top: 3rem;
            padding-top: 1.5rem;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom a {
            color: #D53C3D;
            text-decoration: none;
            transition: 0.3s ease;
        }


        /* ============================= */
        /*        RESPONSIVE             */
        /* ============================= */

        @media (max-width: 768px) {

            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .footer-container {
                gap: 2rem;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
        }