*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #475569;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #f8fafc;
}

h1,
h2,
h3,
h4 {
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}
@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }
}

.fade-in {
  display: none;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.navbar__logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
}
.navbar__logo span {
  color: #2563eb;
}
.navbar__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.navbar__menu-link {
  color: #475569;
  font-weight: 500;
  transition: 0.3s ease;
}
.navbar__menu-link:hover, .navbar__menu-link.active {
  color: #2563eb;
}
.navbar__toggle {
  display: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: #0f172a;
}
@media (max-width: 900px) {
  .navbar__toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
}

.footer {
  background-color: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 3rem 0;
  margin-top: auto;
}
.footer__text {
  font-size: 1.4rem;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn:hover {
  background-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  transform: translateY(-2px);
}
.btn--outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.btn--outline:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.card {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.card__icon {
  font-size: 4rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}
.card__title {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.form {
  max-width: 60rem;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.form__group {
  margin-bottom: 2rem;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.4rem;
  font-family: inherit;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #2563eb;
}
.form__textarea {
  resize: vertical;
  min-height: 12rem;
}
.form__error-msg {
  display: none;
  color: #ef4444;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
.form__group.error .form__input,
.form__group.error .form__textarea {
  border-color: #ef4444;
}
.form__group.error .form__error-msg {
  display: block;
}
.form__success {
  display: none;
  color: #22c55e;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
}

.accordion {
  max-width: 80rem;
  margin: 0 auto;
}
.accordion__item {
  background-color: #ffffff;
  margin-bottom: 1.5rem;
  border-radius: 0.4rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.accordion__header {
  padding: 2rem;
  cursor: pointer;
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.8rem;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion__header:hover {
  background-color: rgb(26.9210526316, 41.2789473684, 75.3789473684);
}
.accordion__header::after {
  content: "+";
  font-size: 2.4rem;
  font-weight: 400;
}
.accordion__header.active::after {
  content: "-";
}
.accordion__body {
  display: none;
  padding: 2rem;
  border-top: 1px solid #e2e8f0;
  background-color: #ffffff;
  color: #475569;
}

.portfolio__header {
  text-align: center;
  margin-bottom: 5rem;
}
.portfolio__title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.portfolio__subtitle {
  color: #475569;
  font-size: 1.8rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2.5rem;
}
.gallery__item {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}
.gallery__item:hover .gallery__overlay h3 {
  transform: translateY(0);
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery__overlay h3 {
  color: #ffffff;
  font-size: 2.4rem;
  transform: translateY(2rem);
  transition: transform 0.4s ease;
}

.hero {
  height: calc(100vh - 8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right bottom, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.4));
}
.hero__content {
  max-width: 80rem;
}
.hero__title {
  font-size: 5.5rem;
  margin-bottom: 2rem;
}
.hero__title span {
  color: #2563eb;
}
@media (max-width: 900px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__subtitle {
  font-size: 2rem;
  margin-bottom: 4rem;
  color: #475569;
}
@media (max-width: 600px) {
  .hero__subtitle {
    font-size: 1.6rem;
  }
}

.about {
  text-align: center;
}
.about__text {
  max-width: 70rem;
  margin: 0 auto 5rem;
  font-size: 1.8rem;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.services {
  text-align: center;
}
.services__intro {
  max-width: 60rem;
  margin: 0 auto 4rem;
  font-size: 1.8rem;
}

.contact {
  text-align: center;
}
.contact__intro {
  margin-bottom: 4rem;
}

/*# sourceMappingURL=main.css.map */
