body, html {
    font-family: "Montserrat Medium";
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    position: fixed; /* or absolute, depending on your needs */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center bottom, #1a3146 0%, #0d1013);
    z-index: -2; /* to ensure it stays behind other content */
}

header {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* for slight shadow under header */
}



nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 3em;
    margin-bottom:50px;
    z-index: 1;
    border-bottom: 1px solid #19222a;
}

@media (max-width: 880px) {
    nav {
        padding: 0.5em 1em;
    }
}
.logo img {
    height: 30px; /* Adjust as per your logo's aspect ratio */
    z-index: 1;
}


.menu ul {
    list-style: none;
    display: flex;
    gap: 1em; /* Space between menu items */
    z-index: 1;
}

.menu ul li a {
    text-decoration: none;
    color: #F7FBFC; /* Menu item text color */
    padding: .5em 1em;
    transition: color 0.3s ease; /* Optional: for smooth color transition */
    z-index: 1;
}

.menu ul li a:hover {
    color: #3ebff5; /* Hover color */
    z-index: 1;
}

.header-actions .login, .header-actions .signup {
    text-decoration: none;
    padding: .5em 1em;
    border-radius: 5px;
    transition: background-color 0.1s ease;
    z-index: 1;
}

.header-actions .login {
    background: none;
    color: #F7FBFC; /* Original text color */
    transition: color 0.3s ease; /* Optional: for smooth color transition */
    z-index: 1;
}

.header-actions .login:hover {
    color: #3ebff5; /* Hover color */
    z-index: 1;
}


.header-actions .signup {
    background: #3ebff5; /* Change as per your color scheme */
    color: #F7FBFC;
    z-index: 1;
}

.header-actions .signup:hover {
    background: #05669e; /* Change as per your color scheme */
    color: #dbe8ef;
    z-index: 1;
}

/* Add responsive behavior as needed */
@media (max-width: 880px) {
    .menu, .header-actions {
        display: none;
    }

    /* Add a hamburger menu or other responsive adjustments */
}
.text-container {
    color: #F7FBFC; /* main text color */
    text-align: center; /* centers the text horizontally inside the container */
    margin-top: 50px;
    padding:0px 10px 0px 10px; /* padding around the text */
    font-family: sans-serif; /* use the font of your choice */
    z-index: 1;
    background:none;
    /* Centering content using Flexbox */
    display: flex; /* Enables Flexbox layout */
    flex-direction: column; /* Stacks items vertically */
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    
    /* Responsive width */

    margin: auto; /* centers the div horizontally in its parent */

}

h1 {
    font-family: "Montserrat Medium";
    font-size:2.3em;
    max-width: 40ch;
    text-align: center;
    transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  }
  @keyframes scale {
    100% {
      transform: scale(1);
    }
  }

.text-collaborate {
    background: linear-gradient(to right, #007BFF, #00BFFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback for browsers that don't support background-clip */
    display: inline;
    font-size: 4em; /* Default font size */
}

.text-client {
    background: linear-gradient(to right, #8A2BE2, #DA70D6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback for browsers that don't support background-clip */
    display: inline;
    font-size: 4em; /* Default font size */
}

@media only screen and (max-width: 900px) {
    .text-collaborate {
        font-size: 2.2em; /* Smaller screen, smaller font size */
    }
}

@media only screen and (max-width: 900px) {
    .text-client {
        font-size: 2.2em; /* Smaller screen, smaller font size */
    }
}

.text-deliver {
    background: linear-gradient(to right, #8A2BE2, #FF00FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* fallback for browsers that don't support background-clip */
    display: inline;
}

p {
    margin:20px 0px 0px 0px;
    font-size: 1.2em; /* paragraph font size */
    margin: 0; /* remove default margin */
    line-height: 1.5; /* line height for the paragraph */
    color: #F7FBFC; /* slightly transparent white for the paragraph */
    padding:20px;
}

#hamburger-menu-container {
    display: none; /* Hidden by default */
    /* Positioning and other styles as needed */
}

/* Show the hamburger menu container on mobile */
@media screen and (max-width: 800px) {
    #hamburger-menu-container {
        display: none; /* Show container */
        position: relative; /* Adjust if necessary */
    }
}
/* Hamburger Menu Button - Update existing styles */
.hamburger-menu-button {
    display: none; /* Hidden by default, shown in media query */
    font-size: 2rem; /* Icon size - adjust as needed */
    background: none;
    border: none;
    color: #F7FBFC; /* Menu icon color, to match your site's color scheme */
    cursor: pointer;
    width: 50px; /* Adjust as necessary */
    height: 50px; /* Adjust as necessary */
    line-height: 50px; /* Adjust for vertical alignment */
    text-align: center;
    z-index: 3; /* Ensure it's above the overlay */
}

/* Hamburger Menu Overlay - Update existing styles */
.hamburger-menu-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Semi-transparent background */
    z-index: 2; /* Make sure it's above other content */
}

/* Hamburger Menu List - Update existing styles */
.hamburger-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.hamburger-menu-list li a {
    color: #fff; /* Links color */
    font-size: 1.5rem; /* Adjust to match your design */
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s ease; /* Smooth transition for hover effects */
}

.hamburger-menu-list li a:hover {
    color: #3ebff5; /* Hover color */
}

/* Display the hamburger menu button on mobile and tablet */
@media screen and (max-width: 880px) {
    .hamburger-menu-button {
        display: block;
        position: absolute;
        right: 5px; /* Adjust as needed */
        top: 0px; /* Adjust as needed */
        z-index: 3; /* Ensure it's above the overlay */
    }
}
.background-image-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background-image: url('earth.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0; /* Start hidden */
}

.fade-in {
    animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.background-image-container-moon {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background-image: url('/clients/moon.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    opacity: 0; /* Start hidden */
}

.fade-in {
    animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.client-logo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center;
    align-items: center;
    gap: 50px; /* Adjust the space between logos */
}

.client-logo {
    position: relative;
    display: inline-block;
}

.client-logo img {
    height: 60px; /* Set the height of the logos */
    transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.client-logo img.color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.client-logo:hover img.color {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .client-logo-container {
        flex-direction: column;
        gap: 30px; /* Adjust the vertical gap for smaller screens */
    }

    .client-logo {
        width: 100%; /* Full width for each logo container */
        text-align: center; /* Center the logos */
    }

    .client-logo img {
        width: auto; /* Maintain aspect ratio */
        height: 40px; /* Adjust height as needed */
    }
}

.file-upload-wrapper {
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

input[type="file"] {
    border: 2px dashed #007bff;
    padding: 10px;
    width: auto;
    margin: 10px 0;
}

.submit-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0056b3;
}

#imagePreviewContainer {
    background-color: #fff;
    display: none;
    max-height: 100px;
    margin: auto;
    border: 2px solid #ddd;
    padding:10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#imagePreview {
    width: 100%;
    height: auto;
    display: block;
}
