/* General Navigation Styles */
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px; /* Reduced font size */
}

.navbar ul li {
    margin-right: 15px; /* Spacing between menu items */
}

.navbar ul li a {
    text-decoration: none;
    color: #000033;
    padding: 10px 15px; /* Adjusted padding */
    display: block;
}

.navbar ul li a:hover {
    background-color: #f1f1f1; /* Optional: Add a hover effect */
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Stack menu items vertically on smaller screens */
        text-align: center;
    }

    .navbar ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-menu {
        flex-direction: column;
        align-items: center;
    }

    .navbar-menu li {
        margin: 10px 0;
    }
}


/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header Styling */
header {
    background-color: #2a5d84; /* Banner background color */
    padding: 20px;
    color: white;
    text-align: center;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    width: 120px; /* Logo size */
    height: auto;
    mix-blend-mode: multiply; /* Blending logo */
    opacity: 0.8; /* Optional transparency */
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: white;
}

/* Navigation Menu */
.navbar {
    background-color: #F2F2F2; /* Light grey background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Professional shadow */
}

.navbar ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 15px;
    margin: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #00274D; /* Dark blue text */
    font-weight: bold;
    padding: 8px 16px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar ul li a:hover {
    background-color: #00274D;
    color: white;
    border-radius: 4px;
}

/* Hero Section */
#hero {
    background-color: #eef5ff;
    padding: 100px 0;
    text-align: center;
}

#hero h2 {
    font-size: 2.5em;
    color: #2a5d84;
}

/* Sections with Padding */
.section-padding {
    padding: 40px 0;
}

/* Welcome Section */
.welcome-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.head-image {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circular image */
    margin-right: 20px;
}

.welcome-text {
    max-width: 600px;
}

.welcome-text h2 {
    margin-bottom: 10px;
    color: #2a5d84;
}

.welcome-text p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: justify;
}

/* Units Section */
.units {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.unit {
    background-color: #f7f9fc;
    border: 1px solid #ddd;
    padding: 20px;
    width: 30%;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.unit:hover {
    transform: translateY(-10px);
}

/* Footer */
footer {
    background-color: #2a5d84;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .units {
        flex-direction: column;
        align-items: center;
    }

    .unit {
        width: 90%;
    }

    .welcome-section {
        flex-direction: column;
        text-align: center;
    }

    .head-message {
        flex-direction: column;
    }

    .head-image {
        margin-bottom: 20px;
    }

    .welcome-text {
        max-width: 100%;
    }
}

.welcome-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.head-message {
    width: 50%; /* Takes 50% of the container width */
}

.company-image {
    width: 50%; /* Takes 50% of the container width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the image is fully visible without being cropped */
    margin-left: 20px;
}

.head-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
}

.welcome-text {
    max-width: 600px;
}

@media (max-width: 768px) {
    .welcome-section {
        flex-direction: column;
        text-align: center;
        position: static;
    }

    .company-image {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .head-message {
        width: 100%;
    }
}

/* Gallery Section Styles */
#gallery {
    background: #f4f4f4;
    padding: 40px 0;
}

.gallery-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth; /* Smooth scrolling */
    padding: 10px 0;
}

.gallery-item {
    flex: 0 0 auto;
    margin: 0 10px;
    border: 2px solid #ddd; /* Border around images */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 200px; /* Adjust width as needed */
    height: 150px; /* Adjust height as needed */
    object-fit: cover; /* Ensures image fits within the container */
}

.gallery-container::-webkit-scrollbar {
    height: 8px; /* Scrollbar height */
}

.gallery-container::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar color */
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Scrollbar hover color */
}
/* General section padding */
.section-padding {
    padding: 60px 0;
}

/* Gallery container */
.scrolling-gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Scrolling Gallery */
.scrolling-gallery {
    width: 100%;
    overflow: hidden; /* Hide the overflow to ensure only visible images show */
}

.gallery-images {
    display: flex;
    width: max-content; /* Adjust width based on the number of images */
    animation: scroll 10s linear infinite; /* Continuous scrolling */
}

.gallery-images img {
    width: 200px; /* Adjust image width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between images */
}

/* Keyframe animation for continuous scrolling */
@keyframes scroll {
    0% {
        transform: translateX(100%); /* Start from right */
    }
    100% {
        transform: translateX(-100%); /* End at left */
    }
}
.social-media-platforms {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social-media-item {
    width: 30%;
    text-align: center;
}

.social-media-item iframe {
    border: none;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .social-media-item {
        width: 100%;
        margin-bottom: 20px;
    }
}
.contact-info {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2a5d84;
}

.contact-info .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info .main-office, .contact-info .store-marketing {
    margin-bottom: 20px;
}

.contact-info .contact-detail {
    margin: 10px 0;
}

.contact-info .contact-detail a {
    color: #2a5d84;
    text-decoration: none;
}

.contact-info .contact-detail a:hover {
    text-decoration: underline;
}
#download {
    background-color: #CCCCCC;
    text-align: center;
}

#download h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

#download p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.app-links {
    text-align: center; /* Center the icons horizontally */
}

.app-link {
    display: block; /* Make each link take up the full width available */
    margin: 10px 0; /* Add space between the icons */
}

.app-icon {
    width: 171px; /* Set a consistent width for the icons */
    height: auto; /* Keep aspect ratio */
    display: block; /* Make sure the images are displayed as block elements */
    margin: 0 auto; /* Center the images within their container */
}

.app-link img:hover {
    transform: scale(1.1);
}
