        :root {
            --primary-blue: #004a99;
            --accent-orange: #f39200; 
            --dark-steel: #1a1d20;
        }

        body { font-family: 'Inter', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3, .navbar-brand { font-family: 'Montserrat', sans-serif; font-weight: 700; }

        /* Transparent Glass Navbar */
        .navbar {
            backdrop-filter: blur(15px);
            background: rgba(26, 29, 32, 0.8) !important;
            border-bottom: 2px solid var(--accent-orange);
            transition: 0.3s;
        }

        /* Hero Section with Home Page.jpg */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/page.png') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }

        /* Video Background Section */
        .video-container {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Image Overlays */
        .img-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: 0.4s;
            height: 100%;
        }
        .img-card:hover { transform: translateY(-10px); }
        .img-card img { width: 100%; height: 250px; object-fit: cover; }

        /* Contact Form */
        .contact-box {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            border-left: 8px solid var(--accent-orange);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .btn-industrial {
            background: var(--accent-orange);
            color: white;
            border-radius: 50px;
            padding: 12px 35px;
            font-weight: 700;
            border: none;
            transition: 0.3s;
        }
        .btn-industrial:hover { background: #d68100; transform: scale(1.05); }

        /* Adding a subtle hover effect to make it look premium */
        .vision-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        footer { background: var(--dark-steel); color: #888; padding: 50px 0 20px; }

    /* Floating Side Buttons */
.floating-buttons {
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-buttons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: 0.3s ease;
    text-decoration: none;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

/* Button Colors */
.btn-whatsapp { background: #25D366; }
.btn-call { background: #0d6efd; }
.btn-pdf { background: #dc3545; }

/* Tooltip */
.floating-buttons a span {
    position: absolute;
    right: 70px;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.floating-buttons a:hover span {
    opacity: 1;
    visibility: visible;
}

/* Footer Styling */
    .footer-industrial {
        background: #121416;
        padding: 80px 0 30px;
        color: #adb5bd;
        font-family: 'Inter', sans-serif;
    }

    .footer-logo {
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .footer-nav li {
        margin-bottom: 12px;
    }

    .footer-nav a {
        color: #adb5bd;
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.9rem;
    }

    .footer-nav a:hover {
        color: #f39200; /* Your Industrial Orange */
        padding-left: 5px;
    }

    /* Social Icons Styling */
    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        text-decoration: none;
        transition: 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-icon:hover {
        background: #f39200;
        color: white;
        transform: translateY(-5px);
        border-color: #f39200;
    }

    .contact-item i {
        font-size: 1.2rem;
    }

    .contact-item p {
        line-height: 1.6;
    }