/* ==========================================
   COLORS
========================================== */
/* ==========================================
   BACKGROUND
========================================== */
/* ==========================================
   SHADOW
========================================== */
/* ==========================================
   RADIUS
========================================== */
/* ==========================================
   TRANSITION
========================================== */
/* ==========================================
   Z-INDEX
========================================== */
/* ==========================================
   CONTAINER
========================================== */
/* ==========================================
   SPACING
========================================== */
body {
  overflow: auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #f26b21;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .text {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2em;
  text-align: center;
}
.hero .text h1 {
  font-size: clamp(1rem, 8vw, 14rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  color: #111;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero .text h2 {
  font-size: clamp(1rem, 3vw, 14rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
  color: #111;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero .text h2 {
    line-height: 23px;
  }
}
.hero .hero-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 3em;
  z-index: 10;
}
.hero .hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}
.hero .hero-info-item span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.hero .hero-info-item strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero-image {
  position: absolute;
  width: 12em;
  border-radius: 1em;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 999;
  opacity: 0;
  filter: blur(0.4em);
  transform: translate(-50%, -50%) rotate(var(--rotate)) scale(0.75);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.65s ease;
}

.hero-image.show {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) rotate(var(--rotate)) scale(var(--scale));
}

.hero-image.hide {
  opacity: 0;
  filter: blur(0.35em);
  transform: translate(-50%, -50%) rotate(var(--rotate)) scale(calc(var(--scale) + 0.08));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0.5em 0;
  transition: 0.35s ease;
}
@media (max-width: 767px) {
  .site-header {
    padding: 1em 0;
  }
}

.header-wrapper {
  width: -moz-max-content;
  width: max-content;
  float: right;
  min-height: 1em;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 30px;
  align-items: center;
}
@media (max-width: 767px) {
  .header-wrapper {
    padding: 0 0 0 30px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1em;
}
.header-right .btn-primary {
  color: #111;
  border: solid 1px #000;
  padding: 7px 15px;
  border-radius: 25px;
  background: transparent;
  text-decoration: none;
}
.header-right .btn-primary:hover {
  background-color: #000;
  color: #fff;
}

.menu-toggle {
  width: 2.8em;
  border: 0;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 0.45em;
  cursor: pointer;
}
.menu-toggle span {
  height: 2px;
  background: #000;
  transition: 0.35s;
}

.header-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.45s;
}
@media (max-width: 767px) {
  .header-menu {
    text-align: center;
    width: 100%;
  }
}

.header-menu nav {
  padding: 10px 20px 0;
  overflow: hidden;
  margin-left: 6em;
}
@media (max-width: 767px) {
  .header-menu nav {
    padding-top: 8px;
    margin-left: 0em;
  }
}

.header-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-menu li {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 1em;
  float: left;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .header-menu li {
    float: none;
    margin-right: 0;
  }
}

.header-menu a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
  line-height: 40px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .header-menu a {
    font-size: 20px;
  }
}

.site-header.active {
  background: #000;
}

.site-header.active .logo img {
  filter: brightness(0) invert(1);
}

.site-header.active .btn-primary {
  color: #fff;
  border-color: #fff;
}

.site-header.active .menu-toggle span {
  background: #fff;
}

.site-header.active .header-menu {
  max-height: 30em;
  grid-template-rows: 1fr;
}

.site-header.active .header-menu a {
  color: #fff;
}

.site-header.active .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(0.3em, 0.3em);
}

.site-header.active .menu-toggle span:nth-child(2) {
  transform: rotate(-45deg) translate(0.2em, -0.2em);
}

.services {
  position: relative;
  background: #f5f5f2;
  z-index: 5;
  margin-top: -80px;
  padding: 8em 0;
  transform: translateY(80px);
  will-change: transform;
}
.services .container-fluid {
  padding: 0 3em;
}
.services .services-heading {
  margin-bottom: 4em;
}
.services h2 {
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 12em;
}
.services .btn-link {
  display: inline-flex;
  align-items: center;
  color: #111;
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
  transition: 0.35s ease;
}
.services .btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35em;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: 0.35s ease;
}
.services .btn-link:hover {
  letter-spacing: 0.05em;
}
.services .btn-link:hover::after {
  transform: scaleX(0.65);
  transform-origin: left;
}
.services .services-slider {
  overflow: visible;
}
.services .services-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.services .services-slider:hover .swiper-wrapper {
  animation-play-state: paused;
}
.services .swiper-slide {
  width: 26em;
  height: auto;
}
.services .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5em;
  height: 33em;
  cursor: pointer;
  isolation: isolate;
  background: #ddd;
}
.services .service-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.services .service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.05) 100%);
  transition: opacity 0.5s ease;
}
.services .service-card .content {
  position: absolute;
  inset: 0;
  padding: 1.4em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.services .service-card h3 a {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
  transform: translateY(0);
  transition: 0.45s ease;
  text-decoration: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  padding: 0 15px;
}
.services .service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}
.services .service-card .tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.85rem;
  transition: 0.35s ease;
}
.services .service-card:hover img {
  transform: scale(1.08);
}
.services .service-card:hover .overlay {
  opacity: 0.75;
}
.services .service-card:hover h3 {
  transform: translateY(0.25em);
}
.services .service-card:hover .tags span {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 991px) {
  .services {
    padding: 6em 0;
  }
  .services .container-fluid {
    padding: 0 1.5em;
  }
  .services .services-heading {
    margin-bottom: 2.5em;
  }
  .services h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }
  .services .swiper-slide {
    width: 20em;
  }
  .services .service-card {
    height: 28em;
  }
}
@media (max-width: 576px) {
  .services .swiper-slide {
    width: 17em;
  }
  .services .service-card {
    height: 24em;
  }
  .services .service-card h3 {
    font-size: 1.6rem;
  }
  .services .service-card .tags span {
    font-size: 0.75rem;
  }
}
.service-card {
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.4s ease;
}

.marquee {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.marquee-track {
  display: flex;
  gap: 1.5em;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.service-card {
  flex: 0 0 28em;
}

.tagline {
  padding: 7em 0;
  background: #f5f5f2;
}
@media (max-width: 767px) {
  .tagline {
    padding: 5em 0;
  }
}

.tagline-title {
  font-weight: 800;
  max-width: 13em;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
}
.tagline-title span {
  display: inline;
  color: #c8c8c8;
  transition: color 0.1s linear;
}

.featured-work {
  position: relative;
  padding: 5em 0;
  background: #f5f5f2;
  overflow: hidden;
}
.featured-work .container-fluid {
  padding: 0 3em;
}
.featured-work .section-heading {
  margin-bottom: 2em;
}
.featured-work .section-label {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #121213;
}

.work-list {
  border-top: 1px solid #d9d9d9;
}

.work-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #111;
  padding: 0.8em 0;
  border-bottom: 1px solid #d9d9d9;
  transition: background-color 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s ease;
  overflow: hidden;
}
.work-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3vw, 3.7rem);
  margin: 0;
  font-weight: 500;
  letter-spacing: -1px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.work-item p {
  margin: 0 0 0 5px;
  color: #8d8d8d;
  transition: 0.35s ease;
}

.work-title {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.work-arrow {
  font-size: 2rem;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s ease;
}

.work-item:hover {
  background: #111;
  color: #fff;
  padding-left: 1.2em;
  padding-right: 2.2em;
}

.work-item:hover .work-title {
  transform: translateX(1em);
}

.work-item:hover h3 {
  color: #fff;
}

.work-item:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.work-item:hover .work-arrow {
  color: #fff;
  transform: translateX(-0.3em);
}

.work-preview {
  position: fixed;
  left: 0;
  top: 0;
  width: 24em;
  aspect-ratio: 0.82;
  border-radius: 1.5em;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.9);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 9999;
  will-change: transform, opacity;
  box-shadow: rgba(0, 0, 0, 0.18);
}
.work-preview img {
  width: 50%;
  height: 50%;
  -o-object-fit: none;
     object-fit: none;
  transition: opacity 0.25s ease, transform 0.45s ease;
  opacity: 1;
}

.work-preview.show {
  opacity: 1;
}

@media (max-width: 991px) {
  .featured-work {
    padding: 6em 0;
  }
  .featured-work .container-fluid {
    padding: 0 1.5em;
  }
  .work-item {
    padding: 2em 0;
  }
  .work-item h3 {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }
  .work-preview {
    display: none;
  }
}
.work-arrow {
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  flex-shrink: 0;
  transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.work-arrow svg {
  width: 1.3em;
  height: 1.3em;
  stroke: #111;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.45s ease;
}

.work-item:hover .work-arrow {
  background: #fff;
  transform: translateX(-0.6em) scale(1.08);
}

.testimonial {
  position: relative;
  padding: 4em 0;
  background: #f5f5f2;
  overflow: hidden;
}
.testimonial .container-fluid {
  position: relative;
  max-width: 90em;
  margin: 0 auto;
  padding: 0 6em;
}
@media (max-width: 767px) {
  .testimonial {
    padding: 3em 0;
  }
}

/* Slider */
.testimonial-slider {
  overflow: hidden;
}

.testimonial-item {
  max-width: 60em;
  margin: 0 auto;
  text-align: center;
}

/* Avatar */
.avatar {
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2.5em;
}

/* Quote */
.testimonial blockquote {
  margin: 0;
  font-size: clamp(2rem, 2vw, 3.2rem);
  line-height: 1.45;
  font-weight: 400;
  color: #111;
  letter-spacing: -0.02em;
}

/* Author */
.author {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
}
.author h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #111;
}
.author span {
  font-size: 1rem;
  font-style: italic;
  color: #7a7a7a;
}

/* Pagination */
.testimonial-pagination {
  margin-top: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: #111;
}

/* Arrow */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #111;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 20;
}

.testimonial-prev {
  left: 1em;
}

.testimonial-next {
  right: 1em;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #111;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
  padding-bottom: 12px;
}

/* Swiper */
.testimonial .swiper-slide {
  opacity: 0;
  transition: opacity 0.45s ease;
}

.testimonial .swiper-slide-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial {
    padding: 7em 0;
  }
  .testimonial .container-fluid {
    padding: 0 2em;
  }
  .testimonial blockquote {
    font-size: clamp(1.5rem, 6vw, 2.4rem);
  }
  .testimonial-prev {
    left: 0.3em;
  }
  .testimonial-next {
    right: 0.3em;
  }
}
@media (max-width: 576px) {
  .testimonial .container-fluid {
    padding: 0 1.2em;
  }
  .testimonial-prev,
  .testimonial-next {
    width: 2.8em;
    height: 2.8em;
    font-size: 2rem;
  }
  .avatar {
    width: 3.8em;
    height: 3.8em;
  }
  .author {
    margin-top: 2.5em;
  }
}
.showreel {
  padding: 8em 0;
  background: #f5f5f2;
}
.showreel .container-fluid {
  padding: 0 3em;
}
@media (max-width: 767px) {
  .showreel {
    padding: 2em 0;
  }
}

.showreel-video {
  position: relative;
  overflow: hidden;
  border-radius: 1.5em;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.showreel-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.showreel-video:hover video {
  transform: scale(1.04);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15));
}

.showreel-btn {
  position: absolute;
  left: 2.5em;
  top: 2.5em;
  display: flex;
  align-items: center;
  gap: 0.8em;
  padding: 0.9em 1.4em;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: 0.35s;
}
.showreel-btn span {
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: #fff;
}
.showreel-btn:hover {
  background: #fff;
  color: #111;
}
.showreel-btn:hover span {
  background: #111;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 9999;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(0.3em);
}

.video-wrapper {
  position: relative;
  width: min(90vw, 75em);
  aspect-ratio: 16/9;
  z-index: 2;
  transform: scale(0.9);
  transition: 0.35s;
}

.video-modal.show .video-wrapper {
  transform: scale(1);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1em;
}

.video-close {
  position: absolute;
  right: -1.5em;
  top: -1.5em;
  width: 2.5em;
  height: 2.5em;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

.showreel {
  position: relative;
  overflow: hidden;
  background: #f5f5f2;
  --footer-progress: 0;
}
.showreel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f26b21;
  transform: translateY(calc((1 - var(--footer-progress)) * 100%));
  transition: transform 0.05s linear;
  will-change: transform;
  z-index: 1;
}
.showreel > * {
  position: relative;
  z-index: 2;
}

.footer {
  position: relative;
  padding: 4em 0 3em;
  background: #f26b21;
  overflow: hidden;
}
.footer .container-fluid {
  padding: 0 3em;
  position: relative;
  z-index: 2;
}

.contact-form label {
  display: none !important;
}
.contact-form .ff-el-form-control {
  height: 3.8em !important;
  border: 0 !important;
  border-bottom: solid 0.08em rgba(0, 0, 0, 0.35) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #111 !important;
  font-size: 1rem !important;
  transition: 0.35s ease !important;
}
.contact-form .ff-el-form-control::-moz-placeholder {
  color: #212529 !important;
}
.contact-form .ff-el-form-control::placeholder {
  color: #212529 !important;
}
.contact-form .ff-el-form-control:focus {
  border-color: #111;
  background: transparent;
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 3em;
}
.footer-services label {
  position: relative;
  cursor: pointer;
}
.footer-services input {
  display: none;
}
.footer-services span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.4em;
  border-radius: 999px;
  border: 0.08em solid rgba(0, 0, 0, 0.25);
  transition: 0.35s ease;
}
.footer-services input:checked + span {
  background: #111;
  color: #fff;
  border-color: #111;
}

.footer-btn {
  margin-top: 3em;
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 1em 2em;
  transition: 0.35s;
}
.footer-btn:hover {
  transform: translateY(-0.2em);
  box-shadow: 0 0.8em 2em rgba(0, 0, 0, 0.18);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 3em;
  padding-left: 5em;
}

.footer-block span {
  display: block;
  margin-bottom: 0.8em;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.footer-block a {
  display: block;
  color: #111;
  text-decoration: none;
  font-size: 1.3rem;
  margin-bottom: 0.4em;
  transition: 0.3s;
}
.footer-block a:hover {
  padding-left: 0.4em;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.footer-word {
  margin-top: 0.5em;
  padding-bottom: 1em;
  line-height: 0.8;
  font-size: clamp(4rem, 8vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  text-align: center;
  color: #111;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
}

.footer-word span {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.45s;
}

.footer:hover .footer-word span {
  transform: translateY(-0.08em);
}

@media (max-width: 991px) {
  .footer {
    padding: 6em 0 2em;
  }
  .footer .container-fluid {
    padding: 0 1.5em;
  }
  .footer-info {
    padding-left: 0;
    margin-top: 3em;
  }
  .footer-word {
    margin-top: 2em;
    font-size: clamp(4rem, 22vw, 9rem);
  }
}
@media (max-width: 576px) {
  .footer-services {
    gap: 0.7em;
  }
  .footer-services span {
    font-size: 0.85rem;
  }
  .footer-word {
    letter-spacing: -0.05em;
  }
  .footer-word {
    font-size: 40px;
  }
}
.footer {
  padding-bottom: 0;
}

.footer-word {
  margin-bottom: -0.18em;
}

.blog {
  background: #f5f5f2;
  overflow-x: hidden;
  padding: 3em 1em;
}
.blog .container-fluid {
  padding: 0 3em;
}
.blog .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3em;
}
.blog .section-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}
.blog .blog-nav {
  display: flex;
  gap: 0.75em;
}
.blog .blog-prev,
.blog .blog-next {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  background: #fff;
  cursor: pointer;
  transition: 0.35s ease;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}
.blog .blog-prev:hover,
.blog .blog-next:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.blog .swiper {
  overflow: visible;
}
.blog .swiper-slide {
  height: auto;
}

.blog-card {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.45s ease;
  cursor: pointer;
}
.blog-card .blog-image {
  overflow: hidden;
  border-radius: 1.8em;
  margin-bottom: 1.25em;
}
.blog-card .blog-image img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.blog-card .blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1em;
}
.blog-card .blog-tags span {
  padding: 0.45em 0.9em;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 0.75rem;
  color: #666;
  line-height: 1;
}
.blog-card h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 0.7em;
  color: #111;
  font-weight: 600;
  transition: 0.3s;
}
.blog-card p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}
.blog-card:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
  margin-top: 1.8em;
  transition: 0.35s;
}
.blog-card:hover {
  transform: translateY(-0.5em);
}
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}
.blog-card:hover h3 {
  color: #f26b21;
}
.blog-card:hover:after {
  background: #111;
}

@media (max-width: 991px) {
  .blog {
    padding: 6em 0;
  }
  .blog .container-fluid {
    padding: 0 1.5em;
  }
  .blog .section-heading {
    margin-bottom: 2em;
  }
  .blog .blog-card h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .blog .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5em;
  }
}
.floating-whatsapp {
  opacity: 0;
  visibility: hidden;
  transform: translateY(2em);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.floating-whatsapp.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  right: 2em;
  bottom: 2em;
  width: 4.2em;
  height: 4.2em;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 0.8em 2em rgba(0, 0, 0, 0.12);
  z-index: 9999;
  animation: waFloat 3.5s ease-in-out infinite, waPulse 2.5s ease-in-out infinite;
  transition: 0.35s ease;
}
.floating-whatsapp i {
  font-size: 2rem;
  color: #25D366;
  transition: 0.35s;
}
.floating-whatsapp:hover {
  background: #f26b21;
  transform: translateY(-0.3em);
}
.floating-whatsapp:hover i {
  color: #fff;
}
.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-tooltip {
  position: absolute;
  right: 5em;
  white-space: nowrap;
  background: #111;
  color: #fff;
  padding: 0.75em 1em;
  border-radius: 999px;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(0.8em);
  transition: 0.35s ease;
  pointer-events: none;
}

@keyframes waFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.6em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35), 0 0.8em 2em rgba(0, 0, 0, 0.12);
  }
  70% {
    box-shadow: 0 0 0 1em rgba(37, 211, 102, 0), 0 0.8em 2em rgba(0, 0, 0, 0.12);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 0.8em 2em rgba(0, 0, 0, 0.12);
  }
}
@media (max-width: 768px) {
  .floating-whatsapp {
    right: 1.2em;
    bottom: 1.2em;
    width: 3.8em;
    height: 3.8em;
  }
  .floating-whatsapp i {
    font-size: 1.8rem;
  }
  .wa-tooltip {
    display: none;
  }
}
.service-detail {
  padding-top: 50px;
  background: #f5f5f2;
}
.service-detail .service-layout {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 100vh;
}
.service-detail {
  /* ===========================
     LEFT
  =========================== */
}
.service-detail .service-media {
  border-radius: 25px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #ddd;
}
.service-detail .media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.service-detail .media-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s;
  will-change: transform;
}
.service-detail .media-wrapper:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}
.service-detail .media-wrapper:hover .media-gradient {
  opacity: 1;
}
.service-detail .media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(242, 107, 33, 0.28));
  opacity: 0;
  transition: 0.6s;
}
.service-detail .media-caption {
  position: absolute;
  left: 4em;
  bottom: 4em;
  color: #fff;
  z-index: 3;
}
.service-detail .media-caption span {
  display: block;
  margin-bottom: 1em;
  font-size: 0.95em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.service-detail .media-caption h2 {
  font-size: clamp(3em, 4vw, 5em);
  line-height: 0.9;
  margin: 0;
  color: #fff;
}
.service-detail {
  /* ===========================
     RIGHT
  =========================== */
}
.service-detail .service-scroll {
  height: 100vh;
  overflow-y: auto;
  background: #f5f5f2;
  scrollbar-width: none;
}
.service-detail .service-scroll::-webkit-scrollbar {
  display: none;
}
.service-detail .service-article {
  max-width: 50em;
  margin: 0 auto;
  padding: 5em 2em;
}
.service-detail .service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5em;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9c9c9c;
}
.service-detail h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.45em;
  color: #111;
}
.service-detail .lead {
  font-size: 1.15em;
  line-height: 1.5;
  color: #666;
  margin-bottom: 1em;
}
.service-detail hr {
  border: 0;
  border-top: 0.08em solid #dcdcdc;
  margin: 1em 0;
}
.service-detail section {
  margin-bottom: 2em;
}
.service-detail section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.45em;
  font-weight: 600;
  margin-bottom: 1.4em;
  color: #2b3550;
}
.service-detail section p {
  color: #666;
  line-height: 2;
  margin-bottom: 1.5em;
}
.service-detail {
  /* ===========================
     SERVICE LIST
  =========================== */
}
.service-detail .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail .service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  border-bottom: 0.08em solid #dcdcdc;
  cursor: pointer;
  transition: 0.35s;
}
.service-detail .service-list li span {
  color: #2b3550;
  font-weight: 600;
  transition: 0.35s;
}
.service-detail .service-list li i {
  color: #9c9c9c;
  transition: 0.35s;
}
.service-detail .service-list li:hover {
  padding-left: 1em;
  border-color: #f26b21;
  background: rgba(242, 107, 33, 0.04);
}
.service-detail .service-list li:hover span {
  color: #f26b21;
}
.service-detail .service-list li:hover i {
  color: #f26b21;
  transform: translateX(0.5em);
}
.service-detail {
  /* ===========================
     GALLERY
  =========================== */
}
.service-detail .gallery {
  display: flex;
  overflow-x: auto;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  scrollbar-width: none;
  scroll-behavior: auto;
}
.service-detail .gallery::-webkit-scrollbar {
  display: none;
}
.service-detail .gallery.is-dragging {
  cursor: grabbing;
}
.service-detail .gallery-item {
  cursor: default;
  pointer-events: none;
  flex: 0 0 calc(33.333% - 1em);
  display: block;
  border-radius: 1.5em;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  margin-right: 25px;
  cursor: pointer;
}
.service-detail .gallery-item img {
  width: 100%;
  height: 16em;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.service-detail .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242, 107, 33, 0.12);
  opacity: 0;
  transition: 0.4s;
}
.service-detail .gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.92);
}
.service-detail .gallery-item:hover::after {
  opacity: 1;
}
.service-detail {
  /* ===========================
     NEXT
  =========================== */
}
.service-detail .next-service {
  margin-top: 6em;
  padding-top: 3em;
  border-top: 0.08em solid #dcdcdc;
}
.service-detail .next-service span {
  display: block;
  margin-bottom: 0.8em;
  color: #9c9c9c;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8em;
}
.service-detail .next-service a {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-size: 2em;
  font-weight: 700;
  color: #2b3550;
  text-decoration: none;
  transition: 0.35s;
}
.service-detail .next-service a i {
  transition: 0.35s;
}
.service-detail .next-service a:hover {
  color: #f26b21;
  gap: 1.3em;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .service-detail .service-layout {
    display: block;
    grid-template-columns: 1fr;
  }
  .service-detail .service-media {
    position: relative;
    height: 34em;
  }
  .service-detail .service-scroll {
    height: auto;
    overflow: visible;
  }
  .service-detail .service-article {
    padding: 3em 1.5em;
  }
  .service-detail h1 {
    font-size: 3.2em;
  }
  .service-detail .media-caption {
    left: 2em;
    bottom: 2em;
  }
}
.blog-detail {
  padding: 5em 0 8em;
}

.blog-detail-article {
  width: 100%;
}

.blog-detail-header {
  padding: 0 4em;
  margin-bottom: 4em;
}
@media (max-width: 768px) {
  .blog-detail-header {
    padding: 0 1em;
  }
}

.blog-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #dcdcdc;
}
.blog-detail-meta span {
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-detail-title {
  max-width: 1100px;
  padding-top: 3em;
  margin: 0 auto;
}

.blog-detail-category {
  display: flex;
  gap: 0.5em;
  margin-bottom: 1.5em;
}
.blog-detail-category span {
  font-size: 0.75em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9c9c9c;
}

.blog-detail-title h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3em, 7vw, 7em);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .blog-detail-title h1 {
    font-size: 30px;
  }
}

.blog-detail-image {
  width: 100%;
}
.blog-detail-image img {
  display: block;
  width: 100%;
  height: 65vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-detail-body {
  width: 100%;
}

.blog-detail-content {
  width: 100%;
  background: #f5f5f2;
  padding: 1em 2em;
}

.blog-detail-content > * {
  width: min(100%, 1100px);
  margin-left: auto;
  margin-right: auto;
}

.blog-detail-content p {
  font-size: 1.1em;
  line-height: 1.9;
  margin-bottom: 0.8em;
  color: #666;
}

.blog-detail-content h2,
.blog-detail-content h3 {
  margin-top: 0.8em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.blog-detail-content ul,
.blog-detail-content ol {
  width: min(100%, 850px);
  margin: 1.5em auto;
  padding-left: 1.5em;
}

.blog-detail-content li {
  margin-bottom: 0.7em;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .blog-detail-content {
    padding: 0 1.5em;
    font-size: 1em;
    line-height: 1.8;
  }
  .blog-detail-content p {
    line-height: 1.8;
    margin-bottom: 1.5em;
  }
  .blog-detail-content h2 {
    font-size: 1.7em;
  }
  .blog-detail-content h3 {
    font-size: 1.4em;
  }
}
.related-posts-header {
  padding-bottom: 1.5em;
  margin-bottom: 2.5em;
  border-bottom: 1px solid #dcdcdc;
}
.related-posts-header .section-label {
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.related-post-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-post-card:hover .related-post-image img {
  transform: scale(1.04);
}

.related-post-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.5em;
}
.related-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.related-post-tags {
  margin-bottom: 0.75em;
}
.related-post-tags span {
  font-size: 0.7em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9c9c9c;
}

.related-post-card h3 {
  margin: 0 0 0.75em;
  font-size: 1.35em;
  line-height: 1.2;
}

.related-post-card p {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.6;
  color: #9c9c9c;
}

.related-posts {
  width: 100%;
  padding: 6em 2em;
  background: #f5f5f2;
}

.related-posts-header {
  width: min(100%, 1400px);
  margin: 0 auto 3em;
}

.related-posts-grid {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.related-post-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.related-post-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.5em;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.04);
}

.related-post-tags {
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.8em;
}

.related-post-tags span {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.related-post-card h3 {
  font-size: 1.4em;
  line-height: 1.25;
  margin: 0 0 0.8em;
}

.related-post-card p {
  font-size: 0.95em;
  line-height: 1.7;
  margin: 0;
  color: #777;
}

@media (max-width: 991px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .related-posts {
    padding: 4em 1.25em;
  }
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 3em;
  }
}
.blog-content-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.85;
  color: #2b3550;
}
.blog-content-inner > * {
  width: 100%;
  max-width: 100%;
}
.blog-content-inner p {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.8em;
  font-size: 1em;
  line-height: 1.85;
}

.showreel {
  width: 100%;
  padding: 4em;
}
@media (max-width: 575px) {
  .showreel {
    padding: 1em;
  }
}
.showreel .container-fluid {
  width: 100%;
  max-width: none;
  padding: 0;
}
.showreel .showreel-video {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  border-radius: 1.5rem;
}
.showreel .showreel-video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.showreel .showreel-video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  transform: translate(-50%, -50%);
}

.footer .contact-form,
.footer .fluentform {
  width: 100%;
}
.footer .ff-el-group {
  margin-bottom: 0;
}
.footer .ff-el-input--label {
  display: none;
}
.footer .ff-el-form-control {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  border: 1px solid #dcdcdc;
  border-radius: 0.4rem;
  background: #fff;
  color: #2b3550;
  font-size: 0.95rem;
  box-shadow: none;
  outline: none;
}
.footer .ff-el-form-control::-moz-placeholder {
  color: #9c9c9c;
  opacity: 1;
}
.footer .ff-el-form-control::placeholder {
  color: #9c9c9c;
  opacity: 1;
}
.footer .ff-el-form-control:focus {
  border-color: #2b3550;
  box-shadow: none;
}
.footer textarea.ff-el-form-control {
  height: 10rem;
  padding: 1rem;
  resize: vertical;
}
.footer .ff-t-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.footer .ff-t-cell {
  width: 100%;
}
.footer .ff-btn-submit {
  margin-top: 1.5rem;
  padding: 0.85rem 1.75rem;
  border: 0;
  border-radius: 0.4rem;
  background: #111 !important;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s ease;
  border-radius: 999px !important;
  padding: 1em 2em !important;
  min-width: -moz-max-content !important;
  min-width: max-content !important;
}
.footer .ff-btn-submit:hover {
  background: rgb(221.2442553191, 86.7038297872, 12.9557446809);
  transform: translateY(-2px);
}

.header-logo {
  left: 1em;
  position: absolute;
}
.header-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.header-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.header-logo .custom-logo {
  display: block;
  width: auto;
  max-width: 4em;
  height: auto;
}
.header-logo .site-title {
  font-size: 1.25em;
  font-weight: 600;
}

.other-services {
  padding: 2em 0;
  margin-bottom: 5em;
}
.other-services .services-heading {
  margin-bottom: 3em;
}
.other-services .marquee {
  width: 100%;
  overflow: hidden;
}
.other-services .marquee-track {
  display: flex;
  gap: 2em;
}
.other-services .service-card {
  flex: 0 0 28em;
}
@media (max-width: 991.98px) {
  .other-services .service-card {
    flex: 0 0 calc(50% - 1em);
  }
}
@media (max-width: 575.98px) {
  .other-services .service-card {
    flex: 0 0 85%;
  }
}/*# sourceMappingURL=main.css.map */