* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "El Messiri", sans-serif;
}

body { 
  background-color: #f5f6fa;
  color: #333;
  line-height: 1.75;
  scroll-behavior: smooth;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 150%;
  display: block;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.logo-text-main {
  font-weight: 700;
  color: #f5b200;
  font-size: 1.45rem;
}

.logo-text-sub {
  font-size: 1.15rem;
  color: #777;
}

.nav-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  font-size: 1.05rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 5px;
  color: #444;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #f5b200;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: #333;
  border-radius: 999px;
}

.hero {
  margin-top: 75px;
  padding: 4rem 0 3.5rem;
  background: radial-gradient(circle at top, #e5f2ff 0, #f5f6fa 55%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  background-color: rgba(245, 178, 0, 0.09);
  border-radius: 999px;
  font-size: 0.95rem;
  color: #f5b200;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(245, 178, 0, 0.25);
}

.hero-title {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin-bottom: 0.8rem;
  color: #0b2750;
}

.hero-highlight {
  color: #f5b200;
}

.hero-text {
  font-size: 1.05rem;
  color: #555;
  max-width: 33rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.3rem;
}

.btn-main,
.btn-outline {
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-main {
  background: linear-gradient(135deg, #0b8ad3, #0065b3);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 101, 179, 0.25);
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 101, 179, 0.3);
}

.btn-outline {
  background-color: #ffffff;
  border: 1px solid #d0d4da;
  color: #333;
}

.btn-outline:hover {
  background-color: #f5f6fa;
  transform: translateY(-1px);
}

.hero-meta {
  font-size: 0.95rem;
  color: #888;
}

.hero-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.hero-card-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 0.8rem;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #0b8ad3, #0065b3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.hero-card-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: #0b2750;
}

.hero-card-sub {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #555;
}

.hero-stat-number {
  font-weight: 700;
  color: #0b8ad3;
  font-size: 1.1rem;
}

section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-title {
  font-size: 1.65rem;
  margin-bottom: 0.4rem;
  color: #0b2750;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #777;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.about-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 0.7rem;
}

.about-list {
  list-style: none;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.3rem;
  font-size: 1rem;
  color: #444;
}

.about-list li::before {
  content: "✔";
  margin-left: 0.3rem;
  color: #0b8ad3;
  font-size: 0.95rem;
}

.about-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  color: #555;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0b2750;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: 0.18s ease;
  font-size: 1rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b8ad3, #0065b3);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.card-title {
  font-weight: 700;
  color: #0b2750;
  font-size: 1.1rem;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  font-size: 1rem;
  color: #555;
}

.feature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.feature-bullet {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: #eaf5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #0b8ad3;
  flex-shrink: 0;
}

.feature-right {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  color: #555;
}

.feature-right h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #0b2750;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-info {
  font-size: 1rem;
  color: #555;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0b2750;
}

.contact-line {
  margin-bottom: 0.4rem;
}

.contact-line span {
  font-weight: 600;
  color: #333;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.contact-field {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #d0d4da;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: 0.18s ease;
  background-color: #fbfbfd;
}

input:focus,
textarea:focus {
  border-color: #0b8ad3;
  box-shadow: 0 0 0 3px rgba(11, 138, 211, 0.12);
  background-color: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-note {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.4rem;
}

.form-status {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  color: #0b8ad3;
  display: none;
}

footer {
  padding: 1.1rem 0 1rem;
  background-color: #0b2750;
  color: #d7e2f2;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d7e2f2;
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 1100;
  transition: 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  font-size: 1.55rem;
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .feature-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-card {
    order: -1;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 0.6rem 1.25rem 0.9rem;
    border-bottom: 1px solid #eee;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    margin-top: 65px;
  }

  section {
    padding: 2.1rem 0;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body {
    font-size: 1.08rem;
  }

  .nav-links {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}



