/* HEADER SECTION CSS */

.topbar {
    background: linear-gradient(225deg, var(--primary), var(--secondary));
    padding: 10px 0;
}

.topbar ul li, .topbar ul li a {
  color: var(--white);
}

.topbar ul li i {
  font-size: 16px;
}

.topbar ul.topbar-info li i {
  color: var(--primary);
  margin-right: 5px;
  transform: rotateY(180deg);
}


/* BOTTOM HEADER SECTION CSS */

header {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 99;
    box-shadow: 0 3px 15px #00000008;
}

header div#google_translate_element {
    margin-right: 12px;
}

header div#google_translate_element .goog-te-gadget-simple {
    border: none;
}

header div#google_translate_element .goog-te-gadget-simple img.goog-te-gadget-icon {
    display: none;
}

header div#google_translate_element .skiptranslate.goog-te-gadget {
    border: 1px solid #d6d6d6;
}


.menubar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menubar>a img {
  width: 120px;
}

.header-logo a img {
  display: block;
  width: 240px;
}

.menubar a.btn.btn-primary {
    font-size: 15px;
}


/* MAIN BANNER SECTION CSS */

.mainslider {
  position: relative;
  overflow: hidden;
}

.mainslider #carouselExampleCaptions img.mainsldr-img {
  width: 100%;
  object-fit: cover;
  height: auto;
  filter: brightness(0.5);
  aspect-ratio: 16/7;
}

/* .mainslider #carouselExampleCaptions .carousel-item.active img.mainsldr-img {
  animation: bnrscaling 5s linear forwards;
}

@keyframes bnrscaling {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
} */

.carousel-item {
  position: relative;
}

.carousel-item img.banner-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0f0f3ac7, #68b73c00);
    z-index: 1;
}
.mainslider .carousel-caption h4 {
    color: var(--primary);
    font-size: 18px;
    opacity: 0;
    transform: translateY(-200px);
    transition: .5s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    margin-left: 4px;
}

.carousel-item.active .carousel-caption h4 {
  opacity: 1;
  transform: translateY(0);
}

.mainslider .carousel-caption h1 {
    font-family: "Playfair Display", serif;
    color: var(--white);
    font-size: 52px;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    position: relative;
    width: fit-content;
    opacity: 0;
    transform: translateX(300px);
    transition: .5s;
    text-transform: capitalize;
}

.carousel-item.active .carousel-caption h1 {
  opacity: 1;
  transform: translateX(0);
}
.mainslider .carousel-caption p {
  width: 80%;
  margin: 18px 0 30px;
  color: #e7e7e7;
  font-size: 18px;
  opacity: 0;
  transform: translateX(20%);
  transition: .5s;
}

.carousel-item.active .carousel-caption p {
  opacity: 1;
  transform: translateX(0%);
}


.mainslider-navbtn button {
  background: var(--white);
  opacity: 1;
  height: 50px;
  width: 50px;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
  font-size: 20px;
  opacity: .4;
}
.mainslider-navbtn button i {
    line-height: .5;
}

.mainslider-navbtn {
    display: flex;
    flex-direction: column;
    gap: 7px;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.mainslider-nav button:hover {
  background: var(--secondary);
}

.mainslider-nav button:hover i {
  color: var(--white);
}






/* MARQUEE SLIDER CSS */


.marquee {
  border-bottom: 1px solid #e9e9e9;
}

.marqueeinner {
  display: flex;
  width: 200%; /* enough to hold two lists side by side */
  animation: marqueeMove 30s linear infinite;
}
.marqueeinnerlist {
  display: flex;
  gap: 60px;
  align-items: center;
  width: 50%; /* ADDED - each list takes exactly half */
  flex-shrink: 0; /* ADDED - prevents lists from shrinking */
}
.marqueeinnerlistitem {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-shrink: 0;
}
.marqueeinnerlistitem h4 {
    font-size: 60px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}
.marqueeinnerlistitem:nth-child(even) h4 {
  color: transparent;
  -webkit-text-stroke: 1px #14141473;
}
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1549px) {
  .marqueeinnerlistitem h4 {
      font-size: 48px;
  }
  .marqueeinnerlist, .marqueeinnerlistitem {
      gap: 30px;
  }
  .marqueeinnerlistitem svg { 
      width: 75px;
  }
}


/* CERTIFICATION SECTION CSS */


.certification-item>img {
    height: 120px;
}

.certification-item:first-child {
    border: 1px solid #afafaf;
    padding: 20px;
    border-radius: 10px;
}

.certification-wrapper {
    gap: 30px;
}


/* ABOUT US SECTION CSS */


.homeabout {
    background: linear-gradient(30deg, #f3f8f675, #f3f9f6);
    overflow: hidden;
    position: relative;
}

.homeaboutleft-top {
    background: var(--primary);
    margin-bottom: 23px;
    border-radius: 15px;
    padding: 30px;
    z-index: 0;
}

.homeaboutleft-top ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
}

.homeaboutleft-top ul li {
    width: 50%;
    color: var(--white);
    font-size: 16px;
}

.homeaboutleft-top ul li i {
    margin-right: 5px;
}

.homeabout img {
    border-radius: 15px;
}

.homeaboutright-info ul li {
    flex: calc(50% - 10px);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--white);
}
.homeaboutright-info ul li i {
    font-size: 40px;
    line-height: .5;
    margin-right: 15px;
}

.homeaboutright-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.homeaboutright-info {background: var(--primary);padding: 30px;border-radius: 15px;margin-top: -20px;position: relative; z-index: 0;}


.homeaboutleft-top:before, .homeaboutright-info:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/homeabout-bg.png')no-repeat center center/cover;
    z-index: -1;
}

/* SERVICES SECTION CSS */


.serviceslist a img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 15px;
    transition: .5s;
}

.serviceslist {
    text-align: center;
    padding: 12px 12px 18px;
    border-radius: 20px;
    border: 2px solid #000000;
}
.col-lg-4:nth-child(1) .serviceslist {
    background: linear-gradient(225deg, #f3f2ff, #f6f5ff);
}
.col-lg-4:nth-child(2) .serviceslist {
    background: linear-gradient(225deg, #fff4e5, #fff5f5);
}
.col-lg-4:nth-child(3) .serviceslist {
    background: linear-gradient(225deg, #eef1e2, #ebfaff);
}
.col-lg-4:nth-child(4) .serviceslist {
    background: linear-gradient(225deg, #e4eedf, #f6f5ff);
}
.col-lg-4:nth-child(5) .serviceslist {
    background: linear-gradient(225deg, #e8dfee, #f7fff5);
}
.col-lg-4:nth-child(6) .serviceslist {
    background: linear-gradient(225deg, #eedfdf, #fffcf5);
}
.serviceslist .services-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0;
    transition: .5s;
}

.serviceslist .services-info .btn-primary {
    font-size: 15px;
    padding: 13px 48px 15px 20px;
}

.serviceslist .services-info .btn-primary i {
    height: 34px;
    width: 34px;
}

.serviceslist:hover img {
    transform: scale(1.1) translateY(-10px);
}

.serviceslist:hover h4 {
    color: var(--primary);
}




/* HOW IT WORKS SECTION CSS */

.howitworks {
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(180deg, #FAF9F9 0%, #FFFFFF00 100%);
    z-index: 0;
}
.howitworks:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/work-bg.png')no-repeat center center/contain;
    z-index: -1;
}
.howitwork-element .row {
  position: relative;
  z-index: 0;
}

.howitworks-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.howitworks-shape img {
  display: block;
  width: 90%;
  margin: 0 auto;
  animation: floating 2s linear alternate infinite;
}

.howitwork-element {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.howitwork-element img {
  animation: updown 4s ease-in-out alternate infinite;
}

.howitwork-element:before {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  background: var(--primary);
  filter: blur(150px);
  left: -20%;
  opacity: .5;
}

.howitworkslist figure {
  height: 110px;
  width: 110px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  margin: 0;
  transition: .5s;
}

.howitworkslist figure i {
  color: var(--white);
  font-size: 45px;
  display: inline-block;
  line-height: .5;
  transition: .5s;
}

.howitworkslist figure span {
  position: absolute;
  left: -3px;
  top: -3px;
  height: 33px;
  width: 33px;
  background: var(--white);
  color: var(--secondary);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.howitworkslist:hover figure {
  background: var(--secondary);
}

.howitworkslist h4 {
  font-size: 22px;
  margin: 20px 0 15px;
}

.howitworkslist:hover i {
  color: var(--white);
}

/* DISCOUNT SECTION CSS */

.discount-inner {
  padding: 80px;
  background: url('../images/cta-bg.jpg') no-repeat center center/cover;
  border-radius: 25px;
}

.discount-inner .countdown {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.discount-inner .time-box {
  background: var(--secondary);
  color: white;
  padding: 13px 0;
  border-radius: 12px;
  text-align: center;
  width: 85px;
  height: 85px;
  transition: transform 0.3s ease;
}

.discount-inner .number {
  font-size: 33px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ffffff26;
}

.discount-inner .label {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
}

.discount-inner .discountinner-text {
  background: #ffffffe0;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.discount-inner .discountinner-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}

.discount-inner .discountinner-text a.btn.btn-primary {
  margin-top: 40px;
}

.discount-inner .discount-element {
  width: 50%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
}

.discount-inner .discount-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.discount-sec {
  z-index: 0;
}

.discountinner-img {
  position: relative;
  text-align: center;
  background: var(--primary);
  border-radius: 500px 500px 0 0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -80px;
}

.discountinner-img .discount-element2 {
  position: absolute;
  top: 7%;
  right: 15%;
}

.discountinner-img .discount-element2 img {
  animation: scaling 2s linear alternate infinite;
}

.discount-element1 img {
  animation: floating 2s linear alternate infinite;
}

/* BRAND SLIDER SECTION */

.brand-sec {
  text-align: center;
}

.brandsec-heading {
  margin-bottom: 40px;
  position: relative;
}

.brand-sec .brand-slider .slick-slide {
  text-align: center;
  margin: 0 10px;
}

.branditem {
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: 1px solid #e1e1e1;
  aspect-ratio: 3 / 1.6;
  padding: 20px;
  border-radius: 15px;
}

.branditem img {
  /* filter: grayscale(1); */
  transition: .5s;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.branditem:hover img {
  filter: none;
}

.brandsec-heading h2 {
  width: fit-content;
  font-weight: 500;
  font-size: 22px;
  margin: 0 auto 60px;
  color: #1d231f;
  background: var(--white);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.brandsec-heading:before {
  position: absolute;
  content: '';
  top: 14px;
  border-bottom: 1px solid #92929247;
  width: 100%;
  left: 0;
}

/* DESTINATION SECTION CSS */

.destination {
  background: #f3f8f6;
}

.destination ul#pills-tab {
  display: block;
}

.destination ul#pills-tab button.nav-link {
  padding: 35px;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  background: var(--white);
  margin-bottom: 18px;
  color: var(--dark);
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, .06);
  transition: .5s;
  position: relative;
  overflow: hidden;
}

.destination ul#pills-tab li.bookingbtn {
  width: 100%;
  background: linear-gradient(#0000004f, #00000057), url(../images/button-bg.png) no-repeat center center / cover;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 0;
}

.destination ul#pills-tab li.bookingbtn:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  transform: translate(-50%, -50%);
  border: 1px solid var(--white);
  border-radius: 12px;
}

.destinationitem {
  position: relative;
}

.destinationitem a.destination-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  height: 44px;
  width: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.destination-slider .destinationitem img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1.07;
  object-fit: cover;
  border-radius: 15px;
}

.destinationitem ul {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.destination-nav .slick-track {
  display: flex !important;
  gap: 20px;
}

.destination-nav .destinationitem {
  border: 2px solid #00000000;
  border-radius: 15px;
  transition: .5s;
}

.destination-nav .destinationitem:hover, .destination-nav .slick-slide.slick-current.slick-active .destinationitem {
  border-color: var(--primary);
}

.destination-nav .slick-track:before, .destination-nav .slick-track:after {
  display: none;
}

.destination-nav .slick-track .destinationitem img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1.31;
  border-radius: 12px;
  cursor: pointer;
}

.destination-slider {
  margin-bottom: 12px;
}

.destinationitem ul li {
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  line-height: 1;
  border-radius: 50px;
}

.destinationitem ul li:last-child {
  background: var(--secondary);
}

.destination ul#pills-tab .nav-link.active, .destination ul#pills-tab .show>.nav-link, .destination ul#pills-tab .nav-link:hover {
  background: var(--secondary);
  color: var(--white);
}

.destination ul#pills-tab button.nav-link:before, .destination ul#pills-tab button.nav-link:after {
  position: absolute;
  content: '';
  height: 70px;
  width: 70px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: .5s;
}

.destination ul#pills-tab button.nav-link:before {
  left: -35px;
  top: -25px;
  box-shadow: 6px 0px 0 #ffffff4a;
}

.destination ul#pills-tab button.nav-link:after {
  right: -35px;
  bottom: -25px;
  box-shadow: -6px 0px 0 #ffffff4a;
}

.destination ul#pills-tab .nav-link.active:before, .destination ul#pills-tab .nav-link.active:after, .destination ul#pills-tab .show>.nav-link:before, .destination ul#pills-tab .show>.nav-link:after, .destination ul#pills-tab .nav-link:hover:before, .destination ul#pills-tab .nav-link:hover:after {
  opacity: 1;
}

/* REVIEW SECTION CSS */

.reviews {
  overflow-x: hidden;
  background: linear-gradient(225deg, #06240dab, #000000), url(../images/testimonials-bg.webp) no-repeat center center / cover;
  background-attachment: fixed;
}

.videoreviews-item video {
    object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin-bottom: -6px;
    aspect-ratio: 5 / 3.5;
    background: #000;
}

.videoreviews-item.vdorvwsitem1 video {
    aspect-ratio: 5 / 2;
}

.reviews-slider .slick-slide {
    margin: 0 10px;
}

.reviews-slider ul.slick-dots li button {
    background: #ffffff3d;
}

.reviews-slider ul.slick-dots li.slick-active button {
    background: var(--primary);
}

.reviewslist {
    padding: 30px;
    background: linear-gradient(45deg, black, transparent);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    border: 1px solid #6bbc3b;
}
.reviewslist-info {
    height: 215px;
    overflow-x: hidden;
    margin: 20px 0 30px;
    padding-right: 16px;
}

.reviewslist-info::-webkit-scrollbar {
    width: 4px;
    background-color: #8f8f8f;
    border-radius: 10px;
}

.reviewslist-info::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #6bbc3b;
}

.reviewslist-info::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e6e6e6f2;
    
}


.reviewlist-btm {
  display: flex;
  align-items: center;
  text-align: left;
  column-gap: 14px;
  position: relative;
}

.reviewslist i.fas.fa-quote-right {
  font-size: 60px;
  height: 70px;
  width: 70px;
  display: inline-flex;
  justify-content: end;
  align-items: center;
  border-radius: 50%;
  color: #81d351;
  flex: 1;
  opacity: .2;
}

.reviewslist p {
  font-size: 16px;
  line-height: 1.65;
  color: #e6e6e6f2;
  font-style: italic;
}

.reviews .reviewlist-btm img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.reviewslist h5 {
  margin: 0;
  font-weight: 600;
  color: var(--white);
}

.reviewslist h5 span {
  display: block;
  font-weight: 400;
  color: var(--primary);
  margin-top: 10px;
  font-size: 15px;
}

.rating i {
  color: #ffbe26;
  margin-right: 1px;
  font-size: 13px;
}

.rating i:last-child {
  color: #e5e5e5;
}

/* OFFER SECTION CSS */

.offersec-inner {
  padding: 40px 80px;
  background: linear-gradient(#54b32cc7, #42971fa1), url(../images/offersec-bg.png) no-repeat center center / cover;
  border-radius: 25px;
}

.offersec-inner h4.subheading {
  color: var(--white);
  background: #ffffff1f;
}

.offersec-inner h2 {
  color: var(--white);
  margin-bottom: 0;
}

.offersec-inner p {
  color: var(--white);
  margin: 25px 0 35px;
}

.offersecinner-text form {
  max-width: 360px;
}

.offersecinner-text form input[type="email"] {
  background: var(--white);
  padding: 16px;
  margin: 0;
}

.offersecinner-text form .form-group {
  position: relative;
}

.offersecinner-text form .form-group input[type="submit"] {
  position: absolute;
  right: 0;
  height: 100%;
  aspect-ratio: 1 / 1;
  border: 5px solid var(--white);
  font-family: "Font Awesome 7 Free";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 11px;
}

.offer-image {
  margin-bottom: -40px;
}

.offer-image img {
  width: 100%;
}

/* HOME BLOG SECTION CSS */

.blogcard {border: 1px solid #eaeaea;border-radius: 12px;box-shadow: 0 4px 18px rgba(0,0,0,.04);}
.blogcard-image img {display: block;width: 100%;height: auto;object-fit: cover;aspect-ratio: 1 / .7;}
.blogcard-date {position: absolute;left: 18px;top: 18px; background: var(--primary);color: var(--white);border-radius: 8px;height: 60px;width: 60px; display: flex;flex-direction: column;align-items: center;justify-content: center;}
.blogcard-date .month {font-size: 12px;}
.blogcard-meta {position: relative;font-weight: 500;margin-top: -45px;margin-bottom: 16px;border-bottom: 1px solid #efefef;padding: 10px 12px;background: var(--primary);color: var(--white);border-radius: 7px;justify-content: space-between;font-size: 14px;}
.blogcard-meta span i { margin-right: 4px;}
.blogcard-title a {font-size: 22px;line-height: 1.3;}
.blogcard-title a:hover {color: var(--primary);}
.blogcard-excerpt {color: #666;}
.blogcard-readmore { font-size: 14px; color: var(--primary);}
.blogcard-readmore:hover {color: var(--primary);}


/* FOOTER SECTION CSS */

footer {
    background: linear-gradient(#05182987, #010a14), url('../images/footer-bg.webp') no-repeat center top / cover;
    background-attachment: fixed;
}

.footer-top {
    padding: 50px 0;
}

.footertop-wrapper {
    display: grid; /* Enable grid layout */
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    grid-template-rows: auto; /* Two rows */
    gap: 20px;
}

.footeraddress-list p:last-child {
    margin: 0;
}

.footeraddress-list {
    background: #0518291f;
    padding: 25px;
    border: 1px dashed #f3f3f357;
    backdrop-filter: blur(3px);
    border-radius: 15px;
    padding-right: 90px;
    position: relative;
    overflow: hidden;
}
.footeraddress-list figure img {
    display: block;
    width: 64px;
    height: 64px;
    position: absolute;
    right: 18px;
    top: 18px;
}

.footeraddress-list:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #ffffff0a;
    z-index: -1;
    border-radius: 0 0 0 45px;
    border-left: 1px dashed #f3f3f357;
    border-bottom: 1px dashed #f3f3f357;
}
.footeraddress-list h3 {
    color: var(--primary);
    font-weight: 600;
}

.footeraddress-list h4 strong {
    font-weight: 500;
}

.footeraddress-list p i {
    width: 20px;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 4px;
}

.footeraddress-list p {
    position: relative;
    padding-left: 25px;
}


.footer-middle {
    border-top: 1px solid #ffffff14;
    border-bottom: 1px solid #ffffff14;
}

footer .col-lg-3.footerabout {
    background: var(--white);
    border: none;
    width: calc(25% - 12px);
    margin-left: auto;
    padding: 40px 25px 30px 30px;
    border-radius: 0 50px 50px 0;
}
footer .col-lg-3.footerabout .btn-primary {
    font-size: 15px;
}
.footerabout img {
    width: 95%;
}
footer .col-lg-3 {
    border-right: 1px solid #ffffff14;
    padding: 40px 30px 30px;
}
.contact form p {
    position: relative;
}
span.wpcf7-spinner {
    position: absolute;
    right: 0;
    bottom: 12px;
    margin: 0;
}
.footerabout p {
    margin: 20px 0 0;
    color: #303030;
}
footer .col-lg-3:last-child {
    border: none;
}
footer ul.menu li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    width: fit-content;
    transition: .5s;
}
footer ul.menu li:hover {
    transform: translateX(6px);
}
footer ul.menu li:before {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    color: var(--primary);
    position: absolute;
    top: 4px;
    left: 0;
    font-weight: 600;
    font-size: 10px;
}
footer ul li.menu-item a {
    margin-bottom: 8px;
    display: block;
}
footer ul li:last-child a {
    margin-bottom: 0;
}
footer ul li.menu-item a:hover {
  color: var(--white);
}
.footersmo li i {
    color: #4d4a4f;
    font-size: 18px;
}
footer h4 {
    position: relative;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: .5px;
    font-size: 20px;
    color: var(--white);
    padding-bottom: 15px;
}
footer h4:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
    background: linear-gradient(45deg, transparent, var(--primary), transparent);
    border-radius: 50%;
}
footer a, footer p, .footerabout li a {
    color: #e5e5e5;
}
footer a:hover {
    color: var(--primary) !important;
}
.footer-details a {
    text-decoration: none;
    font-size: 15px;
}
footer ul.footer-details li:last-child {
    margin-bottom: 0;
}
footer ul.socialicon {
  display: flex;
    column-gap: 6px;
	justify-content: flex-end;
}
footer ul.socialicon li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #212222;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary);
    margin: 0;
}

.smoicons ul {
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 5px
}

.smoicons li i {
    font-size: 16px
}

.smoicons ul li a {
    color: var(--white);
    font-size: 14px;
    background: var(--primary);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all ease-in-out .5s
}

.smoicons ul li a:hover {
    background: var(--secondary);
    color: var(--white)
}


footer .readbtn {
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary);
    margin-top: 15px;
    display: block;
}
footer ul.footer-details li {
    position: relative;
    padding-left: 38px;
    color: #ccc;
    margin-bottom: 16px;
}
footer ul.footer-details li i {
    color: var(--primary);
    font-size: 12px;
    position: absolute;
    left: 0;
    top: -2px;
    background: var(--white);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
footer form {
    position: relative;
}
footer form input {
    border-color: #ffffff26 !important;
    padding: 7px 15px !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
}
footer input[type="submit"] {
    width: 100%;
    margin-bottom: 0;
}
.copyright {
    padding: 18px 0;
    border-top: 1px solid #ffffff14;
}
.copyright .col-sm-4 {
    justify-content: flex-end;
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.copyright .row {
  align-items: center;
}
.copyright p, .copyright p a {
    margin: 0 !important;
}
.copyright p a {
    color: #e7ae44;
}
.copyright ul {
    display: flex;
    justify-content: center;
}
.copyright ul li {
    border-right: solid 1px #dddddd40;
    padding: 0 15px;
}
.copyright ul li:last-child {
    border-right: none;
    padding-right: 0;
}
.copyright img {
    width: 280px;
}

/* WHATSAPP & BACKTOTOP BUTTON CSS */

#GoToTop {
  display: none;
  position: fixed;
  bottom: 62px;
  right: 45px;
  z-index: 999;
  padding: 0;
  background: var(--primary);
  width: 42px;
  height: 50px;
  cursor: pointer;
  font-size: 30px;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
}
#GoToTop.flex-visible {
  display: flex !important;
}
#GoToTop i {
  line-height: .5;
}

#whatsappbtn {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  padding: 9px 9px 8px 11px;
  background: #4fcc5d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 32px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

#whatsappbtn img {
  display: block;
  width: 30px;
}

/* BREADCRUMB SECTION CSS */

.breadcrumb {
    background: linear-gradient(45deg, #000000d9, #0e2004a1), url(../images/breadcrumb-img.webp) no-repeat center center / cover;
    padding: 120px 0;
    text-align: center;
    margin: 0;
}

.breadcrumb h1, .breadcrumb p {
  margin: 0;
}

.breadcrumb h1 p span, .breadcrumb p a {
  color: var(--white);
  font-weight: 500;
}

.breadcrumb h1 p span {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
  font-size: 50px;
}

.breadcrumb p span {
  color: var(--primary);
}

.breadcrumb p a {
  padding-right: 25px;
  margin-right: 6px;
  position: relative;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}

.breadcrumb h1 span a {
  display: none;
}

.breadcrumb a:after {
  position: absolute;
  content: "\f101" !important;
  font-size: 13px;
  font-weight: 600;
  font-family: "Font Awesome 7 Free";
  right: 0;
  top: 3.2px;
}

/* CONTACT PAGE CSS */

.contactus form label {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.contactus input[type="submit"] {
  margin-top: 22px;
  background: var(--secondary);
  padding: 14px 26px;
}

.contactus form p {
  margin: 0;
}

.contactus_details {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 10px;
    outline: 1px solid #deebd8;
    background: #f3f8f6;
    outline-offset: -12px;
    z-index: 0;
    overflow: hidden;
    min-height: 250px;
}

.contactus_details:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--secondary);
  z-index: -1;
  transition: .5s;
}

.contactus_details:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}

.contactus_details i {
  font-size: 50px;
  color: var(--primary);
  line-height: 1;
  transition: .5s;
}

.contactus_details h3 {
  font-weight: 600;
  margin: 18px 0;
  font-size: 22px;
  transition: .5s;
}

.contactus_details p {
  margin: 0;
}

.contactus_details ul li, .contactus_details a, .contactus_details p {
  font-size: 17px;
  transition: .5s;
}

.contactus_details:hover i, .contactus_details:hover h3, .contactus_details:hover p, .contactus_details:hover a {
  color: var(--white);
}

.contactus iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.contactform-details h2 {
  font-size: 50px;
  font-weight: 700;
  margin: 0;
}

.contactform-details>p {
  font-size: 18px;
  margin: 22px 0px 15px;
}

.contactus form label input, .contactus form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 16px;
  border: 1px solid #0000001c;
}

.contactus form textarea {
  height: 200px;
}

/* ABOUT US PAGE CSS */


.aboutus-content h2.leftheading {
    font-size: 36px;
}


.aboutus-top-features {
  margin-top: 25px;
}

.aboutus-top-featureitem h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 9px;
}

.aboutus-top-featureitem:not(:last-child) {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eee;
}

.aboutus-top-featureitem p {
    margin: 0;
}
.aboutus-content p {
    font-size: 14px;
}
.aboutus-top-featureitem {
    padding-left: 80px;
    position: relative;
}

.aboutus-top-featureitem i {
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 28px;
    height: 60px;
    width: 60px;
    background: #f3ffec;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #ccf7b2;
}



.whatmakeusdfrnt-item {
    padding: 30px;
    height: 100%;
    border-radius: 15px;
    box-shadow: 3px 3px 15px #00000014;
    border-left: 3px solid var(--primary);
}

.whatmakeusdfrnt-item h4 {
    font-weight: 600;
    margin: 15px 0;
}

.whatmakeusdfrnt-item i {
    font-size: 45px;
    color: var(--primary);
    display: inline-block;
    line-height: 1;
}

.whatmakeusdfrnt-item p {
    margin: 0;
}




.aboutus-counter {
    background: #091e4e;
    z-index: 0 !important;
}
.aboutus-counter:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/homeabout-bg.png') no-repeat center center / cover;
    z-index: -1;
    opacity: .3;
}
        
.stats-card {
    background: #ffffff14;
    border-radius: 15px;
    padding: 38px;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 2px solid var(--primary);
    border-top: 2px solid #ffffff;
    backdrop-filter: blur(3px);
}

.stats-card h5 {
    color: #f7f7f7;
}

.stats-card:hover {
    transform: translateY(-10px);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}











.msnvsn-list {
    position: relative;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: #091e4e;
    z-index: 0;
    overflow: hidden;
}

.msnvsn-list h3 {font-weight: 600;margin: 20px 0 15px;color: var(--white);}


.msnvsn-list figure {
    height: 110px;
    width: 110px;
    background: #091e4e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.msnvsn-list figure img.img-fluid {
    width: 56px;
}

.msnvsn-list p {
    color: #ffffffcc;
}

.msnvsn-list:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    border-radius: 0 0 50% 50%;
    background: #6bbc3b;
    z-index: -1;
    transition: .5s;
}

.msnvsn-list:hover:before {
    height: 100%;
    border-radius: 0;
}






/* TETIMONIALS PAGE CSS */

.secondary-container.testimonials .reviewslist {
  border: 1px solid #63ab4538;
  padding: 30px;
  border-radius: 15px;
  background: #6bbb3c08;
}

.secondary-container.testimonials .reviewslist .reviewslist-info {
    height: 195px;
}

.secondary-container.testimonials .reviewslist p {
    width: 100%;
    font-size: 17px;
    color: #383838;
}

.secondary-container.testimonials .reviewslist h5 {
  color: #163250;
}

.secondary-container.testimonials .reviewslist img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
    padding: 6px;
}

.secondary-container.testimonials .reviewslist i {
  left: 0;
}
.secondary-container.testimonials .reviewslist .reviewlist-btm i {
    opacity: .3;
}
.secondary-container.testimonials .reviewslist .reviewlist-btm {
  width: 100%;
}

.secondary-container.blogpost .homeblog {
  padding: 0;
  background: none;
}

/* SINGLE SERVICE PAGE CSS */


.accordion-item {
  background: var(--white);
  border: none;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, .06);
}

.accordion-button {
  background-color: var(--white);
  padding: 25px;
  font-weight: 600;
  font-size: 18px;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: var(--primary);
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%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");
  background-size: 1rem;
  width: 1rem;
  height: 1rem;
  margin-left: auto;
}

.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='%23ff6b6b'%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");
}

.day-badge {
  color: var(--secondary);
  margin-right: 5px;
  flex-shrink: 0;
}

.accordion-body {
  padding: 0px 25px 10px;
  background-color: var(--white);
  line-height: 1.7;
  color: #555;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--white);
}










.singleservice-sidebar-item {
    padding: 30px;
    border: 1px dashed #6bbc3b85;
    border-radius: 12px;
    background: #f7fcf5;
}

.singleservice-sidebar-item:not(:last-child) {
  margin-bottom: 23px;
}

.singleservice-sidebar h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.singleservice-sidebar-item .menu-services-menu-container ul li a {
    font-size: 15px;
    display: block;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid #0000000f;
    position: relative;
    font-weight: 500;
}

.singleservice-sidebar-item .menu-services-menu-container ul li:not(:last-child) a {
    margin-bottom: 8px;
}

.singleservice-sidebar-item .menu-services-menu-container ul li a:after {
    position: absolute;
    content: '+';
    top: 7px;
    right: 9px;
    font-family: 'Font Awesome 7 Free';
    font-weight: 600;
    font-size: 22px;
}

.singleservice-sidebar-item .menu-services-menu-container ul li.current-menu-item a, .singleservice-sidebar-item .menu-services-menu-container ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

.singleservice-sidebar-item .menu-services-menu-container ul li.current-menu-item a:after, .singleservice-sidebar-item .menu-services-menu-container ul li a:hover:after {
    color: var(--white);
}



.singleservice-sidebar-item.text-center.service-contact {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border: none;
    padding: 60px 30px;
    outline: 1px solid var(--primary);
    outline-offset: -10px;
}

.singleservice-sidebar-item.text-center.service-contact>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
    z-index: -1;
}

.singleservice-sidebar-item.text-center.service-contact h3 {
    font-size: 34px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.4;
    margin: 16px 0 22px;
}

.singleservice-sidebar-item.text-center.service-contact figure i {
    color: var(--white);
    font-size: 40px;
    line-height: 1;
}

.singleservice-sidebar-item.text-center.service-contact figure {
    width: 100px;
    height: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 9px;
}






.singleservice-sidebar form input, .singleservice-sidebar form textarea {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 12px !important;
    resize: none;
    background: var(--white);
    border: 1px solid #e3e3e3;
}

.singleservice-sidebar form button {
    margin-top: 12px;
}
.singleservice-sidebar form input[type="submit"] {
    padding: 0;
    border: none;
    background: transparent !important;
}

.singleservice-sidebar form input::placeholder, .singleservice-sidebar form textarea::placeholder {
  color: #2b2b2b8c;
}





.singleservice-content figure img {border-radius: 10px;}

.singleservice-content h2 {
    font-weight: 600;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.singleservice-content p {
    line-height: 1.6;
}

.singleservice-content {
    padding: 20px;
    border: 1px dashed #6bbc3b85;
    border-radius: 12px;
    background: #fdfffc;
    box-shadow: 3px 3px 15px #00000014;
}
.singleservice-content h4 {
    font-weight: 600;
    font-size: 18px;
    margin: 22px 0 16px;
}

.singleservice-content ul li:before {
    position: absolute;
    content: '\f245';
    font-family: 'Font Awesome 7 Free';
    font-weight: 600;
    color: var(--primary);
    transform: rotate(65deg);
    left: 0;
    top: 5px;
    font-size: 12px;
}

.singleservice-content ul {
    margin-left: 15px;
}

.singleservice-content ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 18px;
  position: relative;
  color: #606060;
}

.singleservice-content ul li i {
  color: var(--primary);
  font-size: 16px;
  line-height: 0;
}


/* BLOG PAGE CSS */

.secondary-container.blogpost .homebloglist img {
  aspect-ratio: inherit;
}

/* PARTNER PAGE CSS */

.partnerlists {
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.our-partner .partnerlists .branditem {background: var(--white);box-shadow: 3px 3px 10px #00000014;border-color: #efefef;position: relative;}

.our-partner .partnerlists .branditem:before, .our-partner .partnerlists .branditem:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
    opacity: 0;
}

.our-partner .partnerlists .branditem:before {
    transform: scaleX(0);
}

.our-partner .partnerlists .branditem:after {
    transform: scaleY(0);
}

.our-partner .partnerlists .branditem:hover:before, .our-partner .partnerlists .branditem:hover:after {
    transform: scale(1);
    opacity: 1;
}

