* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9fbfd;
    color: #333;
    padding-top: 80px;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #003366;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .logo-section {
    display: flex;
    align-items: center;
  }
  .logo-img {
    height: 50px;
    margin-right: 15px;
    border-radius: 4px;
  }
  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .navbar nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .navbar nav a:hover,
  .navbar nav a.active {
    color: #00aaff;
  }
  
/* Slideshow Container */
.slideshow-container {
  position: relative;
  max-width: 96%;
  margin: auto;
  overflow: hidden;
  padding-top: 30px;
  border-radius: 10px;
}

/* Slides */
.mySlides {
  display: none;
  position: absolute;
  width: 100%;
  height: 500px;
  transition: transform 1s ease-in-out;
  opacity: 0;
}

.mySlides.active {
  display: block;
  position: relative;
  opacity: 1;
}

/* Image Styling */
.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Dots */
.dots-container {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #003366;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .mySlides {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .mySlides {
    height: 220px;
  }
}

  
  /* Partners Section */
  .Partners-information {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 40px 20px;
  }
  .partner {
    background: white;
    flex: 1 1 250px;
    max-width: 23%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  .partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .partner img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  .partner p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  /* Partner Link */
  .link-box {
    border: 2px solid #007BFF;
    border-radius: 6px;
    padding: 8px 16px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .link-box:hover {
    background-color: #00aaff;
  }
  .web-link {
    text-decoration: none;
    font-weight: bold;
    color: #003366;
  }
  
  /* Footer */
  .copyright {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: white;
    font-size: 14px;
  }
  h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
  }
  
  h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007BFF;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  /* ===== Responsive Styles ===== */

/* Tablets and below (<= 1024px) */
@media (max-width: 1024px) {
    .partner {
      max-width: 45%;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar nav {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
    }
  
    .navbar nav a {
      margin: 10px 10px 0 0;
    }
  

  }
  
  /* Mobile devices (<= 768px) */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    .partner {
      max-width: 90%;
    }
  

  
    .navbar {
      padding: 10px 20px;
    }
  
    .logo-img {
      height: 40px;
      margin-right: 10px;
    }
  
    .logo-text {
      font-size: 1.2rem;
    }
  
    .navbar nav a {
      font-size: 14px;
    }
  
    .link-box {
      padding: 6px 12px;
    }
  }
  
  /* Small phones (<= 480px) */
  @media (max-width: 480px) {
    h1 {
      font-size: 1.7rem;
    }
  
    .navbar {
      padding: 10px;
    }
  
    .logo-img {
      height: 35px;
    }
  
    .logo-text {
      font-size: 1rem;
    }
  
    .partner img {
      height: 150px;
    }
  
    .partner p {
      font-size: 13px;
    }
  
    .link-box {
      padding: 5px 10px;
    }
  
    .web-link {
      font-size: 14px;
    }
  
    .copyright {
      font-size: 12px;
      padding: 15px;
    }
    body{
      padding: 10px;
    }
      .intro-section {
    padding: 15px;
    margin: 20px auto;
    border-radius: 8px;
  }

  .intro-section h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .intro-section p {
    font-size: 14px;
    text-align: justify;
  }
  }
  