
/*** 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;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 500;
    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-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: #231641!important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #231641!important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
    
}

/*** Carousel Hero Header End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #231641;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
    font-size: 17px;
    padding: 6px;
}

.footer .footer-item p {
    line-height: 30px;
    color : #ffffff;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:#003a66 !important;
}


.gst-slide {
    white-space: nowrap;
    animation: slide-left 8s linear infinite;
    font-size: 14px;
    color: #555;
}
@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ep {
    color: #ffffff !important;
}

.lux-form {
  max-width: 420px;
  padding: 32px 28px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  border: 1px solid rgba(240,196,54,0.35);
}

.lux-title {
  font-size: 26px;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 6px;
  letter-spacing: .5px;
}

.lux-sub {
  font-size: 14px;
  color: #7b7b7b;
  margin-bottom: 20px;
}

.lux-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dedede;
  background: #fafafa;
  font-size: 14px;
  margin-bottom: 14px;
  transition: .25s;
}

.lux-input:focus {
  border-color: #231641;
  box-shadow: 0 0 0 3px rgba(242,178,0,0.2);
  outline: none;
}

.lux-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  background: #231641;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(242,178,0,0.35);
  transition: .25s;
}

.lux-btn:hover {
  transform: translateY(-2px);
}
.travel-hero {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.travel-hero-slider img {
  position: absolute;
  inset: 0;
  width:100%;
  height:100%;
  object-fit:cover;
  animation: travelFade 5s infinite;
}

.travel-hero-slider img:nth-child(2) { animation-delay: 4s; }
.travel-hero-slider img:nth-child(3) { animation-delay: 8s; }
.travel-hero-slider img:nth-child(4) { animation-delay: 8s; }

@keyframes travelFade {
  0% {opacity:1;}
  30% {opacity:0;}
  60% {opacity:0;}
  100% {opacity:1;}
}

.travel-hero-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

.travel-heading {
  font-family:poppins, sans-serif;
  color: white;
}

.travel-list {
  padding-left:0;
  list-style:none;
}

.travel-form-card {
  background:white;
  border-radius:12px;
}


.sp{
        padding: 70px 0px 70px 0px;
}

.travel-list>li{
    padding: 5px 0px 5px 0px;
}

.about-section {
  padding: 100px 0; /* Thoda upar niche space */
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
}

.about-section .carousel-item img {
  border-radius: 20px;
  width: 100%;
  height: 550px; /* Fix height */
  object-fit: cover; /* Proper crop without stretching */
}

.about-section h2 {
  font-family: 'poppins', sans-serif;
  font-weight: 700;
  font-size: 30PX;
  margin-bottom: 25px;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.about-section .benefits li {
  font-size: 1rem;
  margin-bottom: 10px;
}

.about-section .btn-primary-custom {
  background-color: #231641; /* Brand Blue */
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.about-section .btn-primary-custom:hover {
  background-color: #1558b0;
}

.about-section .btn-outline-custom {
  border: 2px solid #231641;
  color: #231641;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.about-section .btn-outline-custom:hover {
  background-color: #231641;
  color: white;
}

/* Text side spacing */
.about-section .text-content {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 992px) {
  .about-section .text-content {
    padding-left: 60px; /* Large screens me aur space */
    padding-right: 40px;
  }
}
.SM{
    margin-top: 27px !important ;
}

.package-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      transition: transform 0.4s, box-shadow 0.4s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      text-decoration: none; /* For <a> usage */
      color: inherit;
      background: #fff;
    }

    .package-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 35px rgba(0,0,0,0.3);
    }

    .package-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .package-card:hover img {
      transform: scale(1.1);
      filter: brightness(0.75);
    }

    /* Tag on top-left */
    .package-tag {
      position: absolute;
      top: 15px;
      left: 0;
      background: #ff5e00;
      color: #fff;
      padding: 8px 15px;
      font-weight: 600;
      font-size: 14px;
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px;
      width: 25%;
      text-align: center;
      z-index: 2;
    }

    .package-info {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .package-info h5 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      margin-bottom: 10px;
      color: #023e8a;
    }

    .package-info p {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
      flex: 1;
    }

    .package-info ul {
      list-style: none;
      padding-left: 0;
      font-size: 13px;
      margin-bottom: 15px;
      color: #333;
    }

    /* .package-info ul li::before {
      content: "✈️";
      margin-right: 8px;
    } */

    .btn-explore {
      display: inline-block;
      padding: 10px 22px;
      background: #28a745;
      color: #fff;
      border-radius: 10px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s, transform 0.3s;
    }

    .btn-explore:hover {
      background: #1e7e34;
      transform: scale(1.05);
    }
    .op{
        margin-top: 30px;
    }

    .contact-fixed {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3a9a44; /* WhatsApp green default, will override for Call */
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.contact-btn.call {
    background-color: #007bff; /* Blue color for Call */
}

.contact-btn img {
    width: 28px;
    height: 28px;
}

.travel-package-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: .25s;
  position: relative;
}

.travel-package-card:hover {
  transform: translateY(-4px);
}

.pkg-tag {
    position: absolute;
    top: 18px;
    left: 0;
    background: #ff6600;
    color: #fff;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;

    /* Folded Corner Effect */
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    
    z-index: 10;
}


.pkg-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.pkg-body {
  padding: 14px 18px 18px;
}

.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pkg-actions {
  display: flex;
  gap: 6px;
}

.pkg-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.7px solid;
  font-size: 15px;
  text-decoration: none !important;
  background: #fff;
}

.icon-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

/* WhatsApp Color */
.icon-btn.whatsapp {
    background: #25D366;
}

/* Call Color */
.icon-btn.call {
    background: #24184B;
}

/* Hover Effect */
.icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.pkg-actions .wa {
  border-color: #231641;
  color: #231641;
}

.pkg-actions .call {
  border-color: #0D6EFD;
  color: #0D6EFD;
}

.pkg-btn {
  display: inline-block;
  background-color: #231641;
  /* border: 2px solid #231641; */
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 500;
    transition: 0.3s;
    font-family: poppins, sans-serif;
    margin-top: 10px;
}

.pkg-btn:hover {
  opacity: .85;
  color: #ffffff;
  background-color: #023e8a;
}
.pkg-list li {
    list-style: none;
    margin-bottom: 6px;
    font-size: 14px;
    color: black;
}

.pkg-list i {
    color: #231641; /* travel green */
    margin-right: 6px;
    font-size: 16px;
}
.des, .duration-ppkg{
     color: black;
}

.tdm{
    margin-top: 30px;
}


.spark-popup {
  display: none; /* hidden initially */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* semi-transparent overlay */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.spark-form-container {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.spark-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.spark-input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.spark-btn {
  background-color: #231641;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.ap{
    margin-left: 35px;
}


.video-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.video-track {
  display: flex;
  animation: slide 16s linear infinite;
}

.video-item {
  flex: 0 0 25%; /* Desktop */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-item video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}


/* Tablet (2 per row) */
@media (max-width: 991px) {
  .video-item {
    flex: 0 0 50%;
  }
  .video-item video {
    height: 250px;
  }
}


/* Mobile (1 per row + NO SLIDER) */
@media (max-width: 600px) {

  .video-track {
    display: block;
    animation: none !important;  /* stop slider */
  }

  .video-item {
    width: 100%;
    margin: 0 0 15px 0; 
    flex: unset;
  }

  .video-item video {
    height: 220px;
  }
}


.service-cards {
  font-family: 'Poppins', sans-serif;
}

.svc-card {
  background: #fff;
  padding: 40px 22px;
  border-radius: 20px;
  cursor: default;
  transition: 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border-bottom: 4px solid rgba(65,90,251,0.3);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.svc-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(65,90,251,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.svc-icon-wrap i {
  font-size: 28px;
  color: #231641;
}

.svc-title {
  font-family: poppins, sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
  color: #1e2432;
}

.svc-desc {
      color: #5f6572;
    line-height: 1.45;
    font-family: 'Poppins';
    font-size: 15px;
}

 
.collage-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

 .im-ic{
        width: 100%;
    height: 232px;
 }

 .pkg-list{
    padding: 1px;
 }
 
/* thanku
 */

  .thank-hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/carousel-3.jpg') center/cover no-repeat;
      color: #fff;
      padding: 40px 20px;
    }

    .thank-hero h1 {
      color: #ffffff;
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .thank-hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin-bottom: 30px;
    }

    .btn-hero {
      background: #3A9A44;
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-hero:hover {
      background: #3A9A44;
    }

    /* Info Section */
    

    /* CTA Section */
    .thank-cta {
      background: #3A9A44;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
    }

    .thank-cta h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color:#ffffff;
    }

    .thank-cta p {
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .btn-cta {
      background: #fff;
      color: #3A9A44;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-cta:hover {
      background: #ffe6cc;
    }

    /* Responsive */
     @media (max-width: 768px) {
      .thank-hero h1 {
        font-size: 2.2rem;
      }

      .thank-info h2,
      .thank-cta h2 {
        font-size: 1.8rem;
      }

      .card {
        width: 90%;
      }
      .SM {
    flex-direction: row; /* side by side on larger screens */
  }
    }

    .SM {
       display: flex;
  flex-direction: column; /* mobile default */
  gap: 10px;
    }
    .small-contact a {
    font-size: 13px;
    text-decoration: none;
}
    /* CTA Section */
    
   .thank-cta {
  position: relative;
  background: url('../img/cta.jpg') center center / cover no-repeat fixed;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family:'Montserrat', sans-serif;
  overflow: hidden;
}

.thank-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 74%); /* dark overlay */
  z-index: 1;
}

.thank-cta-content {
  position: relative;
  z-index: 2;
}

.drt{
  color: #ffffff;
  font-size: 40px;
}

.thank-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

.btn-cta {
  background: #231641;
  font-family: poppins, sans-serif;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #231641;
  color: #fff;
  transform: scale(1.05);
}

/* revieew */
.review-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}
.review-card{
  background:white;
  flex:0 0 300px;
  border-radius:15px;
  padding:25px;
  box-shadow:0px 8px 20px rgba(0,0,0,0.05);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.3s;
}
.review-card:hover{
  transform:translateY(-5px);
  box-shadow:0px 12px 25px rgba(0,0,0,0.07);
}
.stars{
  color:#ffb400;
  margin-bottom:15px;
}
.review-text{
  font-size:15px;
  color:#444;
  line-height:1.5;
  margin-bottom:20px;
}
.review-user{
  display:flex;
  align-items:center;
  gap:10px;
}
.user-img{
  width:45px;
  height:45px;
  border-radius:50%;
  object-fit:cover;
}
.user-info{
  font-size:14px;
}
.user-name{
  font-weight:600;
}
.user-loc{
  font-size:12px;
  color:#777;
}
.lo{
  width: 160px;
}


/*  */

@media (max-width: 768px) {
  .lo{
    margin-left: -136px;
  }
}
.call-1 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #007bff; */
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.call-2 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

/* / end ***/ 