body {
  font-family: "Poppins", sans-serif;
  color: #040000;
  background-color: #ffffff;
}

html {
  scroll-padding-top: 70px;
}

/* Scroll Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
}

.scroll-animate.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.scroll-animate.animate-fadeInDown {
  animation: fadeInDown 0.8s ease-out forwards;
}

.scroll-animate.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.scroll-animate.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

.scroll-animate.animate-scaleIn {
  animation: scaleIn 0.8s ease-out forwards;
}

/* Stagger animation delays */
.scroll-animate:nth-child(1) { animation-delay: 0.1s; }
.scroll-animate:nth-child(2) { animation-delay: 0.2s; }
.scroll-animate:nth-child(3) { animation-delay: 0.3s; }
.scroll-animate:nth-child(4) { animation-delay: 0.4s; }
.scroll-animate:nth-child(5) { animation-delay: 0.5s; }
.scroll-animate:nth-child(6) { animation-delay: 0.6s; }

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

/*header section*/
.hero_area {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.home-page {
  background-color: #1b1f71;
}
.sub_page .hero_area {
  min-height: auto;
}

.header_section {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1b1f71;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-item .nav-link {
  padding: 10px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  text-transform: uppercase;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 90px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-brand span {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
  font-weight: bold;
  text-align: right;
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}

.user_option a {
  background-color: #f30165;
  padding: 7px 30px;
  border-radius: 5px;
  color: #ffffff;
}

.user_option .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.user_option .call-btn i {
  font-size: 16px;
}

.user_option .call-btn:hover {
  background-color: #f30165;
  text-decoration: none;
  color: #ffffff;
  transform: scale(1.05);
}

/* Mobile animated call button */
.mobile-call-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  background: #f30165;
  padding: 9px 18px 9px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 17px;
  flex: 1;
  max-width: 220px;
  margin: 0 10px;
  white-space: nowrap;
  overflow: visible;
}

.mobile-call-btn:hover {
  color: #ffffff;
  text-decoration: none;
}

.mobile-call-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 2px solid rgba(243, 1, 101, 0.7);
  animation: mobileCallPulse 1.8s ease-out infinite;
  pointer-events: none;
}

.mobile-call-ring--delay {
  animation-delay: 0.6s;
}

.mobile-call-icon {
  font-size: 15px;
  animation: mobileCallShake 1.2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes mobileCallPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

@keyframes mobileCallShake {
  0%, 100% { transform: rotate(0deg); }
  15%       { transform: rotate(15deg); }
  30%       { transform: rotate(-12deg); }
  45%       { transform: rotate(10deg); }
  60%       { transform: rotate(-8deg); }
  75%       { transform: rotate(5deg); }
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 0 180px 0;
  color: #ffffff;
}

.slider_section .box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section div#carouselExampleControls {
  overflow: hidden;
}

.slider_section .detail-box h1 {
  text-transform: uppercase;
  font-weight: bold;
}

.slider_section .detail-box p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 8px 35px;
  background-color: #f30165;
  border: 1px solid #f30165;
  color: #ffffff;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 15px;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #f30165;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 1;
  top: 50%;
  border-radius: 5px;
  font-size: 28px;
  color: #1b1f71;
}

.slider_section .carousel-control-prev:hover,
.slider_section .carousel-control-next:hover {
  opacity: 0.9;
}

.slider_section .carousel-control-prev {
  left: 20px;
}

.slider_section .carousel-control-next {
  right: 20px;
}

/* end slider section */
.book_section .book_form {
  background-color: #ffffff;
  padding: 45px 25px 40px 25px;
  margin: -90px auto 0 auto;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.book_section .book_form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.book_section .book_form .form-group .select_arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #585858;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}

.book_section .book_form .input-group-text {
  background-color: #1b1f71;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.book_section .book_form .form-control {
  height: 50px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  position: relative;
  background-color: #f2f2f2;
}

.book_section .book_form select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.book_section .book_form .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.book_section .book_form .btn-box button {
  display: inline-block;
  padding: 8px 65px;
  background-color: #0066cc;
  border: 1px solid #0066cc;
  color: #ffffff;
  border-radius: 0;
  margin-top: 15px;
  border-radius: 30px;
}

.book_section .book_form .btn-box button:hover {
  background-color: transparent;
  color: #ff7070;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 8px 30px;
  background-color: #1b1f71;
  border: 1px solid #1b1f71;
  color: #ffffff;
  border-radius: 5px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #1b1f71;
}

.about_section .img-box img {
  width: 100%;
}

.why_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 90px;
  padding: 45px 35px 50px 35px;
  background: #1b1f71;
  color: #ffffff;
  border-radius: 12px;
  min-height: 480px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.why_section .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 152, 0, 0) 100%);
  z-index: 0;
}

.why_section .box.b2 {
  margin-top: 45px;
  transform: translateY(-20px);
}

.why_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.why_section .box.b2:hover {
  transform: translateY(-30px);
}

.why_section .box .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  z-index: 1;
  position: relative;
}

.why_section .box .img-box {
  min-width: 100px;
  min-height: 100px;
  max-width: 100px;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.why_section .box .img-box i {
  font-size: 50px;
  color: #1a1f3a;
  transition: all 0.3s ease;
}

.why_section .box:hover .img-box {
  background-color: #ff9800;
  box-shadow: 0 12px 30px rgba(255, 152, 0, 0.3);
}

.why_section .box:hover .img-box i {
  color: #ffffff;
  transform: scale(1.1);
}

.why_section .box .img-box img {
  width: 45px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.why_section .box .detail-box {
  position: relative;
  z-index: 1;
}

.why_section .box .detail-box h5 {
  font-weight: 700;
  font-size: 22px;
  margin: 15px 0 15px 0;
  color: #ffffff;
}

.why_section .box .detail-box p {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.features-list i {
  color: #ff9800;
  font-size: 12px;
}

.app_section {
  background-color: #1b1f71;
}

.app_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app_section .detail-box {
  color: #ffffff;
}

.app_section .detail-box .heading_container h2 {
  color: #ffffff;
}

.app_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}

.app_section .detail-box a {
  width: 175px;
  margin: 5px;
}

.app_section .detail-box a img {
  width: 100%;
  border-radius: 5px;
}

.app_section .img-box img {
  width: 100%;
}

.client_section .heading_container {
  margin-bottom: 35px;
}

.client_section .carousel-indicators {
  position: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}

.client_section .carousel-indicators li {
  text-indent: unset;
  width: 60px;
  height: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 5px;
}

.client_section .carousel-indicators li img {
  width: 100%;
  border-radius: 100%;
}

.client_section .carousel-indicators li.active {
  width: 90px;
  height: 90px;
}

.client_section .detail-box {
  text-align: center;
}

.client_section .detail-box h5 {
  font-weight: 600;
}

.client_section .detail-box p {
  position: relative;
}

.client_section .detail-box p i {
  position: absolute;
  font-size: 48px;
  z-index: -1;
  color: #eef1f5;
}

.client_section .detail-box p i.fa-quote-left {
  top: -10px;
  left: 0;
}

.client_section .detail-box p i.fa-quote-right {
  bottom: 0;
  right: 0;
}

.blog_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.blog_section .box {
  margin-top: 45px;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
  padding: 25px;
}

.blog_section .box .img-box {
  position: relative;
}

.blog_section .box .img-box img {
  width: 100%;
}

.blog_section .box .detail-box {
  margin-top: 15px;
}

.blog_section .box .detail-box .blog_date {
  color: #1b1f71;
  font-weight: 600;
}

.blog_section .box .detail-box h5 {
  font-weight: bold;
}

.blog_section .box .detail-box p {
  font-size: 15px;
}

.blog_section .box .detail-box a {
  display: inline-block;
  padding: 7px 30px;
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #ffffff;
  border-radius: 0;
}

.blog_section .box .detail-box a:hover {
  background-color: transparent;
  color: #ff7070;
}

.info_section {
  background-color: #1b1f71;
  color: #ffffff;
  padding-top: 45px;
  padding-bottom: 10px;
}

.info_section .row > div {
  margin-bottom: 35px;
}

.info_section .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info_section .contact_nav a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .contact_nav a i {
  font-size: 22px;
  margin-right: 10px;
}

.info_section .contact_nav a:hover {
  color: #ff7070;
}

.info_section h4 {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.info_section .social_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

.info_section .social_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 18px;
  margin-right: 10px;
}

.info_section .social_box a:hover {
  color: #ff7070;
  border-color: #ff7070;
}

.info_section .info_form input {
  width: 100%;
  border: none;
  height: 45px;
  margin-bottom: 15px;
  padding-left: 25px;
  background-color: #eaeaea;
  outline: none;
  color: #101010;
}

.info_section .info_form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #ffffff;
  border-radius: 0px;
}

.info_section .info_form button:hover {
  background-color: transparent;
  color: #ff7070;
}

/* footer section*/
.footer_section {
  position: relative;
  background-color: #1b1f71;
  color: #ffffff;
  padding-bottom: 0;
}

.footer_content {
  padding: 60px 0 40px 0;
}

.footer_column {
  margin-bottom: 30px;
}

.footer_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: capitalize;
}

/* Contact Info Styles */
.footer_column .contact_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 12px;
}

.footer_column .contact_item i {
  font-size: 18px;
  color: #f30165;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contact_details {
  flex: 1;
}

.contact_label {
  font-size: 12px;
  font-weight: 600;
  color: #f30165;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.contact_details a,
.contact_value {
  font-size: 14px;
  color: #e8e8e8;
  margin: 0;
  text-decoration: none;
  line-height: 1.4;
}

.contact_details a:hover {
  color: #ff9800;
}

/* Footer Links */
.footer_links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_links li {
  margin-bottom: 10px;
}

.footer_links a {
  font-size: 14px;
  color: #e8e8e8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer_links a:hover {
  color: #ff9800;
  padding-left: 5px;
}

/* Services Section */
.services_section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services_title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  margin-top: 0;
  text-transform: capitalize;
}

.services_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services_list li {
  margin-bottom: 8px;
}

.services_list a {
  font-size: 13px;
  color: #d0d0d0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services_list a:hover {
  color: #ff9800;
}

/* Instant Booking Section */
.instant_booking {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.booking_description {
  font-size: 13px;
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.booking_buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn_whatsapp,
.btn_call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn_whatsapp {
  background-color: #f30165;
  color: #ffffff;
}

.btn_whatsapp:hover {
  background-color: #d9015a;
  color: #ffffff;
}

.btn_call {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn_call:hover {
  background-color: #ffffff;
  color: #1a1f3a;
}

/* Floating Action Buttons */
.floating_buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.float_whatsapp {
  background-color: #25D366;
  color: #ffffff;
}

.float_whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.float_phone {
  background-color: #f30165;
  color: #ffffff;
}

.float_phone:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
}

.float_top {
  background-color: #4A90E2;
  color: #ffffff;
}

.float_top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}

/* Footer Bottom */
.footer_bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_section p {
  color: #c0c0c0;
  margin: 0;
  font-size: 14px;
}

.footer_section p a {
  color: #ff9800;
  text-decoration: none;
}

.footer_section p a:hover {
  text-decoration: underline;
}

/* New Form Styles */
.book_section .book_form label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  color: #000;
}

.book_section .book_form .form-control {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
}

.book_section .book_form .form-control::placeholder {
  color: #999;
}

.book_section .book_form .form-control:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Autocomplete Styles */
.autocomplete-container {
  position: relative;
}

.hidden-until-phone {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  pointer-events: none;
}

.hidden-until-phone.visible {
  opacity: 1;
  max-height: 2000px;
  pointer-events: auto;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
}

.autocomplete-dropdown.active {
  display: block;
}

.autocomplete-option {
  padding: 12px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.autocomplete-option:hover,
.autocomplete-option.highlighted {
  background-color: #f5f5f5;
  color: #0066cc;
}

.autocomplete-option:last-child {
  border-bottom: none;
}

.autocomplete-no-results {
  padding: 12px 15px;
  color: #999;
  text-align: center;
  font-size: 14px;
}

/* Trip Type Buttons */
.trip-type-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-trip-type {
  padding: 10px 30px;
  border: 2px solid #999;
  background: white;
  color: #666;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-trip-type:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.btn-trip-type.active {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
}

/* Vehicle Selection */
.vehicle-section {
  margin: 30px 0;
}

.vehicle-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.vehicle-card {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.vehicle-card:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vehicle-card.active {
  border-color: #ffc107;
  border-width: 3px;
  background: #fffbf0;
}

.vehicle-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.vehicle-img img {
  max-height: 80px;
  max-width: 100%;
}

.vehicle-name {
  font-weight: 600;
  font-size: 16px;
  margin: 10px 0;
  color: #000;
}

.vehicle-price {
  font-weight: bold;
  font-size: 18px;
  color: #0066cc;
  margin: 8px 0;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
  min-width: 80px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.vehicle-price:hover {
  background-color: #f9f9f9;
}

/* Fare Breakdown Tooltip */
.fare-breakdown {
  display: none;
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
  width: 200px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fare-breakdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #f5f5f5;
}

.vehicle-price:hover + .fare-breakdown,
.fare-breakdown:hover {
  display: block;
}

.breakdown-content {
  font-size: 12px;
  color: #666;
  space-y: 8px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
}

.breakdown-row:last-child {
  margin-bottom: 0;
}

.breakdown-row span:last-child {
  color: #0066cc;
  font-weight: bold;
}

.more-details {
  color: #0066cc;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.more-details:hover {
  text-decoration: underline;
}

/* Form Row Styling */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* Button Styling */
.btn-book-now {
  display: inline-block;
  padding: 12px 60px;
  background-color: #0066cc;
  border: 2px solid #0066cc;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-book-now:hover {
  background-color: transparent;
  color: #0066cc;
}

.btn-box.text-center {
  display: flex;
  justify-content: center;
}

/* Booking Summary Section */
.booking-summary-section {
  background-color: #f9f9f9;
  padding: 40px 0;
  min-height: 100vh;
}

.booking-summary-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trip-type-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-trip-type-summary {
  padding: 10px 30px;
  border: 2px solid #999;
  background: white;
  color: #666;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-trip-type-summary:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.btn-trip-type-summary.active {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
}

/* Summary Content Layout */
.summary-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* Booking Summary Left */
.summary-left {
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.summary-header {
  background: linear-gradient(90deg, #0066cc 0%, #005fa3 100%);
  color: white;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.summary-details {
  padding: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: #333;
  min-width: 120px;
}

.summary-value {
  color: #666;
  text-align: right;
  flex: 1;
}

/* Fare Breakdown Right */
.summary-right {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin-top: -8px;
}

.fare-table {
  background: white;
}

.fare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(90deg, #0066cc 0%, #005fa3 100%);
  color: white;
  padding: 15px;
  font-weight: bold;
  font-size: 14px;
  gap: 15px;
}

.fare-rows {
  display: flex;
  flex-direction: column;
}

.fare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  gap: 15px;
  font-size: 14px;
  align-items: center;
}

.fare-row:last-child {
  border-bottom: none;
}

.fare-row div:first-child {
  font-weight: 600;
  color: #333;
}

.fare-row div:nth-child(2) {
  color: #666;
}

.fare-row div:last-child {
  text-align: right;
  color: #0066cc;
  font-weight: 500;
}

.fare-row.total-row {
  background-color: #f5f5f5;
  font-weight: bold;
  border-top: 2px solid #ddd;
}

.fare-row.total-row div:last-child {
  font-size: 18px;
  color: #0066cc;
  font-weight: bold;
}

/* Notes Section */
.notes-section {
  background-color: #fffbf0;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.notes-section strong {
  color: #333;
}

/* Summary Actions */
.summary-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.btn-back {
  padding: 12px 40px;
  background: white;
  border: 2px solid #333;
  color: #333;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: #f5f5f5;
}

.btn-confirm {
  padding: 12px 40px;
  background: #0066cc;
  border: 2px solid #0066cc;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-confirm:hover {
  background: transparent;
  color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
  .vehicle-img {
    height: 140px;
  }

  .vehicle-img img {
    max-height: 200px;
    max-width: 90%;
  }

  .summary-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fare-header {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    font-size: 12px;
  }

  .fare-header div:first-child {
    text-align: left;
  }

  .fare-header div:last-child {
    text-align: right;
  }

  /* Hide Details column on mobile, show Description and Amount */
  .fare-header div:nth-child(2) {
    display: none;
  }

  .fare-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    font-size: 12px;
    align-items: flex-start;
  }

  /* Hide Details column (middle div) */
  .fare-row div:nth-child(2) {
    display: none;
  }

  .fare-row div:first-child {
    text-align: left;
    font-weight: 600;
    color: #333;
  }

  .fare-row div:last-child {
    text-align: right;
    font-weight: bold;
    color: #0066cc;
  }

  .fare-row.total-row {
    font-weight: bold;
  }

  .fare-row.total-row div:last-child {
    font-size: 16px;
  }

  .summary-actions {
    flex-direction: column;
  }

  .btn-back,
  .btn-confirm {
    width: 100%;
  }
}

/* Booking Success Section */
.booking-success-section {
  background: linear-gradient(135deg, #1b1f71 0%, #0066cc 100%);
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 1200px;
}

.success-header {
  background: linear-gradient(90deg, #27ae60 0%, #229954 100%);
  color: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 35px;
}

.success-header h1 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}

/* Success Details Grid */
.success-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.success-details-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 4px;
  border-left: 4px solid #0066cc;
}

.success-label {
  font-weight: 600;
  color: #333;
  min-width: 150px;
}

.success-value {
  color: #666;
  text-align: right;
  flex: 1;
  margin-left: 20px;
  font-weight: 500;
}

/* Success Action */
.success-action {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.btn-back-home {
  padding: 14px 50px;
  background: #27ae60;
  border: 2px solid #27ae60;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  background: transparent;
  color: #27ae60;
}

/* Success Message */
.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 20px;
  color: #155724;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Success Page */
@media (max-width: 768px) {
  .success-container {
    padding: 20px;
  }

  .success-header {
    padding: 15px;
  }

  .success-header h1 {
    font-size: 22px;
  }

  .success-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .success-value {
    margin-left: 0;
    text-align: left;
  }

  .btn-back-home {
    width: 100%;
  }
}

/* Vehicle Details Modal Styling */
.vehicle-details-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.vehicle-details-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.vehicle-details-modal .modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vehicle-details-modal .close-modal {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vehicle-details-modal .close-modal:hover {
  color: #000;
  background-color: #f0f0f0;
}

.vehicle-detail-image {
  margin-bottom: 20px;
}

.vehicle-detail-image img {
  max-width: 200px;
  height: auto;
  display: inline-block;
}

.vehicle-details-modal h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #040000;
}

.vehicle-details-modal .detail-price {
  font-size: 20px;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 20px;
}

.fare-breakdown-details {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
}

.fare-breakdown-details .breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #666;
}

.fare-breakdown-details .breakdown-row:last-child {
  border-bottom: none;
}

.fare-breakdown-details .breakdown-row span:last-child {
  font-weight: 600;
  color: #040000;
}

/* Reviews Section */
.reviews_section {
  background-color: #f8f9fa;
}

.reviews_section .heading_container h2 {
  color: #2196F3;
  margin-bottom: 40px;
}

.reviews_container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.reviews_left {
  flex: 0 0 20%;
  min-width: 200px;
}

.excellent_rating {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.rating_stars {
  font-size: 24px;
  color: #FFC107;
  margin-bottom: 10px;
}

.rating_stars i {
  margin: 0 2px;
}

.excellent_text {
  font-weight: bold;
  font-size: 18px;
  color: #040000;
  margin: 10px 0;
}

.rating_count {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.google_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.google_icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.reviews_right {
  flex: 1;
}

.reviews_carousel {
  display: flex;
  gap: 20px;
}

.review_card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  flex: 0 0 calc(33.333% - 14px);
}

.review_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.reviewer_info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.reviewer_avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #666;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.reviewer_details {
  display: flex;
  flex-direction: column;
}

.reviewer_name {
  font-weight: 600;
  margin: 0;
  font-size: 14px;
}

.review_date {
  font-size: 12px;
  color: #999;
  margin: 2px 0 0 0;
}

.google_review_icon {
  width: 24px;
  height: 24px;
}

.review_stars {
  color: #FFC107;
  margin-bottom: 10px;
  font-size: 14px;
}

.review_stars i {
  margin-right: 2px;
}

.review_text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.read_more {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  cursor: pointer;
}

.read_more:hover {
  color: #2196F3;
}

/* =============== SERVICE CARDS & TRANSITIONS =============== */

/* Service Card Animations */
.service-card {
  animation: slideInUp 0.6s ease-out !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.service-card img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card a {
  transition: all 0.3s ease;
  position: relative;
}

.service-card a:hover {
  gap: 15px !important;
  color: #0052cc !important;
}

.service-card a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover a i {
  transform: translateX(5px);
}

/* Why Section Enhanced Animations */
.why_section .box {
  animation: popIn 0.6s ease-out !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.why_section .box .img-box {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.why_section .box:hover .img-box {
  transform: scale(1.15) !important;
  box-shadow: 0 12px 30px rgba(255, 152, 0, 0.4) !important;
}

.why_section .box .detail-box h5 {
  transition: color 0.3s ease;
}

.why_section .box:hover .detail-box h5 {
  color: #ff9800;
}

/* Section Header Animations */
.services_we_offer_section h2 {
  animation: fadeInScale 0.8s ease-out;
}

.services_we_offer_section p {
  animation: fadeInScale 0.8s ease-out 0.1s backwards;
}

/* Smooth transitions for all interactive elements */
button, a, input, select, textarea {
  transition: all 0.3s ease;
}

/* Link hover effects */
a {
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

/* Form element transitions */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
  transition: all 0.3s ease;
}

/* Button hover effects */
.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
}

/* Card transitions */
.card, [class*="card"] {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Owl Carousel Custom */
.owl-carousel .owl-nav {

    position: absolute;
    top: -50px;
    right: 0;
    display: flex;
    gap: 10px;
}

.owl-carousel .owl-nav button {
    background-color: transparent;
    border: 2px solid #ddd;
    color: #2196F3;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background-color: #2196F3;
    color: white;
    border-color: #2196F3;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-right: 5px;
.owl-carousel .owl-dots {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews_container {
    flex-direction: column;
  }

  .reviews_left {
    flex: 1;
    width: 100%;
  }

  .review_card {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .reviews_carousel {
    flex-direction: column;
  }
}

/* =====================================================
   Tour Packages Dropdown — ID-scoped (beats Bootstrap)
   ===================================================== */

/* ── "Tour Packages" trigger — gold underline sweep ─── */
.custom_nav-container .nav-item.dropdown > .nav-link {
  position: relative !important;
  transition: color 0.25s ease !important;
}

/* Override Bootstrap's border-based caret with a real underline */
.custom_nav-container .nav-item.dropdown > .dropdown-toggle::after {
  display: inline-block !important;
  border: none !important;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: 0.2em;
  border-top: 5px solid currentColor !important;
  border-right: 4px solid transparent !important;
  border-left: 4px solid transparent !important;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform-origin: center 30% !important;
}
.custom_nav-container .nav-item.dropdown.show > .dropdown-toggle::after {
  transform: rotate(180deg) !important;
}

/* Gold underline line (separate pseudo on the li) */
.custom_nav-container .nav-item.dropdown > .nav-link::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  right: 50% !important;
  height: 3px !important;
  background: linear-gradient(90deg, #f9a825, #ffd54f) !important;
  border-radius: 2px 2px 0 0 !important;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none !important;
}
.custom_nav-container .nav-item.dropdown:hover > .nav-link::before,
.custom_nav-container .nav-item.dropdown.show > .nav-link::before {
  left: 10px !important;
  right: 10px !important;
}

/* Glow when open */
.custom_nav-container .nav-item.dropdown.show > .nav-link {
  color: #ffd54f !important;
  text-shadow: 0 0 16px rgba(249, 168, 37, 0.5) !important;
}

/* ── Dropdown panel ──────────────────────────────────── */
#navbarSupportedContent .dropdown-menu {
  min-width: 280px !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 2px solid rgba(27, 31, 113, 0.12) !important;
  border-top: 4px solid #f9a825 !important;
  border-radius: 0 0 18px 18px !important;
  overflow: hidden !important;
  margin-top: 0 !important;
  box-shadow:
    0 8px 24px rgba(27, 31, 113, 0.15),
    0 32px 64px rgba(27, 31, 113, 0.12) !important;
  animation: ddSlideIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) both !important;
  transform-origin: top center !important;
}

@keyframes ddSlideIn {
  0%   { opacity: 0; transform: translateY(-10px) scaleY(0.95); }
  100% { opacity: 1; transform: translateY(0)     scaleY(1);    }
}

/* ── Category section banners ────────────────────────── */
#navbarSupportedContent .dropdown-category-header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 16px 7px !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.85) !important;
  background: linear-gradient(90deg, #1b1f71 0%, #2c3498 100%) !important;
  pointer-events: none !important;
  user-select: none !important;
  line-height: 1.4 !important;
  border-bottom: 1px solid rgba(249, 168, 37, 0.4) !important;
}
#navbarSupportedContent .dropdown-category-header::before {
  content: '' !important;
  flex-shrink: 0 !important;
  width: 20px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #f9a825, #ffd54f) !important;
  border-radius: 2px !important;
}
#navbarSupportedContent .dropdown-category-header::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

/* ── Menu items ──────────────────────────────────────── */
#navbarSupportedContent .dropdown-menu .dropdown-item {
  display: flex !important;
  align-items: center !important;
  padding: 10px 18px 10px 14px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #1e2568 !important;
  background: #ffffff !important;
  border: none !important;
  border-left: 3px solid transparent !important;
  border-bottom: 1px solid rgba(27, 31, 113, 0.06) !important;
  white-space: nowrap !important;
  transition:
    background 0.2s ease,
    border-left-color 0.2s ease,
    padding-left 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s ease !important;
}

/* Gold chevron › before each item */
#navbarSupportedContent .dropdown-menu .dropdown-item::before {
  content: "\203A" !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: #c9a030 !important;
  margin-right: 10px !important;
  flex-shrink: 0 !important;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease !important;
}

/* Hover */
#navbarSupportedContent .dropdown-menu .dropdown-item:hover,
#navbarSupportedContent .dropdown-menu .dropdown-item:focus {
  background: linear-gradient(90deg, #fffbe8 0%, #ffffff 70%) !important;
  border-left-color: #f9a825 !important;
  padding-left: 20px !important;
  color: #1b1f71 !important;
  text-decoration: none !important;
}
#navbarSupportedContent .dropdown-menu .dropdown-item:hover::before,
#navbarSupportedContent .dropdown-menu .dropdown-item:focus::before {
  transform: translateX(4px) !important;
  color: #f9a825 !important;
}

/* Active — current page */
#navbarSupportedContent .dropdown-menu .dropdown-item.active,
#navbarSupportedContent .dropdown-menu .dropdown-item.active:hover,
#navbarSupportedContent .dropdown-menu .dropdown-item.active:focus {
  background: linear-gradient(90deg, #1b1f71 0%, #2c3498 100%) !important;
  color: #ffffff !important;
  border-left: 3px solid #ffd54f !important;
  border-bottom-color: rgba(255,255,255,0.1) !important;
  padding-left: 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(27, 31, 113, 0.28) !important;
}
#navbarSupportedContent .dropdown-menu .dropdown-item.active::before,
#navbarSupportedContent .dropdown-menu .dropdown-item.active:hover::before {
  color: #ffd54f !important;
  transform: translateX(2px) !important;
}

/* ── Temple & Pilgrimage — warm gold tint ────────────── */
#navbarSupportedContent .dropdown-menu a[href="temple-packages.html"],
#navbarSupportedContent .dropdown-menu a[href="pilgrimage-packages.html"] {
  background: linear-gradient(90deg, #fffbf0 0%, #ffffff 60%) !important;
  color: #7d4e00 !important;
  font-weight: 600 !important;
}
#navbarSupportedContent .dropdown-menu a[href="temple-packages.html"]::before,
#navbarSupportedContent .dropdown-menu a[href="pilgrimage-packages.html"]::before {
  content: "\2605" !important;
  font-size: 13px !important;
  color: #d4a017 !important;
  margin-right: 10px !important;
}
#navbarSupportedContent .dropdown-menu a[href="temple-packages.html"]:hover,
#navbarSupportedContent .dropdown-menu a[href="pilgrimage-packages.html"]:hover {
  background: linear-gradient(90deg, #fff3c4 0%, #fffbf0 100%) !important;
  color: #5a3400 !important;
  border-left-color: #d4a017 !important;
}
#navbarSupportedContent .dropdown-menu a.active[href="temple-packages.html"],
#navbarSupportedContent .dropdown-menu a.active[href="pilgrimage-packages.html"] {
  background: linear-gradient(90deg, #f9a825 0%, #ffd54f 100%) !important;
  color: #1a1e6a !important;
}
#navbarSupportedContent .dropdown-menu a.active[href="temple-packages.html"]::before,
#navbarSupportedContent .dropdown-menu a.active[href="pilgrimage-packages.html"]::before {
  color: #1a1e6a !important;
}

/* ── "View All Packages" footer link ─────────────────── */
#navbarSupportedContent .dropdown-menu-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 18px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #1b1f71 !important;
  background: linear-gradient(180deg, #f7f8fd 0%, #e8eaf6 100%) !important;
  border-top: 2px solid rgba(27, 31, 113, 0.12) !important;
  text-decoration: none !important;
  transition: background 0.22s ease, color 0.22s ease !important;
  cursor: pointer !important;
  border-radius: 0 0 16px 16px !important;
}
#navbarSupportedContent .dropdown-menu-footer::before {
  content: "\2605" !important;
  font-size: 11px !important;
  color: #f9a825 !important;
  transition: color 0.2s ease !important;
}
#navbarSupportedContent .dropdown-menu-footer::after {
  content: "\2192" !important;
  font-size: 16px !important;
  color: #f9a825 !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease !important;
}
#navbarSupportedContent .dropdown-menu-footer:hover {
  background: linear-gradient(90deg, #1b1f71 0%, #2c3498 100%) !important;
  color: #ffd54f !important;
  text-decoration: none !important;
}
#navbarSupportedContent .dropdown-menu-footer:hover::before,
#navbarSupportedContent .dropdown-menu-footer:hover::after {
  color: #ffd54f !important;
}
#navbarSupportedContent .dropdown-menu-footer:hover::after {
  transform: translateX(5px) !important;
}

/* Last real item — no bottom border line */
#navbarSupportedContent .dropdown-menu .dropdown-item:last-of-type {
  border-bottom: none !important;
}

/*# sourceMappingURL=style.css.map */