/* General Styles */
body {
    margin: 0;
   
}

/* Header Styles */
header {
    display: flex;
    
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   

}

header img {
    height: 50px;
}
html{
scroll-behavior: smooth;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #0044cc;
    font-weight: bold;
}

nav a:hover {
  text-decoration-line: underline;
  text-decoration-style: wavy; 
}

/* Hero Section Styles */
.hero {
  
    text-align: center;
    padding: 0px 0px;
    background-color: #f9f9f9;
    position: relative; /* Allows positioning of the button */
}
.background-container {
    position: relative;
    height: 100vh;
    background-color: white;
    background-image: url('backteam.jpg'); /* Replace with your image */
    background-size: cover;
    border-radius: 0px;
    background-position: center;
    background-repeat: no-repeat;
    animation: darken-bg 3s ease-in-out forwards; /* Animation to darken */
}

@keyframes darken-bg {
    0% {
        background-color: rgba(0, 0, 0, 0); /* No overlay at the start */
    }
    100% {
        background-color: rgba(0, 0, 0, 0.5); /* Dark overlay at the end */
    }
}

.background-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Final dark overlay */
    animation: fade-in-overlay 2s ease-in-out forwards; /* Fade-in animation */
    z-index: 1;
}

.text-overlay {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    z-index: 2; /* Text stays above everything */
}

@keyframes fade-in-overlay {
    0% {
        background-color: rgba(0, 0, 0, 0); /* Start transparent */
    }
    100% {
        background-color: rgba(0, 0, 0, 0.5); /* Dark overlay at the end */
    }
}


.text-overlay h1 {
    font-size: 2.5rem; /* Increase size of the heading */
    margin-bottom: 2px; 
}

.text-overlay p {
 
    font-size: 1.5rem; /* Increase size of the paragraph */
    line-height: 2px;
}
.join-now {
    position: absolute; /* Places it on top of the header */
    top: 250%; /* Vertical center */
    left: 50%; /* Horizontal center */
    transform: translate(-50%, -50%); /* Center perfectly */
    background-color: #0044cc; /* Blue background */
    color: white; /* White text */
    font-size: 1.5rem; /* Font size for emphasis */
    padding: 15px 30px; /* Button size */
    border-radius: 35px; /* Rounded edges */
    text-decoration: none; /* Remove underline */

    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    
}

.join-now:hover {
    background-color: #0033aa; 
}

h1, p {
    margin: 0;
}

.hero .button {
    position: absolute; /* Makes the button overlap the image */
    bottom: 20px; /* Adjust the vertical position */
    left: 50%; /* Centers the button horizontally */
    transform: translateX(-50%); /* Corrects centering offset */
    padding: 10px 20px;
    background-color: #0044cc;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
}

.hero .button:hover {
    background-color: #003399;
}



.board-members {
    text-align: center;
    background-color: #d3d3d3; /* Light gray background */
    padding: 20px;
    color: #000;
   
}

.board-members h2 {
  font-family: cursive;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.members-row {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between members */
    margin-bottom: 30px;
    flex-wrap: wrap; /* Makes rows wrap for smaller screens */
}

.member {
  
    text-align: center;
    width: 150px; /* Set width of each member block */
}

.member img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 2px solid #ccc; /* Optional border for visibility */
    border-radius: 50%; /* Makes the image circular */
    margin-bottom: 5px;
    object-fit: cover; /* Ensures images fit properly */
}

.member p {
    font-family: cursive;
    font-size: 14px;
    line-height: 0.5; /* Adjust spacing between lines */
    margin: 0;

}

.member p strong {
  font-family: cursive;
    display: block;
    font-size: 16px; /* Name font size */
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .members-row {
        gap: 10px;
    }
    .member {
        width: 120px;
    }
    .member img {
        width: 80px;
        height: 80px;
    }
    .member p {
        font-size: 12px;
    }
}

body {
  margin: 0;
  

  background-color: #4a90e2; /* Blue background */
  color: #fff;
}

.projects-section {
    text-align: center;
    background-color: #d3dce6; /* Light gray-blue background */
    padding: 50px 20px;
  }
  
  .projects-title {
   
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
    color: black;
  }
  
  .projects-container {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .project-card {
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .project-card h3 {
    
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .project-card:hover {
    transform: scale(1.05); /* Zoom-in effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .learn-more-btn {
    
    display: inline-block;
    background-color: #007bff; /* Blue color */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .learn-more-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
  }
  .about-section {
   
    background-color: #fff; /* Keep the background */
    text-align: center; /* Center content */
    padding: 40px 40px; /* Add vertical padding */
    min-height: 120px; /* Ensure minimum height */
    margin-top: 0px;
  }
  
  .about-section h2 {
    
   font-style: italic;
    font-size: 24px;
    margin-top: 2px;
    margin-bottom: 10px;
    color: black; /* Text color set to black */
  }
  
  .about-section p {
    
    font-size: 16px;
    line-height: 1.8 ;
    color: black; /* Text color set to black */
    margin-bottom: 20px;
  }
  
  .discover-button-container {
    text-align: center; /* Center-align the button */
    margin: 5px 0; /* Add vertical spacing */
    position: relative;
  }
  
  .discover-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 35px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a shadow for a floating effect */
    position: relative;
    z-index: 1;
    cursor: pointer;
  }
  .discover-button:hover {
    background-color: #003f8a;
  }
  
  .section {
    margin-bottom: 50px; /* Ensure space between sections */
    background: white;
  }
  
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url('kuuu.jpg') no-repeat center center/cover;
    color: white;
  }
  
  .text-section {
    
    width: 45%;
  }
  
  .text-section h2 {
    
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .text-section p {
    
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .join-button{
    
    display: inline-block;
    padding: 10px 20px;
    gap: 30px;
    background-color: #0056b3;
    color: white;
    text-decoration: none; /* Removes underline */
    border-radius: 35px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  .join-button:hover {
    background-color: #003f8a;
  }
  
  .memberss-button{
    
    display: inline-block;
    padding: 10px 20px;
    gap: 30px;
    background-color: #0056b3;
    color: white;
    text-decoration: none; /* Removes underline */
    border-radius: 35px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  .memberss:hover {
    background-color: #003f8a;
  }
  .globe-section {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .globe-section img {
    max-width: 100%;
    height: auto;
    border-radius: 60%; /* Makes the globe image circular */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3); /* Optional: adds shadow around the image */
  }
  /* Contact Section Styles */
.contact-section {
  
    display: flex;
    border-radius: 15px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 0px auto;
  }


.social-media {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 60px; /* Adds proper spacing between icons */
}

.social-media a {
    display: inline-block;
}

.social-media img {
    width: 30px;
    height: 30px;
    transition: transform 0.4s;
}

.social-media img:hover {
    transform: scale(1.1);
}

  /* Left Section */
  .contact-info {
    width: 40%;
    height: 90%;
    background: #0077b6; /* Blue color */
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-sizing: border-box;
  }
  
  .contact-info h2 {
   
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;;
    font-style: italic;
  }
  
  .contact-info p {
    
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.3;
    
  }
  
  .contact-info ul {
    ff;
    list-style: none;
    padding: 0;

   
  }
  
  .contact-info ul li {
    
    margin-bottom: 15px;
    font-size: 14px;
    
  }
  
  .contact-info ul li i {
   
    margin-right: 10px;
   
  }
  
  /* Right Section */
  .contact-form {
    width: 55%;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    color:#000;
  }
  
  .input-group {
    
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .input-group div {
    flex: 1;
  }
  
  label {
    
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
    color:#000;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    box-sizing: border-box;
    color:#000;
  }
  
  textarea {
    height: 100px;
    resize: none;
    color:#000;
  }
  
  button {
    
    background-color: #0077b6; /* Blue color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
  }
  
  button:hover {
    background-color: #005f87;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
      align-items: stretch;
    }
  
    .contact-info, .contact-form {
      width: 100%;
    }
  }
  .footer {
    border-top: 15px;
    background-color: #104b8b; /* Blue background color */
    color: white; /* White text color */
    text-align: center; /* Center the content */
    padding: 20px 0; /* Add some vertical padding */
    font-size: 14px; /* Set font size */
}

.footer a {
    color: white; /* White color for the link */
    text-decoration: none; /* Underline the link */
    font-weight: bold; /* Make it stand out */
}

.footer a:hover {
    color: #d4d4d4; /* Change color on hover */
    text-decoration: none; /* Remove underline on hover */
}


