* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  object-fit: contain;
  height: auto;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #101010;
  background-color: #ffffff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

header {
  height: 149px;
  background: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
}
p {
  font-size: inherit;
}

p + p {
  margin-top: 24px;
}

.hero {
  background: #fff2ea;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  gap: 40px;
}

.hero-text {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 1;
}

.hero-heading {
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: 0.8px;
}

.hero-subheading {
  font-size: 32px;
  line-height: 43px;
  max-width: 614px;
}

.hero-image {
  width: 497px;
  height: auto;
  max-width: 50%;
}

.cta-button {
  width: 300px;
  height: 72px;
  background: #da6720;
  color: #fafafa;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  border: none;
  box-shadow: 0px 2px 4px rgba(27, 28, 29, 0.04);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 40px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #b9571c;
}

section {
  padding: 88px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-content {
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.section-image {
  max-width: 450px;
}

.section-heading {
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 2.56px;
  margin-bottom: 40px;
}

.section-text {
  font-size: 32px;
  line-height: 43px;
  max-width: 747px;
}

.value-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.value-card {
  max-width: 466px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 47%;
}
.value-icon {
  height: 95px;
  object-fit: contain;
}

.card-icon {
  width: 95px;
  height: 95px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 43px;
}

.card-text {
  font-size: 24px;
  line-height: 30px;
  color: #302f2f;
}

.team-member {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  max-width: 1280px;
}
.team-member + .team-member {
  margin-top: 60px;
}

.team-photo {
  width: 228px;
  height: 307px;
  object-fit: cover;
}

.team-info {
  max-width: 840px;
}

.team-name {
  font-size: 32px;
  font-weight: 600;
  line-height: 43px;
}

.team-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 43px;
  margin-bottom: 24px;
}

.team-bio {
  font-size: 24px;
  line-height: 30px;
  color: #302f2f;
}

.reverse {
  flex-direction: row-reverse;
}
.section-portfolio {
  width: 100%;
}

.portfolio {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 60px;
  justify-content: center;
}

.portfolio-logo {
  max-height: 74px;
  object-fit: contain;
  width: auto;
}

.contact {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-heading {
  font-size: 64px;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}

.contact-text {
  font-size: 32px;
  line-height: 43px;
  margin-bottom: 40px;
}

footer {
  height: auto;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  width: 32px;
  height: 32px;
  opacity: 0.25;
  border: 1.5px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}
.social-icon:hover {
  opacity: 1;
}

.footer-divider {
  width: 90%;
  height: 1px;
  background: black;
  margin: 20px 0;
}

.footer-text {
  font-size: 16px;
  text-align: center;
}

.footer-email {
  font-size: 20px;
  line-height: 32px;
}

@media (max-width: 1399px) {
  .portfolio {
    gap: 20px;
  }
  .portfolio-logo {
    max-height: 64px;
  }
}

@media (max-width: 1247px) {
  section {
    padding: 60px 5%;
  }
  .hero {
    margin-bottom: 20px;
  }
  .hero-heading {
    font-size: 60px;
    line-height: 68px;
  }
  .hero-text {
    max-width: 45%;
  }
  .section-heading {
    font-size: 48px;
    line-height: 48px;
  }
  .section-text {
    font-size: 26px;
    line-height: 38px;
  }
  .card-title {
    font-size: 28px;
  }
  .portfolio {
    gap: 24px;
  }
  .portfolio-logo {
    max-height: 74px;
  }
}

@media (max-width: 1024px) {
  header {
    height: 120px;
  }

  section {
    padding: 40px 5%;
  }
  .hero {
    margin-bottom: 0;
  }
  .hero-heading {
    font-size: 48px;
    line-height: 54px;
  }
  .hero-subheading {
    font-size: 26px;
    line-height: 32px;
  }

  .hero-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
  }
  .hero-text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .cta-button {
    margin-top: auto;
    max-width: 100%;
  }
  .hero-image {
    max-width: 100%;
  }
  .section-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-heading {
    font-size: 48px;
    line-height: 60px;
  }
  .section-text {
    font-size: 26px;
    line-height: 32px;
  }
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .team-bio {
    font-size: 24px;
    line-height: 32px;
    max-width: 747px;
  }
  .value-card {
    width: auto;
  }
  .value-icon {
    width: 95px;
    height: auto;
  }
  .section-portfolio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-portfolio .section-text {
    margin-inline: auto;
  }
  .portfolio {
    justify-content: center;
    margin-top: 40px;
  }

  .portfolio {
    flex-direction: row;
  }

  .contact-heading {
    font-size: 48px;
    line-height: 60px;
  }
  .contact-text {
    font-size: 26px;
    line-height: 32px;
  }
}

@media (max-width: 768px) {
  header {
    height: 100px;
    padding-top: 5px;
  }
  .hero-heading {
    font-size: 38px;
    line-height: 44px;
  }
  .hero-subheading {
    font-size: 24px;
    line-height: 28px;
  }
  .section-heading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 28px;
  }
  .section-content {
    gap: 28px;
  }
  .section-text {
    font-size: 24px;
    line-height: 28px;
  }
  .card-title {
    font-size: 26px;
    line-height: 32px;
  }
  .card-text {
    font-size: 20px;
    line-height: 28px;
  }
  .team-name {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 8px;
  }

  .team-title {
    line-height: 30px;
  }
  .team-member {
    gap: 28px;
  }
  .team-member + .team-member {
    margin-top: 40px;
  }

  .team-bio {
    font-size: 20px;
    line-height: 28px;
  }

  .value-cards {
    margin-top: 8px;
    gap: 28px;
  }
  .value-card {
    gap: 16px;
  }

  .portfolio {
    margin-top: 28px;
    gap: 24px;
  }
  .contact-heading {
    font-size: 32px;
    line-height: 40px;
  }
  .contact-text {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .portfolio {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section-image {
    max-width: 100%;
  }
}
