body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f6fb;
  color: #333;
  padding-left: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo h1 {
  margin: 0;
  color: #0f4c81;
}

.logo p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.quote-btn {
  background: #ff7a18;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.hero {
  position: relative;
  background-image: url('./images/hero-worker.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px; /* Adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white; /* Text color for better visibility on background */
  padding: 60px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  color: #fff; /* Adjusted for background */
}

.hero-content p {
  font-size: 24px;
  color: #fff; /* Adjusted for background */
}

.services-btn {
  background: #ff7a18;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.services {
  text-align: center;
  padding: 40px 20px;
}

.services h2 {
  font-size: 36px;
  color: #0f4c81;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
  width: 250px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card h3 {
  color: #0f4c81;
}

.card p {
  font-size: 14px;
  color: #666;
}

.why-us {
  text-align: center;
  padding: 40px 20px;
  background: #d9eaff;
}

.why-us h2 {
  font-size: 36px;
  color: #0f4c81;
}

.why-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.why-cards div {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #f4f6fb;
}

.about-content {
  display: flex;
  max-width: 1200px;
  align-items: center;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 400px;
  border-radius: 10px;
  margin-right: 40px;
  margin-bottom: 20px;
}

.about-text p:first-child {
  font-weight: bold;
  color: #0f4c81;
}

.technology {
  text-align: center;
  padding: 50px 20px;
  background: #f4f9ff;
}

.technology h2 {
  font-size: 36px;
  color: #0f4c81;
}

.tech-sub {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555;
}

.tech-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.tech-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  margin: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.tech-card:hover {
  transform: translateY(-5px);
}

.tech-card h3 {
  color: #0f4c81;
}

.partner-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

.partner-section h2 {
  font-size: 36px;
  color: #0f4c81;
}

.partner-note {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #555;
  font-style: italic;
}

.highlights {
  margin: 20px 0;
}

.highlights h3 {
  font-size: 28px;
  color: #0f4c81;
}

.highlight-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.highlight-card {
  background: #d9eaff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 200px;
  text-align: center;
}

.highlight-card h4 {
  color: #0f4c81;
}

.hidden {
  display: none;
}


.faq {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.faq-item h3 {
  font-size: 24px;
  color: #0f4c81;
  cursor: pointer;
}

.contact {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0f4c81;
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps div {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin: 10px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 400px;
    background-size: contain;
  }
  .top-bar {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 20px 10px;
  }
  .nav-links {
    margin: 0 10px;
  }
  .about-content {
    flex-direction: column;
  }
  .about-image img {
    margin-right: 0;
    max-width: 100%;
  }
  .app-preview img {
    max-width: 100%;
  }
  .service-cards,
  .why-cards,
  .tech-cards,
  .dev-cards,
  .highlight-cards,
  .process-steps {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px;
  }
  .service-cards .card,
  .why-cards div,
  .tech-cards .tech-card,
  .dev-cards .dev-card,
  .highlight-cards .highlight-card,
  .process-steps div {
    flex: 0 0 auto;
    margin: 10px;
  }
}
.legal {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.legal h1 {
  color: #0f4c81;
}

.legal h2 {
  color: #ff7a18;
}
.dev-section {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
}

.dev-section h2 {
  font-size: 36px;
  color: #0f4c81;
}

.dev-sub {
  max-width: 850px;
  margin: 0 auto 30px;
  color: #555;
}

.dev-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.dev-card {
  background: #f4f9ff;
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  margin: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.dev-card:hover {
  transform: translateY(-6px);
}

.dev-card h3 {
  color: #0f4c81;
}

/* ============================
   BUSINESS SOLUTIONS SECTION
============================ */

.business-solutions {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(120deg, #f4f9ff, #ffffff);
}

.business-solutions h2 {
  font-size: 36px;
  color: #0f4c81;
}

.bs-sub {
  max-width: 800px;
  margin: 10px auto 40px;
  color: #555;
}

.bs-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.bs-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  width: 320px;
  text-decoration: none;
  color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(15,76,129,0.15), transparent);
  transition: 0.5s;
}

.bs-card:hover::before {
  left: 100%;
}

.bs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.bs-card h3 {
  color: #0f4c81;
  margin-bottom: 10px;
}

.bs-card span {
  display: inline-block;
  margin-top: 15px;
  color: #ff7a18;
  font-weight: bold;
}

/* Mobile */
@media(max-width:768px){
  .bs-card{
    width: 90%;
  }
}
/* =========================
   APP OVERVIEW SECTION
========================= */

.app-overview {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4f9ff, #ffffff);
  display: flex;
  justify-content: center;
}

.app-card {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  border-radius: 40px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

/* Curved background accent */
.app-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #0f4c81;
  border-radius: 50%;
  opacity: 0.08;
}

.app-left img {
  width: 200px;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.app-right h2 {
  font-size: 36px;
  color: #0f4c81;
  margin-bottom: 10px;
}

.app-tagline {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.app-features li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.playstore-btn {
  background: #0f4c81;
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.playstore-btn:hover {
  background: #08345a;
  transform: translateY(-3px);
}

.appstore-soon {
  background: #eee;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: bold;
  color: #666;
}

.appstore-soon span {
  color: #ff7a18;
  margin-left: 6px;
}

/* Mobile */
@media(max-width:768px){
  .app-card{
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .app-left img{
    width: 160px;
  }
}



