* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
body {
  background: #f5f7fb;
  color: #333;
  line-height: 1.6;
}

nav {
  position: sticky;
  background-color: #fff;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  max-width: 93%;
  margin: 20px auto;
  margin-top: 0;
  margin-bottom: 0;
}

.company-logo {
  height: 90px;
  width: 150px;
  object-fit: contain;
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style: none;
}

ul a {
  text-decoration: none;
  margin-right: 12px;
  color: #1e1e1e;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

ul a:hover {
  background-color: #e6e5e5;
}

ul a i {
  margin-right: 10px;
  color: #333;
}

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

header {
  background: linear-gradient(135deg, #97cbff, #63d0e0);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  max-width: 93%;
  margin: 20px auto;
  margin-top: 0;
  margin-bottom: 0;
}
header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
header p {
  font-size: 16px;
  opacity: 0.9;
}

.container {
  max-width: 93%;
  margin: auto;
  margin-top: 0;
  padding: 20px;
  background-color: #fff;
}

.section {
  margin-bottom: 40px;
}
.section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  border-left: 5px solid #4ca1af;
  padding-left: 10px;
  color: #2c3e50;
}
.section p {
  margin-bottom: 10px;
  text-align: justify;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 10px;
  color: #63d0e0;
}
.card p {
  font-size: 14px;
}

footer {
  background: #020617;
  color: #cbd5f5;
  margin-top: 60px;
  max-width: 93%;
  margin: auto;
}
.footer-inner {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}
footer h4 {
  color: #fff;
  margin-bottom: 12px;
}
footer ul {
  list-style: none;
}
footer li {
  font-size: 14px;
  line-height: 1.7;
}
.footer-bottom {
  text-align: center;
  padding: 14px;
  border-top: 1px solid #1e293b;
  font-size: 13px;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 28px;
  }
  .section h2 {
    font-size: 22px;
  }
}
