@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins: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&display=swap");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0px;
  padding: 0px;
}

header {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  box-shadow: 0px 1px 20px 0px gray;
}

.header-logo {
  display: flex;
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
  transition: all 0.3s ease-in-out;
  align-items: center;
  gap: 8px;
}

.header-logo p {
  font-size: x-large;
  margin: 0px;
}

nav {
  display: flex;
  transition: all 0.3s ease-in-out;
  justify-content: center;
  gap: 12px;
}

.header-call {
  display: flex;
  flex-direction: row;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  background-color: #3dc667;
  color: white;
  padding: 8px 18px;
  align-items: center;
  font-size: small;
  gap: 4px;
  cursor: pointer;
}

.header-call p {
  margin: 0px;
}

.header-call:hover {
  background-color: #258642;
}

a {
  padding: 8px 18px;
  border: 0.1px solid #3dc667;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

a:hover {
  background-color: #3dc667;
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 8px 16px;
  }

  nav {
    order: 1;
  }

  .header-logo,
  .header-call {
    flex-basis: calc(45% - 18px);
    max-width: max-content;
    margin: auto;
  }

  nav {
    flex-basis: 100%;
  }

  .header-logo p {
    font-size: large;
  }

  a {
    font-size: small;
  }
}

h1 {
  font-size: 62px;
  color: #032d47;
  margin-bottom: 20px;
}

.section-landing {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.section-landing-bg-video {
  position: absolute;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
}

.section-landing .section-landing-content {
  position: relative;
  z-index: 1;
  color: rgba(91, 98, 86);
  text-align: center;
}

.section-landing-content {
  bottom: -50px;
  padding: 10% 5%;
}

.section-landing-about {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.section-landing-about > div {
  flex: 1;
}

.section-landing-about img {
  max-width: 500px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
}

.section-landing-about p {
  line-height: 1.6;
  font-size: 16px;
}

.section-landing-about > div > div {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #3dc667;
  color: white;
  text-decoration: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.section-landing-about > div > div:hover {
  background-color: #258642;
}

@media (max-width: 768px) {
  .section-landing-about {
    flex-direction: column-reverse;
    text-align: center;
  }

  .section-landing-about > div {
    order: 2;
  }

  .section-landing-about img {
    order: 1;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.section-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.section-services h1 {
  margin-bottom: 40px;
  text-align: center;
}

.section-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.section-services-grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  padding: 0px 30px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-services-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section-services-grid-item > div {
  margin-bottom: 20px;
}

.section-services-grid-item h3 {
  font-size: 20px;
  color: #1c274c;
  margin-bottom: 10px;
}

.section-services-grid-item p {
  line-height: 1.5;
}

.section-services-grid-item a {
  align-self: flex-end;
}

.section-contact {
  max-width: 1000px;
  margin: auto;
  padding: 100px 0px;
}

.section-contact h1,
.section-contact p {
  margin: 0px;
}

footer {
  color: white;
  background-color: #002945;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 32px;
  gap: 32px;
}

.footer-ack {
  background-color: #001e33;
  font-weight: bold;
  text-align: center;
  padding: 18px;
}

footer a {
  padding: 0px;
  border: none;
  margin-bottom: 12px;
}

footer a:hover {
  background-color: transparent;
  text-decoration: underline;
}
