@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(160deg, #0D497F 0%, #236498 38%, #DCECF7 72%, #FFFFFF 100%);
  color: #ffffff;
}

.site-header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 20;
  padding: 1.05em 0;
  background: #064b42;
}
.site-header .navbar {
  padding: 0;
}
.site-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.18em;
  font-size: 2.05em;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  transition: 0.35s ease;
  padding: 5px 15px;
  background-color: #fff;
}
.site-header .navbar-brand:hover {
  color: #9bea67;
  transform: translateY(-0.08em);
}
.site-header .navbar-brand img {
  max-width: 80px;
}
.site-header .brand-icon {
  width: 0.92em;
  height: 0.92em;
  border-radius: 50%;
  background: #9bea67;
  color: #064b42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78em;
}
.site-header .navbar-nav {
  gap: 1.25em;
}
.site-header .nav-link {
  text-transform: uppercase;
  color: #0D497F;
  font-size: 0.95em;
  font-weight: 600;
  padding: 0.4em 0;
  transition: 0.35s ease;
}
@media (max-width: 991px) {
  .site-header .nav-link {
    border-bottom: dotted 1px;
  }
}
.site-header .nav-link:hover, .site-header .nav-link.active {
  opacity: 0.8;
}
.site-header .dropdown-menu {
  border: 0;
  border-radius: 1em;
  padding: 0.65em;
  background: #fffaf1;
  box-shadow: 0 1em 2em rgba(0, 0, 0, 0.14);
}
.site-header .dropdown-item {
  border-radius: 0.7em;
  padding: 0.6em 0.9em;
  color: #064b42;
  font-weight: 600;
}
.site-header .dropdown-item:hover {
  background: #9bea67;
  color: #064b42;
}
.site-header .navbar-toggler {
  border: 0;
  padding: 0;
  width: 2.2em;
  height: 1.6em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .site-header .navbar-toggler {
    display: none;
  }
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .navbar-toggler span {
  width: 100%;
  height: 0.26em;
  background: #0D497F;
  border-radius: 2em;
  transition: 0.35s ease;
}

.btn-main,
.btn-light-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-width: 9.6em;
  padding: 0.9em 1.75em;
  border-radius: 1em;
  font-size: 0.82em;
  font-weight: 800;
  text-decoration: none;
  transition: 0.35s ease;
}

a.btn-main {
  text-decoration: none;
}

a.btn-light-custom {
  text-decoration: none;
}

.btn-main {
  background: #0D497F;
  color: #fffaf1;
}
.btn-main:hover {
  color: #fffaf1;
  transform: translateY(-0.25em);
  box-shadow: 0 1em 2em rgba(155, 234, 103, 0.25);
}

.btn-light-custom {
  background: #fffaf1;
  color: #064b42;
}
.btn-light-custom:hover {
  background: #9bea67;
  color: #064b42;
  transform: translateY(-0.25em);
}

.hero-section {
  min-height: 57em;
  padding: 4.8em 0 4.2em;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/project-7.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}
.hero-section .container {
  position: relative;
}

.hero-content {
  max-width: 55em;
  animation: fadeLeft 0.9s ease both;
}
.hero-content h1 {
  font-size: clamp(3em, 5.4vw, 2.45em);
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.28em;
  color: #fffaf1;
}
.hero-content h1 span {
  display: block;
}
.hero-content h1 strong {
  color: #102A43;
  font-weight: 900;
}
.hero-content p {
  max-width: 45em;
  font-size: 1.2em;
  line-height: 1.42;
  font-weight: 600;
  margin-bottom: 1.65em;
  color: #fffaf1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1em;
  margin-bottom: 2.6em;
}

.hero-social {
  position: absolute;
  top: 3em;
  right: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  z-index: 3;
}
.hero-social a {
  color: #102A43;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 700;
  transition: 0.35s ease;
}
.hero-social a:hover {
  color: #fffaf1;
  transform: translateX(0.35em);
}

.hero-image-wrap {
  position: relative;
  border-radius: 0.55em;
  overflow: hidden;
  max-width: 67.5em;
  margin-top: 1em;
}
.hero-image-wrap > img {
  width: 100%;
  height: 35.8em;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.6s ease;
}
.hero-image-wrap:hover > img {
  transform: scale(1.045);
}
.hero-image-wrap:hover .client-card {
  transform: translateY(-0.5em);
}

.client-card {
  position: absolute;
  left: 1.65em;
  bottom: 1.65em;
  width: 21.8em;
  background: #fffaf1;
  color: #064b42;
  border-radius: 0.8em;
  padding: 1.75em;
  transition: 0.45s ease;
}
.client-card .client-top {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1.3em;
}
.client-card .avatars {
  display: flex;
}
.client-card .avatars img {
  width: 2.2em;
  height: 2.2em;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 0.14em solid #fffaf1;
  margin-left: -0.55em;
}
.client-card .avatars img:first-child {
  margin-left: 0;
}
.client-card h3 {
  font-size: 2.35em;
  color: #29322d;
  line-height: 1;
  margin: 0;
  font-weight: 900;
}
.client-card span {
  display: block;
  text-transform: uppercase;
  color: #29322d;
  font-size: 0.7em;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 0.65em;
}
.client-card p {
  font-size: 0.94em;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
}

.brand-section {
  background: #011F51;
  padding: 1.35em 0;
}
.brand-section .brand-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.7em;
  color: #172140;
  font-size: 2em;
  font-weight: 800;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.brand-section .brand-list::-webkit-scrollbar {
  display: none;
}
.brand-section .brand-list span {
  display: inline-flex;
  align-items: center;
  transition: 0.35s ease;
}
.brand-section .brand-list span:hover {
  transform: translateY(-0.15em) scale(1.04);
  opacity: 0.75;
}

.fade-up {
  opacity: 0;
  transform: translateY(2.4em);
  transition: 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-2em);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 991.98px) {
  .site-header {
    position: fixed;
    background: rgba(6, 75, 66, 0.96);
    backdrop-filter: blur(0.6em);
  }
  .site-header .navbar-collapse {
    background: #0D497F;
    margin-top: 1.2em;
    padding: 1.2em;
    border-radius: 1em;
  }
  .site-header .navbar-collapse ul li {
    color: #fffaf1;
  }
  .site-header .navbar-collapse ul li .nav-link {
    color: #fffaf1;
  }
  .site-header .navbar-nav {
    gap: 0.35em;
  }
  .hero-section {
    padding-top: 1.5em;
  }
  .hero-social {
    position: static;
    flex-direction: row;
    margin-bottom: 1.5em;
  }
  .hero-content h1 {
    max-width: 100%;
  }
  .hero-image-wrap > img {
    height: 28em;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 3em;
  }
  .hero-content h1 {
    font-size: 3.25em;
  }
  .hero-content p {
    font-size: 1em;
  }
  .hero-actions {
    gap: 0.8em;
  }
  .btn-main,
  .btn-light-custom {
    width: 100%;
  }
  .hero-image-wrap {
    border-radius: 0.7em;
  }
  .hero-image-wrap > img {
    height: 24em;
  }
  .client-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    border-radius: 0;
  }
  .brand-section .brand-list {
    font-size: 1.45em;
  }
}
@media (max-width: 420px) {
  .hero-content h1 {
    font-size: 2em;
  }
  .hero-image-wrap > img {
    height: 20em;
  }
  .client-card {
    padding: 1.25em;
  }
}
.about-section {
  background: linear-gradient(160deg, #0D497F 0%, #236498 38%, #DCECF7 72%, #FFFFFF 100%);
  padding: 5.8em 0;
  color: #27302c;
  overflow: hidden;
}
.about-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #061E52;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.09em;
  border-radius: 2em;
  padding: 0.25em 1.25em;
  margin-bottom: 1.3em;
}
.about-section h2 {
  font-size: clamp(3.2em, 4.8vw, 3.15em);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 0.45em;
  color: #fffaf1;
  font-weight: 600;
}
.about-section h2 span,
.about-section h2 strong {
  display: block;
}
.about-section h2 strong {
  color: #92e36b;
  font-weight: inherit;
}
.about-section p {
  font-size: 1.02em;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  max-width: 39em;
  color: #fffaf1;
  margin-bottom: 15px;
}

.about-top {
  margin-bottom: 1em;
}

.about-content {
  padding-right: 2em;
}

.about-stats {
  display: flex;
  gap: 1.4em;
  margin-top: 4em;
}

.stat-card {
  width: auto;
  min-height: 8em;
  background: #061E52;
  border-radius: 0 1em 1em 0;
  border-left: 0.22em solid #D8E2EE;
  padding: 1.2em 1.25em;
  transition: 0.4s ease;
}
.stat-card h3 {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.08em;
  font-size: 2.6em;
  line-height: 0.9;
  font-weight: 700;
  margin: 0 0 0.28em;
  color: #fffaf1;
}
@media (max-width: 420px) {
  .stat-card h3 {
    font-size: 2em;
  }
}
.stat-card h3 span {
  font-size: 0.52em;
  line-height: 1;
  margin-top: 0.12em;
}
.stat-card small {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.62em;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-left: 0.4em;
  color: #27302c;
}
.stat-card p {
  font-size: 1.1em;
  line-height: 1.35;
  margin-top: 0.65em;
}
.stat-card:hover {
  transform: translateY(-0.5em);
  box-shadow: 0 1.1em 2em rgba(6, 75, 66, 0.16);
}

.about-image {
  overflow: hidden;
  border-radius: 1.05em;
  height: 27em;
}
.about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}
.about-image:hover img {
  transform: scale(1.07);
}

.about-image-large {
  height: 32em;
}

.about-content-bottom {
  padding-left: 2em;
  padding-right: 0;
}
.about-content-bottom h2 {
  max-width: 8.8em;
  margin-bottom: 0.75em;
}
.about-content-bottom p {
  max-width: 44em;
  margin-bottom: 3em;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #92e36b;
  color: #064b42;
  min-width: 8.2em;
  padding: 0.78em 1.55em;
  border-radius: 3em;
  font-size: 0.82em;
  font-weight: 800;
  text-decoration: none;
  transition: 0.35s ease;
}
.btn-about:hover {
  color: #064b42;
  transform: translateY(-0.25em);
  box-shadow: 0 1em 1.8em rgba(146, 227, 107, 0.35);
}

.fade-left,
.fade-right {
  opacity: 0;
  transition: 0.8s ease;
}

.fade-left {
  transform: translateX(-2.5em);
}

.fade-right {
  transform: translateX(2.5em);
}

.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 4.5em 0;
  }
  .about-section h2 {
    font-size: 4em;
  }
  .about-content,
  .about-content-bottom {
    padding: 0;
  }
  .about-top {
    margin-bottom: 3.5em;
  }
  .about-content-bottom h2 {
    max-width: 100%;
  }
  .about-image,
  .about-image-large {
    height: 25em;
  }
}
@media (max-width: 767.98px) {
  .about-section {
    padding: 1.5em 0;
  }
  .about-section h2 {
    font-size: 3.25em;
  }
  .about-stats {
    flex-direction: column;
    gap: 1em;
    margin-top: 2.5em;
  }
  .stat-card {
    width: 100%;
  }
  .about-image,
  .about-image-large {
    height: 22em;
    margin-top: 20px;
  }
  .about-bottom {
    flex-direction: column-reverse;
  }
}
@media (max-width: 420px) {
  .about-section h2 {
    font-size: 2em;
  }
  .about-section p {
    font-size: 0.95em;
  }
  .about-image,
  .about-image-large {
    height: 18em;
  }
}
.choose-section {
  background-color: #fffaf1;
  color: #0B1220;
  padding: 6.2em 0 5.4em;
  overflow: hidden;
}
.choose-section .choose-heading {
  text-align: center;
  max-width: 52em;
  margin: 0 auto 3.2em;
}
.choose-section .choose-heading .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #061E52;
  color: #fffaf1;
  text-transform: uppercase;
  font-size: 0.68em;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-radius: 2em;
  padding: 0.25em 1.2em;
  margin-bottom: 1.4em;
}
.choose-section .choose-heading h2 {
  font-size: clamp(3.2em, 5vw, 3.4em);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.choose-section .choose-heading h2 strong,
.choose-section .choose-heading h2 span {
  display: block;
  font-weight: 700;
}
.choose-section .choose-heading h2 strong {
  color: #92e36b;
}
.choose-section .choose-heading p {
  font-size: 0.98em;
  line-height: 1.45;
  font-weight: 700;
  max-width: 55em;
  margin: 0 auto;
}

.choose-video {
  position: relative;
  max-width: 67.5em;
  height: 39em;
  margin: 0 auto 2.8em;
  border-radius: 0.9em;
  overflow: hidden;
}
.choose-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}
.choose-video:hover img {
  transform: scale(1.05);
  filter: brightness(0.86);
}
.choose-video:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.18);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5em;
  height: 5em;
  border: 0.22em solid #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.35s ease;
  backdrop-filter: blur(0.2em);
}
.play-btn span {
  width: 0;
  height: 0;
  border-top: 0.8em solid transparent;
  border-bottom: 0.8em solid transparent;
  border-left: 1.25em solid #ffffff;
  margin-left: 0.3em;
}

.choose-cards {
  max-width: 67.5em;
  margin: 0 auto;
}

.choose-card {
  height: 100%;
  background: #f0fae8;
  color: #27302c;
  border-radius: 1em;
  padding: 1.75em 1.75em 1.85em;
  transition: 0.4s ease;
}
.choose-card .choose-icon {
  width: 4.2em;
  height: 4.2em;
  border-radius: 50%;
  background: #92e36b;
  color: #064b42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55em;
  font-weight: 900;
  margin-bottom: 0.9em;
  transition: 0.4s ease;
}
.choose-card h3 {
  font-size: 1.75em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.45em;
  color: #27302c;
  font-weight: 800;
  text-align: center;
}
.choose-card p {
  font-size: 0.95em;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.choose-card:hover {
  transform: translateY(-0.65em);
  box-shadow: 0 1.25em 2.2em rgba(0, 0, 0, 0.2);
}
.choose-card:hover .choose-icon {
  transform: rotate(-8deg) scale(1.08);
}

.fade-up {
  opacity: 0;
  transform: translateY(2.2em);
  transition: 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .choose-section {
    padding: 3.8em 0 4.5em;
  }
  .choose-video {
    height: 30em;
  }
}
@media (max-width: 767.98px) {
  .choose-section {
    padding: 3.2em 0 3.8em;
  }
  .choose-section .choose-heading {
    margin-bottom: 2.4em;
  }
  .choose-section .choose-heading h2 {
    font-size: 3.2em;
  }
  .choose-section .choose-heading p {
    font-size: 0.95em;
  }
  .choose-video {
    height: 23em;
    margin-bottom: 2em;
  }
  .play-btn {
    width: 4em;
    height: 4em;
  }
  .choose-card {
    padding: 1.45em;
  }
}
@media (max-width: 420px) {
  .choose-section .choose-heading h2 {
    font-size: 2em;
  }
  .choose-video {
    height: 18em;
  }
  .choose-card h3 {
    font-size: 1.3em;
  }
}
.video-modal .modal-dialog {
  margin: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.video-modal .modal-content {
  background: rgba(0, 0, 0, 0.96);
  border: 0;
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal .video-frame {
  width: 100%;
  height: 100vh;
  position: relative;
}
.video-modal .video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal .btn-close-video {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 1.8em;
  height: 1.8em;
  border: 0;
  border-radius: 50%;
  background: #92e36b;
  color: #064b42;
  font-size: 1.8em;
  line-height: 1;
  font-weight: 800;
  z-index: 10;
  transition: 0.35s ease;
  cursor: pointer;
}
.video-modal .btn-close-video:hover {
  transform: rotate(90deg) scale(1.08);
}

.services-section {
  background: #fbf8ec;
  color: #27302c;
  padding: 4.8em 0;
  overflow: hidden;
}
.services-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #064b42;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 2em;
  padding: 0.24em 1.15em;
  margin-bottom: 1.65em;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 4em;
  align-items: center;
  margin-bottom: 2.8em;
}

.services-title h2 {
  font-size: clamp(3.5em, 5.6vw, 3.7em);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 0;
  font-weight: 600;
}
.services-title h2 strong,
.services-title h2 span {
  display: block;
  font-weight: inherit;
}
.services-title h2 strong {
  color: #92e36b;
}

.services-intro {
  max-width: 40em;
}
.services-intro p {
  font-size: 1.28em;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 1.4em;
}

.btn-service-main,
.btn-service-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  border-radius: 3em;
  text-decoration: none;
  font-weight: 800;
  transition: 0.35s ease;
}

.btn-service-main {
  background: #92e36b;
  color: #064b42;
  padding: 0.9em 1.8em;
  font-size: 1em;
}
.btn-service-main:hover {
  color: #064b42;
  transform: translateY(-0.25em);
  box-shadow: 0 1em 1.8em rgba(146, 227, 107, 0.35);
}

.services-slider {
  position: relative;
}
.services-slider .slick-list {
  overflow: hidden;
  border-radius: 1.45em;
}
.services-slider .slick-slide > div {
  height: 100%;
}
.services-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 3.2em;
  height: 3.2em;
  border: 0;
  border-radius: 50%;
  background: #064b42;
  color: transparent;
  z-index: 4;
  transform: translateY(-50%);
  transition: 0.35s ease;
}
.services-slider .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65em;
  height: 0.65em;
  border-top: 0.16em solid #92e36b;
  border-right: 0.16em solid #92e36b;
  transition: 0.35s ease;
}
.services-slider .slick-arrow:hover {
  background: #92e36b;
  transform: translateY(-50%) scale(1.08);
}
.services-slider .slick-arrow:hover::before {
  border-color: #064b42;
}
.services-slider .slick-prev {
  left: -1.6em;
}
.services-slider .slick-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.services-slider .slick-next {
  right: -1.6em;
}
.services-slider .slick-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.service-card {
  min-height: 30em;
  border-radius: 1.45em;
  padding: 3.25em 3.4em;
  display: grid;
  grid-template-columns: 0.25fr 1.15fr 1.35fr;
  gap: 2.35em;
  align-items: center;
  transition: 0.45s ease;
}
.service-card.bg-green {
  background: #b4ea91;
}
.service-card.bg-light {
  background: #f0fae8;
  border: solid 1px #eee;
}
.service-card:hover {
  transform: translateY(-0.35em);
}

.service-number {
  align-self: start;
  font-size: 3.8em;
  font-weight: 600;
  line-height: 1;
  color: #27302c;
}

.service-image {
  height: 20.8em;
  border-radius: 0.75em;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.65s ease;
}
.service-image:hover img {
  transform: scale(1.07);
}

.service-content h3 {
  font-size: 2.45em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #27302c;
  margin-bottom: 0.6em;
  font-weight: 600;
}
.service-content p {
  font-size: 1.2em;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 2.2em;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em 0.85em;
  margin-bottom: 2.05em;
}
.service-tags a {
  min-width: 9.8em;
  text-align: center;
  border: 0.08em solid #27302c;
  color: #27302c;
  border-radius: 3em;
  padding: 0.22em 0.9em;
  font-size: 1em;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.35s ease;
}
.service-tags a:hover {
  background: #064b42;
  color: #92e36b;
  transform: translateY(-0.18em);
}

.btn-service-card {
  background: #064b42;
  color: #92e36b;
  padding: 0.72em 1.65em;
  font-size: 0.95em;
}
.btn-service-card:hover {
  background: #27302c;
  color: #ffffff;
  transform: translateY(-0.25em);
}

.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: 0.8s ease;
}

.fade-up {
  transform: translateY(2.2em);
}

.fade-left {
  transform: translateX(-2.4em);
}

.fade-right {
  transform: translateX(2.4em);
}

.fade-up.show,
.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 1199.98px) {
  .service-card {
    grid-template-columns: 0.25fr 1fr 1.15fr;
    gap: 1.7em;
    padding: 2.7em;
  }
  .service-content h3 {
    font-size: 3em;
  }
  .service-content p {
    font-size: 1.05em;
  }
}
@media (max-width: 991.98px) {
  .services-head {
    grid-template-columns: 1fr;
    gap: 1.8em;
  }
  .services-intro {
    max-width: 100%;
  }
  .service-card {
    grid-template-columns: 1fr;
    gap: 1.4em;
  }
  .service-number {
    align-self: auto;
  }
  .service-image {
    height: 24em;
  }
  .services-slider .slick-prev {
    left: 1em;
  }
  .services-slider .slick-next {
    right: 1em;
  }
  .services-slider .slick-arrow {
    top: auto;
    bottom: 1em;
    transform: none;
  }
  .services-slider .slick-arrow:hover {
    transform: scale(1.08);
  }
}
@media (max-width: 767.98px) {
  .services-section {
    padding: 3.6em 0;
  }
  .services-title h2 {
    font-size: 3.35em;
  }
  .services-intro p {
    font-size: 1em;
  }
  .service-card {
    padding: 1.5em;
    min-height: auto;
  }
  .service-number {
    font-size: 3em;
  }
  .service-image {
    height: 18em;
  }
  .service-content h3 {
    font-size: 2.55em;
  }
  .service-content p {
    font-size: 0.98em;
    margin-bottom: 1.5em;
  }
  .service-tags {
    margin-bottom: 5em;
  }
  .service-tags a {
    min-width: auto;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .services-title h2 {
    font-size: 2.75em;
  }
  .service-image {
    height: 15em;
  }
  .service-content h3 {
    font-size: 2.2em;
  }
}
.team-section {
  background: linear-gradient(160deg, #0D497F 0%, #236498 38%, #DCECF7 72%, #FFFFFF 100%);
  color: #0B1220;
  padding: 6.2em 0 5em;
  overflow: hidden;
}
.team-section .team-heading {
  text-align: center;
  max-width: 59em;
  margin: 0 auto 2.8em;
}
.team-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbf8ec;
  color: #173b37;
  text-transform: uppercase;
  font-size: 0.68em;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-radius: 2em;
  padding: 0.25em 1.2em;
  margin-bottom: 1.35em;
}
.team-section h2 {
  font-size: clamp(3.2em, 5vw, 4.35em);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 0.55em;
  font-weight: 600;
}
.team-section h2 strong,
.team-section h2 span {
  display: block;
  font-weight: inherit;
}
.team-section h2 strong {
  color: #fffaf1;
}
@media (max-width: 420px) {
  .team-section h2 strong {
    font-size: 0.8em;
  }
}
.team-section .team-heading p {
  font-size: 1em;
  line-height: 1.45;
  font-weight: 700;
  max-width: 56em;
  margin: 0 auto;
}

.team-grid {
  max-width: 68em;
  margin: 0 auto;
}

.team-card {
  background: #f0fae8;
  border-radius: 1em;
  padding: 0.85em;
  color: #27302c;
  height: 100%;
  transition: 0.45s ease;
  margin-bottom: 20px;
}
.team-card:hover {
  transform: translateY(-0.65em);
  box-shadow: 0 1.35em 2.5em rgba(0, 0, 0, 0.22);
}
.team-card:hover .team-image img {
  transform: scale(1.08);
}
.team-card:hover .team-info h3 {
  color: #064b42;
}

.team-image {
  height: 20.5em;
  border-radius: 0.72em;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}

.team-info {
  text-align: center;
  padding: 1.35em 0.5em 1em;
  min-height: 80px;
}
.team-info h3 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.22em;
  color: #27302c;
  transition: 0.35s ease;
}
.team-info p {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0.9em;
}

.team-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
}
.team-social a {
  width: 1.45em;
  height: 1.45em;
  border-radius: 50%;
  background: #27302c;
  color: #f0fae8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: 0.35s ease;
}
.team-social a:hover {
  background: #92e36b;
  color: #064b42;
  transform: translateY(-0.25em) rotate(-6deg);
}

@media (max-width: 991.98px) {
  .team-section {
    padding: 3.5em 0 4.2em;
  }
  .team-section h2 {
    font-size: 4em;
  }
  .team-image {
    height: 19em;
  }
}
@media (max-width: 767.98px) {
  .team-section {
    padding: 3em 0 3.8em;
  }
  .team-section h2 {
    font-size: 3.15em;
  }
  .team-section .team-heading p {
    font-size: 0.95em;
  }
  .team-image {
    height: 22em;
  }
  .team-info h3 {
    font-size: 1.2em;
  }
}
@media (max-width: 420px) {
  .team-section h2 {
    font-size: 2.65em;
  }
  .team-image {
    height: 18em;
  }
}
.contact-section {
  background: linear-gradient(160deg, #0D497F 0%, #236498 38%, #DCECF7 72%, #FFFFFF 100%);
  color: #27302c;
  padding: 6.2em 0 4.5em;
  overflow: hidden;
}

.contact-form label {
  display: block;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.45em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0.08em solid #92e36b;
  border-radius: 0.75em;
  background: transparent;
  padding: 0.85em 1em;
  font-size: 1em;
  color: #27302c;
  outline: none;
  transition: 0.35s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #064b42;
  box-shadow: 0 0 0 0.18em rgba(146, 227, 107, 0.25);
}
.contact-form textarea {
  min-height: 7em;
  resize: vertical;
}
.contact-form .check-label {
  display: flex;
  align-items: center;
  gap: 0.45em;
  margin: 0.4em 0 0.6em;
  cursor: pointer;
}
.contact-form .check-label input {
  width: auto;
  padding: 0;
}
.contact-form .check-label span {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.contact-form button {
  width: 100%;
  border: 0;
  background: #92e36b;
  color: #064b42;
  border-radius: 3em;
  padding: 0.9em 1.5em;
  font-size: 1em;
  font-weight: 800;
  transition: 0.35s ease;
}
.contact-form button:hover {
  transform: translateY(-0.25em);
  box-shadow: 0 1em 1.8em rgba(146, 227, 107, 0.35);
}

.contact-content {
  padding-left: 1.8em;
}
.contact-content .section-label {
  display: inline-flex;
  background: #061E52;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 2em;
  padding: 0.35em 1.15em;
  margin-bottom: 0.8em;
}
.contact-content h2 {
  font-size: clamp(3.2em, 5vw, 2.4em);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 0.25em;
  font-weight: 600;
}
.contact-content h2 strong,
.contact-content h2 span {
  display: block;
  font-weight: inherit;
}
.contact-content h2 strong {
  color: #92e36b;
}
.contact-content p {
  max-width: 43em;
  font-size: 1.05em;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 1.7em;
}
.contact-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-content ul li {
  position: relative;
  font-size: 1.05em;
  margin-bottom: 1em;
  padding-left: 1.6em;
}
.contact-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #92e36b;
  font-weight: 900;
}

.footer-section {
  background: #061E52;
  color: #ffffff;
  padding: 0 0 0;
  position:relative;
}

.footer-left h2 {
  font-size: clamp(2.2em, 5vw, 1.3em);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 1.3em;
  font-weight: 600;
}
.footer-left h2 span {
  display: block;
  color: #92e36b;
}
.footer-left h4 {
  text-transform: uppercase;
  font-size: 2em;
  margin-bottom: 0.7em;
}

.footer-social {
  display: flex;
  gap: 2.2em;
}
.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25em;
  font-weight: 900;
  transition: 0.35s ease;
}
.footer-social a:hover {
  color: #92e36b;
  transform: translateY(-0.25em);
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  font-size: 4em;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 0.45em;
  transition: 0.35s ease;
}
.footer-logo span {
  width: 0.92em;
  height: 0.92em;
  border-radius: 50%;
  background: #92e36b;
  color: #064b42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72em;
}
.footer-logo:hover {
  color: #92e36b;
}

.footer-right p {
  font-size: 0.92em;
  line-height: 1.55;
  font-weight: 700;
  margin-bottom: 2.1em;
}
.footer-right p strong {
  display: block;
  margin-bottom: 1em;
}

.footer-email {
  display: inline-flex;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92em;
  font-weight: 800;
  margin-bottom: 2.2em;
  transition: 0.35s ease;
}
.footer-email:hover {
  color: #92e36b;
}

.footer-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  transition: 0.35s ease;
}
.footer-menu a:hover, .footer-menu a.active {
  color: #92e36b;
}

.footer-bottom {
  padding: 3em 0; 
  align-items: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.92em;
  font-weight: 700;
}

.back-top {
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  background: #fffaf1;
  color: #020202;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  font-weight: 900;
  text-decoration: none;
  transition: 0.35s ease;
}
.back-top:hover {
  color: #020202;
  transform: translateY(-0.3em);
}

@media (max-width: 991.98px) {
  .contact-content {
    padding-left: 0;
  }
  .footer-right {
    text-align: left;
  }
  .footer-menu {
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .contact-section {
    padding: 3em 0;
  }
  .contact-content h2,
  .footer-left h2 {
    font-size: 3.1em;
  }
  .footer-logo {
    font-size: 3.2em;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3em;
  }
}
a.footer-logo {
  text-decoration: none;
}

.about-page-section {
  background: #fbf8ec;
  color: #27302c;
  padding: 4.5em 0 5em;
  overflow: hidden;
}
.about-page-section .page-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.4em;
  line-height: 1;
  font-weight: 600;
}
.about-page-section .section-label {
  display: inline-flex;
  background: #064b42;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.68em;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 2em;
  padding: 0.22em 1.2em;
  margin-bottom: 1.3em;
}

.about-page-row {
  margin-bottom: 4.2em;
}

.about-page-content h2 {
  font-size: clamp(3.1em, 4.8vw, 3em);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 0.45em;
  font-weight: 600;
}
.about-page-content h2 strong {
  display: block;
  color: #92e36b;
  font-weight: inherit;
}
.about-page-content p {
  max-width: 41em;
  font-size: 0.98em;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
}

.about-page-image {
  height: 25em;
  border-radius: 1em;
  overflow: hidden;
}
.about-page-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}
.about-page-image:hover img {
  transform: scale(1.07);
}

.about-page-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25em;
}

.stat-box {
  background: #b4ea91;
  border-left: 0.22em solid #27302c;
  border-radius: 0 1em 1em 0;
  padding: 1.15em 1.3em;
  min-height: 8.1em;
  transition: 0.4s ease;
}
.stat-box h3 {
  display: inline-block;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 3em;
  line-height: 1;
  margin: 0 0.25em 0.25em 0;
}
.stat-box span {
  display: inline-block;
  max-width: 8em;
  text-transform: uppercase;
  font-size: 0.66em;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.stat-box p {
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
}
.stat-box:hover {
  transform: translateY(-0.5em);
  box-shadow: 0 1em 2em rgba(6, 75, 66, 0.14);
}

@media (max-width: 991.98px) {
  .about-page-section {
    padding: 3.8em 0 4.2em;
  }
  .about-page-section .page-title {
    font-size: 3.8em;
  }
  .about-page-row {
    margin-bottom: 3.2em;
  }
  .about-page-image {
    height: 24em;
  }
  .about-page-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .about-page-section {
    padding: 3em 0 3.6em;
  }
  .about-page-section .page-title {
    font-size: 3.2em;
  }
  .about-page-content h2 {
    font-size: 3em;
  }
  .about-page-image {
    height: 20em;
  }
  .about-page-stats {
    grid-template-columns: 1fr;
  }
}
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fffaf1;
  backdrop-filter: blur(0.8em);
  transition: 0.35s ease;
  padding: 0;
}

.achievement-section {
  background: #fbf8ec;
  color: #27302c;
  padding: 4.5em 0;
  overflow: hidden;
}
.achievement-section .section-label {
  display: inline-flex;
  background: #064b42;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 2em;
  padding: 0.25em 1.2em;
  margin-bottom: 1.3em;
}

.achievement-image {
  height: 35em;
  border-radius: 1em;
  overflow: hidden;
}
.achievement-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}
.achievement-image:hover img {
  transform: scale(1.07);
}

.achievement-content h2 {
  font-size: clamp(3.4em, 5.1vw, 2.4em);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 0.25em;
  font-weight: 600;
  color: #fff;
}
.achievement-content h2 strong {
  display: block;
  color: #92e36b;
  font-weight: inherit;
}
.achievement-content > p {
  font-size: 1.05em;
  line-height: 1.45;
  font-weight: 500;
  max-width: 50em;
  margin-bottom: 1.8em;
  color: #fff;
}

.metrics-box {
  border-top: 0.08em solid #b4ea91;
  padding-top: 1.6em;
  margin-bottom: 2.4em;
}
.metrics-box h3 {
  font-size: 2em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.8em;
  color: #fff;
}

.metric-item .metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 0.35em;
  color: #fff;
}
.metric-item .metric-head span,
.metric-item .metric-head strong {
  font-size: 1em;
  line-height: 1;
  text-transform: uppercase;
}

.metric-bar {
  width: 100%;
  height: 0.48em;
  background: #8a8f89;
  overflow: hidden;
}
.metric-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: #92e36b;
  transition: width 1.2s ease;
}

.achievement-brand-slider {
  background: #b4ea91;
  border-radius: 0.9em;
  padding: 1.05em 1em;
  overflow: hidden;
}
.achievement-brand-slider .brand-slider .slick-track {
  display: flex;
  align-items: center;
}
.achievement-brand-slider .brand-slider .slick-slide {
  padding: 0 0.7em;
}
.achievement-brand-slider .brand-slider span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #263049;
  font-size: 1.4em;
  font-weight: 900;
  white-space: nowrap;
  transition: 0.35s ease;
}
.achievement-brand-slider .brand-slider span:hover {
  transform: scale(1.05);
  opacity: 0.75;
}

@media (max-width: 991.98px) {
  .achievement-section {
    padding: 3.8em 0;
  }
  .achievement-image {
    height: 28em;
  }
}
@media (max-width: 767.98px) {
  .achievement-section {
    padding: 3.2em 0;
  }
  .achievement-image {
    height: 22em;
  }
  .achievement-content h2 {
    font-size: 3.1em;
  }
  .metrics-box h3 {
    font-size: 2.35em;
  }
  .achievement-brand-slider .brand-slider span {
    font-size: 1.45em;
  }
}
.bg-green {
  background: #064b42;
}

.font-white {
  color: #fff;
}

.blog-section {
  background: #fffaf1;
  color: #ffffff;
  padding: 6.2em 0 5em;
  overflow: hidden;
}

.blog-heading {
  max-width: 72em;
  margin-bottom: 2.8em;
}
.blog-heading h2 {
  font-size: clamp(3.4em, 5.4vw, 2.4em);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 0.35em;
  font-weight: 700;
  color: #0B1220;
}
.blog-heading h2 span {
  display: block;
}
.blog-heading h2 strong {
  color: #0B1220;
  font-weight: inherit;
}
.blog-heading p {
  font-size: 1.05em;
  line-height: 1.45;
  font-weight: 700;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 1fr;
  grid-template-rows: 18.5em 18.5em;
  gap: 1.45em;
}

.blog-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75em;
  color: #ffffff;
  text-decoration: none;
  min-height: 100%;
  transition: 0.45s ease;
}
.blog-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.15), transparent);
  z-index: 1;
}
.blog-card:hover {
  transform: translateY(-0.45em);
}
.blog-card:hover img {
  transform: scale(1.08);
}

.blog-large {
  grid-column: 1/3;
  grid-row: 1/2;
}

.blog-side-top {
  grid-column: 3/4;
  grid-row: 1/2;
}

.blog-small {
  grid-row: 2/3;
}

.blog-side-bottom {
  grid-column: 3/4;
  grid-row: 2/3;
}

.blog-overlay {
  position: absolute;
  left: 1.25em;
  right: 1.25em;
  bottom: 1.25em;
  z-index: 2;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-bottom: 0.6em;
}
.blog-meta span {
  font-size: 0.78em;
  font-weight: 800;
}

.blog-card h3 {
  font-size: 1.3em;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}

.blog-small h3 {
  font-size: 1.3em;
}
.blog-small .blog-overlay {
  left: 0.9em;
  right: 0.9em;
  bottom: 0.9em;
}
.blog-small .blog-meta {
  gap: 0.45em;
}
.blog-small .blog-meta span {
  font-size: 0.68em;
}

@media (max-width: 991.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .blog-card,
  .blog-large,
  .blog-side-top,
  .blog-side-bottom,
  .blog-small {
    grid-column: auto;
    grid-row: auto;
    height: 21em;
  }
  .blog-large {
    grid-column: span 2;
  }
}
@media (max-width: 767.98px) {
  .blog-section {
    padding: 3.5em 0;
  }
  .blog-heading h2 {
    font-size: 2em;
  }
  .blog-heading p {
    font-size: 0.95em;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .blog-card,
  .blog-large {
    grid-column: auto;
    height: 20em;
  }
  .blog-card h3 {
    font-size: 1.5em;
  }
  .blog-small h3 {
    font-size: 1.75em;
  }
}
.portfolio-detail-section {
  background: #fbf8ec;
  color: #27302c;
  padding: 4.5em 0 5em;
  overflow: hidden;
}
.portfolio-detail-section .section-label {
  display: inline-flex;
  background: #064b42;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 2em;
  padding: 0.25em 1.2em;
  margin-bottom: 1.2em;
}

.portfolio-detail-heading {
  max-width: 62em;
  margin-bottom: 2.8em;
}
.portfolio-detail-heading h1 {
  font-size: clamp(3.4em, 5.4vw, 3.7em);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 0.25em;
  font-weight: 600;
}
.portfolio-detail-heading h1 strong {
  display: block;
  color: #92e36b;
  font-weight: inherit;
}
.portfolio-detail-heading p {
  max-width: 48em;
  font-size: 1.08em;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
}

.portfolio-hero-image {
  height: 35em;
  border-radius: 1em;
  overflow: hidden;
  margin-bottom: 3.5em;
}
.portfolio-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}
.portfolio-hero-image:hover img {
  transform: scale(1.06);
}

.portfolio-main h2 {
  font-size: 2.1em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.35em;
  font-weight: 600;
}
.portfolio-main p {
  font-size: 1.02em;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 2em;
}

.portfolio-info {
  background: #b4ea91;
  border-radius: 1em;
  padding: 1.8em;
  position: sticky;
  top: 7em;
  transition: 0.4s ease;
}
.portfolio-info div {
  border-bottom: 0.08em solid rgba(39, 48, 44, 0.25);
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.portfolio-info div span {
  display: block;
  text-transform: uppercase;
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.45em;
}
.portfolio-info div strong {
  display: block;
  font-size: 1.05em;
}
.portfolio-info:hover {
  transform: translateY(-0.35em);
  box-shadow: 0 1em 2em rgba(6, 75, 66, 0.14);
}

.btn-portfolio {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  background: #064b42;
  color: #92e36b;
  text-decoration: none;
  border-radius: 3em;
  padding: 0.85em 1.4em;
  font-weight: 900;
  transition: 0.35s ease;
}
.btn-portfolio:hover {
  background: #27302c;
  color: #ffffff;
  transform: translateY(-0.25em);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35em;
  margin-top: 3.5em;
}

.portfolio-gallery-item {
  height: 18em;
  border-radius: 1em;
  overflow: hidden;
}
.portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.7s ease;
}
.portfolio-gallery-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 991.98px) {
  .portfolio-hero-image {
    height: 28em;
  }
  .portfolio-info {
    position: static;
  }
  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .portfolio-detail-section {
    padding: 3.4em 0;
  }
  .portfolio-detail-heading h1 {
    font-size: 3.1em;
  }
  .portfolio-hero-image {
    height: 22em;
  }
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }
  .portfolio-gallery-item {
    height: 20em;
  }
}
.faq-section {
  background: #fbf8ec;
  color: #27302c;
  padding: 4.5em 0;
  overflow: hidden;
}

.faq-left {
  position: sticky;
  top: 7em;
}
.faq-left .section-label {
  display: inline-flex;
  background: #064b42;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.68em;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 2em;
  padding: 0.25em 1.2em;
  margin-bottom: 1.4em;
}
.faq-left h2 {
  font-size: clamp(3.2em, 2.8vw, 2em);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 2em;
}
.faq-left h2 strong {
  display: block;
  color: #92e36b;
  font-weight: inherit;
}

.faq-contact h3 {
  font-size: 1.8em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
}
.faq-contact p {
  font-size: 0.92em;
  line-height: 1.5;
  margin-bottom: 1em;
}
.faq-contact p span {
  font-weight: 900;
}

.faq-desc {
  max-width: 49em;
  font-size: 0.98em;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 2.4em;
}

.faq-accordion .accordion-item {
  border: 0;
  background: transparent;
  margin-bottom: 1.15em;
}
.faq-accordion .accordion-button {
  background: #b4ea91;
  color: #27302c;
  font-weight: 600;
  border-radius: 0.85em;
  padding: 1.25em 1.4em;
  font-size: 0.6em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  transition: 0.35s ease;
  width: 100%;
}
.faq-accordion .accordion-button::after {
  content: "+";
  background-image: none;
  width: auto;
  height: auto;
  font-family: Arial, sans-serif;
  font-size: 0.95em;
  font-weight: 900;
  margin-left: 0;
  margin-right: 0.55em;
  order: -1;
  transform: none;
  transition: 0.35s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}
.faq-accordion .accordion-button:hover {
  background: #92e36b;
  transform: translateY(-0.15em);
}
.faq-accordion .accordion-body {
  background: #ffffff;
  border-radius: 0 0 0.85em 0.85em;
  padding: 1.8em 2em;
  font-size: 0.98em;
  line-height: 1.5;
  font-weight: 500;
  margin-top: -0.6em;
}

@media (max-width: 991.98px) {
  .faq-left {
    position: static;
  }
  .faq-left h2 {
    margin-bottom: 0.8em;
  }
}
@media (max-width: 767.98px) {
  .faq-section {
    padding: 3.2em 0;
  }
  .faq-accordion .accordion-button {
    font-size: 0.5em;
    padding: 1em;
  }
  .faq-accordion .accordion-body {
    padding: 1.4em;
  }
}
.contact-map-section {
  background: #fbf8ec;
  color: #27302c;
  padding: 1em 0 4.6em;
  overflow: hidden;
}

.contact-map {
  height: 14.5em;
  border-radius: 0.4em;
  overflow: hidden;
  margin-bottom: 2.4em;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-content {
  max-width: 62em;
  margin: 0 auto;
}

.contact-form label {
  color: #fffaf1;
  display: block;
  text-transform: uppercase;
  font-size: 0.68em;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.35em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0.08em solid #fffaf1;
  border-radius: 0.6em;
  background: #fffaf1;
  padding: 0.65em 0.9em;
  font-size: 0.92em;
  color: #0B1220;
  outline: none;
  transition: 0.35s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fffaf1;
  box-shadow: 0 0 0 0.16em rgba(146, 227, 107, 0.25);
}
.contact-form textarea {
  min-height: 6.4em;
  resize: vertical;
}
.contact-form .check-label {
  display: flex;
  align-items: center;
  gap: 0.45em;
  margin: 0.25em 0 0.4em;
  cursor: pointer;
}
.contact-form .check-label input {
  width: auto;
  padding: 0;
}
.contact-form .check-label span {
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form button {
  width: 100%;
  border: 0;
  background: #0D497F;
  color: #fff;
  border-radius: 3em;
  padding: 0.75em 1.4em;
  font-size: 0.9em;
  font-weight: 800;
  transition: 0.35s ease;
}
.contact-form button:hover {
  transform: translateY(-0.25em);
  box-shadow: 0 1em 1.8em rgba(107, 125, 227, 0.35);
}

.contact-content {
  padding-left: 1.4em;
}
.contact-content h2 {
  font-weight: 600;
  font-size: clamp(3em, 2.6vw, 3.7em);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 0.25em;
}
.contact-content h2 strong,
.contact-content h2 span {
  display: block;
  font-weight: inherit;
}
.contact-content h2 strong {
  color: #92e36b;
}
.contact-content p {
  max-width: 39em;
  font-size: 0.98em;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 1.6em;
}
.contact-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-content ul li {
  position: relative;
  font-size: 0.98em;
  margin-bottom: 0.9em;
  padding-left: 1.55em;
}
.contact-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #92e36b;
  font-weight: 900;
}

.support-section {
  background: #064b42;
  color: #ffffff;
  padding: 5em 0 5.8em;
  overflow: hidden;
}
.support-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fbf8ec;
  color: #064b42;
  text-transform: uppercase;
  font-size: 0.68em;
  font-weight: 900;
  letter-spacing: 0.08em;
  border-radius: 2em;
  padding: 0.25em 1.2em;
  margin-bottom: 1.25em;
}

.support-heading {
  text-align: center;
  max-width: 54em;
  margin: 0 auto 3.3em;
}
.support-heading h2 {
  font-size: clamp(3.2em, 5vw, 2.15em);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 0.45em;
  font-weight: 600;
}
.support-heading h2 strong,
.support-heading h2 span {
  display: block;
  font-weight: inherit;
}
.support-heading h2 strong {
  color: #92e36b;
}
.support-heading p {
  font-size: 0.98em;
  line-height: 1.45;
  font-weight: 700;
  margin: 0 auto;
}

.support-grid {
  max-width: 62em;
  margin: 0 auto;
}

.support-card {
  height: 100%;
  background: #f0fae8;
  color: #27302c;
  border-radius: 0.85em;
  padding: 1.7em;
  transition: 0.4s ease;
}
.support-card .support-icon {
  width: 3.8em;
  height: 3.8em;
  border-radius: 50%;
  background: #92e36b;
  color: #064b42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45em;
  margin-bottom: 1em;
  transition: 0.4s ease;
}
.support-card h3 {
  font-weight: 600;
  font-size: 1.15em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.45em;
}
.support-card p {
  font-size: 0.9em;
  line-height: 1.45;
  font-weight: 500;
  margin: 0;
}
.support-card:hover {
  transform: translateY(-0.65em);
  box-shadow: 0 1.25em 2.2em rgba(0, 0, 0, 0.18);
}
.support-card:hover .support-icon {
  transform: rotate(-8deg) scale(1.08);
}

@media (max-width: 991.98px) {
  .contact-content {
    padding-left: 0;
  }
  .contact-map-content {
    max-width: 100%;
  }
  .support-section {
    padding: 4em 0 4.8em;
  }
}
@media (max-width: 767.98px) {
  .contact-map-section {
    padding: 1em 0 3.5em;
  }
  .contact-map {
    height: 12em;
  }
  .contact-content h2,
  .support-heading h2 {
    font-size: 2em;
  }
  .support-section {
    padding: 3.5em 0;
  }
}/*# sourceMappingURL=style.css.map */