/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * Note: active_admin.scss is excluded from require_tree to prevent Active Admin styles
 * from being applied to non-admin pages. Active Admin loads its stylesheet automatically
 * for admin pages only.
 *

 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body {
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1230px;
  }
}
.form-control::placeholder {
  opacity: 0.5 !important;
}
.btn-primary {
  background: #1DACFF;
  border-color: #1DACFF;
}
.btn-white {
  background: white;
  color: #080B37;
  &:hover {
    background: #1DACFF;
  }
}
.light-blue {
  background: #1DACFF24;
}
.dark-blue {
  background: #080B37;
  &.btn {
    &:hover {
      background: #1DACFF;
    }
  }
}
.lets-go {
  background: rgba(255,255,255,0.9);
  border-radius: 100%;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  .fa-spin {
    animation-duration: 10s;
  }
  &:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  }
}
@media (max-width: 767px) {
  .lets-go {
    bottom: 20px;
    left: 20px;
    img {
      width: 80px;
      height: 80px;
    }
  }
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.get-started-wrapper {
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
  top: 45%;
  right: -265px;
  z-index: 999;
}

.get-started {
  max-width: 100%;
  width: 265px;
  border-radius: 0 0 0 20px;
}
.get-started-trigger {
  position: absolute;
  z-index: 10;
  left: -44px;
  top: 0;
  cursor: pointer;
  transition: all ease 0.3s;
  min-width: 44px;
  height: 44px;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  i {
    transform: rotate(180deg);
    transition: all ease 0.3s;
  }
}

.get-started-wrapper.active{
  right: 0;
  .get-started-trigger {
    i {
      transform: rotate(0);
    }
  }
}

.navbar-nav {
  .nav-link {
    color: #2c2c2c;
    border-radius: 20px;
    transition: all 0.2s ease;
    &.active {
      color: #1DACFF;
      background: rgba(29, 172, 255, 0.12);
      font-weight: 500;
    }
  }
  .dropdown-menu {
    width: 300px;
    .dropdown-item {
      white-space:  normal;
      &:hover {
        background: #1DACFF24;
      }
    }
  }
}
.cats {
  .btn {
    i {
      transform: rotate(-45deg);
      opacity: 0.5;
    }
    &:hover {
      background: #080B37;
      color: white;
      i {
        color: #fff !important;
      }
    }
  }
}
.service-btn {
  &:hover {
    background: white;
    color: #080B37 !important;
  }
}

#services-carousel,
#services-carousel-page,
#services-carousel-details,
#services-carousel-team,
#services-carousel-pricing {
  overflow: hidden;
  width: 100%;
  position: relative;

  .item {
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
    width: auto !important;
  }

  .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important;
  }

  .owl-stage {
    display: flex;
    align-items: center;
  }

  .owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .owl-nav {
    display: none !important;
  }

  .owl-dots {
    display: none !important;
  }
}

.services-carousel {
  width: 100%;
  position: relative;

  .item {
    padding: 0 12px;
    display: block;
  }

  &:not(.owl-loaded) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  @media (max-width: 991px) {
    &:not(.owl-loaded) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 767px) {
    &:not(.owl-loaded) {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 575px) {
    &:not(.owl-loaded) {
      grid-template-columns: 1fr;
    }
  }

  &:not(.owl-loaded) .item:nth-child(n+5) {
    display: none;
  }

  .owl-item {
    display: flex;
    align-items: stretch;
    @media (max-width:575px) {
      justify-content: center;
    }
  }

  .service-card {
    width: 100%;
    display: block;
    position: relative;
    img {
      height: 370px;
      object-fit: cover;
      border-radius: 20px;
    }
  }

  .owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .owl-stage {
    display: flex;
    align-items: stretch;
  }

  &.owl-carousel {
    display: block;
  }

  .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    margin: 0;
    @media (max-width:575px) {
      display: none;
    }
  }
  .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    .owl-dot {
      background: #1DACFF;
      border: none;
      border-radius: 9px;
      display: block;
      height: 12px;
      width: 12px;
      &.active {
        background: white;
      }
    }
  }

  .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
  }

  .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: white !important;
  }

  .owl-nav .owl-prev {
    left: 0;
    position: relative;

  }

  .owl-nav .owl-next {
    right: 0;
    position: relative;
  }
}

.rays {
  position: relative;
  &:before {
    content: url(/assets/rays-0b4289cf9e8d79111f16307b439a046c028f195ee27607f3c19e8d3182cb1aa2.svg);
    position: absolute;
    right: -45px;
    top: -45px;
  }
}
.how-work-card {
  width: min(222px, 100%);
  .count {
    align-items: center;
    background: #1DACFF24;
    color: #080B37;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
  }
}
.service-card {
  position: relative;
  overflow: hidden;
  h3 {
    background: #080B37BD;
    bottom: 0;
    color: #fff;
    margin: 0;
    position: absolute;
    text-align: center;
    width: 100%;
  }
  .goto {
    height: 44px;
    transform: rotate(-45deg) translate(150px, 1px);
    transition: all ease 0.3s;
    opacity: 0;
    width: 44px;
  }
  &:hover {
    .goto {
      opacity: 1;
      transform: rotate(-45deg) translate(0, 0);
    }
  }
}
.service-card-1 {
  transition: all ease 0.15s;
  &:hover {
    background-color: #080B37;
    color: #fff;
    a {
      color: #fff;
    }
  }
}
.shadow-light {
  box-shadow: 0px 12px 32px 0px #080B370D;
}
address {
  i {
    background: #1DACFF;
    border-radius: 30px;
    color: #fff;
    height: 34px;
    text-align: center;
    min-width: 34px;
    &::before {
      position: relative;
      top: 10px;
    }
  }
}
.upload {
  border-style: dashed !important;
}
.pricing {
  .accordion-button:not(.collapsed) {
    background: none;
    color: #1DACFF;
  }
}
.services-details .accordion .question {
  border: 1px solid #f5f5f5;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
}
.services-details .accordion .question .accordion-button {
  box-shadow: none;
  color: #2C2C2C;
  font-size: 20px;
  outline: none;
  justify-content: space-between;
}
.services-details .accordion .question .accordion-button::after {
  background: none;
  border: 1px solid #D5D5D5;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  border-radius: 99px;
  font-size: 16px;
  text-align: center;
  transition: none;
  margin-left: 10px;
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-details .accordion .question .accordion-button:not(.collapsed)::after {
  background: #1DACFF;
  border: none;
  color: #fff;
}
.services-details .accordion .question .accordion-button:not(.collapsed) {
  color: #fff;
  background: #080B37;
  box-shadow: none;
}
.services-details .accordion .question .accordion-body {
  font-size: 18px;
  font-weight: 300;
  padding-top: 0;
  color: #fff;
  background: #080B37;;
}
@media (max-width: 991px) {
  .navbar-brand img {
    width: 140px;
  }
}
@media (max-width:575px) {
  .navbar {
    margin-inline: 1.5rem;
  }
  .how-work-card {
    min-width: 100%;

  }
}

.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  display: flex;
}
.age-verification-modal {
  background: white;
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}
.age-verification-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  color: #555;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.age-verification-close:hover {
  background: #1DACFF;
  color: white;
}
.age-verification-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.4;
}
.age-verification-minors {
  font-size: 0.95rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}
.age-modal-link {
  color: #1DACFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.age-modal-link:hover {
  color: #1590e0;
}
.age-verification-prompt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 28px;
}
.age-verification-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.age-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  color: white;
  background: #1DACFF;
  transition: background 0.2s, transform 0.1s;
}
.age-btn:hover {
  background: #1590e0;
}
.age-btn:active {
  transform: scale(0.98);
}
.age-verification-disclaimer {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.5;
}
