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

body {
  background-color: #f9f9f9;
  color: #333;
}

.navbar {
  background-color: #005f73;
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-item .nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-item .nav-link:hover {
  color: #ffb703;
}

.front-image {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.front-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 95, 115, 0.7);
  padding: 20px 40px;
  border-radius: 10px;
}

.tag p {
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}

section {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 40px;
}

.text-content,
.text-content2,
.text-content3,
.text-content4 {
  flex: 1 1 500px;
}

.text-content h2,
.text-content2 h2,
.text-content3 h2,
.text-content4 h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #005f73;
}
.text-content p,
.text-content2 p,
.text-content3 p,
.text-content4 p {
  font-size: 1rem;
  line-height: 1.6;
}

.about-img,
.about-img2,
.about-img3,
.about-img4 {
  flex: 1 1 400px;
}

.about-img img,
.about-img2 img,
.about-img3 img,
.about-img4 img {
  width: 100%;
  border-radius: 10px;
}
.section-footer {
  background-color: #005f73;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.content_1 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.content_1 > div {
  flex: 1 1 200px;
}

.content_1 img {
  height: 50px;
  margin-bottom: 20px;
}

.content_1 p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.content_2 h4,
.content_3 h4,
.content_4 h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #ffb703;
}

.content_2 a,
.content_3 a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.content_2 a:hover,
.content_3 a:hover {
  color: #ffb703;
}

/* Newsletter */
.f-mail {
  margin-top: 10px;
  position: relative;
}

.f-mail input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border-radius: 5px;
  border: none;
}

.f-mail i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #005f73;
  font-size: 1.2rem;
}
.f-design {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  text-align: center;
  padding-top: 10px;
}

.f-design-txt p {
  font-size: 0.9rem;
  color: #ffb703;
}
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 20px;
  }

  section {
    flex-direction: column;
  }

  .content_1 {
    flex-direction: column;
    align-items: center;
  }
}
.bottom-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.bottom-buttons .btn {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
}

.bottom-buttons .btn:hover {
  background-color: #ffcc00;
  color: #333;
  transform: scale(1.1);
}
