body {
            font-family: 'Roboto', sans-serif;
            background-color: #f8f9fa;
        }

        .navbar {
            box-shadow: 0 2px 4px rgba(0,0,0,.1);
        }

        .hero-section {
            position: relative;
            color: white;
            padding: 120px 0;
            text-align: center;
            background-image: url('../picture/HomePage.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        .hero-section h1 {
            font-weight: 700;
            font-size: 3.5rem;
        }

        .hero-section p {
            font-weight: 300;
            font-size: 1.25rem;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
        }
        
        #about .description p {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #555;
        }

        .vision-mission-values h5 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: #343a40;
        }

        .vision-mission-values ul {
            padding-left: 0;
            list-style: none;
        }

        .vision-mission-values ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .vision-mission-values ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #007bff;
            font-weight: bold;
        }

        .card {
            border: none;
            box-shadow: 0 4px 8px rgba(0,0,0,.1);
            transition: transform .2s;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }

        #product .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .partner-logo {
            max-height: 90px; /* Increased from 50px */
            transition: all 0.3s ease;
            width: 100%;
            object-fit: contain;
        }
        .contact-section {
            background-color: transparent; /* Changed to transparent */
        }
        .footer {
            background-color: #343a40;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        
        .btn-primary {
            background-color: #007bff;
            border-color: #007bff;
            padding: 12px 24px;
            font-weight: 700;
        }

        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }

        .slider-container {
            position: relative;
            width: 100%;
            padding: 0 40px; /* Add padding to make space for the buttons */
            box-sizing: border-box;
        }

        .slider-wrapper {
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 25%;
            padding: 0 15px;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 1;
        }

        .prev-btn {
            left: 0;
        }

        .next-btn {
            right: 0;
        }

        .whatsapp-float {
            position: fixed;
            width: 40px;
            height: 40px;
            bottom: 30px; /* Adjusted position */
            right: 30px; /* Adjusted position */
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 20px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
        }

        .whatsapp-float i {
            margin-top: 10px; /* Adjusted to vertically center the icon */
        }

@media (min-width: 768px) { /* Larger size for desktop */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        font-size: 30px;
    }

    .whatsapp-float i {
        margin-top: 16px;
    }
}

        .services-bg {
            background-image: url('../picture/Service-background.png'); /* Using Industrial.png */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative; /* Needed for z-index of content wrapper */
            padding: 0; /* Remove default section padding as content wrapper will handle it */
        }

        .services-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.3); /* Darker overlay for better contrast */
            z-index: 1;
        }

        .services-content-wrapper {
            position: relative;
            z-index: 2; /* Ensure content is above the overlay */
            background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background for content */
            padding: 80px 0; /* Restore section padding here */
        }

        .services-bg .section-title,
        .services-bg .card-title,
        .services-bg .card-text {
            color: #333; /* Adjust text color for readability if needed */
        }

        .product-bg {
            background-image: url('../picture/OurProduct-background.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 0;
        }

        .product-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .product-content-wrapper {
            position: relative;
            z-index: 2;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 80px 0;
        }

/* Custom Modal Styles */
.modal.fade .modal-dialog {
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateX(0);
}

.modal-content {
    border: 1px solid #ced4da;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Darker and larger shadow */
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-title {
    color: #343a40;
    font-weight: 700;
}

.modal-section-image {
    width: 150px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.modal-body h6 {
    font-size: 1rem; /* Smaller heading */
}

.modal-body ul {
    font-size: 0.9rem; /* Smaller list text */
}

        .paints-modal-image {
            width: 250px;
            height: 150px;
        }


        #arakawa-logo {
            max-height: 60px; /* Make Arakawa logo even smaller */
        }

        #ramdev-logo {
            max-height: 100px;
        }
        
        #inovex-logo {
            max-height: 40px; /* Make Inovex logo slightly smaller */
        }
        
        
/* Contact Page Background */
.contact-bg {
    background-image: url('../picture/contact us.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Darker overlay for better contrast */
    z-index: 1;
}

.contact-content-wrapper {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.8); /* Reverted to semi-transparent white */
    padding: 80px 0; /* Restore section padding here */
}

/* Partners Page Background */
.partners-bg {
    background-image: url('../picture/partners.png'); /* Added background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0;
}

.partners-bg::before { /* Added overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Darker overlay for better contrast */
    z-index: 1;
    backdrop-filter: blur(5px); /* Added blur effect */
}



.partners-content-wrapper {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background for content */
    padding: 80px 0;
}

.partner-box {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


