h1, h2, h3, p {
  margin-top: 0;
}

/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0057b7;
  text-decoration: none;
}

.logo img {
  height: 36px;       /* ⬅️ Keeps it compact */
  width: auto;
  display: block;
}
.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.nav-links .btn {
  background-color: #0057b7;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
}

.nav-links .lang-switch {
  border: 1px solid #0057b7;
  padding: 8px 12px;
  border-radius: 4px;
  color: #0057b7;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.hero-content {
  flex: 1 1 50%;
  padding-right: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0057b7;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #0057b7;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px; /* ✅ Add this line */
}

.hero-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.75;
}

.hero-image img {
  width: 100%;
  border-radius: 8px;
}

/* Features Section */
.features {
  background-color: #f5f7fa;
  padding: 60px 40px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.feature-item h3 {
  color: #0057b7;
  margin-bottom: 10px;
}

/* Credibility Section */
.credibility {
  background-color: #f5f7fa;
  padding: 60px 40px;
  text-align: center;
}

.credibility h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0057b7;
}

.credibility p {
  max-width: 700px;
  margin: 0 auto 30px;
}

.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-bar img {
  height: auto;
  width: auto;
  max-height: 150px;         /* ⬅️ Controls height without forcing shrink */
  max-width: 200px;         /* ⬅️ Optional: upper limit to prevent overflow */
  flex: 1 1 auto;           /* ⬅️ Allow natural scaling, but stay flexible */
  object-fit: contain;
}


/* Quote Section */
.quote {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  font-style: italic;
  font-size: 1.5rem;
  color: #444;
}

.quote span {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 15px;
}

/* Footer */
footer {
  padding: 30px 20px;
  text-align: center;
  background-color: #f1f1f1;
  font-size: 0.9rem;
  color: #777;
}

footer a {
  color: #0057b7;
  text-decoration: none;
}
@media (max-width: 600px) {
  .hero {
    flex-direction: column; /* ⬅️ Stack items vertically */
    padding: 4px 16px 20px !important;
    gap: 12px;
  }

  .hero-content {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

   .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem); /* ⬅️ Scales between sizes */
    margin: 0 0 8px 0;
    line-height: 1.2;
    font-weight: 700;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin: 0 0 12px 0;
  }

  .btn-primary {
    margin-bottom: 8px;
    padding: 10px 18px;
    font-size: 0.9rem;
    align-self: flex-start;
  }

  .hero-image {
    width: 100%;
    margin-top: 8px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }
   .logo-bar img {
    max-height: 1000px;
    max-width: 140px;
  }

  .logo-bar {
    gap: 24px;
  }

}



;