@charset "UTF-8";
@font-face {
  font-family: "nimbus_sans_lregular";
  src: url("/fonts/NimbusSanL-Reg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "nimbus_sans_lbold";
  src: url("/fonts/NimbusSanL-Bol-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("/fonts/NimbusSanL-Bol.woff2") format("woff2"), url("/fonts/NimbusSanL-Bol.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("/fonts/NimbusSanL-Reg.woff2") format("woff2"), url("/fonts/NimbusSanL-Reg.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("/fonts/NimbusSanL-RegIta.woff2") format("woff2"), url("/fonts/NimbusSanL-RegIta.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nimbus Sans L";
  src: url("/fonts/NimbusSanL-BolIta.woff2") format("woff2"), url("/fonts/NimbusSanL-BolIta.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "True Fate Script";
  src: url("/fonts/TrueFateScript-Regular.woff2") format("woff2"), url("/fonts/TrueFateScript-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.text-blue {
  color: #4b70da;
}

.text-cream {
  color: #f7f2e5;
}

.text-dark-blue {
  color: #001256;
}

.bg-blue {
  background-color: #4b70da;
}

.bg-cream {
  background-color: #f7f2e5;
}

.bg-dark-blue {
  background-color: #001256;
}

.btn-blue {
  background-color: #4b70da;
  border-color: #4b70da;
  color: #4b70da;
}
.btn-blue:active, .btn-blue:focus, .btn-blue:hover {
  background-color: #4b70da;
  border-color: #4b70da;
  color: #f7f2e5;
}

.btn-cream {
  background-color: #f7f2e5;
  border-color: #f7f2e5;
  color: #f7f2e5;
}
.btn-cream:active, .btn-cream:focus, .btn-cream:hover {
  background-color: #f7f2e5;
  border-color: #f7f2e5;
  color: #4b70da;
}

.btn-dark-blue {
  background-color: #001256;
  border-color: #001256;
  color: #001256;
}
.btn-dark-blue:active, .btn-dark-blue:focus, .btn-dark-blue:hover {
  background-color: #001256;
  border-color: #001256;
  color: #f7f2e5;
}

body {
  font-family: "Nimbus Sans L", sans-serif;
  background-color: #f7f2e5;
  color: #4b70da;
}

.font-script {
  font-family: "True Fate Script";
  font-weight: normal;
  font-style: normal;
}

header {
  border-bottom: 1px solid #f7f2e5;
}

.btn {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  padding: 25px 50px;
  border: 2px solid;
  background-color: transparent;
  border-radius: 50%;
}
.btn.btn-default {
  border-color: #4b70da;
  color: #4b70da;
}
.btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus {
  background-color: #4b70da;
  color: #f7f2e5;
}

/* Custom styles for fullscreen navbar */
.navbar-collapse {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f7f2e5;
  z-index: 1050;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 1rem;
}
.navbar-collapse.show {
  transform: translateX(0);
}
.navbar-collapse .logo {
  margin-bottom: 10vh;
}

.navbar-nav {
  text-align: center;
}
.navbar-nav .nav-link {
  font-size: 20px;
  color: #4b70da !important;
  padding: 1rem 0 !important;
  font-style: normal;
  font-weight: 700;
  display: block;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #001256 !important;
  transform: scale(1.1);
}

/* Center the brand/icon */
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #4b70da !important;
}

/* Hamburger button positioning */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  z-index: 1060;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Custom hamburger icon */
.navbar-toggler-icon {
  background-image: none;
  width: 32px;
  height: 18px;
  position: relative;
  background-color: #f7f2e5;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.navbar-toggler-icon::before, .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #4b70da;
  transition: all 0.3s ease;
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  bottom: -8px;
}

/* Animate hamburger to X when open */
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Ensure navbar stays at top */
.navbar {
  background-color: #f7f2e5 !important;
  padding: 1rem;
  min-height: 80px;
}

/* Close button in overlay */
.close-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #f7f2e5;
  cursor: pointer;
  z-index: 1070;
  transition: all 0.3s ease;
}
.close-overlay:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.navbar-expand-never .navbar-toggler {
  display: block;
}
.navbar-expand-never .navbar-toggler.nav-open .navbar-toggler-icon:before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-expand-never .navbar-toggler.nav-open .navbar-toggler-icon:after {
  transform: rotate(-45deg);
  top: 0;
}
.navbar-expand-never .navbar-collapse {
  display: none !important;
}
.navbar-expand-never .navbar-collapse.show {
  display: block !important;
}

@media (max-width: 576px) {
  .navbar-nav .nav-link {
    font-size: 1.35rem;
  }
  .navbar-brand {
    font-size: 1.6rem;
  }
  .close-overlay {
    font-size: 1.6rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar-collapse.show .nav-item {
  animation: fadeInUp 0.5s ease forwards;
}
.navbar-collapse.show .nav-item:nth-child(1) {
  animation-delay: 0.1s;
}
.navbar-collapse.show .nav-item:nth-child(2) {
  animation-delay: 0.2s;
}
.navbar-collapse.show .nav-item:nth-child(3) {
  animation-delay: 0.3s;
}
.navbar-collapse.show .nav-item:nth-child(4) {
  animation-delay: 0.4s;
}
.navbar-collapse.show .nav-item:nth-child(5) {
  animation-delay: 0.5s;
}

.border {
  border: 2px #4b70da solid !important;
}

.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.content-padding {
  padding: 5rem;
}

.overlay {
  position: absolute;
  inset: 0;
}

h1,
.h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}

h2,
.h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.indent-1 {
  margin-left: 3rem;
}

.indent-2 {
  margin-left: 6rem;
}

.border-bottom {
  border-bottom: 2px solid #4b70da !important;
}

.h-border {
  width: 2px;
  height: 100%;
  background: #4b70da;
}

.circle-of-dreams {
  top: 0;
  left: 0;
  margin-left: -3rem;
  margin-top: -3rem;
}

/* Custom accordion styles */
.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
}

.accordion-item {
  background: transparent !important;
  border: none !important;
  border-top: 2px solid #4b70da !important;
  border-radius: 0 !important;
}

.accordion-item:first-child {
  border-top: 2px solid #4b70da !important;
}

.accordion-item:last-child {
  border-bottom: 2px solid #4b70da !important;
}

.accordion-button {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 1rem 0;
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  color: inherit !important;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button::after {
  display: none;
}

.accordion-body {
  background: transparent !important;
  color: inherit !important;
  padding: 0 0 1rem 0;
}

.accordion-header h2 {
  margin: 0;
}

.custom-icon {
  margin-left: auto;
  transition: transform 0.2s ease-in-out;
}

.viewport-half-width {
  position: absolute;
  width: 40vw;
  overflow: hidden;
}

.gallery {
  width: 100%;
  height: 100%;
}

.gallery-item {
  position: absolute;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.gallery-nav {
  position: relative;
  bottom: 6rem;
  left: 0;
  text-align: center;
  z-index: 100;
}

.gallery-nav .dot {
  display: inline-block;
  width: 10px;
  height: 17px;
  border-radius: 50%;
  border: 1px solid #4b70da;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.gallery-nav .dot.active {
  background-color: #4b70da;
}

.testimonial-carousel-wrapper {
  position: relative;
}

.testimonial-carousel-wrapper .owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
}

/* Custom Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button {
  position: absolute;
  background: none !important;
  border: none !important;
  color: #f7f2e5 !important;
  font-size: 40px !important;
  font-weight: bold !important;
  pointer-events: auto;
  outline: none !important;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 0.7;
}

.owl-prev {
  left: -60px !important;
}

.owl-next {
  right: -60px !important;
}

.owl-prev span:before {
  content: "‹";
}

.owl-next span:before {
  content: "›";
}

.owl-nav span {
  font-size: inherit !important;
}

/* Custom Owl Carousel Dots */
.owl-dots {
  text-align: center !important;
  margin-top: 30px !important;
}

.owl-dot {
  display: inline-block !important;
  margin: 0 10px !important;
  width: 8px !important;
  height: 17px !important;
  border-radius: 50% !important;
  background: rgba(247, 242, 229, 0.3) !important;
  border: 1px solid #f7f2e5 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.owl-dot.active {
  background: #f7f2e5 !important;
}

.owl-dot:hover {
  background: rgba(247, 242, 229, 0.6) !important;
}

.owl-dot span {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .owl-prev {
    left: -40px !important;
    font-size: 30px !important;
  }
  .owl-next {
    right: -40px !important;
    font-size: 30px !important;
  }
}
@media (max-width: 576px) {
  .owl-prev {
    left: -20px !important;
    font-size: 25px !important;
  }
  .owl-next {
    right: -20px !important;
    font-size: 25px !important;
  }
}
.ticker-container {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.ticker-wrapper {
  display: flex;
  width: calc(200% + 40px);
  animation: scroll 20s linear infinite;
}

.ticker-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 80px;
}

.ticker-item img {
  max-width: 400px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.ticker-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Desktop: Show 4-4.5 logos */
@media (min-width: 1024px) {
  .ticker-item {
    width: 23.8095238095vw;
  }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .ticker-item {
    width: 33.3333333333vw;
  }
}
/* Mobile: Show 1-1.5 logos */
@media (max-width: 767px) {
  .ticker-item {
    width: 14.2857142857%; /* 7 logos per set, consistent width */
    padding: 0 15px;
    min-width: 33.3333333333vw; /* Show about 3 logos at once */
  }
  .ticker-item img {
    max-height: 50px;
    width: auto;
    max-width: 100%;
  }
  .ticker-container {
    padding: 30px 0;
  }
  .ticker-wrapper {
    animation-duration: 35s; /* Slower on mobile for better visibility */
  }
}
/* Pause animation on hover */
.ticker-container:hover .ticker-wrapper {
  animation-play-state: paused;
}

.bubbles {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -30%);
}

.portfolio-item {
  display: block;
  padding-bottom: 150%;
  position: relative;
}

.portfolio-item video,
.portfolio-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 24px;
  pointer-events: none;
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1050;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 10px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    top: auto;
    bottom: 20px;
    transform: none;
  }
  .lightbox-prev {
    left: 20px;
  }
  .lightbox-next {
    right: 20px;
  }
}
.services h1 span {
  font-size: 81px;
}

.service-card {
  text-decoration: none;
  position: relative;
}

.service-card .img-container {
  padding-bottom: 150%;
  position: relative;
}

.service-card .img-container img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}

.service-card .description {
  position: absolute;
  top: 0;
  left: 100%;
  width: calc(200% + 3rem);
  height: 100%;
  display: none;
  opacity: 0;
  max-width: 0;
  transition: all 0.3s linear;
}

.col-md:nth-last-child(-n+2) .service-card .description {
  left: auto;
  right: 100%;
}

.service-grid:hover .service-card .img-container {
  opacity: 0;
}

.service-card:hover .img-container {
  opacity: 1 !important;
}

.service-card:hover .description {
  display: block;
  z-index: -1;
  opacity: 1;
  max-width: calc(200% + 3rem);
}

.logo-container .tag-line {
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}
.home-hero h1 span {
  font-size: 60px;
}

@media (max-width: 767px) {
  .bubbles {
    transform: translate(18px, -30%);
  }
  .indent-1 {
    margin-left: 0;
  }
  .indent-2 {
    margin-left: 0;
  }
  .content-padding.no-sm-x-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .logo-container {
    height: auto;
    width: 70%;
    margin: 0 auto;
  }
  .tagline {
    padding-bottom: 1rem;
    max-width: 80%;
    margin-top: 0.5rem;
  }
  .content-padding {
    padding: 2.5rem;
  }
  h2, .h2 {
    font-size: 18px;
  }
  .services-hero h1 span,
  .home-hero h1 span {
    font-size: 40px;
    display: block;
    margin-top: 1rem;
  }
  .home-hero .overlay {
    background: rgba(0, 0, 0, 0.2);
  }
  .home-hero h1.h2 {
    font-size: 14px;
  }
  .home-hero h1 span {
    font-size: 30px;
    display: inline;
    margin-top: 1rem;
  }
  .circle-of-dreams {
    margin-left: 1rem;
    margin-top: -2rem;
  }
  .gallery-container {
    height: 90vw !important;
  }
  .viewport-half-width {
    width: 100%;
  }
  .gallery-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .owl-theme .owl-nav {
    top: auto;
    bottom: 50px;
    width: 80%;
    margin-left: 10%;
  }
  .seal {
    width: 100px;
    transform: translate(-20px, -20px);
  }
  .service-card:hover .description {
    display: none;
    opacity: 1;
    max-width: 100%;
    width: 100%;
    background-color: rgba(247, 242, 229, 0.5647058824);
    left: 0;
    z-index: 1;
    /* opacity: .5; */
  }
  .col-md:nth-last-child(-n+2) .service-card .description {
    left: auto;
    right: 0;
  }
  .service-grid:hover .service-card .img-container {
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */