* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-image: url('T4 copy.jpg'); /* Replace with your actual image path */
  background-size: cover;         /* Ensures image covers entire screen */
  background-position: center;    /* Center the image */
  background-repeat: no-repeat;   /* Prevent image from repeating */
  background-attachment: fixed;   /* Makes the background static while content scrolls */
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

header {
  background: darkgreen;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 50px; /* Adjust as needed */
  width: auto;  /* Keeps aspect ratio */
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px; /* Rounded corners */
  border: 2px solid #eee; /* Optional subtle border */
  padding: 2px; /* Optional padding inside border */
  background-color: #fff; /* Optional background */
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00c897;
}

.dropdown-menu {
  display: none;
  position: absolute;
  min-width: 220px; 
  background: black;
  border-radius: 10px;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
  list-style: none;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.slider {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(17, 15, 15);
  text-align: center;
  background-color: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 1rem;
}
.team-section {
  background-color: white;
  color: rgb(23, 3, 3);
  padding: 100px 20px 60px 20px;
}

.team-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.team-text {
  flex: 1 1 500px;
}

.team-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.team-text h2 span {
  color: darkgreen;
  border-bottom: 4px solid lightgreen;
  display: inline-block;
}

.team-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.team-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn.primary {
  background-color: darkgreen;
  color: #25254b;
}

.btn.primary:hover {
  background-color: darkgreen;
}

.btn.outline {
  border: 2px solid darkgreen;
  color: darkgreen;
  background: transparent;
}

.btn.outline:hover {
  background-color: darkgreen;
  color: #071d49;
}

.team-slider {
  flex: 1 1 450px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  display: none;
  width: 100%;
}

.slides img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .team-content {
    flex-direction: column;
    text-align: center;
  }

  .team-text h2 {
    font-size: 2rem;
  }

  .team-text p {
    font-size: 1rem;
  }

  .team-buttons {
    justify-content: center;
  }
}

.members-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.members-section p{
  font-size: 1.05rem;
  text-align: justify;
  background-color: #f0f4f9;
  padding: 1rem;
  border-left: 4px solid #015c92;
  border-radius: 8px;
}
.members-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.member-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 220px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
}

.member-name {
  display: block;
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #071d49;
  text-decoration: none;
}

.member-name:hover {
  text-decoration: underline;
}

.member-role {
  font-size: 0.95rem;
  color: #555;
  margin-top: 4px;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  color: #071d49;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffc107;
}

.contact-section {
  background-color: darkgreen;
  color: white;
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.contact-card {
  flex: 1;
  min-width: 280px;
  margin: 20px;
  background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  color: rgb(11, 196, 168);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.contact-card h3 {
  color: #131102;
  margin-bottom: 15px;
}

.contact-card a {
  color: #00BFFF;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}


footer {
  background: linear-gradient(135deg, #e8fdf5, #d9f2ff); /* Soft gradient background */
  color: rgb(11, 196, 168);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}



/*.partners-section {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.logo-sliders {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/*.logos-wrapper {
  display: flex;
  animation: slide 20s linear infinite;
  gap: 2rem;
}*/
/*.logos-wrapper {
  display: flex;
  animation: slide 20s linear infinite;
  gap: 2rem;
  min-width: 200%; /* or more depending on content */



/*.logo-item {
  flex: 0 0 auto;
  width: 150px;
  height: auto;
}

.logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Keyframes for continuous sliding */
/*@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 40px;
  }
}
