/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;  /* Disable horizontal scrolling */
    margin: 0;  /* Remove default margin to prevent overflow */
    padding: 0;  /* Remove padding */
}

/* Ensure that elements are contained within their containers */
.container, .section, .product-item, .product-category, .row {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

        body {
            font-family: Arial, sans-serif;
        }
        /* Navbar Styles */
.navbar {
    background-color: white;
    padding: 1rem;
    display: flex; /* Use flex to align items horizontally */
    align-items: center; /* Vertically center the items */
    justify-content: flex-start; /* Align items to the left */
    position: fixed; /* Fix the navbar at the top */
    top: 0; /* Position it at the top of the screen */
    left: 0; /* Ensure it starts from the left */
    width: 100%; /* Full width of the page */
    z-index: 1000; /* Ensure it's above other content */
    transition: top 0.4s ease-in-out; /* Smooth transition for hide/show */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: adds shadow when appearing */
}

/* Logo container */
.logo-container {
    display: flex;
    flex-direction: column; /* Stack logo and name vertically */
    align-items: center;
}

.navbar-logo {
    height: 90px; /* Adjust logo size */
    margin-bottom: 0px; /* Space between logo and name */
    margin-right: 30px;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
}

/* Navbar Links */
.navbar .navbar-links {
    display: flex; /* Flexbox layout for navbar links */
    align-items: center; /* Vertically align links */
}

.navbar a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px; /* Reduce the margin between the links */
    transition: 0.3s;
}

.navbar a:hover {
    background-color: #17a2b8;
    border-radius: 5px;
}



        
        .hero {
            position: relative;
            text-align: center;
            color: white;
        }
        .hero video {
            width: 100%;
            height: auto;
        }
        .hero h1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            background: rgba(0, 0, 0, 0.6);
            padding: 10px;
            border-radius: 10px;
        }
        .section {
            padding: 50px 0;
            text-align: center;
        }
        /* About Section */
/* About Section */
#about {
    padding: 80px 30px; /* Larger spacing to create more breathing room */
    background-color: #f9f9f9; /* Light grey background for a modern feel */
    color: #333; /* Dark text color for good contrast */
    font-family: 'Roboto', sans-serif; /* Modern sans-serif font */
}

/* Flex container for content and image */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensure it wraps on smaller screens */
}

/* Left side (Text) */
.about-text {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
    text-align: left;
}

.about-text h2 {
    font-size: 3rem; /* Larger font for heading */
    font-weight: 600; /* Medium weight for the title */
    margin-bottom: 20px;
    color: #17a2b8; /* Accent color for heading */
    border-bottom: 4px solid #17a2b8; /* Add a bottom border to the title */
    padding-bottom: 10px;
    text-transform: uppercase; /* Capitalize the title */
    letter-spacing: 1px; /* Slight letter-spacing for elegance */
}

/* Paragraph Styling */
.about-text p {
    font-size: 1.125rem;
    line-height: 1.8; /* Increased line height for readability */
    margin-bottom: 20px; /* Larger space between paragraphs */
    color: #555; /* Lighter text color for the body */
}

/* Right side (Image) */
.about-image {
    flex: 1;
    max-width: 40%;
    padding-left: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 15px; /* Round corners for a modern look */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Soft shadow for a floating effect */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Hover effect on image */
.about-image img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Mobile responsiveness: Stack text and image vertically */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-image {
        max-width: 100%;
        padding-left: 0;
    }

    .about-image img {
        max-width: 80%; /* Image width adjusted for smaller screens */
        margin: 0 auto;
    }
}

        .product-category {
            display: inline-block;
            margin: 10px;
            padding: 10px 20px;
            background: #17a2b8;
            color: white;
            cursor: pointer;
            border-radius: 5px;
            transition: 0.3s;
        }
        .product-category:hover {
            background: #138496;
        }
        .product-item {
            text-align: center;
            margin: 20px 0;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            background: #fff;
            height: 100%;
        }
        .product-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }
        .btn {
            background: #17a2b8;
            color: white;
            border-radius: 5px;
            padding: 10px 15px;
            text-decoration: none;
        }
        .btn:hover {
            background: #138496;
        }
        /* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Background color */
    padding-top: 60px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #f44336;
    text-decoration: none;
    cursor: pointer;
}

#modalCaption {
    text-align: center;
    color: #f1f1f1;
    padding: 10px;
    font-size: 18px;
}

        
        .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
            animation: logoMovement 5s ease-in-out infinite;
        }
        
        .client-logo {
            width: 150px; /* Fixed width */
            height: 150px; /* Fixed height */
            object-fit: contain; /* Ensure logos fit within the box */
            border: 2px solid #17a2b8; /* Light border around each logo */
            border-radius: 15px; /* Rounded corners */
            padding: 10px; /* Space between logo and border */
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            cursor: pointer; /* Show pointer on hover */
            background-color: #fff; /* Add a background color for contrast */
        }
        
        .client-logo:hover {
            transform: translateY(-10px); /* Move logo up on hover */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add a shadow on hover */
            border-color: #138496; /* Change border color on hover */
        }
        
        /* Subtle left-to-right animation */
        @keyframes logoMovement {
            0% {
                transform: translateX(-10px);
            }
            50% {
                transform: translateX(10px);
            }
            100% {
                transform: translateX(-10px);
            }
        }
        
 /* Contact Section */
#contact {
    padding: 80px 30px; /* Add larger padding for more spacing */
    background-color: #f4f4f4; /* Light background for modern look */
    color: #333; /* Dark text color */
    font-family: 'Roboto', sans-serif; /* Modern, clean font */
}

/* Flex container for contact info and map */
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensure it wraps on smaller screens */
}

/* Contact Information (Left Side) */
.contact-info {
    flex: 1;
    max-width: 45%;
    padding-right: 40px;
    text-align: left;
}

.contact-info h2 {
    font-size: 2.5rem; /* Slightly larger font for heading */
    font-weight: 600;
    margin-bottom: 20px;
    color: #17a2b8; /* Accent color */
    text-transform: uppercase;
    border-bottom: 4px solid #17a2b8;
    padding-bottom: 10px;
}

.contact-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.contact-info strong {
    color: #17a2b8; /* Highlight key information in blue */
}

/* Map Container (Right Side) */
.map-container {
    flex: 1;
    max-width: 50%;
    padding-left: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px; /* Rounded corners for the map */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow for the map */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Hover effect on the map */
.map-container iframe:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Mobile responsiveness: Stack contact info and map vertically */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .map-container {
        max-width: 100%;
        padding-left: 0;
    }

    .map-container iframe {
        height: 300px; /* Adjust height for smaller screens */
    }
}
/* Footer Styles */
.footer {
    background-color: #343a40; /* Dark background */
    color: white;
    padding: 40px 30px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin-top: 40px; /* Space between content and footer */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.footer-left,
.footer-middle {
    flex: 1;
    margin: 10px;
    max-width: 45%;
    text-align: left;
}

.footer-left h4 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #17a2b8; /* Accent color */
}

.footer-left p {
    font-size: 1.125rem;
    color: #ddd;
}

.footer-middle h5 {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 15px;
}

.footer-middle ul {
    list-style-type: none;
    padding: 0;
}

.footer-middle ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-middle ul li a:hover {
    color: #17a2b8;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
    color: #bbb;
    font-size: 1rem;
}

.footer-bottom p {
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-middle {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
 