
/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

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

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

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background:#413285;
}

.btn.btn-light {
    color:#AB2E86;
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: #413285;
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: #ab2e86;
    background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
    font-weight:bold;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color:#AB2E86;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
    color:#888484;
}

.dropdown .dropdown-menu a:hover {
    background:#413285;
    color: #FFF;
    font-weight: bold;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    color:#FFF;
    transition: .5s;
    font-weight: bold;
    opacity: 1;
    background-color: #fff;
    border-bottom: 1px solid #000;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #AB2E86;
    font-weight: bold;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0px solid #ccc;;
    border-radius: 0px;
    margin-top: 5px !important;
    transition: .5s;
    opacity: 0;
    font-weight: bold;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border:1px solid #413285;
        color:#413285;
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}


@media (min-width: 1200px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        /* height: 1200px; */
    }
}

.header-carousel .owl-nav .owl-prev {
    display: none;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -60px;
    right: 50%;
    transform: translateY(-50%);
    margin-right: -60px;
    border-radius: 60px;
    background:#413285;
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .owl-nav .owl-next i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: carousel-next-btn;
    animation-duration: 4s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    transition: 1s;
}

@keyframes carousel-next-btn {
    0%  {margin-top: 35%;}
    50%  {margin-bottom: 70%;}
    100% {margin-top: 35%;}
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 22%;
    bottom: 0;
   /* background: rgba(0, 0, 0, .5);*/
    display: flex;
    align-items: center;
}

.carousel-caption .ticket-form {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {width: 100%; height: 100%;}

    25% {width: 115%; height: 115%;}

    50% {width: 130%; height: 130%;}

    75% {width: 120%; height: 120%;}

    100% {width: 100%; height: 100%;}
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/

.bg-breadcrumb {
    position: relative;`    
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}
    

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.feature-item .feature-content {
    position: absolute;
    width: 100%; 
    height: 100%; 
    bottom: 0; 
    left: 0;
    margin-top: 0;
    margin-right: 0; 
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
    position: relative;
    z-index: 5;
    padding: 40px 10px;

}
/*** Feature End ***/


/*** Service Start ***/
.service {
    position: relative;
    overflow: hidden;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.service .service-section {
    position: relative;
    z-index: 5;
}

.service .service-days {
    border-radius: 10px;
    background: var(--bs-white);
}

.service .service-item {
    position: relative;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-white);
    z-index: 1;
}

.service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background:#413285;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
}

.service .service-item i {
    color:#AB2E86;
    transition: 0.5s;
}

.service .service-item:hover i {
    color: var(--bs-white);
}

.service .service-item .service-content {
    position: relative;
    z-index: 3;
}

.service .service-item .service-content p {
    transition: 0.5s;
}

.service .service-item:hover .service-content p {
    color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
    transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
    color: var(--bs-white);
}
/*** Service End ***/


/*** Attractions Start ***/
.attractions {
    position: relative;
    overflow: hidden;
}

.attractions::after {
    content: "";
    width: 100%;
    height: 70%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: attraction-image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes attraction-image-zoom {
    0%  {width: 100%;}

    25% {width: 115%;}

    50% {width: 130%;}

    75% {width: 120%;}

    100% {width: 100%;}
}

.attractions .attractions-section {
    position: relative;
    z-index: 3;
}

.attractions .attractions-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.attractions .attractions-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .7);
    transition: 0.5s;
    z-index: 2;
}

.attractions .attractions-item:hover:after {
    height: 100%;
}

.attractions .attractions-item .attractions-name {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
}

.attractions .attractions-item:hover .attractions-name {
    opacity: 1;
}

.attractions-carousel .owl-stage-outer {
    margin-top: 58px;
}


.attractions .owl-nav .owl-prev {
    position: absolute;
    top: 178px;
    left: -90px;
    background: #AB2E86;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}



.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color:#413285;
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: 178px;
    right: -90;
    background: #AB2E86;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color:#413285;
}
/*** Attractions End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background: rgba(0, 0, 0, .5);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover::after {
    width: 100%;
    height: 100%;
}

.gallery .gallery-item .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 5;
    opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    color: var(--bs-white);
     background:#413285;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: var(--bs-white);
    z-index: 5;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    background:#413285;
    border-radius: 10px;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover:after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.team .team-item .team-content .team-icon {
    background: var(--bs-light);
    border-radius: 10px;
    display: flex;
    display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color:#AB2E86;
}

.team .team-item .team-content p {
    color: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-content p {
    color: var(--bs-body);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
    position: relative;
    overflow: hidden;
}

.testimonial::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

.testimonial::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
    text-align: center;
    border-radius: 10px;
    background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
    display: flex;
    justify-content: center;
}

/**********************************************************************/

 /* Container grid for testimonials */
.testimonial-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
  padding: 50px 20px;
}

/* Circle card */
.testimonial-item {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  overflow: hidden;
  text-align: center;
  padding: 25px;
  transition: transform 0.4s ease;
}

/* Gradient border */
.testimonial-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #ff6600, #ff00ff, #00ccff, #00ff66);
  background-size: 300% 300%;
  animation: gradientBorder 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Text inside */
.testimonial-item p {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  padding-top: 37px;
  margin-bottom: 15px;
}

.testimonial-item .name {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-item .stars {
  color: #ff66b2;
  font-size: 16px;
}

/* Hover animation */
.testimonial-item:hover {
  transform: scale(1.05);
}

/************************************************************************/





.testimonial-item .testimonial-inner .testimonial-img {
    position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
    position: absolute;
    top: 0;
    left: -25px;
    color: var(--bs-white);
    background:#413285;
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background:#AB2E86;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-light);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background:#413285;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    bottom: -22px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: -210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
    font-size: 50px;
    margin-right: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
    font-size: 50px;
    margin-left: 80px;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color:#413285;
}
/*** Testimonial End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
    color: #fff;
}

.footer .footer-item p {
    line-height: 35px;
    color: #fff;
}

.footer .footer-item a:hover {
    color:#AB2E86;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .opening-date {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer .footer-item .opening-date .opening-clock {
    display: flex;
    align-items: center;
    line-height: 35px;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

.text-muted {
    color: #000 !important;
}





/*** 19/08/2005 Ajeet Kumar ***/

.btn-primary {
    color: #000;
    background-color: #AB2E86;
    border-color: #AB2E86;
}
.text-primary {
    color: #AB2E86 !important;
}
.bg-primary {
    background-color: #442e88 !important;
}

a:hover {
    color:#AB2E86;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 14px;
    color: #000;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0px;
}

.dropdown-item {
    display: block;
    width: 250px;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 8px 15px;
    font-weight: bold;
}
.text-tabcolor{ background-color: #AB2E86; color:#FFF}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #AB2E86;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
.accordion-body {
    padding: 1rem 1.25rem;
    color: #000000;
    line-height: 28px;
    font-size: 16px;
}

body{ font-size: 16px;
      line-height: 28px;
      color:#000;

    }


/* White arrow - default (closed) */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* White arrow - when accordion is open */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

h1, .h1 {
    font-weight: bold;
    font-size: 32px;
    letter-spacing: -0.4px;
}

h2, .h2 {
    font-weight: bold;
    font-size: 26px;
    letter-spacing: -0.4px;
}

h3, .h3 {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: -0.4px;
}


/* Popup Background */
.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1000;
  padding-top: 5%;
}

/* Dark transparent overlay */
.popup-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

/* Centered popup box */
.popup-content {
    position: relative;
    z-index: 1001;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    margin: auto;
    top: 56%;
    transform: translateY(-50%);
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
/* Left side form */
.popup-left {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.popup-left h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ab2e86;
}

.popup-left input,
.popup-left select,
.popup-left textarea {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn-submit {
  background: #AB2E86;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #92276f;
}

.close-btn {
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #AB2E86;
}

/* Right image */
.popup-right {
  flex: 1;
  background: url("dubai.jpg") no-repeat center center;
  background-size: cover;
}


/************ Tour Package css************/
  .swiper {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Navigation arrows (left/right) ऊपर रख दें और slide height fit करें */
  .swiper-button-next,
  .swiper-button-prev {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 350px !important;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
}




/************ How It Works Css************/
 /* Cards / boxes */
    .feature-card {
      background: white;
      border-radius: 12px;
      /* padding: 28px 16px; */
      text-align: center;
      /* box-shadow: 0 6px 18px rgba(36, 82, 122, 0.06); */
      transition: transform .18s ease, box-shadow .18s ease;
      min-height: 170px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:flex-start;
      background: rgba(0,0,0,0.5);
    }
    .feature-card:hover {
      transform: translateY(-6px);
      /* box-shadow: 0 6px 9px rgba(36,82,122,0.08); */
    
    }
    .feature-card .icon {
      width:72px;
      height:72px;
      border-radius:50%;
      background: linear-gradient(180deg,#fff 0%, #fff 60%);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      margin-bottom: 14px;
      border: 1px solid #ccc;
      color: #ab2e86;
    }
    .feature-card h6 {
      font-weight:700;
      margin-bottom:6px;
      font-size:1rem;
    }
    .feature-card p {
      font-size:0.88rem;
      color:#6b7280;
      margin:0;
      font-size: 14px !important;
      font-weight: bold !important;
    }

    /* Stepper area */
    .stepper-wrapper {
      position: relative;
      padding: 36px 12px 20px;
      margin-top: 0px;
    }

    /* Horizontal dashed line */
    .stepper-line {
      position: absolute;
      left: 5%;
      right: 5%;
      top: 46px;
      height: 2px;
      border-top: 2px dashed #cfd7e6;
      z-index: 1;
    }

    .steps {
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      position: relative;
      z-index: 2;
      max-width:900px;
      margin: 0 auto;
      padding: 0 6%;
    }

    .step {
      display:flex;
      flex-direction:column;
      align-items:center;
      width: 80px;
      margin-top: -12px;
    }
    .step .circle {
      width:44px;
      height:44px;
      border-radius:50%;
      background:white;
      border:2px solid #d6dbe8;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      color:#1f2937;
      box-shadow: 0 4px 10px rgba(0,0,0,0.03);
      margin-bottom:8px;
    }
    .step .label {
      font-size:0.85rem;
      color:#13151a;
    }

    /* Center button */
    .cta-wrap {
      text-align:center;
      margin-top: 18px;
    }
    .btn-cta {
      background: linear-gradient(180deg,#0b7db6,#0074a6);
      border: none;
      color: #fff;
      padding: 10px 26px;
      border-radius: 999px;
      box-shadow: 0 8px 20px rgba(7,122,177,0.2);
    }

    /* Responsive tweaks */
    @media (max-width: 767px) {
      .feature-card { min-height: 150px; }
      .feature-card .icon { width:64px; height:64px; }
      .step { width: 64px; }
      .stepper-line { top: 40px; left: 6%; right: 6%; }
      .steps { padding: 0 8%; }
    }

    @media (max-width: 480px) {
      .steps { gap:6px; }
      
    }


    /* For Contect Us */
    .contact-card {
      /* background-color: #fde9ed; */
      padding: 20px 20px 0px 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      height: 100%;
    }
    .flag-img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 50%;
    }
    .contact-title {
      color: #e91e63;
      font-weight: bold;
      font-size: 1.25rem;
    }
  
/* For Sales Team */

.section-title {
      color: #fff;
      font-weight: 600;
    }
    .region-title {
      color: #ab2e86;
      font-weight: 500;
      font-size: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .contact-card1 {
      margin-bottom: 1rem;
      color:#fff;
    }

    .contact-card1 p {
      margin: 0;
    }

/*****Topbar Start*****/
    .topbar {
      background-color: #0b1622;
      color: #fff;
      font-size: 15px;
      padding: 8px 0;
    }
    .topbar i {
      color: #25d366;
      margin-right: 6px;
    }
/*****Topbar End*****/


/*****What-we-do Start*****/
    
    .what-we-do {
        text-align: center;
        padding: 25px 0px 0px 0px;
    }

    .what-we-do h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .what-we-do p.lead {
        max-width: 700px;
        margin: 0 auto 40px;
        color: #000;
        
    }

    .feature {
        text-align: center;
    }

    .feature-icon {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: #c2185b;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .feature-icon i {
        font-size: 50px;
        color: #fff;
    }

    .feature-icon:hover {
        background: #a3154e;
        transform: scale(1.1);
    }

    .feature h4 {
        margin-top: 20px;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .feature p {
        color: #000;
        font-size: 0.95rem;
    }

.form-select {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #ffffff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #AB2E86;
    border-radius: 5px;
    appearance: none;
}

    
/*****filter Form *****/

/* .filter-fixed {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.filter-box {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15); /* Transparent white */
  /* backdrop-filter: blur(10px); /* Glass blur */
  /* -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-box select,
.filter-box button {
  font-family: "Montserrat", sans-serif;
} */
  
  .filter-box {
  max-width: 10000px;
  margin: 0 auto;
  color: #fff;
  background: url('../img/search-bg.jpg') no-repeat center center;
  background-size: cover !important;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  padding: 80px !important;

  /* Animation */
  animation: bgZoom 20s ease-in-out infinite;
}

/* Overlay */
.filter-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* यहां opacity सेट करें (0.6 मतलब 60% black overlay) */
  z-index: 1;
}

/* Content ऊपर दिखाने के लिए */
.filter-box > * {
  position: relative;
  z-index: 2;
}

/* Start box from here */
.feature-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  
}
.feature-card:hover {
  transform: translateY(-5px);
 
}

/* Dark overlay on image */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* ✅ black semi-transparent overlay */
  z-index: 1;
  transition: background 0.3s ease;
}

/* Make overlay darker on hover */
.feature-card:hover .image-overlay {
  background: rgba(0, 0, 0, 0.45);
}
/* Info box styling */
.info-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px; /* ✅ This adds the 20px gap */
  width: 50%;
  margin-bottom: 20px;
  max-width: 300px;
  background: #fff;
  border-radius: 15px;
  z-index: 2;
  transition: all 0.4s ease; /* smooth transition */
}
.feature-card:hover .info-box {
  transform: translateX(-50%) translateY(-8px); /* lift slightly upward */
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.35); /* pink glow shadow */\\\\
  background: #fff;
}
/* Right border beside text */
.text-section {
  border-color: #ab2e86 !important; /* Pink border */
}

/* Arrow circle styling */
.arrow-circle {
  background-color: #ab2e86; /* Pink circle */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}
.arrow-circle i {
  color: #fff !important; /* White arrow visible now */
}
.arrow-circle:hover {
  background-color: #ab2e86; /* Darker pink on hover */
  transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card img {
    height: 250px;
  }
  .info-box {
    width: 90%;
    bottom: 15px;
    padding: 0.8rem 1rem;
  }
  .arrow-circle {
    width: 34px;
    height: 34px;
  }
  .text-section p {
    font-size: 0.95rem;
  }
}

.searchform{
    padding: 16px 20px 30px 20px;
    background: rgba(0, 0, 0, 0.5);
}

/* End box here */
/* Large devices (laptops/desktops, 992px and up) */

@media (min-width:992px)

{
	

}

/* Medium devices (landscape tablets, 768px and up) */

@media (min-width:768px) and (max-width:991px) 
{

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: 186px;
    left: 0px;
    background: #AB2E86;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}
.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color:#413285;
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: 186px;
    right: 0;
    background: #AB2E86;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}
.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color:#413285;
}

}


/* Medium devices (for Mobile, 320px and up) */

@media (min-width:320px) and (max-width:767px)

{

h1, .h1 {
    font-weight: bold;
    font-size: 28px;
    letter-spacing: -0.4px;
}

h2, .h2 {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: -0.4px;
}

h3, .h3 {+    font-weight: bold;
    font-size: 22px;
    letter-spacing: -0.4px;
}

/* Centered popup box */
.popup-content {
    position: relative;
    z-index: 1001;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    margin: auto;
    top: 58%;
    transform: translateY(-50%);
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.popup-content {
    flex-direction: column;
    width: 90%;
  }
  .popup-right {
    height: 200px;
    display: none;
  }

.attractions .owl-nav .owl-prev {
    position: absolute;
    top: 158px;
    left: 0px;
    background: #AB2E86;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}
.attractions .owl-nav .owl-prev:hover {
    background: var(--bs-white);
    color:#413285;
}

.attractions .owl-nav .owl-next {
    position: absolute;
    top: 158px;
    right: 0;
    background: #AB2E86;
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}
.attractions .owl-nav .owl-next:hover {
    background: var(--bs-white);
    color:#413285;
}

.filter-box {
  max-width: 10000px;
  margin: 0 auto;
  color: #fff;
  background: url('../img/search-bg.jpg') no-repeat center center;
  background-size: cover !important;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  padding: 20px 20px !important;
}

}







