@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Result Hero Section */

   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .image-section {
      position: relative;
      width: 100%;
      max-width: 100%;
      height: 300px; /* Full screen height */
      overflow: hidden;
    }

    .image-section img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 300px;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* dark transparent overlay */
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: white;
      text-align: center;
      padding: 20px;
    }

    .overlay h1 {
      font-size: 3.2rem;
      margin-bottom: 10px;
      font-family: "Arimo", sans-serif;
    }

    .overlay p {
      font-size: 1.5rem;
      font-family: "Arimo", sans-serif;
      color: #edecec;
    }

    @media (max-width: 768px) {
      .overlay h1 {
        font-size: 2rem;
      }

      .overlay p {
        font-size: 1rem;
      }
    }



/* Table Section */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

.table-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.main-heading {
  color: #223883 ;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Arimo", sans-serif;
}

.sub-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
  font-family: "Arimo", sans-serif;
  margin-top: 20px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fafafa;
}

thead {
  background-color: #d9ecf5;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;

}

tr:hover {
  background-color: #f1f1f1;
}

th {
  font-weight: 700;
  font-size: 18px;
  font-family: "Arimo", sans-serif;
  color: #000;
  text-transform: capitalize;
}

td {
  font-family: "Arimo", sans-serif;
  font-size: 16px;
  color: black;
  text-transform: capitalize;
}

/* ✅ Responsive Adjustments */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2.2rem;
  }

  .sub-heading {
    font-size: 1.125rem;
  }

  th, td {
    font-size: 15px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .sub-heading {
    font-size: 1rem;
  }

  table {
    min-width: 500px;
  }

  th, td {
    font-size: 14px;
    padding: 8px 10px;
  }
}

/* Contact Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #fff;
}

.sustainable-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #223883 ;
  min-height: 60vh;
  gap: 40px;
}

.left-content {
  flex: 1;
}

.left-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Arimo", sans-serif;
}

.left-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  font-family: "Arimo", sans-serif;
  color: #d7d7d7;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.secondary-btn {
  padding: 14px 24px;
  border: 2px solid white;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Arimo", sans-serif;
}

.secondary-btn {
  background-color: transparent;
  color: white;
}

.secondary-btn:hover {
  background-color: white;
  color: #223883 ;
}

.right-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-image img {
  width: 450px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* ✅ RESPONSIVE BREAKPOINTS */

@media (max-width: 1024px) {
  .sustainable-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .left-content h1 {
    font-size: 2.5rem;
  }

  .left-content p {
    font-size: 18px;
  }

  .buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .left-content h1 {
    font-size: 2.2rem;
  }

  .left-content p {
    font-size: 16px;
  }

  .secondary-btn {
    font-size: 18px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .left-content h1 {
    font-size: 1.8rem;
  }

  .left-content p {
    font-size: 15px;
  }

  .secondary-btn {
    font-size: 16px;
    padding: 10px 18px;
  }

  .sustainable-section {
    padding: 30px 15px;
    gap: 20px;
  }
}