@import url(mainstyle.css);

*{
    scroll-behavior: smooth;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;  
}
.btn-close {
    background-image: unset;
}
a{
    color: inherit;
    text-decoration: none;
}

[data-StrikerNest-theme="dark"] [data-item="dark"],
[data-StrikerNest-theme="light"] [data-item="light"] {
    display: block;
}

[data-StrikerNest-theme="dark"] [data-item="light"],
[data-StrikerNest-theme="light"] [data-item="dark"] {
    display: none;
}

.nav-link{
    color: var(--nav-text);  
    font-family: var(--secondfont);
    font-weight: 600;  
    text-transform: uppercase;
}
.nav-link:focus{
    color: var(--nav-text) !important;
}
.nav-item.active .nav-link, .nav-item:hover .nav-link{
    color: var(--prime-text);    
}
::placeholder{
    color: var(--input-text) !important;
    opacity: 0.5 !important;
}

.head-content{
    width: 760px;
    margin: auto;
    max-width: 100%;
    text-align: center;
    text-transform: capitalize;
}

.theme-btn{
    min-width: 50px;
    min-height: 50px;
}

.icons-bg{
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background-color: var(--prime-bg);
}

/* Slide background with blur */
.slide-bg {
    position: relative;
    
    /* background: url('../../assets/images/banner-new-2.webp') no-repeat top/cover; */
    background:linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../../assets/images/banner-new1.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

/* .slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: 0;
} */



/* Banner Slider */
.banner-slider {
    min-height: 750px;
}

/* Splide slides */
#banner-slides .splide__slide {
    min-height: 750px;
}

/* Banner content image fix */
.banner-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.banner-cont img {
    width: 100%;
    max-width: 640px;
    height: auto !important;
    object-fit: contain !important;
}

/* Splide Navigation */
.splide__arrow {
    background: var(--prime-bg);
    width: 55px;
    height: 55px;
    border-radius: 5px;
    opacity: 1;
    bottom: 50px !important;
}

.splide__arrow svg {
    fill: var(--white-text);
}

/* Arrow positions */
.splide__arrow--prev {
    left: 50%;
    transform: translateX(-80px);
}

.splide__arrow--next {
    left: 50%;
    transform: translateX(20px);
}
 
/* Player Slider */
#player-slider .splide__arrow--prev {
    left: unset;
    right: 0px;
    top: -15px;
    border-radius: 0; 
}

#player-slider .splide__arrow--next {
    left: unset;
    right: 35px;
    top: -15px;
    border-radius: 0; 
}

/* Pagination */
.splide__pagination__page {
    background: #fff;
    height: 14px;
    width: 14px;
    opacity: 0.8;
    transition: transform 0.5s ease;
}

.splide__pagination__page.is-active {
    background: var(--prime-bg);
    transform: scale(1.2);
}

/* Mobile responsive fixes */
@media(max-width: 767px){
    .banner-slider {
        min-height: 600px;
    }
    #banner-slides .splide__slide {
        min-height: 600px;
    }
    .banner-cont {
        min-height: 300px;
    }
    .banner-cont img {
        max-height: 300px;
    }
    .splide__arrow {
        width: 40px;
        height: 40px;
        bottom: 20px !important;
    }
}

/* about css */
.about-bg1{
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('../../assets/images/gallery1.webp')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 200px;
}
.about-bg2{
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('../../assets/images/gallery2.webp')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 200px;
}
.about-bg3{
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('../../assets/images/gallery3.webp')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 200px;
}
.about-bg4{
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('../../assets/images/gallery4.webp')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 200px;
}

/* testimonial section css */
.splide__slide { 
  padding: 10px; 
}
.testimonial-img{
    width: 75px;
    height: 75px;
    border-radius: 50%; 
    outline: 2px solid var(--prime-border);
    outline-offset: 2px;
    overflow: hidden;
}
.testimonial-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.test-height{
    padding: 20px;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* rating */
.star-rating {
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
}

.star {
  position: relative;
  display: inline-block;
  color: #ccc;
}

.star:before {
  content: '★';
  position: absolute;
  left: 0;
  width: 0;
  overflow: hidden;
  color: gold;
}

.star.filled:before {
  width: 100%;
}

.star.half:before {
  width: 50%;
}

/* membership css */
.custom-bg1{
    background-color: var(--prime-btn);
    margin-top: -50px;
}

.custom-bg2{
    background-color: var(--second-btn);
    margin-top: -50px;
}

.custom-bg3{
    background-color: var(--custom-btn);
    margin-top: -50px;
}

.gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    overflow: hidden;
}


  /* FAQ ACCORDION */
 
  .faq-accordion .accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    transition:  0.3s ease-in;
  }
 
  .faq-accordion .accordion-button {
    font-weight: 700;
    background: var(--card-bg);
    color: var(--head-text);
    padding: 18px 20px;
    transition: 0.35s ease-in;
    box-shadow: none;
  }
 
  .faq-accordion .accordion-button:focus {
    box-shadow: none;
  }
 
  /* When Open (Active) */
  .faq-accordion .accordion-button:not(.collapsed) {
    background: var(--prime-text);
    color: #fff;
    box-shadow: none;
  }
 
  /* Arrow icon rotation */
  .faq-accordion .accordion-button::after {
    transition: transform 0.35s ease-in;
  }
  .faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }
 
  /* Body Content */
  .faq-accordion .accordion-body {
    background: var(--card-bg);
    color: var(--head-text);
    padding: 18px 22px;
    line-height: 1.6;
  }
 
  /* Hover effects */
  .faq-accordion .accordion-button:hover {
    background: var(--prime-bg);
    color: var(--white-text);
  }
  .faq-accordion .accordion-button:not(.collapsed):hover {
    background: var(--prime-bg);
    color: #fff;
  }
 
  /* Remove default accordion arrow */
  .faq-accordion .accordion-button::after {
      display: none !important;
  }
  /* Icon base */
  .faq-icon {
      margin-left: auto;
      font-size: 18px;
      transition: transform 0.3s ease-in;
  }
 
  /* When OPEN (active) - change icon OR rotate */
  .accordion-button:not(.collapsed) .faq-icon {
      transform: rotate(180deg);
  }

/* Gallery Section */
.gallery-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid Container */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 15px;
  grid-auto-flow: dense;
}

/* Grid Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover effect */
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Special spans */
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-auto-rows: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-auto-rows: 150px;
  }
}
.error{
  color: red;
}
#newsletter div.error{
  position: absolute;
  bottom: -25px;
}
#btnSwitch{
  width: 50px; 
}
#backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 50px !important;
    min-width: unset;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center; 
}
#backtotop.show {
    opacity: 1;
    visibility: visible;
}
.preloader {
    position: fixed;
    height: 100vh;
    max-height: 1500px; 
    width: 100%;
    z-index: 9999;
    background:linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%), url('../../assets/images/gallery2.webp')no-repeat;
    background-size: cover;
    background-position: center center;
}
.preloader-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} 