*{
    font-family: "Montserrat", 'Alata';
    margin: 0;
    padding: 0;
}

body {

    background-color: #ffffff;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* margin-inline: auto; */
}

.container{
    /* max-width: 1200px; */
    /* display: flex; */
    flex-direction: column;
    align-items: center;
}

.logo img {
    max-width: 150px; /* Set a maximum width for the logo */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Optional: removes bottom space in some browsers */
}
nav > ul {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

nav > ul > li {
    position: relative; /* Positioning context for dropdown */
    display: inline-block; /* Display items in a row */
    margin-right: 10px; /* Space between menu items */
}

nav ul li a {
    text-decoration: none; /* Remove underline from links */
    color: #003366; /* Dark blue color for links */
    padding: 10px 10px; /* Add padding for links */
    line-height: 1.5; /* Adjust line height for vertical centering */
    display: block; /* Make the link fill the li */
}

.dropdown {
    display: none; /* Hide dropdowns by default */
    position: absolute; /* Position dropdown in relation to parent */
    background-color: white; /* Background color for dropdown */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Deeper shadow for depth */
    z-index: 1000; /* Ensure dropdown appears above other elements */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
    opacity: 0; /* Start hidden */
    transform: translateY(10px); /* Slide down effect */
}

nav ul li:hover .dropdown {
    display: block; /* Show dropdown on hover */
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Slide into place */
}

.dropdown li {
    width: 200px; /* Set width for dropdown items */
}

.dropdown li a {
    padding: 12px 16px; /* Padding for dropdown links */
    color: #003366; /* Color for dropdown links */
    text-decoration: none; /* Remove underline */
    display: block; /* Make the link fill the li */
    transition: background-color 0.3s ease; /* Smooth background change */
}

.dropdown li a:hover {
    background-color: #e0f0ff; /* Background color on hover for dropdown */
    color: #005580; /* Darker color on hover for contrast */
}

nav ul li {
    position: relative; /* Positioning context for dropdown */
    display: inline-block; /* Display items in a row */
    margin-right: 15px; /* Space between menu items */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    background-color: #ffffff; /* White background */
    border-bottom: 1px solid #ffffff; /* Light border for separation */
    position: fixed; /* Fix the navbar at the top */
    top: 0; /* Position it at the top of the page */
    left: 0; /* Align to the left */
    width: 100%; /* Full width of the viewport */
    z-index: 1000; /* Ensure it stays above other content */
}

/* body{
    margin-top: 30px;
} */

/* main{
    margin-top: 0px;
} */

.hero {
    transition: background-image 300ms ease-in-out;
    background: url('/code/picture/homepic.jpg') no-repeat center center/cover; 
    color: white; 
    margin-top: 66px;
    width: 100vw;
    height: calc(100vh - 66px);
    min-height: 400px;
    padding-top: 45px;
    padding-left: 100px;
}

.hero .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 56px;
    gap: 24px;
    background: linear-gradient(124.42deg, rgba(0, 0, 0, 0.4) 5.12%, rgba(0, 0, 0, 0.075) 43.45%);
    border-radius: 39px;
    backdrop-filter: blur(2px);
    width: fit-content;

}

.hero .content h1 {
    font-size: 40px;
    font-family: 'Alata';
    font-style: normal;
    font-weight: 400;
    color: #FFFFFF;
    max-width: 350px;
    line-height: 40px;

}

.hero .content p {
    max-width : 400px; /* Paragraph font size */
    font-family: 'Alef';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;
    color: #FFFFFF;

}

.buttons {
    position: absolute; /* Position buttons absolutely */
    right: 20px; /* Distance from the right */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for centering */
    display: flex; /* Use flexbox for stacking */
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Space between buttons */
}

.button-style {
    background-color: #8d8b8b; /* Gray color for default buttons */
    color: white; /* Text color */
    border: none; /* No border */
    padding: 10px; /* Padding for buttons */
    border-radius: 0px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s; /* Smooth transition for hover */
    width: 10px; /* Set a fixed width */
}

.button-style:hover {
    background-color: #007BFF; /* Blue color on hover */
}

.button-style.active {
    background-color: #007BFF; /* Active button color */
}

.header-content .button {
    background-color: #003366; /* Button color */
    color: white; /* Button text color */
    padding: 10px 20px; /* Button padding */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    margin-top: 10px; /* Space above the button */
    display: inline-block; /* Allow margin on the button */
}

.logo {
    font-size: 15px; /* Logo font size need to add image*/
    font-weight: bold; /* Bold text */
    color: black;
}

nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    display: flex; /* Display items in a row */
}

nav ul li {
    margin: 0 10px; /* Space between menu items */
}

nav ul li a {
    text-decoration: none; /* Remove underline from links */
    color: #003366; /* Dark blue color for links */
    font-size: 16px; /* Font size for links */
    transition: color 0.3s; /* Smooth color transition */
}

nav ul li a:hover {
    color: #0056b3; /* Change color on hover */
}

.contact-button a {
    background-color: #003366; /* Dark blue button */
    color: white; /* White text color */
    padding: 9px 15px; /* Padding for button */
    border-radius: 200px; /* Rounded corners */
}

/* .contact-button a:hover {
    background-color: #0056b3; /* Darker blue on hover 
} */

.limset {
    margin: 0px 0; /* Space above and below the section */
    padding: 90px; /* Padding inside the section */
    background-color: #ffffff; /* Light background color */
    border-radius: 0px; /* Rounded corners */
    text-align: justify;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.limset-content {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between text and images */
    align-items: flex-start; /* Align items at the start */
}

.limset-text {
    flex: 1; /* Allow text to take available space */
    margin-right: 20px; /* Space between text and images */
}

.limset h2 {
    font-size: 28px; /* Title font size */
    margin-bottom: 35px;
    color: #003366; /* Dark blue for the title */
}

.limset h3 {
    font-size: 20px; /* Subtitle font size */
    color: #0056b3; /* Slightly lighter blue for the subtitle */
}

.limset p {
    font-size: 16px; /* Regular text size */
    line-height: 1.6; /* Line height for better readability */
    margin-bottom: 20px; /* Space below paragraphs */
}

.learn-more-button {
    /*display: center-block; /* Make the button inline */
    display : center;
    background-color: #046AAA; /* Dark blue button */
    color: white; /* White text color */
    padding: 10px 20px; /* Padding for button */
    border-radius: 20px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s; /* Transition effect */
}

.learn-more-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}


.limset-images {
    display: flex; /* Use flexbox for image layout */
    flex-direction: column; /* Stack images vertically */
    align-items: flex-start; /* Align images to the left */
    max-width: 500px; /* Set a maximum width for the images container */
    margin-left: 40px;
}

.limset-images img {
    width: 100%; /* Each image takes full width of its container */
    border-radius: 5px; /* Rounded corners for images */
}

/*.full-width-image {
    width: 100%; /* Full width for the last image 
    margin-top: 10px; /* Space above the full-width image
}*/

/*part of the projects///////////////////////////////////////////////////////*/

.project {
    margin: 0px 0; /* Space above and below the section */
    padding: 90px; /* Padding inside the section */
    background-color: #ffffff; /* Light background color */
    border-radius: 0px; /* Rounded corners */
    text-align: justify;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.project-content {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between text and images */
    align-items: flex-start; /* Align items at the start */
}


.project-image {
    display: flex; /* Use flexbox for image layout */
    flex-direction: column; /* Stack images vertically */
    align-items: flex-start; /* Align images to the left */
    max-width: 500px; /* Set a maximum width for the images container */
    margin-left: 40px;
}

.project-image img {
    width: 100%; /* Each image takes full width of its container */
    border-radius: 5px; /* Rounded corners for images */
}

.project {
    margin: 0px 0; /* Space above and below the section */
    padding: 90px; /* Padding inside the section */
    background-color: #ffffff; /* Light background color */
    border-radius: 0px; /* Rounded corners */
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/*.project h3 {
    font-size: 28px; /* Title font size 
    color: #003366; /* Dark blue for the title 
}*/

.project-header {
    position: relative; /* Position relative for absolute children */
    text-align: center; /* Center text */
    padding: 70px 20px; /* Add padding */
    color: white; /* Text color */
    background-image: url('/code/picture/discoverourlastproject.jpg'); /* Add your background image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the background image */
    border-radius: 0px; /* Optional: rounded corners */
}

.project-header h2 {
    font-size: 2.5em; /* Adjust font size */
    font-weight: bold; /* Bold text */
    margin: 0; /* Remove default margin */
}

.project-header .subtitle {
    margin-top: 10px; /* Space between title and subtitle */
    font-size: 1.2em; /* Font size for subtitle */
    font-family: 'Arial', sans-serif; /* Replace with your desired font family */
    font-weight: normal; /* Normal weight for subtitle */
    line-height: 1.5; /* Line height for readability */
}


/*.project {
    margin-top: 0px; /* Space above the project 
    border: 0px solid #ffffff; /* Optional: border around project 
    border-radius: 0px; /* Rounded corners for project 
    padding: 155px; /* Padding inside project 
    background-color: #ffffff; /* Light background color 
}*/

/*.project img {
    max-width: 100%; /* Responsive image 
    height: auto; /* Maintain aspect ratio 
    border-radius: 5px; /* Rounded corners for image 
}*/
/*wefiuwrhfurwiwhgkurwghrgghtekghtekghtekgtehukgte*/
/*.project {
    margin: 0px 0; /* Space above and below the project 
    padding: 40px; /* Padding inside the project section 
    background-color: #ffffff; /* Light background color 
    border-radius: 5px; /* Rounded corners 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth 
    display: flex; /* Use flexbox for layout 
    flex-direction: column; /* Stack elements vertically 
}*/
.project-text {
    flex: 1; /* Allow text to take available space */
    margin-right: 20px; /* Space between text and images */
}

.project h2 {
    font-size: 28px; /* Project title font size */
    margin-bottom: 35px;
    color: #003366; /* Dark blue for project title */
    /*margin-bottom: 10px; /* Space below the project title */
}

.project img {
    width: 100%; /* Image takes full width of its container */
    border-radius: 5px; /* Rounded corners for images */
    margin-bottom: 15px; /* Space below the image */
}

.project p {
    font-size: 16px; /* Regular text size */
    line-height: 1.6; /* Line height for better readability */
    margin-bottom: 20px; /* Space below paragraphs */
}

.button {
    display: inline-block; /* Make the button inline */
    background-color: #003366; /* Dark blue button */
    color: white; /* White text color */
    padding: 10px 20px; /* Padding for button */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s; /* Transition effect */
    align-self: flex-start; /* Align button to the start */
}

.button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
/*hrfukrehgkuerhgkhktrghktrghkteghtekghtekghtekghtkg*/
header {
    background: url('header-background.jpg') no-repeat center center/cover; /* Change this to your header image */
    color: white;
    /* padding: 80px 20px; */
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin: 0;
}
header p {
    font-size: 18px;
}
.button {
    background-color: #046AAA; /* Dark blue */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
}

/*.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}*/

.ourteam_header {
    position: relative; /* Position relative for absolute children */
    text-align: center; /* Center text */
    padding: 70px 20px; /* Add padding */
    color: white; /* Text color */
    background-image: url('/code/picture/MeetOurTeam.jpg'); /* Add your background image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the background image */
    border-radius: 0px; /* Optional: rounded corners */
}

.ourteam_header h2 {
    font-size: 2.5em; /* Adjust font size */
    font-weight: bold; /* Bold text */
    margin: 0; /* Remove default margin */
}

.ourteam_header .subtitle {
    margin-top: 10px; /* Space between title and subtitle */
    font-size: 1.2em; /* Font size for subtitle */
    font-family: 'Arial', sans-serif; /* Replace with your desired font family */
    font-weight: normal; /* Normal weight for subtitle */
    line-height: 1.5; /* Line height for readability */
}
.projects, .team, .partners {
    margin-top: 40px;
}
.project, .member {
    margin-bottom: 20px;
}
.project h3, .team h3 {
    font-size: 24px;
    color: #003366; /* Dark blue */
}
.projects img, .team img {
    width: 100%; /* Make images responsive 
    height: auto; /* Maintain aspect ratio */
}
.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.member {
    width: 25%;
    text-align: center;
    margin-bottom: 90px;
}
.member img {
    border-radius: 60%;
    width: 150px;
    height: 150px;
}

.member h3 {
    font-size: 15px; /* Adjust the size as needed */
    margin: 5px 0; /* Add some space above and below */
}

.member p {
    font-size: 14px; /* Adjust the size as needed */
    color: #555; /* Optional: change color for better readability */
    margin: 50; /* Remove margin if you want it tighter */
}


.OurPartners {
    position: relative; /* Position relative for absolute children */
    text-align: center; /* Center text */
    padding: 30px 20px; /* Add padding */
    color: white; /* Text color */
    background-image: url('/code/picture/sponsorsbackground.jpg'); /* Add your background image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the background image */
    border-radius: 0px; /* Optional: rounded corners */
}

.OurPartners {
    padding: 20px; /* Padding for the section */
    background-color: #f9f9f9; /* Light background color */
}

.ourPartners_header {
    font-size: 1.5em; /* Adjust font size */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center the title */
    margin-bottom: 100px; /* Space below the title */
}
.carousel {
    margin: 0 auto;
    padding: 20px 0;
    max-width: 100%;
    overflow: hidden;
    display: flex;
  }

.group {
    display: flex;
    align-items: center;
    /* ... */
    will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
    animation: scrolling 30s linear infinite;
  }

  @keyframes scrolling {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

.advertising-bar {
    display: flex; /* Use flexbox for layout */
    /* overflow: visible;  Hide overflow to create a scrolling effect */
    white-space: nowrap; /* Prevent line breaks */
    animation: scroll 30s linear infinite; /* Animation for scrolling */
    /* align-items: flex-start; */
}

.group img {
    height: 80px; /* Set height for images */
    margin-right: 90px; /* Space between images */
}

.partners img {
    max-width: 100px; /* Partner logos size */
    margin-bottom: 10px;
}

.contact-container {
    max-width: 500px;
    margin: auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

.contact-container h1 {
    color: #012449;
    font-size: 24px;
    margin-top: 90px;
    margin-bottom: 20px;
    margin-left: 188px;
}

.contact-container p {
    margin-bottom: 30px;
}

.contact-container label {
    font-weight: bold; /* Example: Make the label text bold */
    margin-left: 20px;
    color: #333333;
    font-size: small;
    font-style: inherit;
    font-display: initial;
}
.contact-container label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.contact-container input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    border-radius: 70px;
    font-size: 16px;
}

input:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.contact-container button {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    margin-left: 27%;
    margin-bottom: 90px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    width: 50%;
}

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

footer {
    background-color: #003d5b; /* Dark blue background */
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
    clear: both; /* Ensure footer does not overlap with other content */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: auto;
    width: 80%;
    padding-top: 20px;
}
.footer-container .logo {
    width: 33%;
}
.logo img {
    max-width: 150px; /* Adjust logo size */
}

.contact-info-data p {
    font-size: 16px;
    margin-top: 15px;
}

/* .contact-info-data img {

    margin-right: 2%;
} */



footer-links ul {
    list-style-type: none;
    padding: 0;
    font-size: 15px;
    margin-top: 25px;
}
.footer-links, .contact-info {
    flex: 1;
    margin: 0 20px;
}

.footer-links h4, .contact-info h4 {
    margin-bottom: 10px;
}

.contact-info {
    width: 33%;
    display: flex;
    flex-direction: column;
}

.contact-info-data {
    display: flex;
    flex-direction: column;
}

.contact-info a {
    color: white;  /* Sets the text color to white */
    text-decoration: none;
}

.contact-info a:hover {
    color: white;  /* Keeps the text color white on hover */
    /* text-decoration: none;  Keeps underline removed on hover */
    text-decoration: underline;
}
.footer-links ul {
    list-style-type: none;
    padding: 0;
    font-size: 16px;
    margin-top: 20px;
}

.footer-links ul li {
    margin-top: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

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

.footer-links {
    width: 33%;
}


.footer-bottom {
    text-align: center;
    border-top: 1px solid #fff; /* Optional separator */
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 80%;
}

.footer-bottom p {
    font-size: 12px;
}
@media (max-width: 768px) {
    .member {
        width: 45%;
    }
}
@media (max-width: 480px) {
    .member {
        width: 100%;
    }
}


.footer-overlay {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}