@import "https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css";
@keyframes fadeIn {
  from {
    opacity: 0;
    background-color: #003f7f;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-1%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    -webkit-transform: translateY(-1%);
    -moz-transform: translateY(-1%);
    -ms-transform: translateY(-1%);
    -o-transform: translateY(-1%);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes scrollLeft {
  to {
    left: -30rem;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: transparent;
  color: #fdfff5;
  z-index: 20;
}
.navbar--fixed {
  background: linear-gradient(to bottom, rgba(0, 63, 127, 0.8), rgba(0, 63, 127, 0.2));
  animation: fadeIn 0.5 s ease-in-out;
}
.navbar__brand {
  height: 2rem;
  object-fit: contain;
  object-position: center;
}
.navbar__menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.navbar__menu a {
  color: #fdfff5;
  text-decoration: none;
  font-size: 1.2rem;
}
.navbar__item {
  font-size: large;
  cursor: pointer;
}
.navbar__item--active {
  border-bottom: 2px solid #fdfff5;
  padding-bottom: 4px;
}
.navbar__button {
  font-size: medium;
  border: 1px solid #fdfff5;
  padding: 12px 24px;
  border-radius: 8px;
  background: linear-gradient(to right, rgba(253, 255, 245, 0.2), rgba(253, 255, 245, 0));
  color: #fdfff5;
  cursor: pointer;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 25;
}
.navbar__hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fdfff5;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .navbar {
    background: rgba(0, 63, 127, 0.2);
  }
  .navbar__hamburger {
    display: flex;
  }
  .navbar__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    gap: 1rem;
    align-items: center;
    background: rgba(0, 63, 127, 0.2);
  }
  .navbar__menu.active {
    display: flex;
  }
  .navbar__menu a {
    color: #fdfff5;
    text-decoration: none;
    font-size: 1.2rem;
  }
  .navbar__button {
    display: none;
  }
}

.home {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #00a3e1, #003f7f);
  color: #fdfff5;
}
.home__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.home__grid {
  max-width: 55rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 20px;
  place-items: center;
}
.home__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home__text h3 {
  font-size: 1.125rem;
  letter-spacing: 2px;
}
.home__text h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-top: 8px;
}
.home__button {
  border-radius: 4px;
  font-size: 1.2rem;
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  border: 1px solid #f4c300;
  background: none;
  color: #fdfff5;
  cursor: pointer;
  transition: 0.3s;
}
.home__button:hover {
  transform: translateY(-4px);
  -webkit-transform: translateY();
  -moz-transform: translateY();
  -ms-transform: translateY();
  -o-transform: translateY();
}
.home__button a {
  color: white;
  text-decoration: none;
  padding: 16px 25px;
}
.home__button div {
  position: relative;
}
.home__button div div {
  padding: 16px 25px;
  background: #f4c300;
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.home__button div i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate();
  -moz-transform: translate();
  -ms-transform: translate();
  -o-transform: translate();
}
.home .home__image {
  animation: bounce 2s infinite;
  position: relative;
  width: 600px;
  height: 500px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.home__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5% 2%;
}
.home__footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}
.home__footer-socials a {
  color: #fdfff5;
  border: 2px solid #fdfff5;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  font-size: 1.5rem;
}
.home__corousel {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.home__corousel i {
  font-size: calc(0.5rem + 1.5vh);
  cursor: pointer;
  margin: 0 4px;
  padding: 0.8rem 1.3rem;
  border: solid #fdfff5 2px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}
.home__corousel i:hover {
  border: solid 2px #f4c300;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
@media (max-width: 1024px) {
  .home__grid {
    margin-top: 10%;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home__text {
    align-items: center;
  }
  .home__text h1 {
    font-size: 3.2rem;
  }
  .home__text h3 {
    font-size: 1rem;
  }
  .home .home__image {
    width: 400px;
    height: auto;
  }
  .home__corousel {
    display: none;
  }
}
@media (max-width: 768px) {
  .home {
    padding-top: 60px;
  }
  .home__text h1 {
    font-size: 2.4rem;
  }
  .home__text h3 {
    font-size: 0.9rem;
  }
  .home .home__image {
    width: 300px;
  }
  .home__footer {
    flex-direction: column;
    gap: 20px;
  }
  .home__button {
    font-size: 1rem;
  }
  .home__button span,
  .home__button div > div {
    padding: 12px 20px;
  }
  .home__button i {
    font-size: 1rem;
  }
}

.our-client {
  position: relative;
  background: #003f7f;
  text-align: center;
}
.our-client__background {
  background: linear-gradient(to bottom, rgba(253, 255, 245, 0.1), rgba(253, 255, 245, 0.6));
  padding: 4% 0 5%;
}
.our-client__header {
  width: fit-content;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our-client__text {
  color: #fdfff5;
  font-size: calc(1rem + 1vw);
  font-weight: bold;
  font-weight: bold;
}
.our-client__bar {
  align-self: end;
  width: 50%;
  background: #f4c300;
  height: 2px;
  margin-top: 4px;
}
.our-client__icon1 {
  position: absolute;
  top: 0;
  right: 35%;
  width: calc(10rem + 1vw);
}
.our-client__icon2 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 10%;
  width: calc(10rem + 1vw);
}
.our-client__icon3 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 10%;
  width: calc(15rem + 1vw);
}
.our-client__icon1, .our-client__icon2, .our-client__icon3 {
  will-change: transform;
  transition: transform 0.2s ease-out;
  pointer-events: none;
}

.client-list {
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  height: 7rem;
  margin-inline: auto;
  list-style: none;
  padding: 10px 0;
  margin-top: 16px;
}

.client-list {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 15rem;
  margin-inline: auto;
  list-style: none;
  padding: 10px 0;
  margin-top: 16px;
}
.client-list__item {
  position: absolute;
  top: 0;
  left: max(30rem * var(--item-count), 100%);
  width: 30rem;
  height: 12rem;
  background: #fdfff5;
  border-radius: 4px;
  animation: scrollLeft 20s linear infinite;
}
.client-list__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-inline: 2rem;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .our-client__text {
    font-size: 1.5rem;
  }
  .our-client__bar {
    width: 60%;
  }
  .our-client__icon1, .our-client__icon2, .our-client__icon3 {
    display: none;
  }
  .client-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    height: auto;
    white-space: normal;
    padding: 1rem;
  }
  .client-list__item {
    position: relative;
    width: 40%;
    height: 5rem;
    animation: none;
    background: #fdfff5;
    border-radius: 4px;
  }
}
@media (max-width: 600px) {
  .client-list__item {
    width: 80%;
  }
  .our-client__text {
    font-size: 1.25rem;
  }
}
.our-company {
  position: relative;
  background: linear-gradient(to bottom, #00a3e1, #003f7f);
  color: #fdfff5;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 6%;
}
.our-company .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-inline: 5%;
}
.our-company__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.our-company__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}
.our-company__header h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
.our-company__header .underline {
  width: 60%;
  height: 4px;
  background: #f4c300;
  margin-top: 8px;
  align-self: flex-end;
}
.our-company p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}
.our-company__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.our-company .image-container {
  width: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  overflow: hidden;
}
.our-company .stats {
  display: flex;
  gap: 1rem;
}
.our-company .stat {
  text-align: start;
  white-space: nowrap;
}
.our-company .stat h3 {
  font-size: 2rem;
  font-weight: bold;
}
.our-company .stat p {
  font-size: 1rem;
}
.our-company__icon1 {
  position: absolute;
  width: 200px;
  object-fit: cover;
  object-position: center;
  top: 20%;
  left: 45%;
}
.our-company__icon2 {
  position: absolute;
  width: 200px;
  object-fit: cover;
  object-position: center;
  bottom: 15%;
  left: 15%;
}
.our-company__icon3 {
  position: absolute;
  width: 200px;
  object-fit: cover;
  object-position: center;
  bottom: 0%;
  right: 5%;
}
.our-company__footer {
  position: absolute;
  bottom: 5%;
  left: 0%;
  transform: translate(50%, 50%);
  font-size: smaller;
  font-weight: normal;
}

@media (max-width: 1024px) {
  .our-company {
    height: auto;
    padding: 4rem 4%;
  }
  .our-company .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .our-company__text {
    align-items: center;
  }
  .our-company__header {
    align-items: center;
  }
  .our-company__header h2 {
    font-size: 2rem;
  }
  .our-company__header .underline {
    align-self: center;
  }
  .our-company p {
    font-size: 1.1rem;
  }
  .our-company .image-container {
    width: 100%;
    max-width: 400px;
  }
  .our-company .stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .our-company .stat {
    width: 45%;
    margin-bottom: 1rem;
  }
  .our-company .stat h3 {
    font-size: 1.5rem;
  }
  .our-company .stat p {
    font-size: 0.9rem;
  }
  .our-company__icon1, .our-company__icon2, .our-company__icon3 {
    display: none;
  }
  .our-company__footer {
    display: none;
    position: static;
    transform: none;
    margin-top: 2rem;
    text-align: center;
  }
}
.our-services {
  position: relative;
  overflow: hidden;
  background: rgba(0, 63, 127, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 6%;
}
.our-services .section-header {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  text-align: left;
  margin-bottom: 2rem;
}
.our-services .section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #003f7f;
}
.our-services .section-header .underline {
  align-self: end;
  width: 75%;
  height: 4px;
  background: #f4c300;
  margin-top: 8px;
}
.our-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}
.our-services .services-grid .service-card {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.our-services .services-grid .service-card:hover {
  transform: scale(1.05);
}
.our-services .services-grid .service-card .card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #00a3e1, #007fd4);
}
.our-services .services-grid .service-card .card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: #00a3e1;
  border-radius: 100% 100% 0 0;
}
.our-services .services-grid .service-card .card-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70% 30%;
  place-items: center;
  padding: 20px;
  text-align: center;
}
.our-services .services-grid .service-card .card-content img {
  width: 60%;
  object-fit: contain;
  object-position: center;
}
.our-services .services-grid .service-card .card-content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1rem;
  color: rgba(253, 255, 245, 0.9);
}
.our-services .services-grid .service-card.yellow .card-bg {
  background: linear-gradient(to bottom, #f4c300, #f4c300);
}
.our-services .services-grid .service-card.yellow .card-overlay {
  background: rgba(253, 255, 245, 0.3);
}
.our-services__icon1 {
  position: absolute;
  top: 30%;
  left: 7%;
  width: calc(12rem + 1vw);
}
@media (max-width: 1024px) {
  .our-services__icon1 {
    display: none;
  }
}
.our-services__icon2 {
  position: absolute;
  bottom: 15%;
  right: 7%;
  width: calc(12rem + 1vw);
}
@media (max-width: 1024px) {
  .our-services__icon2 {
    display: none;
  }
}

.vision-mission {
  position: relative;
  overflow: hidden;
  background: rgba(0, 63, 127, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 6% 5rem;
}
.vision-mission .container {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.vision-mission .container .section-header {
  margin-bottom: 2rem;
}
.vision-mission .container .section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #003f7f;
}
.vision-mission .container .section-header .underline {
  width: 30%;
  height: 4px;
  background: #f4c300;
  margin: 8px auto 0;
}
.vision-mission .container .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .vision-mission .container .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vision-mission .container .content-grid .card {
  padding: 1.5rem;
  min-height: 220px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #fdfff5;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}
.vision-mission .container .content-grid .card h3 {
  font-size: 1.5rem;
  font-weight: 800;
}
.vision-mission .container .content-grid .card p {
  margin-top: 1rem;
  font-weight: bolder;
  text-indent: 1rem;
}
.vision-mission .container .content-grid .card ol {
  text-align: start;
  margin-top: 1rem;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.vision-mission .container .content-grid .card.vision {
  background: linear-gradient(to bottom right, #00a3e1, rgba(0, 163, 225, 0.3));
}
.vision-mission .container .content-grid .card.mission {
  background: linear-gradient(to bottom right, #f4c300, rgba(244, 195, 0, 0.3));
}
.vision-mission__icon1 {
  position: absolute;
  bottom: 20%;
  left: 7%;
  width: calc(12rem + 1vw);
}
.vision-mission__icon2 {
  position: absolute;
  top: 30%;
  right: 7%;
  width: calc(12rem + 1vw);
}

@media (max-width: 1024px) {
  .vision-mission__icon1, .vision-mission__icon2 {
    display: none;
  }
}
.expertise {
  position: relative;
  background: linear-gradient(to bottom, #00a3e1, #003f7f);
  color: #fdfff5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 6%;
}
.expertise .container {
  width: 100%;
  max-width: 1280px;
  margin-bottom: 3rem;
  text-align: center;
}
.expertise .container .section-header {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}
.expertise .container .section-header h2 {
  font-size: 2rem;
  font-weight: bold;
}
.expertise .container .section-header .underline {
  width: 50%;
  height: 4px;
  background: #f4c300;
  margin: 8px auto 0;
}
.expertise .container .expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
  padding: 0 1rem;
}
.expertise .container .expertise-grid .card {
  position: relative;
  background: #fdfff5;
  color: black;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.expertise .container .expertise-grid .card::before {
  content: attr(data-title);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.expertise .container .expertise-grid .card__icon {
  position: absolute;
  top: 5%;
  left: 15%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  border-radius: 8px;
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1rem;
}
.expertise .container .expertise-grid .card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.expertise .container .expertise-grid .card .icons {
  display: flex;
  gap: 1rem;
}
.expertise .container .expertise-grid .card .icons img {
  object-fit: contain;
  object-position: center;
  width: 50px;
  height: 50px;
}
.expertise__icon1 {
  position: absolute;
  top: 10%;
  left: 20%;
  width: calc(15rem + 1vw);
}
.expertise__icon2 {
  position: absolute;
  top: 55%;
  right: 10%;
  width: calc(12rem + 1vw);
}
.expertise__icon3 {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 10%;
  width: calc(15rem + 1vw);
}

@media (max-width: 1024px) {
  .expertise {
    padding: 3rem 4%;
  }
  .expertise .container .section-header h2 {
    font-size: 1.75rem;
  }
  .expertise .container .section-header .underline {
    width: 60%;
  }
  .expertise .container .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0;
  }
  .expertise .container .expertise-grid .card {
    padding: 1.5rem;
  }
  .expertise .container .expertise-grid .card::before {
    font-size: 1rem;
  }
  .expertise .container .expertise-grid .card .icons img {
    width: 40px;
    height: 40px;
  }
  .expertise .container .expertise-grid .card__icon {
    width: 4rem;
    height: 4rem;
  }
  .expertise__icon1, .expertise__icon2, .expertise__icon3 {
    display: none;
  }
}
@media (max-width: 600px) {
  .expertise {
    padding: 2rem 2%;
  }
  .expertise .container .section-header h2 {
    font-size: 1.5rem;
  }
  .expertise .container .expertise-grid {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }
  .expertise .container .expertise-grid .card {
    padding: 1rem;
  }
  .expertise .container .expertise-grid .card .icons img {
    width: 32px;
    height: 32px;
  }
}
.portfolio {
  position: relative;
  background: rgba(0, 63, 127, 0.1);
  color: #fdfff5;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003f7f;
}
@media (max-width: 768px) {
  .portfolio {
    min-height: 100%;
    padding: 0 5%;
  }
}
.portfolio .portfolio-container {
  width: 100%;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.portfolio .portfolio-container .portfolio-header {
  width: fit-content;
}
.portfolio .portfolio-container .portfolio-header h2 {
  font-size: 2rem;
  font-weight: bold;
}
.portfolio .portfolio-container .portfolio-header .underline {
  width: 66%;
  height: 4px;
  background-color: #f4c300;
  margin-top: 0.5rem;
}
.portfolio .portfolio-swiper {
  width: 100%;
  overflow: visible;
  padding: 1rem 0;
}
.portfolio .portfolio-swiper .swiper-wrapper {
  display: flex;
}
.portfolio .portfolio-swiper .swiper-slide {
  display: flex;
  background-color: #fdfff5;
  color: black;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(253, 255, 245, 0.1);
  overflow: hidden;
  height: auto !important;
}
.portfolio .portfolio-swiper .portfolio-image {
  flex: 2;
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #0055b3;
  padding: 2rem 0;
}
.portfolio .portfolio-swiper .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .portfolio .portfolio-swiper .portfolio-image {
    display: none;
  }
}
.portfolio .portfolio-swiper .portfolio-content {
  flex: 3;
  padding: 2rem;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}
.portfolio .portfolio-swiper .portfolio-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.portfolio .portfolio-swiper .portfolio-content .date,
.portfolio .portfolio-swiper .portfolio-content .client,
.portfolio .portfolio-swiper .portfolio-content .description {
  margin-top: 0.75rem;
}
.portfolio .portfolio-swiper .portfolio-content .read-more {
  margin-top: 2rem;
  align-self: flex-end;
}
.portfolio .portfolio-swiper .swiper-button-next {
  right: -5%;
}
.portfolio .portfolio-swiper .swiper-button-prev {
  left: -5%;
}
.portfolio .portfolio-swiper .swiper-pagination {
  bottom: -10%;
}
.portfolio .portfolio-swiper .swiper-button-next,
.portfolio .portfolio-swiper .swiper-button-prev {
  color: #f4c300;
  top: 40%;
}
@media (max-width: 768px) {
  .portfolio .portfolio-swiper .swiper-button-next,
  .portfolio .portfolio-swiper .swiper-button-prev {
    display: none;
  }
}
.portfolio__button {
  border-radius: 4px;
  font-size: 1rem;
  display: inline-flex;
  margin-top: 24px;
  border: 1px solid #f4c300;
  background: none;
  color: #f4c300;
  cursor: pointer;
  transition: 0.3s;
}
.portfolio__button:hover {
  transform: translateY(-4px);
}
.portfolio__button span {
  padding: 12px 25px;
}
.portfolio__button span a {
  text-decoration: none;
  color: #f4c300;
}
.portfolio__button div {
  position: relative;
}
.portfolio__button div div {
  padding: 16px 25px;
  background: #f4c300;
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.portfolio__button div i {
  color: #fdfff5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.portfolio__icon1, .portfolio__icon2 {
  position: absolute;
  width: 200px;
  object-fit: cover;
}
.portfolio__icon1 {
  top: 15%;
  right: 10%;
}
.portfolio__icon2 {
  bottom: 10%;
  left: 10%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-container {
    padding: 40px 5%;
  }
  .portfolio .portfolio-container .portfolio-header {
    margin-inline: auto;
  }
  .portfolio .portfolio-container .portfolio-swiper .swiper-slide .portfolio-image {
    height: 180px;
  }
  .portfolio .portfolio-container .portfolio-swiper .swiper-slide .portfolio-content h3 {
    font-size: 1.25rem;
  }
  .portfolio__icon1, .portfolio__icon2 {
    display: none;
  }
}
.testimonials {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #00a6d3, #004179);
  color: #fdfff5;
  text-align: center;
  padding: 2.5rem 6rem 6rem;
}
.testimonials .testimonials-header {
  width: fit-content;
  margin: 0 auto;
}
.testimonials .testimonials-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
}
.testimonials .testimonials-header .underline {
  width: 66%;
  height: 4px;
  background-color: #f3c404;
  margin: 0.5rem auto 0;
}
.testimonials .testimonials-container {
  margin-top: 2rem;
}
.testimonials .testimonials-container .testimonial-card {
  background: linear-gradient(to bottom right, rgba(253, 255, 245, 0.5), rgba(253, 255, 245, 0.1));
  color: #fdfff5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-height: 14rem;
}
.testimonials .testimonials-container .testimonial-card .testimonial-text {
  font-weight: 600;
}
.testimonials .testimonials-container .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.testimonials .testimonials-container .testimonial-card .testimonial-author img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.testimonials .testimonials-container .testimonial-card .testimonial-author .name {
  font-weight: bold;
}
.testimonials .testimonials-container .testimonial-card .testimonial-author .role {
  font-size: 0.875rem;
}
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  position: absolute;
  color: #fdfff5;
}
.testimonials .swiper-button-next {
  right: 2%;
}
.testimonials .swiper-button-prev {
  left: 2%;
}
.testimonials__icon1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
}
.testimonials__icon2 {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 250px;
  z-index: 0;
}

@media (max-width: 1024px) {
  .testimonials {
    padding: 2.5rem 3rem 4rem;
  }
  .testimonials .testimonials-header h2 {
    font-size: 1.5rem;
  }
  .testimonials .testimonials-container .testimonial-card {
    padding: 1.25rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-text {
    font-size: 0.95rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-author img {
    width: 2rem;
    height: 2rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-author .name {
    font-size: 0.95rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-author .role {
    font-size: 0.75rem;
  }
  .testimonials .swiper-button-next,
  .testimonials .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
  }
  .testimonials .swiper-button-next {
    right: 1.5%;
  }
  .testimonials .swiper-button-prev {
    left: 1.5%;
  }
  .testimonials__icon1, .testimonials__icon2 {
    display: none;
  }
}
@media (max-width: 600px) {
  .testimonials {
    padding: 2rem 1.25rem 3rem;
  }
  .testimonials .testimonials-header h2 {
    font-size: 1.25rem;
  }
  .testimonials .testimonials-header .underline {
    width: 40%;
    height: 3px;
  }
  .testimonials .testimonials-container .testimonial-card {
    padding: 1rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-text {
    font-size: 0.875rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-author img {
    width: 2rem;
    height: 2rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-author .name {
    font-size: 0.9rem;
  }
  .testimonials .testimonials-container .testimonial-card .testimonial-author .role {
    font-size: 0.75rem;
  }
  .testimonials .swiper-button-next,
  .testimonials .swiper-button-prev {
    display: none;
  }
}
.contact {
  position: relative;
  background-color: #004179;
  color: #fdfff5;
}
.contact .contact-wrapper {
  background-color: rgba(253, 255, 245, 0.9);
  padding: 7rem 5rem 5rem;
}
.contact .contact-card {
  display: grid;
  grid-template-columns: 25% 45% 30%;
  align-items: center;
  padding: 1.5rem 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(to right, #008ccc, #00a6d3);
  color: #fdfff5;
}
.contact .contact-card .contact-image {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 1rem;
}
.contact .contact-card .contact-image img {
  position: absolute;
  width: 400px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.contact .contact-card .contact-info {
  justify-self: center;
}
.contact .contact-card .contact-info h2 {
  font-size: 1.875rem;
  font-weight: bold;
}
.contact .contact-card .contact-info p {
  margin-top: 0.5rem;
}
.contact .contact-card .contact-button {
  justify-self: end;
  border-radius: 4px;
  font-size: 1rem;
  display: inline-flex;
  width: fit-content;
  border: 1px solid #fdfff5;
  background: none;
  color: #fdfff5;
  cursor: pointer;
  transition: 0.3s;
}
.contact .contact-card .contact-button:hover {
  transform: translateY(-4px);
}
.contact .contact-card .contact-button span {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact .contact-card .contact-button span a {
  color: #fdfff5;
  text-decoration: none;
}
.contact .contact-card .contact-button div {
  position: relative;
}
.contact .contact-card .contact-button div div {
  padding: 10px 20px;
  background: rgba(253, 255, 245, 0.5);
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.contact .contact-card .contact-button div i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact__icon {
  position: absolute;
  width: 200px;
  object-fit: cover;
  object-position: center;
  bottom: 20%;
  right: 10%;
}

@media (max-width: 1024px) {
  .contact .contact-wrapper {
    padding: 5rem 3rem 4rem;
  }
  .contact .contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
  }
  .contact .contact-card .contact-image {
    height: 200px;
  }
  .contact .contact-card .contact-image img {
    width: 250px;
    top: 50%;
  }
  .contact .contact-card .contact-info h2 {
    font-size: 1.5rem;
  }
  .contact .contact-card .contact-info p {
    font-size: 0.95rem;
  }
  .contact .contact-card .contact-button {
    justify-self: center;
  }
  .contact .contact-card .contact-button span {
    padding: 10px 18px;
  }
  .contact__icon {
    display: none;
  }
}
@media (max-width: 600px) {
  .contact .contact-wrapper {
    padding: 4rem 1.25rem 3rem;
  }
  .contact .contact-card {
    padding: 1.5rem;
  }
  .contact .contact-card .contact-image {
    height: 160px;
  }
  .contact .contact-card .contact-image img {
    width: 200px;
  }
  .contact .contact-card .contact-info h2 {
    font-size: 1.25rem;
  }
  .contact .contact-card .contact-info p {
    font-size: 0.875rem;
  }
  .contact .contact-card .contact-button {
    font-size: 0.95rem;
  }
  .contact .contact-card .contact-button span {
    padding: 8px 16px;
  }
}
.footer {
  background: #003f7f;
  color: #fdfff5;
  text-align: center;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.footer .footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer .footer-container .footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 2rem;
}
.footer .footer-container .footer-content .footer-brand {
  max-width: 250px;
}
.footer .footer-container .footer-content .footer-brand .footer-logo {
  width: 150px;
  margin-bottom: 2rem;
}
.footer .footer-container .footer-content .footer-brand .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer .footer-container .footer-content .footer-brand .footer-social a {
  font-size: 1.5rem;
  color: #fdfff5;
  transition: color 0.3s ease;
}
.footer .footer-container .footer-content .footer-brand .footer-social a:hover {
  color: #f3c404;
}
.footer .footer-container .footer-content .footer-brand .footer-hashtag {
  margin-top: 1rem;
  font-weight: bold;
}
.footer .footer-container .footer-content .footer-contact h3,
.footer .footer-container .footer-content .footer-links h3 {
  color: #f3c404;
  font-weight: bold;
  margin-bottom: 2rem;
}
.footer .footer-container .footer-content .footer-contact p,
.footer .footer-container .footer-content .footer-contact ul,
.footer .footer-container .footer-content .footer-links p,
.footer .footer-container .footer-content .footer-links ul {
  margin-top: 0.5rem;
}
.footer .footer-container .footer-content .footer-contact ul,
.footer .footer-container .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.footer .footer-container .footer-content .footer-contact ul .link-column,
.footer .footer-container .footer-content .footer-links ul .link-column {
  display: flex;
  flex-direction: column;
}
.footer .footer-container .footer-content .footer-contact ul .link-column li,
.footer .footer-container .footer-content .footer-links ul .link-column li {
  margin: 0.5rem 0;
}
.footer .footer-container .footer-content .footer-contact ul .link-column li a,
.footer .footer-container .footer-content .footer-links ul .link-column li a {
  color: #fdfff5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-container .footer-content .footer-contact ul .link-column li a:hover,
.footer .footer-container .footer-content .footer-links ul .link-column li a:hover {
  color: #f3c404;
}
.footer .footer-container .footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  font-size: 0.875rem;
}
.footer .footer-deco {
  position: absolute;
}
.footer .footer-deco.rocket {
  left: 5%;
  bottom: -10px;
  width: 200px;
}
.footer .footer-deco.lightbulb {
  right: 5%;
  top: 10px;
  width: 150px;
}
.footer .footer-deco.house {
  right: 10%;
  bottom: 10px;
  width: 130px;
}

@media (max-width: 1024px) {
  .footer .footer-container .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer .footer-container .footer-content .footer-brand {
    align-items: center;
  }
  .footer .footer-container .footer-content .footer-brand .footer-logo {
    margin: 0 auto 1.5rem;
  }
  .footer .footer-container .footer-content .footer-brand .footer-social {
    justify-content: center;
  }
  .footer .footer-container .footer-content .footer-brand .footer-hashtag {
    font-size: 1rem;
  }
  .footer .footer-container .footer-content .footer-contact h3,
  .footer .footer-container .footer-content .footer-links h3 {
    font-size: 1.25rem;
  }
  .footer .footer-container .footer-content .footer-contact p,
  .footer .footer-container .footer-content .footer-contact ul,
  .footer .footer-container .footer-content .footer-links p,
  .footer .footer-container .footer-content .footer-links ul {
    text-align: center;
  }
  .footer .footer-container .footer-content .footer-contact ul,
  .footer .footer-container .footer-content .footer-links ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer .footer-container .footer-content .footer-contact ul .link-column,
  .footer .footer-container .footer-content .footer-links ul .link-column {
    align-items: center;
  }
  .footer .footer-deco {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 2rem 0;
  }
  .footer .footer-container {
    padding: 0 1rem;
  }
  .footer .footer-container .footer-content {
    gap: 1.5rem;
  }
  .footer .footer-container .footer-content .footer-brand .footer-logo {
    width: 120px;
  }
  .footer .footer-container .footer-content .footer-brand .footer-hashtag {
    font-size: 0.9rem;
  }
  .footer .footer-container .footer-content .footer-contact h3,
  .footer .footer-container .footer-content .footer-links h3 {
    font-size: 1.1rem;
  }
  .footer .footer-container .footer-content .footer-contact p,
  .footer .footer-container .footer-content .footer-contact a,
  .footer .footer-container .footer-content .footer-links p,
  .footer .footer-container .footer-content .footer-links a {
    font-size: 0.9rem;
  }
  .footer .footer-container .footer-copyright {
    font-size: 0.75rem;
  }
}
* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

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