@import url("https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/versions/bulma-no-dark-mode.min.css");
@import url("https://fonts.googleapis.com/css2?family=Manrope:opsz,wght@12..96,200..800&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
.text-focus-in {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
body {
  color: #efefef;
  background: #242424;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Tiempos Headline", sans-serif !important;
  letter-spacing: -2;
}

p {
  font-family: "IBM Plex Sans", sans-serif;
}

.navbar.is-fixed-top {
  top: 10 !important;
}

.navbar-item:hover {
  background: none !important;
}

.navbar-item img, .navbar-item svg {
  max-height: 3rem !important;
}

.nav-icon-box {
  display: block;
  text-align: center !important;
  margin-top: 30px !important;
}
.nav-icon-box img {
  width: 60px;
}

.menu-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.line {
  width: 100%;
  height: 2px;
  background-color: #FFBD00;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animated hamburger to X */
.menu-toggle.active .line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active .line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 999;
  opacity: 0.8;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  font-family: "IBM Plex Sans", sans-serif;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav-links li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-overlay.active .nav-links li {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger the animation for each link */
.nav-overlay.active .nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay.active .nav-links li:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay.active .nav-links li:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay.active .nav-links li:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 4rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f7c742;
}

.hero {
  background: url("/img/hero-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero-title {
  font-size: 4.8em;
  line-height: 105%;
  margin-bottom: 20px;
}

.hero-button {
  background: #FFBD00 !important;
  color: #242424;
}
.hero-button:hover {
  background: #f7c742 !important;
  color: #242424;
}

.hero-subtitle {
  font-size: 1.6em;
  width: 80%;
  margin-bottom: 30px;
  line-height: 115%;
}

.hero-foot {
  padding: 30px;
}

.hero-logos {
  display: block;
}
.hero-logos li {
  display: inline-block;
}
.hero-logos li img {
  width: 100px;
}

#about, #process {
  padding: 150px 0px;
  background: #343434;
}

#about {
  background: url("/img/ro-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.tit {
  font-size: 1.6em;
}

.parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.div1, .div2, .div3, .div4, .div6 {
  min-height: 400px;
}

.div1 {
  background: url("/img/crowdyvest.png") !important;
}

.div2 {
  grid-column: span 2/span 2;
  background: url("/img/omnibiz.png") !important;
}

.div3 {
  grid-row-start: 2;
  background: url("/img/concreed.png") !important;
}

.div4 {
  grid-row-start: 2;
  background: url("/img/qshelter.png") !important;
}

.div5 {
  grid-row: span 2/span 2;
  grid-row-start: 2;
  background: url("/img/vargent.png") !important;
}

.div6 {
  grid-column: span 2/span 2;
  background: url("/img/perfecttrust.png") !important; /* Replace with your image */
}

#work, #cta {
  padding: 150px;
  background: url("/img/alt-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Zoom effect on hover */
.work-box:hover::before {
  transform: scale(1.1) !important;
}

/* Optional: Lighten overlay on hover */
.work-box:hover::after {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

/* Adjust tag styling for better visibility */
.work-box .tag.is-black {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.work-box {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #444444;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.work-box h2 {
  font-size: 1.8em;
  color: #fff;
  position: relative;
  z-index: 3;
}
.work-box .tagg {
  position: relative;
  z-index: 3;
}
.work-box .work-link {
  font-size: 1em;
  font-weight: 600;
  margin-top: auto !important;
  margin-bottom: 5px !important;
  position: relative;
  z-index: 3;
  color: #FFBD00;
  text-decoration: none;
}
.work-box .work-link:hover {
  color: #f7c742;
  padding: 5px;
  border-bottom: 1px solid #fff;
}
.work-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.5s ease;
  z-index: 1;
}
.work-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust overlay darkness here */
  z-index: 2;
  transition: background-color 0.3s ease;
}

.contact-box {
  margin-top: 100px;
}

.bottom-cta {
  padding: 100px 20px;
  width: 60%;
  margin: 10px auto;
}
.bottom-cta h2 {
  font-size: 4em;
  line-height: 110%;
  margin-bottom: 20px;
}
.bottom-cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.sectional-heading {
  color: #fff;
}
.sectional-heading h2 {
  font-size: 8em;
  color: #FFBD00;
  line-height: 105%;
}

.process-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  margin-left: 360px;
  padding-bottom: 50px;
  scrollbar-width: thin;
  scrollbar-color: #242424 #f0f0f0;
}

.process-box {
  display: inline-block;
  width: 28%;
  margin-right: 30px;
  border-left: 1px solid #fff;
  padding: 30px;
}
.process-box:hover {
  background: #242424;
  border-left: 1px solid #f7c742;
}
.process-box:hover h2 {
  color: #FFBD00;
}
.process-box img {
  margin-bottom: 10px;
  width: 64px;
}
.process-box h2 {
  font-size: 1.6em;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.process-box p {
  white-space: normal;
}

.logo-carousel {
  margin-top: 70px;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.logo-wrapper {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logo-wrapper:hover {
  animation-play-state: paused;
}

.logo-slide {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
  flex-shrink: 0;
}

.client-logo {
  width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Different animation variations */
.fade-left {
  transform: translateX(-30px);
}

.fade-right {
  transform: translateX(30px);
}

.fade-up {
  transform: translateY(30px);
}

.fade-down {
  transform: translateY(-30px);
}

/* Animation delay utilities */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.tots-wrapper {
  margin-top: 20px;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: max-content;
  grid-gap: 50px;
}

.tots-box {
  border-bottom: 1px solid #f7c742;
  padding-bottom: 30px;
}
.tots-box h2 {
  font-size: 2em;
  color: #f7c742;
}
.tots-box p {
  font-size: 1.2em;
}

.work-modal {
  overflow-y: scroll;
  overflow: scroll !important;
  padding: 20px;
  border-radius: 20px;
}
.work-modal img {
  border-radius: 15px;
}
.work-modal .project-title {
  font-size: 2em;
  color: #FFBD00;
}
.work-modal .project-industry {
  margin-bottom: 30px;
}
.work-modal .project-text {
  margin-bottom: 20px;
}
.work-modal .project-link {
  color: #FFBD00;
}
.work-modal .project-link:hover {
  color: #f7c742;
}

.mySlides {
  display: none;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  /* Styles for tablet */
  #work, #about, #process, #cta {
    padding: 100px 50px;
  }
  .tots-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-wrapper {
    margin-left: 20px;
  }
  .process-box {
    width: 50%;
    padding: 0px 20px;
  }
  .process-box h2 {
    font-size: 1.2em;
  }
  .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px; /* Slightly reduced gap for tablets */
  }
  /* Reset the desktop-specific spanning */
  .div2, .div6 {
    grid-column: auto;
  }
  .div3, .div4 {
    grid-row-start: auto;
  }
  .div5 {
    grid-row: auto;
    grid-row-start: auto;
  }
  /* Optional: Adjust minimum height for tablets */
  .work-box {
    min-height: 250px; /* Slightly reduced height for better tablet view */
  }
}
/* Mobile */
@media (max-width: 767px) {
  /* Styles for mobile */
  .hero-title {
    font-size: 4em;
    line-height: 105%;
    margin-bottom: 20px;
  }
  .tots-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero-button {
    background: #FFBD00 !important;
    color: #242424;
  }
  .hero-button:hover {
    background: #f7c742 !important;
    color: #242424;
  }
  .hero-subtitle {
    font-size: 1.2em;
    width: 90%;
    margin-bottom: 30px;
    line-height: 115%;
  }
  .menu-toggle {
    top: 20px;
    right: 20px;
  }
  .nav-links a {
    font-size: 1.5rem;
  }
  .tit {
    font-size: 1.2em;
  }
  #work, #about, #process, #cta {
    padding: 70px 30px;
  }
  .process-wrapper {
    margin-left: 20px;
  }
  .process-box {
    width: 80%;
    padding: 0px 20px;
  }
  .process-box h2 {
    font-size: 1.2em;
  }
  .sectional-heading {
    color: #fff;
  }
  .sectional-heading h2 {
    font-size: 4em;
  }
  .parent {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  /* Reset all special grid positioning */
  .div2, .div6 {
    grid-column: auto;
  }
  .div3, .div4 {
    grid-row-start: auto;
  }
  .div5 {
    grid-row: auto;
    grid-row-start: auto;
  }
  /* Ensure minimum height is maintained */
  .work-box {
    min-height: 300px;
  }
  .logo-carousel {
    padding: 40px 0;
  }
  .logo-slide {
    gap: 20px;
    padding: 0 10px;
  }
  .client-logo {
    width: 100px;
  }
  .bottom-cta {
    padding: 70px 30px;
    width: 100%;
    margin: 10px auto;
  }
  .bottom-cta h2 {
    font-size: 2.8em;
    line-height: 110%;
    margin-bottom: 20px;
  }
  .bottom-cta p {
    font-size: 1em;
    margin-bottom: 20px;
  }
}
/* Large mobile */
@media (min-width: 480px) and (max-width: 767px) {
  /* Styles for large mobile */
}
/* Small mobile */
@media (max-width: 479px) {
  /* Styles for small mobile */
}/*# sourceMappingURL=plethora.css.map */