/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}
.top-16{
    top:1rem;
    left:0;
}
.mb-7{
    margin-bottom: 7rem;
}
.bg-blue{
    background: var(--bs-blue);
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1{
    color: var(--bs-blue);
}
@media(max-width:991.98px){
    .top-16{
       top:0.5rem;
       left:2rem;
        }
        .mb-7{
    margin-bottom: 4rem;
}
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.allbtn {
  color: var(--bs-blue);
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-1 {
  background-color: #f0ecfc;
background-image: linear-gradient(315deg, #f0ecfc 0%, var(--bs-primary) 74%);
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-1 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-1:before,
.btn-1:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: var(--bs-primary);
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
  transition: all 0.3s ease;
}
.btn-1:before{
   height: 0%;
   width: 2px;
}
.btn-1:after {
  width: 0%;
  height: 2px;
}
.btn-1:hover:before {
  height: 100%;
}
.btn-1:hover:after {
  width: 100%;
}
.btn-1:hover{
  background: transparent;
}
.btn-1 span:hover{
  color: var(--bs-primary);
}
.btn-1 span:before,
.btn-1 span:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: var(--bs-primary);
  /*box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.5),
    inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/
  transition: all 0.3s ease;
}
.btn-1 span:before {
  width: 2px;
  height: 0%;
}
.btn-1 span:after {
  height: 2px;
  width: 0%;
}
.btn-1 span:hover:before {
  height: 100%;
}
.btn-1 span:hover:after {
  width: 100%;
}
  


.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-blue);
    /* color: var(--bs-dark); */
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* color: var(--bs-primary); */
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
 .logo-image{
    width: 150px;
   
 }

@media(max-width:1200px) and (min-width:992px){
    .logo-image{
    width: 118px;
    height: 118px;
 }

}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
       justify-content: end;;
    }
}

@media (max-width: 991.98px) {
    div.navbar-collapse.collapse.show {
    transform: translate(0%, 0px);
}
    .navbar-collapse{
    position: absolute;
    left: 0;
    width: 50%;
    top: 0;
    height: 100vh;
    background: var(--bs-white);
    transition: all 0.4s ease-in-out;
    transform: translate(-100%, 0px);
    }
    .navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active{color: var(--bs-primary);}
    .navbar-expand-lg{
        justify-content: end;
        position: static;
    }
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        /* margin-top: 15px;
        border-top: 1px solid #EEEEEE; */
        padding: 1.3rem;
    }
    .logo-image{
        width:100px;
        height: 100px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(0 0 0 / 61%);       
    z-index: 1;
}
#header-carousel .carousel-item img{
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
}

@media(min-width:1200px){
    .carousel .carousel-caption{padding : 7rem;}
    }
@media(min-width:992px) and (max-width:1199.98px){
    .carousel .carousel-caption{padding : 2rem;}
    }
@media(min-width:0px) and (max-width:991.98px){
    .carousel .carousel-caption{padding : 2.2rem;}
    }

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    
    
}

@media (max-width: 768px) {
    

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }  
    .carousel .carousel-item .display-2{
        font-size: 1.3rem !important;
    }    
}


    .hero-banner .display-1 {
        font-size: 4rem;
        font-family: "Rethink Sans";
    }
    .hero-banner .display-2 {
        font-size: 2rem;
        max-width: 880px;
        font-weight: 100;
        
    }

@media (max-width: 768px) {
    .hero-banner .display-1 {
        font-size: 2.1rem;
        font-family: "Rethink Sans";
    }
    .hero-banner .display-2{
        font-size: 1rem !important;
    }    
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


.hero-banner{
    background: url(../img/web-desktop.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

@media (max-width: 768px) {
    .hero-banner{
    background: url(../img/web-mob.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 550px;
} 
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}
.about-img video{
    cursor:pointer;
    width:100%;
    min-height:500px;
    height:100%;
    border-radius:12px;
    display:block;
    object-fit:cover;
    background-color:rgba(0, 0, 0, 0);
    object-position:50% 50%";
}
/*.about-img::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    width: 200px;*/
/*    height: 300px;*/
/*    top: 0;*/
/*    left: 0;*/
/*    border: 5px solid var(--bs-primary);*/
/*    animation: animateUpDown 3s ease-in-out infinite;*/
/*    z-index: -1;*/
/*}*/

/* Sticky CTA Button */
    .sticky-cta {
      position: fixed;
      bottom: 20px;
      left: 10px;
      background: #F5C052;
      color: #000; /* black text for better contrast */
      padding: 15px 25px;
      font-size: 15px;
      font-weight: lighter;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      z-index: 9999;
      animation: bounce 2s infinite;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, background 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Hover Effect */
    .sticky-cta:hover {
      background: #d9a641; /* darker shade of #F5C052 */
      transform: scale(1.05);
    }

    /* Bounce Animation */
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-8px);
      }
      60% {
        transform: translateY(-4px);
      }
    }

    /* Responsive Styling */
    @media (max-width: 768px) {
      .sticky-cta {
        font-size: 16px;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
    }

    @media (max-width: 480px) {
      .sticky-cta {
        font-size: 14px;
        padding: 10px 18px;
        bottom: 10px;
        right: 10px;
        gap: 6px;
        width: 50%;
      }
    }

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.logo-carousel .logo-item img {
    /* filter: grayscale(); */
    filter: invert(1);
    height: 86px;
    object-fit: contain;
}
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
    box-shadow: 0px 6px 5px 2px #00000021;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}





/*** Appoinment ***/
.appoinment , .feature {
    background: radial-gradient(72.2856% 76.0297% at 50% -38.4679%, #4169e1 0%, #0a0945 100%);
    position: relative;
    opacity: 0.9;
}
.mix-blend-mode-overlay {
  mix-blend-mode: overlay;
  z-index: -1;
}
.key-highlights.rounded{border-radius: 8px !important;
    background: linear-gradient(72.29deg, var(--bs-blue) 0%, #252258 100%);
    height:100%;
}



/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}







/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .gallery img{
    height: 120px;
    object-fit: cover;
}

/* .copyright {
    background: #222222;
} */

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}


/* faq start */
.accordion-button:not(.collapsed) {
    color: var(--bs-blue);
    background-color: var(--bs-primary);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../img/accordion-open.svg);
}
/* faq end */