* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #f5f5f3;
  color: #222;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(1, 1, 1, 0.1);
  padding: 20px 40px;
  align-items: center;
}

.navbar>.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo>.logo-icon {
  background-color: #14b8a6;
  color: rgb(255, 255, 255);
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

.btn {
  background: #0f766e;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgb(232, 229, 229);
  width: 90%;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(1, 1, 1, 0.1);
  padding: 40px;
  gap: 30px;
}

.hero .left p {
  margin-bottom: 20px;
}

.stats>div {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 140px;
}

.stats>div>h3 {
  color: #0F766E;
}

.stats>div>p {
  font-weight: bolder;
  font-size: 24px;
}

.stats>div>span {
  font-size: 13px;
  color: rgb(113, 113, 113);
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.buttons button {
  margin-right: 10px;
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
}

.primary {
  background: #0f766e;
  color: white;
}

.secondary {
  background: #acaaaa;
}

.stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stats div {
  background: #e6f4ea;
  padding: 15px;
  border-radius: 12px;
}

/* RIGHT SIDE */
.right {
  background: #0f3d3a;
  color: white;
  padding: 20px;
  border-radius: 20px;
}

.right>.card {
  background: #f6f6e8;
}

.right h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.right>.right-para {
  color: #e3efee;
}

.right h3 {
  margin-bottom: 10px;
}

.right p {
  color: rgb(44, 44, 43);
}

.card {
  background: white;
  color: black;
  margin-top: 15px;
  padding: 15px;
  border-radius: 12px;
}

/* CORE */
.core {
  padding: 40px;
}

.core h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.core h4 {
  color: #0f766e;
  margin-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.box {
  background: white;
  padding: 20px;
  border-radius: 12px;
}

.box h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.box p {
  color: rgb(81, 81, 80);
}

.requests {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  font-family: "Inter", sans-serif;
}

.small {
  font-size: 12px;
  letter-spacing: 1px;
  color: #2f7d73;
  font-weight: 600;
}

h2 {
  font-size: 34px;
  margin-top: 5px;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-btn {
  background: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #f4f1eb;
  padding: 25px;
  border-radius: 20px;
}

.card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

/* TAGS */
.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
}

.green {
  background: #d7eee8;
  color: #1f7a6b;
}

.red {
  background: #ffdede;
  color: #c0392b;
}

.yellow {
  background: #fff3cd;
  color: #b8860b;
}

.light-green {
  background: #e6f4ea;
  color: #2e7d32;
}

.light {
  background: #e9ecef;
  color: #555;
}

.small-tags {
  margin: 10px 0;
}

/* USER */
.user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.user p {
  font-size: 13px;
  color: #777;
}

.detail-btn {
  background: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
}

/* FOOTER */
.footer {
  margin-top: 25px;
  font-size: 13px;
  color: #777;
}

/* ================= HOVER EFFECTS ================= */

/* Main buttons */
.btn:hover {
  background: #0d5f59;
  cursor: pointer;
}

.primary:hover {
  background: #0d5f59;
  cursor: pointer;
}

.secondary:hover {
  background: #8f8f8f;
  cursor: pointer;
}

/* View button */
.view-btn:hover {
  background: #0f766e;
  color: #fff;
  cursor: pointer;
}

/* Detail button */
.detail-btn:hover {
  background: #0f766e;
  color: #fff;
  cursor: pointer;
}

/* Navbar links */
.navbar nav a:hover {
  color: #0f766e;
}

/* Smooth effect */
button {
  transition: all 0.3s ease;
}

a {
  transition: all 0.3s ease;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid,
  .cards {
    grid-template-columns: 1fr;
  }
}



/* ================= RESPONSIVE ================= */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .right h2 {
    font-size: 32px;
  }

  .stats {
    flex-wrap: wrap;
  }

  .stats>div {
    width: 45%;
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn {
    align-self: flex-start;
  }

  .hero {
    width: 95%;
    padding: 20px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .buttons button {
    width: 100%;
  }

  .stats {
    flex-direction: column;
  }

  .stats>div {
    width: 100%;
  }

  .right {
    padding: 15px;
  }

  .right h2 {
    font-size: 24px;
  }

  .right p {
    font-size: 14px;
  }

  .card {
    padding: 12px;
  }
}

/* Extra small devices */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 22px;
  }

  .right h2 {
    font-size: 20px;
  }
}

/* FIX: View button responsive */
@media (max-width: 600px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .view-btn {
    width: 100%;
    text-align: center;
  }
}



/* .....About .html */