@import url('https://fonts.googleapis.com/css2?family=Avenir:wght@400;700&display=swap');

body {
    font-family: 'Avenir', sans-serif;
    margin: 0;
    padding: 0;
    color: #10A6F0; /* Set overall text color to #10A6F0 */
    height: 100%;
    overflow-y: auto; /* in case you kept overflow hidden */
    font-size: 20px;
}

#home {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-image: linear-gradient(to right, rgba(20, 9, 90, 0.7), rgba(124, 14, 168, 0.7)), url('background.jpg');
    background-size: cover;
    background-position: center;
    color: #10A6F0; /* Ensures text is visible against dark background */
    margin-top: -100px;
}

header {
    background-color: #0F0833;
    color: #10A6F0;
    padding: 0 0;
    display: flex;
    align-items: center;
    width: 100%;
    font-family: 'Arial', sans-serif;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    align-items: center;
}
.logo-link {
    text-decoration: none;  /* Removes underline from links */
    display: inline-block;  /* Makes the link area not extend beyond the image */
}

.logo {
    max-height: 100px;
    display: block;  /* Removes any space below the image which is common with inline elements */
    
    margin-right: 20px;
    margin-left: 30px;
}

#solutions-section .container {
    display: flex;
    justify-content: center; /* This will space the logo items evenly across the container */
    align-items: center;  /* Aligns items vertically */
    flex-wrap: wrap;  /* Allows items to wrap onto the next line on smaller screens */
    padding: 20px;
    background: #14095A;
}

.logo-item {
    text-align: center; /* Centers the text and image within each logo item */
    margin: 20px; /* Provides some space around items */
    flex-basis: calc(100% / 10); /* Adjusts the width dynamically to accommodate 6 items per row */
}

.logo-item img {
    max-width: 100%; /* Ensures the image does not exceed its container width */
    height: auto; /* Keeps image aspect ratio intact */
}

.header-title {
    font-size: 24px;
    margin: 0;
    flex-grow: 1;
}

.header-buttons {
    display: flex;
    gap: 10px;
    margin-right: 50px;
    align-items: center;
}

.header-button {
    padding: 10px 15px;
    background-color: transparent;
    color: #10A6F0;
    border: 2px solid #10A6F0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.header-button:hover {
    background-color: #10A6F0;
    color: #0F0833;
}

.header-button.prominent {
    background-color: #10A6F0;
    color: #0F0833;
    border-color: #10A6F0;
    font-weight: bold;
}

.section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(to top, #14095A 0%, #7C0EA8 100%);
}

#info-text-section .container {
    display: flex;
    justify-content: space-between; /* Distributes space evenly */
    align-items: start; /* Aligns items at the start of the container */
    padding: 100px;
    background:  #7C0EA8;
}

#info-text-section .column {
    flex: 1;  /* Equally divides the space between columns */
    margin: 10px 10px; /* Gives some space between the columns */
    text-align: justify; /* Improves the readability of the text */
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Optional styling for better visuals */
    height: 50vh;
    background: #14095A;
    border-radius: 2%;
}

h1, h2 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 48px;
}

h3 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

button {
    font-size: 16px;
    padding: 10px;
    margin-top: 20px;
    color: #7C0EA9;
    background: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

button:hover {
    background: #14095A;
    color: #fff;
}

a {
    color: #10A6F0;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(to right, #14095A, #7C0EA8); /* Ensuring gradient consistency */
    color: #10A6F0;
    font-family: 'Arial', sans-serif;
}

.about-us {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 20px;
    padding: 40px;
    background: #14095A;
}

.profile {
    flex-basis: 50%; /* Each profile takes half of the section width */
    text-align: center; /* Centers the content */
    padding: 20px;
    background:  #7C0EA8;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: Adds shadow for better visuals */
    border-radius: 2%;
}

.profile-img {
    width: 150px; /* Set appropriate size for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%; /* Optional: Creates a circle shape */
    margin-bottom: 15px; /* Adds some space below the image */
}
