/* ===============================
   RESET & BASE
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   HEADER
=============================== */
header {
  background-color: #002855;
  color: white;
  padding: 15px 0;
}

header .logo {
  font-size: 20px;
  font-weight: bold;
}

header nav {
  margin-top: 10px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
  background-color: #004aad;
  border-radius: 5px;
}

/* ===============================
   HERO SECTION
=============================== */
.hero {
  background-color: #004aad;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background-color: #ffb800;
  color: #002855;
  padding: 12px 30px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #ffaa00;
}

/* ===============================
   SECTION HEADINGS
=============================== */
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #002855;
}

section p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* ===============================
   ABOUT / SERVICES / TEAM GRIDS
=============================== */
.about-grid,
.service-grid,
.why-grid,
.team-grid,
.core-values .grid-2,
.core-values .grid-3 {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.about-grid,
.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: center;
}

.core-values .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 20px;
}

.core-values .grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ===============================
   ABOUT / SERVICE / VALUE CARDS
=============================== */
.about-item,
.service-card,
.why-item,
.value-item {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.about-item:hover,
.service-card:hover,
.why-item:hover,
.value-item:hover {
  transform: translateY(-5px);
}

.about-item img,
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* ===============================
   CONTACT FORM
=============================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #ffb800;
  color: #002855;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #ffaa00;
}

/* ===============================
   FOOTER
=============================== */
footer {
  background-color: #002855;
  color: white;
  padding: 40px 20px 20px;
}

footer h3,
footer h4 {
  margin-bottom: 15px;
}

footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

footer a:hover {
  color: #ffb800;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}

/* ===============================
   PARTNERS LOGOS
=============================== */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.partner-logos img {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: 0.3s;
}

.partner-logos img:hover {
  transform: scale(1.1);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
