/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
/* Header Section Styling */
/* Add padding below the menu for desktop and mobile */
header {
    padding: 20px 0 50px 0; /* This will add 50px padding below the menu */
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    text-align: center;
}

/* Add padding for mobile screens */
@media (max-width: 768px) {
    header {
        padding: 40px 0 40px 0; /* Adjust the padding for mobile, if needed */
    }
}


/* Logo Styling */
.logo img {
    max-width: 100px;  /* Adjust logo size to be smaller */
    height: auto;
}


/* Navigation Menu Styling */
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}
/* General Mobile Adjustments */
@media (max-width: 768px) {
    /* Header adjustments for mobile */
    header {
        padding: 10px 0;  /* Add padding around the header */
    }

 /* Logo Styling */
.logo img {
    height: 60px;  /* Fixed height for the logo */
    width: auto;   /* Automatically adjust width to maintain the aspect ratio */

    }

    nav ul {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        font-size: 1rem;   /* Reduce font size for the navigation links */
        color: #fff;       /* Make sure the menu is clearly visible */
    }

    /* Hero section adjustments */
    .hero {
        padding-top: 200px;   /* Add padding at the top to prevent overlap */
        padding-bottom: 20px;
        height: auto;         /* Let the height adjust based on content */
    }

    /* Adjust title size for mobile */
/* Hero content styling */
.hero h1 {
    font-size: 2.0rem;
    margin-bottom: 20px;
    padding-top: 70px; /* Add this line to create padding above the h1 */
    z-index: 2;  /* Ensure the text stays above the overlay */
}


    .hero p {
        font-size: 1rem;      /* Smaller paragraph size for mobile */
    }

    /* Adjust button size for mobile */
    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;      /* Smaller button text for mobile */
    }
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;    /* Make the menu font white */
    font-weight: 700;  /* Make the font bolder */
    font-size: 1.1rem; /* Adjust the font size if needed */
}

.nav-links li a:hover {
    color: #007bff;    /* Change color on hover if desired */
}


/* Hero Section */
.hero {
    background: url('https://www.adsm.com.sg/wp-content/uploads/2024/09/1280drone-flying-warehouse-aisle-with-stacked-boxes.jpg') no-repeat center center/cover;
    height: 100vh;  /* Full height of the viewport */
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

/* Dark overlay for the hero section */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);  /* Dark overlay with 50% opacity */
    z-index: -1;  /* Ensure the overlay is behind the text */
}

/* Hero content styling */
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    z-index: 2;  /* Ensure the text stays above the overlay */
}

.hero h1 .highlight {
    color: #007BFF;
    text-decoration: underline;
}

.hero p {
    font-size: 2.25rem;
       color: #007BFF;
    margin-bottom: 30px;
    z-index: 2;
}

.cta-button {
    padding: 15px 30px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    z-index: 2;
}

.cta-button:hover {
    background-color: #0056b3;
}

.client-carousel {
    padding: 20px 0;
    background-color: #f9f9f9;
    text-align: center;
}
.cta-extra {
    margin-top: 0px;  /* Adjusts space between the button and the new CTA */
    font-size: 1.5rem;
    color: #000;  /* Text color */
}

.cta-extra a {
        margin-top: 20px;  /* Adjusts space between the button and the new CTA */

    color: #4f6eff;  /* Same color as the button */
    font-weight: bold;
    text-decoration: none;
}

.cta-extra a:hover {
    text-decoration: underline;  /* Adds an underline when hovered */
}

.logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide img {
    max-width: 150px;
    margin: 0 15px;
    opacity: 0.8;
    transition: transform 0.3s, opacity 0.3s;
}

.logo-slide img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Default Carousel Styling */
.logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.logo-slide img {
    height: 100px;         /* Set a fixed height for all logos */
    width: auto;          /* Maintain aspect ratio */
    padding: 10px;        /* Adds padding between logos */
    object-fit: contain;  /* Ensure the logos fit without distortion */
    box-sizing: border-box;
}

/* For tablets and small screens */
@media (max-width: 768px) {
    .logo-slide img {
        height: 70px;      /* Adjust height for medium screens */
        padding: 5px;      /* Adjust padding */
    }
}

/* For mobile devices */
@media (max-width: 600px) {
    .logo-slide img {
        height: 60px;      /* Adjust height for small screens */
        padding: 5px;      /* Add padding to prevent overlap */
        margin: 0 auto;    /* Center the logo */
    }
}




/* About Section */
.about {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.about img {
    max-width: 600px;
    border-radius: 10px;
    margin-top: 30px;
}




/* Full Tech Partner Section */
.full-tech-partner {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.full-tech-partner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.full-tech-partner .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.full-tech-partner .text-content {
    text-align: center;
}

.full-tech-partner .text-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.full-tech-partner .text-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.full-tech-partner .text-content a {
    color: #007bff;
    text-decoration: none;
}

.full-tech-partner .text-content a:hover {
    text-decoration: underline;
}

.full-tech-partner .image-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.full-tech-partner .image-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
/* Video Container for Responsive Embeds */
/* Video Wrapper for Responsiveness and Styling */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for emphasis */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the thumbnail/video fills the container */
    border-radius: 15px; /* Apply rounded corners to the video itself */
}


/* Media Queries for Mobile Devices */
@media (max-width: 600px) {
    .video-wrapper {
        padding-bottom: 75%;  /* Adjust the ratio for smaller screens */
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .full-tech-partner .content-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }

    .full-tech-partner .text-content {
        flex: 1;
        text-align: left;
    }

    .full-tech-partner .image-content {
        flex: 1.5;
    }
}


/* Web Design Process Section */
.web-design-process {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.web-design-process h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Step layout */
.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.step-content {
    text-align: center;  /* Centers the text horizontally */
    width: 100%;         /* Ensures the content takes up the full width of the container */
}

.step {
    display: flex;
    flex-direction: column; /* Change the layout to vertical */
    align-items: center;    /* Centers the content horizontally */
    padding: 20px;
    border-radius: 15px;
    width: 80%;
}


.step:nth-child(1) {
    background-color: #00bcd4; /* Color for Step 1 */
}

.step:nth-child(2) {
    background-color: #03a9f4; /* Color for Step 2 */
}

.step:nth-child(3) {
    background-color: #ffeb3b; /* Color for Step 3 */
}

.step:nth-child(4) {
    background-color: #ff9800; /* Color for Step 4 */
}

.step:nth-child(5) {
    background-color: #f44336; /* Color for Step 5 */
}

.step:nth-child(6) {
    background-color: #00bcd4; /* Color for Step 6 */
}

/* Circle number styling */
.step-icon {
    background-color: white;
    color: #007BFF;
    font-size: 2rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Step content */
.step-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px; /* Fix: closing bracket was missing */
}

.step-content p {
    font-size: 1rem;
}

/* Call to Action Section */
/* Call to Action Section */
.cta {
    background-color: #f9f9f9;  /* Light background color for the section */
    padding: 40px 0;  /* Add padding to the section for spacing */
    text-align: center;
    margin: 40px 0;   /* Vertical spacing for the section */
}

/* Icon Styling */
.cta-icon {
    font-size: 4rem;      /* Icon size */
    color: #333;          /* Color for the icon */
    margin-bottom: 20px;  /* Space below the icon */
}

/* Call to Action Text */
.cta h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111;          /* Default text color */
    margin-bottom: 20px;  /* Space below the text */
}

/* Highlighted Text */
.cta h2 .highlight {
    color: #4f6eff;       /* Blue color similar to the uploaded image */
}

/* CTA Button */
.cta-button {
    padding: 15px 30px;
    background-color: #28a745;  /* Green background color */
    color: #fff;                /* White text color */
    border-radius: 5px;         /* Rounded corners */
    text-decoration: none;      /* Remove underline from link */
    font-size: 1.1rem;          /* Button font size */
}

.cta-button:hover {
    background-color: #218838;  /* Darker green on hover */
}

/* Contact Section Styling */
.contact-section {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Form Styling */
.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center; /* Ensures the form is centered */
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures form fields are centered */
    margin-bottom: 20px;
}


label {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 5px;
}

textarea {
    resize: vertical;
}

button.cta-button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 10px;
}

button.cta-button:hover {
    background-color: #218838;
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 100px; /* Adjust this value for the desired size */
    height: auto; /* Ensures the aspect ratio is maintained */
}
.footer-info h3 {
    color: #00bcd4;
    font-size: 1.5rem;
     color: #111;   
    margin-bottom: 10px;
}

.footer-info p {
    color: white;
    font-size: 1.2rem;
    margin: 5px 0;
}

.footer-info a {
    color: #00bcd4;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}
