/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');*/
:root {
  --black: #212121;
  --white: #efefef;
  --pearl: #fff;
  --green: #00BCD4;
}

* {
  box-sizing: border-box;
}

html, body {
  background: #f8f9fa;
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}

::selection {
  background: var(--green);
  color: var(--black);
}

::-moz-selection {
  background: var(--green);
  color: var(--black);
}

h1, h2, h3, h4, h5 {
  font-weight: 900;
  line-height: 1.2;
}

.hero-title {
  font-size: 8vw;
  line-height: 1em;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-title {
  font-size: clamp(2.5em, 5vw, 4em);
  line-height: 1.1;
}

a {
  text-decoration: none;
  transition: all .25s ease-in-out;
}

.white, a.white, .nav-items a {
  color: var(--white);
}

.black {
  color: var(--black);
}

.pearl, a.pearl {
  color: var(--pearl);
}

.green, a.green {
  color: var(--green);
}

.blend {
  mix-blend-mode: difference;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.bg-black {
  background-color: var(--black);
}

.bg-green {
  background-color: var(--green);
}

.bg-topographic {
  background-image: url(images/bg-topographic.svg);
  background-size: 5000px;
  opacity: .1;
  pointer-events: none;
  background-position: center;
}

.swoosh {
  background-size: 100%;
  background-repeat: no-repeat;
  top: 20px;
  left: 18px;
  width: 230px;
  height: 45px;
  z-index: 1000;
  background-position: left;
}

.sticky-nav {
  top: 20px;
  left: 20px;
  position: fixed;
  width: calc(100% - 40px);
  z-index: 999;
  padding: 10px 0;
}

.sticky-nav.difference {
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: difference;
}

.sticky-nav.difference #nav-btn {
  filter: invert(0);
}

.sticky-nav .logo-link {
  display: block;
}

.sticky-nav .logo-img {
  width: 220px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sticky-nav #nav-btn {
  width: 60px;
  height: 40px;
  z-index: 999;
  filter: invert(1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.sticky-nav #nav-btn .icon {
  position: relative;
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
}

#takeover-nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  left: 0;
  top: -200%;
  transition: top .6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 996;
  display: flex;
  flex-direction: column;
}

#takeover-nav.shown {
  top: 0;
}

#takeover-nav .nav-col {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#takeover-nav .nav-col a {
  color: var(--white);
  font-weight: 700;
}

#takeover-nav .nav-col a:hover {
  color: var(--black);
}

#takeover-nav .nav-contact .content {
  max-width: 700px;
  width: 100%;
  padding: 20px;
}

#takeover-nav .nav-items {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 900;
  list-style: none;
  padding-left: 0;
}

#takeover-nav .nav-items li a:hover {
  color: var(--white);
}

#takeover-nav .nav-menu {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

#takeover-nav .nav-contact {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

#takeover-nav .contact-items {
  font-size: 1.25em;
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}

#takeover-nav .contact-items a:hover {
  color: var(--green);
}

#takeover-nav .social {
  font-size: 1em;
  display: flex;
  justify-content: center;
  gap: 15px;
}

#takeover-nav .social a {
  font-size: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  text-decoration: none;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  border: 1px solid var(--green);
  transition: all 0.3s ease-in-out;
}

#takeover-nav .social a:hover {
  color: var(--white);
  background-color: var(--green);
}

.gradient-overlay {
  bottom: 0;
  height: 50%;
  background: linear-gradient(to bottom,  rgba(33,33,33,0) 0%,rgba(33,33,33,1) 50%);
  z-index: 1;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

.video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

#video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  background-position: center center;
  background-size: cover;
  object-fit: cover;
  object-position: center;
  transform: rotate(180deg);
  top: 0;
  left: 0;
}

section {
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}

.section-hidden {
    opacity: 0;
    transform: translateY(50px);
}

section.hero {
  background-color: var(--black);
  border-bottom-right-radius: 15vw;
  position: relative;
  height: 80vh;
  min-height: 500px;
}

.page-hero {
    background-color: var(--black);
    height: 350px;
    min-height: 250px;
    padding-top: 120px;
    border-bottom-right-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero .page-title {
    font-size: clamp(3em, 8vw, 5em);
    margin-bottom: 0.5em;
}

.page-hero .lead {
    font-size: 1.3em;
}

.page-hero::before,
.page-hero::after {
    content: none;
}

section.hero:before {
  content: "";
  background-color: var(--black);
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 15vw;
  height: 15vw;
}

section.hero:after {
  content: "";
  background-color: #f8f9fa;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 15vw;
  height: 15vw;
  border-top-left-radius: 15vw;
}

section.two,
.about-us,
.services,
.portfolio,
.how-it-works,
.testimonials,
.cta-contact,
.our-clients {
  min-height: auto;
  height: auto;
  padding: 80px 0;
}

.our-clients {
    background-color: var(--white);
    color: var(--black);
}

.client-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 200px;
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: var(--pearl);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    padding: 10px;
}

.client-logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    border-color: var(--green);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.services .service-card {
  background-color: var(--pearl);
  color: var(--black);
  border: 1px solid rgba(0, 189, 212, 0.3);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.services .service-card:hover {
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 189, 212, 0.3);
}

.services .service-card h3 {
  color: var(--green);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.services .service-card:hover h3 {
  color: var(--black);
}

.services .service-card p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.services .service-card .price {
  font-weight: 900;
  font-size: 1.4em;
  color: var(--black);
}

.services .service-card:hover .price {
    color: var(--black);
}

.services .service-card:hover .icon-animation {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.portfolio-grid {
    padding-top: 20px;
}

.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-item .portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-item .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item .card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 189, 212, 0.2);
}

.portfolio-item .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-item .portfolio-link img {
  border: 1px solid rgba(0, 189, 212, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0,0,0,0.07);
}

.portfolio-item .portfolio-link img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.portfolio-item p.fw-bold {
    font-size: 1.1em;
    margin-top: 10px;
}

.portfolio-item p.small {
    font-size: 0.85em;
    color: #666;
}

.filter-btn {
    background-color: transparent;
    color: var(--black);
    border-color: var(--green);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.filter-btn:hover:not(.active) {
    background-color: rgba(0, 189, 212, 0.1);
    color: var(--black);
    border-color: var(--green);
}

.filter-btn.active {
    background-color: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.filter-btn.active:hover {
    background-color: var(--green);
    color: var(--white);
}

.green-btn {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.green-btn:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--green);
  transform: translateY(-3px);
}

.how-it-works-step {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 20px;
  border-radius: 8px;
}

.how-it-works-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  background-color: rgba(255,255,255, 0.1);
}

.how-it-works-step .icon-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.how-it-works-step .icon-placeholder i {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--green);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  font-size: 3rem;
}

.testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonial-card {
  background-color: var(--pearl);
  border: 1px solid rgba(0, 189, 212, 0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
}

.testimonial-card .lead {
    font-size: 1.2em;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card .fw-bold {
    font-size: 1.05em;
    margin-top: 15px;
    color: var(--green);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--green);
    border-radius: 50%;
    padding: 15px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--green);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: var(--black);
}

.cta-contact {
  padding-top: 80px;
  padding-bottom: 80px;
}

.whatsapp-btn {
  background-color: #25D366;
  border-color: #25D366;
  color: var(--white);
  font-weight: 700;
  padding: 15px 45px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
  background-color: #1DA851;
  border-color: #1DA851;
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-btn i {
    font-size: 1.5em;
    color: white;
}

.inbdigital__wha-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: inline-flex;
    color: #FFF;
    background-color: #61b3e9;
    text-align: center;
    border-radius: 50px;
    box-shadow: 2px 2px 3px #999;
    transition: all 0.3s ease-in-out;
    outline: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.inbdigital__wha-float::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #61b3e9;
    transform: translate(-50%, -50%);
    animation: ringAnimation 1.5s infinite;
}

@keyframes ringAnimation {
    0% {
        width: 50px;
        height: 50px;
        opacity: 1;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

.inbdigital__wha-float .inbdigital__wha-float_icon {
    margin: auto;
}

.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 30px 0;
    font-size: 0.9em;
}

.footer .social-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer .social-footer a {
    color: var(--green);
    font-weight: 600;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    border: 1px solid var(--green);
    transition: all 0.3s ease-in-out;
}

.footer .social-footer a:hover {
    color: var(--white);
    background-color: var(--green);
}

@media screen and (min-width: 1200px) {
  .hero {
    height: 75vh;
  }
}

@media screen and (max-width: 1199px) {
  .hero #video-bg {
    object-position: center;
  }
}

@media screen and (max-width: 991px) {
  #takeover-nav .nav-items {
    font-size: 2.5em;
  }
  .hero-title {
    font-size: 10vw;
  }
}

@media screen and (max-width: 767px) {
  #takeover-nav .nav-menu {
    min-height: 400px;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #takeover-nav .nav-menu a {
    color: var(--black);
  }

  #takeover-nav .nav-menu a:hover {
    color: var(--white);
  }

  #takeover-nav .nav-contact {
    min-height: 450px;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #takeover-nav .nav-contact .nav-title {
    font-size: 2em;
  }

  .sticky-nav .logo-img {
    width: 180px;
    height: 35px;
  }

  .sticky-nav #nav-btn {
    width: 50px;
    height: 35px;
  }

  .inbdigital__wha-float {
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
  }
  .inbdigital__wha-float .inbdigital__wha-float_icon {
      font-size: 1.8em;
  }

  section {
    padding: 60px 0;
  }
  .testimonial-card {
      padding: 20px;
  }
  .testimonial-card .lead {
    font-size: 1.1em;
  }
  .carousel-control-prev,
  .carousel-control-next {
      width: 10%;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      padding: 10px;
      font-size: 1.2rem;
  }
  .carousel-inner .carousel-item .testimonial-card {
        max-width: 100%;
  }

  .hero .hero-title {
    mix-blend-mode: difference;
    color: var(--white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), -1px -1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    filter: invert(0);
  }

  .hero .video-wrap {
    z-index: 0;
  }
  .hero .content {
    z-index: 2;
  }
}

@media screen and (max-width: 575px) {
  header .swoosh {
    width: 165px;
    height: 35px;
    top: 10px;
  }

  header .sticky-nav {
    top: 10px;
  }

  header .sticky-nav .logo-img {
    width: 150px;
    height: 30px;
  }

  header .sticky-nav #nav-btn {
    width: 45px;
    height: 30px;
  }

  header #takeover-nav .contact-items {
    font-size: 0.9em;
  }

  .hero {
    min-height: 450px;
    height: 60vh;
  }

  .hero .hero-title {
    font-size: 12vw;
  }

  .how-it-works-step {
      margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
    .testimonials .carousel-inner .carousel-item.active,
    .testimonials .carousel-inner .carousel-item-next,
    .testimonials .carousel-inner .carousel-item-prev {
        display: flex;
    }
    .testimonials .carousel-inner .carousel-item-next .col-md-6:first-child,
    .testimonials .carousel-inner .carousel-item-prev .col-md-6:first-child {
        margin-left: auto;
    }
}