/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #ffffff;
  color: #004aad;
  position: relative;
}

.logo img {
  height: 44px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #004aad;
  font-weight: 500;
}

.nav-links li a.active,
.nav-links li a:hover {
  border-bottom: 2px solid #004aad;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #004aad;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 180px;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Hero Section */
.about-hero {
  background: linear-gradient(to right, #004aad, #0096ff);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.2rem;
}
.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.primary {
  background-color: #fff;
  color: #004aad;
}

.btn.primary:hover {
  background-color: #e6e6e6;
}

.btn.secondary {
  background-color: #000679;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #007ee5;
}
/* Gallery Section */
.gallery {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 30px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery h2 {
    font-size: 1.5rem;
  }
}

.info-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.info-section:nth-child(even) {
  background-color: #95caff;
}

.info-section h2 {
  font-size: 1.8rem;
  color: #004aad;
  margin-bottom: 20px;
}

.info-section p {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: auto;
}
.partners {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.partners h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 30px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: auto;
}

.partner-logos img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.why-choose ul li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.why-choose ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0096ff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .info-section h2 {
    font-size: 1.5rem;
  }
  .info-section p, .why-choose ul li {
    font-size: 0.95rem;
  }
}
/* Footer */
.footer {
  background-color: #002244;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 50px;
  font-size: 0.9rem;
}