/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 50px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.header-flex-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  max-height: 120px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: white;
  padding: 4px;
  object-fit: contain;
}

.header-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.header-text p {
  font-size: 1.2rem;
  color: #cfd8dc;
}

/* Hero Section */
.hero {
  background-color: #e3f2fd;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #0d47a1;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #fff;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0d47a1;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.card {
  background: linear-gradient(to right, #bbdefb, #e3f2fd);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 14px rgba(33, 150, 243, 0.15);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: #0d47a1;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.card p {
  font-size: 1rem;
}

.infographic-img {
  max-width: 600px;   /* limits size */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}
.infographic .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* About Section */
.about {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: #0d47a1;
  color: white;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.95rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .header-flex-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-text {
    text-align: center;
  }

  .hero h2 {
    font-size: 1.7rem;
  }

  .hero p, .about p {
    font-size: 1rem;
  }
}

/* Contact Section */
.contact {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  color: #0d47a1;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group input {
  flex: 1;
  min-width: 250px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.contact-form button {
  background-color: #0d47a1;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #1565c0;
}
.contact {
  background: #eaf3ff;
  border-radius: 12px; padding: 60px 20px;
}
.contact-form input,
.contact-form textarea {
  border: 2px solid #0d47a1;
}
.contact-form button {
  background: #0d47a1; padding: 14px 30px;
  font-size: 1.1rem; letter-spacing: .5px;
}


/* Mobile tweak */
@media (max-width: 600px) {
  .form-group {
    flex-direction: column;
  }
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}
