* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: white;
      padding: 10px 20px;
      position: relative;
    }

    .logo img {
      height: 70px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: #07194c;
      font-size: 18px;
      transition: color 0.3s;
    }

    .nav-links li:hover > a {
      color: #fa8a1e;
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #07194c;
      min-width: 180px;
      z-index: 1000;
      padding: 10px 0;
    }

    .dropdown a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      color: #fff;
      transition: all 0.3s ease;
    }

    .dropdown a:hover {
      background: #07194c;
      color: #a4e6b1;
      padding-left: 25px;
    }

    .nav-links li:hover .dropdown {
      display: block;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .dropdown a:hover .arrow {
      transform: translateX(4px);
    }

    .apply-btn {
      background: #fa8a1e;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 4px;
      font-size: 22px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .apply-btn:hover {
      background: #ffffff;
    }

    /* Mobile Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      color: #ffffff;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      color: #ffffff;
      background-color: #07194c;
    }

    @media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #07194c;
  }

  .apply-btn {
    margin-top: 20px;
  }
}

.submenu {
  list-style: none;  /* ✅ removes the bullet/dot */
  padding-left: 0;   /* optional: removes left indentation */
}
@media (min-width: 769px) {
  .symbol {
    display: none;
  }
}
/* about us */
.about-box-wrapper {
  background: #f3f4f6;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.about-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-left,
.about-right {
  flex: 1;
  min-width: 300px;
  padding: 40px;
}

/* LEFT BOX: DESCRIPTION */
.about-left h2 {
  color: #031136;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* RIGHT BOX: WHY SCALORA */
.about-right {
  background: linear-gradient(135deg, #031136, #0a2a81);
  color: #ffffff;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.about-right h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}


.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
 
}

.feature {
  flex: 1 1 calc(50% - 20px);
  text-align: center;
  margin-bottom: 20px;
}

.feature i {
  font-size: 32px;
  color: #f97316; /* Orange or your chosen theme */
  margin-bottom: 10px;
  display: block;
}


.feature p {
  font-size: 14px;
  color: #fff;
}
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f3f4f6;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  width: 100%;
  max-width: 500px;
  transition: transform 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
}

.icon i {
  font-size: 40px;
  color: #f97316; /* Orange */
  margin-bottom: 20px;
}

.card h3 {
  color: #031136; /* Deep Blue */
  font-size: 24px;
  margin-bottom: 15px;
}

.card p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}
/* whatsup */
.whatsapp-support {
  background-color: #031136; /* Deep Blue */
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  /* border-radius: 12px; */
  /* max-width: 800px; */
  width: 100%;
  /* margin: 40px auto; */
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-support .connect-text {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 20px;
}

.whatsapp-support i {
  color: #25D366; /* WhatsApp Green */
  margin-right: 8px;
  font-size: 22px;
}

.whatsapp-support a {
  color: #25D366;
  text-decoration: none;
}

.whatsapp-support a:hover {
  text-decoration: underline;
}
.site-footer {
  background: #031136;
  color: white;
  padding: 20px 20px;
  font-family: sans-serif;
}

.footer-bottom {
  text-align: center;
  /* margin-top: 40px; */
  border-top: 1px solid #334155;
  padding-top: 20px;
  font-size: 13px;
  color: #9ca3af;
}
