* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f1f2f4, #dbe5f1);
    color: #333;
    line-height: 1.6;
    font-size: 16px;
     margin: 0;
    padding: 0;
}



/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #27344e, #bad5f6);
    padding: 10px 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .logo {
      display: flex;
      align-items: center;
      color: white;
      font-size: 1.4rem;
      font-weight: bold;
    }

    .logo img {
      height: 60px;
      width: 60px;
      margin-right: 10px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links li a:hover {
      color: #ffcc00;
    }



    /* nav bar dropdown css*/
    /* Dropdown styles */
.nav-links li {
  position: relative;
}

.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #27344e;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-links li:hover ul {
  display: block;
}

.nav-links li ul li a {
  display: block;
  padding: px 15px;
  color: #fff;
  white-space: nowrap;
}

.nav-links li ul li a:hover {
  background-color: #1d2a3a;
  color: #ffcc00;
}

#about-us {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 3rem;
    color: #2a57f7;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.intro {
    margin-bottom: 50px;
    margin-top: 30px;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}








.benefit {
    margin-bottom: 20px;
}

.benefit h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.our-team {
    margin: 60px 0;
    text-align: center;
}

.our-team h2 {
    font-size: 2.5rem;
    color: #4c6ef5;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.member {
    max-width: 250px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.member h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.member p {
    font-size: 1rem;
    color: #555;
}

.FUTURE1 {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 50px 0;
}

.FUTURE1::before,
.FUTURE1::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
} 

.FUTURE1::before {
    left: 0;
    
}

.FUTURE1::after {
    right: 0;
    
}

.slide-image {
    position: absolute;
    top: 50%;
    left: -400px;
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideAndFade 16s ease-in-out infinite;
    z-index: 1;
}

.slide-image:nth-child(1) { animation-delay: 0s; }
.slide-image:nth-child(2) { animation-delay: 4s; }
.slide-image:nth-child(3) { animation-delay: 8s; }
.slide-image:nth-child(4) { animation-delay: 12s; }

@keyframes slideAndFade {
    0% { left: -400px; opacity: 0; }
    10% { left: 20%; opacity: 0.5; }
    25% { left: 50%; opacity: 1; transform: translateY(-50%) scale(1.05); }
    40% { left: 80%; opacity: 0.5; }
    50% { left: 100%; opacity: 0; }
    100% { left: 100%; opacity: 0; }
}

.closing {
    text-align: center;
    margin: 50px 0;
}

.closing p {
    font-size: 1.2rem;
    color: #010e0f;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}



#awards {
  padding: 40px 20px;
  background-color: #f0dede;
  border-radius: 8px;
  padding-bottom: 30px;
  
}

#awards h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.awards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.award-card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.award-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.award-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.award-card h4 {
  font-size: 1.2rem;
  margin: 10px 0 8px;
  color: #444;
}

.award-card p {
  font-size: 0.95rem;
  color: #666;
}



#GALLARY {
  margin-top: 40px; /* 👈 This adds space between this and the previous section */
  padding: 40px 20px;
  background-color: #9ed8ee;
  border-radius: 8px;
  padding-bottom: 30px;
  padding-top: 20px;
}

  .footer {
    background: linear-gradient(to right, #2d5e8f, #23476e);
    color: #d7e1f0;
    padding: 40px 20px;
    text-align: center;
   
}
