body {
  font-family: "Poppins", sans-serif;
  color: #040000;
  background: linear-gradient(180deg, #f7fbff 0%, #fefefe 100%);
}

.auth_page {
  background: linear-gradient(135deg, #d9f2fb 0%, #b7e3f8 40%, #eff8ff 100%);
}

.auth_section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 20px 70px;
}

.auth_shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.auth_visual,
.auth_card {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.auth_visual {
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visual_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.auth_visual h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
}

.auth_visual p {
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}

.auth_visual ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.auth_visual li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth_visual_image {
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
}

.auth_visual_image img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 240px;
}

.auth_card {
  background: #ffffff;
  padding: 32px;
}

.auth_head {
  margin-bottom: 20px;
}

.eyebrow {
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 6px;
}

.auth_head h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.auth_head p {
  color: #64748b;
  margin-bottom: 0;
}

.auth_toggle {
  display: flex;
  background: #f1f5f9;
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.auth_toggle_btn {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  color: #475569;
  font-weight: 600;
}

.auth_toggle_btn.active {
  background: #2563eb;
  color: #ffffff;
}

.social_btn,
.auth_submit,
.text_link {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

.social_btn {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
  margin-bottom: 14px;
}

.social_btn:hover {
  background: #bfdbfe;
  border-color: #60a5fa;
}

.social_btn i {
  margin-right: 8px;
}

.text_link {
  background: transparent;
  color: #2563eb;
  padding: 0;
  margin-top: 10px;
}

.divider {
  text-align: center;
  position: relative;
  margin: 16px 0;
}

.divider::before {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: #e2e8f0;
}

.divider span {
  position: relative;
  background: #ffffff;
  padding: 0 12px;
  color: #64748b;
  font-size: 13px;
}

.auth_form {
  display: none;
}

.auth_form.active {
  display: block;
}

.form_group {
  margin-bottom: 14px;
}

.form_group label {
  display: block;
  margin-bottom: 6px;
  color: #334155;
  font-weight: 600;
}

.form_group input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

.form_group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.auth_submit {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  margin-top: 6px;
}

.otp_panel {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: #eff6ff;
}

.otp_panel.show {
  display: block;
}

.otp_panel h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.otp_panel p {
  color: #475569;
  margin-bottom: 10px;
}

.text_link {
  background: transparent;
  color: #2563eb;
  padding: 0;
  margin-top: 10px;
}

.auth_message {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
}

.auth_message.success {
  color: #15803d;
}

.auth_message.error {
  color: #dc2626;
}

.auth_message.warning {
  color: #b45309;
}

.auth_message.info {
  color: #1d4ed8;
}

.active_nav_link {
  background-color: #3b82f6;
  color: #ffffff !important;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .auth_shell {
    grid-template-columns: 1fr;
  }

  .auth_visual {
    order: 2;
  }
}

.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: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(135deg, #dff4ff 0%, #c7ebff 42%, #f7fcff 100%);
  position: relative;
  overflow: hidden;
}

.sub_page .hero_area {
  min-height: 85px;
}

.header_section {
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 30px rgba(11, 30, 70, 0.08);
          box-shadow: 0 10px 30px rgba(11, 30, 70, 0.08);
  z-index: 9999;
  border-bottom: 1px solid rgba(27, 31, 113, 0.08);
}

.auth_page .header_section {
  background-color: #ffffff;
}

#download_section,
#contact_section {
  scroll-margin-top: 85px;
}

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

.navbar-nav .nav-item .nav-link {
  padding: 10px 14px;
  text-align: center;
  color: #1b1f71;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  white-space: nowrap;
}

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;
  justify-content: flex-end;
  align-items: center;
}

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

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  margin-left: 12px;
  -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;
}

.custom_nav-container .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.custom_nav-container .navbar-brand span {
  color: #1b1f71;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.custom_nav-container .navbar-brand img {
  display: inline-block;
  width: 90px;
  height: auto;
  max-height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.custom_nav-container .navbar-collapse {
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .custom_nav-container .navbar-brand {
    margin-left: -25px;
  }

  .custom_nav-container .navbar-collapse {
    margin-right: -25px;
  }
}

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

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

.user_option .btn_login_signup {
  background-color: #3b82f6;
  color: #ffffff;
  white-space: nowrap;
}

.user_option .btn_login_signup:hover {
  background-color: #2563eb;
  color: #ffffff;
}

.user_menu {
  position: relative;
}

.user_menu_btn {
  background-color: #3b82f6;
  padding: 7px 20px;
  border-radius: 5px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.user_menu_dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #ffffff;
  border-radius: 8px;
  min-width: 160px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  z-index: 20;
}

.user_menu_dropdown.show {
  display: block;
}

/* Extra-specific selector so this always wins over .user_option a */
.user_menu .user_menu_dropdown a#logoutLink {
  display: block;
  padding: 12px 18px;
  background-color: #fef2f2;
  color: #dc2626;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.user_menu .user_menu_dropdown a#logoutLink:hover {
  background-color: #dc2626;
  color: #ffffff;
}

/* Mobile: dropdown becomes a full-width panel instead of a floating overlay,
   since .user_option sits inside the collapsing navbar menu on small screens */
@media (max-width: 991px) {
  .user_option {
    margin-top: 12px;
    width: 100%;
  }

  .user_menu {
    width: 100%;
  }

  .user_menu_btn {
    width: 100%;
    justify-content: center;
  }

  .user_menu_dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }

  .user_option {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .user_option > a {
    display: block;
    text-align: center;
    width: 100%;
    margin-right: 0 !important;
  }
}

/*end header section*/
/* slider section */
.slider_section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  -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: 85px 1% 140px;
  min-height: 720px;
  background:
    radial-gradient(circle at 22% 28%, rgba(56, 132, 255, 0.28), transparent 42%),
    radial-gradient(circle at 80% 22%, rgba(80, 160, 255, 0.2), transparent 45%),
    radial-gradient(circle at 78% 78%, rgba(45, 110, 240, 0.22), transparent 50%),
    linear-gradient(160deg, #04081a 0%, #060f2c 32%, #0a1a44 62%, #050a20 100%);
}

.slider_section .box {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 80%);
  opacity: 0.25;
  animation: driftGrid 18s linear infinite;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 191, 255, 0.34) 0%, rgba(102, 191, 255, 0.18) 32%, rgba(255, 255, 255, 0) 70%);
  animation: pulseGlow 10s ease-in-out infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.98) 0%, rgba(144, 221, 255, 0.86) 22%, rgba(69, 154, 244, 0.37) 52%, rgba(69, 154, 244, 0) 78%);
  box-shadow: 0 0 48px rgba(69, 154, 244, 0.28), inset 0 0 24px rgba(255, 255, 255, 0.22);
  animation: orbDrift 14s ease-in-out infinite;
}

.hero-trail {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0) 100%);
  transform-origin: left center;
  opacity: 0.8;
  filter: blur(0.4px);
  animation: trailPulse 7s ease-in-out infinite;
}

.hero-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px rgba(102, 191, 255, 0.9), 0 0 18px rgba(102, 191, 255, 0.45);
  animation: particleDrift 8s linear infinite;
}

.hero-sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0) 70%);
  animation: sparkle 2.6s ease-in-out infinite;
}

.hero-car-icon {
  position: absolute;
  width: 44px;
  height: 28px;
  opacity: 0.86;
  animation: carDrift 10s ease-in-out infinite;
}

.hero-car-icon path,
.hero-car-icon circle {
  filter: drop-shadow(0 6px 12px rgba(27, 31, 113, 0.18));
}

.slider_section .img-box {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.slider_section .img-box img {
  position: relative;
  z-index: 1;
  background: transparent;
}

@keyframes orbDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.92;
  }
  50% {
    transform: translate3d(0, -14px, 0) scale(1.06);
    opacity: 1;
  }
}

@keyframes particleDrift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.2;
  }
  50% {
    transform: translate3d(14px, -18px, 0);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(30px, -36px, 0);
    opacity: 0;
  }
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(0.7);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes trailPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.9);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1.05);
  }
}

@keyframes carDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(10px, -12px, 0) rotate(-2deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes driftGrid {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(30px, 30px, 0);
  }
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.slider_section .container {
  max-width: 1200px;
}

.slider_section .detail-box {
  padding-left: 70px;
  padding-right: 20px;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(90, 165, 255, 0.14);
  border: 1px solid rgba(120, 185, 255, 0.35);
  color: #bfe0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.hero-points {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(4px, 1vw, 10px);
  padding: 0;
  margin: 14px 0 16px;
  list-style: none;
  width: 100%;
  max-width: 100%;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: clamp(5px, 0.9vw, 8px) clamp(6px, 1.3vw, 10px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(150, 195, 255, 0.22);
  color: #d6e6ff;
  font-size: clamp(10px, 1.6vw, 13px);
  flex: 1 1 0;
  min-width: 0;
  max-width: -webkit-max-content;
  max-width: max-content;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(4, 10, 30, 0.25);
}

.hero-points li i {
  color: #6fb2ff;
  flex-shrink: 0;
}

.hero-points li span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.slider_section .img-box {
  margin-left: 30px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.slider_section .detail-box h1 {
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
  margin-left: 8px;
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  text-shadow: 0 0 34px rgba(69, 154, 244, 0.45);
}

.slider_section .detail-box p {
  color: #b7c6ea;
}

.slider_section .detail-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(135deg, #1b3fb0 0%, #3b82f6 100%);
  border: 1px solid rgba(147, 197, 253, 0.4);
  color: #ffffff;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 0 34px rgba(59, 130, 246, 0.45), 0 16px 28px rgba(4, 10, 30, 0.3);
}

.slider_section .detail-box a:hover {
  background: #ffffff;
  color: #1b1f71;
  border-color: #ffffff;
}

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

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  --slider-control-size: 50px;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  width: var(--slider-control-size);
  height: var(--slider-control-size);
  background-color: rgba(10, 20, 50, 0.55);
  border: 1px solid rgba(140, 190, 255, 0.35);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  opacity: 1;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.3);
}

.slider_section .carousel-btn-box {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider_section .carousel-btn-box .carousel-control-prev,
.slider_section .carousel-btn-box .carousel-control-next {
  pointer-events: auto;
}

.slider_section .carousel-arrow {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.slider_section .carousel-control-prev:hover,
.slider_section .carousel-control-next:hover {
  background-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* end slider section */
.book_section .book_form {
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  padding: 30px 28px 40px 28px;
  margin: -90px auto 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(27, 31, 113, 0.08);
  -webkit-box-shadow: 0 24px 50px 0 rgba(15, 23, 42, 0.12);
          box-shadow: 0 24px 50px 0 rgba(15, 23, 42, 0.12);
}

.book_tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #eef1fb;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 26px;
  gap: 6px;
}

.book_tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  background-color: transparent;
  color: #64748b;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.book_tab i {
  margin-right: 6px;
}

.book_tab.active {
  background-color: #1b1f71;
  color: #ffffff;
  -webkit-box-shadow: 0 8px 18px rgba(27, 31, 113, 0.28);
          box-shadow: 0 8px 18px rgba(27, 31, 113, 0.28);
}

.book_panel {
  -webkit-animation: fadeInPanel 0.2s ease;
          animation: fadeInPanel 0.2s ease;
}

@-webkit-keyframes fadeInPanel {
  from { opacity: 0; -webkit-transform: translateY(4px); }
  to { opacity: 1; -webkit-transform: translateY(0); }
}

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

.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 {
  border-radius: 14px;
  overflow: hidden;
  background-color: #f2f4f8;
  -webkit-box-shadow: inset 0 0 0 1px #e7eaf3;
          box-shadow: inset 0 0 0 1px #e7eaf3;
  transition: box-shadow 0.2s ease;
}

.book_section .book_form .input-group:focus-within {
  -webkit-box-shadow: inset 0 0 0 1px #1b1f71;
          box-shadow: inset 0 0 0 1px #1b1f71;
}

.book_section .book_form .input-group-text {
  background-color: #1b1f71;
  width: 46px;
  height: 50px;
  border-radius: 10px;
  margin: 3px 0 3px 3px;
  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;
  border: none;
}

.book_section .book_form .form-control {
  height: 50px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  position: relative;
  background-color: transparent;
  font-size: 14px;
  color: #1f2937;
}

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

.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,
.book_section .book_form .btn-box a {
  display: inline-block;
  width: 100%;
  padding: 14px 55px;
  background-color: #1b1f71;
  border: 1px solid #1b1f71;
  color: #ffffff;
  border-radius: 12px;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.book_section .book_form .btn-box button i,
.book_section .book_form .btn-box a i {
  margin-left: 8px;
}

.book_section .book_form .btn-box button:hover,
.book_section .book_form .btn-box a:hover {
  background-color: #ffffff;
  color: #1b1f71;
  border-color: #1b1f71;
}

.book_section .book_form .btn-box .prebook-cta {
  background-color: #1b1f71;
  border: 1px solid #1b1f71;
  box-shadow: 0 12px 28px rgba(27, 31, 113, 0.35);
  letter-spacing: 0.03em;
}

.book_section .book_form .btn-box .prebook-cta:hover {
  background-color: #ffffff;
  color: #1b1f71;
  border-color: #1b1f71;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(27, 31, 113, 0.3);
}

.book_section .book_form .btn-box .prebook-cta:active {
  transform: translateY(0);
}

.booking-message {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

.booking-message.error {
  color: #dc2626;
}

.booking-message.success {
  color: #15803d;
}

.invalid-field {
  border: 1px solid #dc2626 !important;
  background-color: #fee2e2 !important;
}

.book_section .book_form .input-group-map-btn {
  background-color: #ffffff;
  border: none;
  width: 46px;
  min-width: 46px;
  height: 50px;
  border-radius: 10px;
  margin: 3px 3px 3px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1b1f71;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.book_section .book_form .input-group-map-btn:hover {
  background-color: #1b1f71;
  color: #ffffff;
}

.book_section .book_form .location-autocomplete-wrap {
  position: relative;
}

.book_section .book_form .location-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  background: #ffffff;
  border: 1px solid rgba(27, 31, 113, 0.12);
  border-radius: 12px;
  -webkit-box-shadow: 0 16px 34px rgba(11, 30, 70, 0.14);
          box-shadow: 0 16px 34px rgba(11, 30, 70, 0.14);
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
}

.book_section .book_form .location-suggestions.show {
  display: block;
}

.book_section .book_form .location-suggestions .suggestion-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: #1e293b;
  line-height: 1.35;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}

.book_section .book_form .location-suggestions .suggestion-item i {
  color: #1b1f71;
  margin-top: 3px;
  font-size: 12px;
}

.book_section .book_form .location-suggestions .suggestion-item:hover,
.book_section .book_form .location-suggestions .suggestion-item.active {
  background-color: #eef1fb;
}

.book_section .book_form .location-suggestions .suggestion-empty,
.book_section .book_form .location-suggestions .suggestion-loading {
  padding: 9px 10px;
  font-size: 13px;
  color: #94a3b8;
}

.book_section .book_form .location-map-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 45;
  height: 260px;
  background: #ffffff;
  border: 1px solid rgba(27, 31, 113, 0.12);
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 16px 34px rgba(11, 30, 70, 0.16);
          box-shadow: 0 16px 34px rgba(11, 30, 70, 0.16);
}

.book_section .book_form .location-map-panel.show {
  display: block;
}

.book_section .book_form .location-map-panel .map-hint {
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 500;
  background: rgba(27, 31, 113, 0.92);
  color: #ffffff;
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 20px;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .book_section .book_form .location-map-panel {
    height: 220px;
  }
}

.book_section .book_form .field-hint {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin: 6px 0 0 4px;
}

.book_section .book_form .field-hint-top {
  margin: 0 0 6px 4px;
}

.book_section .book_form .field-hint-sub {
  font-weight: 400;
  color: #94a3b8;
}

.ride-slot-group {
  display: flex;
  gap: 14px;
}

.ride-slot-group .input-group {
  flex: 1;
}

@media (max-width: 576px) {
  .ride-slot-group {
    flex-direction: column;
    gap: 10px;
  }
}

.book_section .book_form select.placeholder-select:invalid {
  color: #8993a8;
}

.book_section .book_form .time-input {
  cursor: pointer;
}

.custom-days-row {
  display: none;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  margin-top: 12px;
  background: linear-gradient(180deg, #eef1fb 0%, #e4e9fb 100%);
  border: 1px solid rgba(27, 31, 113, 0.08);
  border-radius: 16px;
  padding: 10px;
  -webkit-box-shadow: inset 0 1px 3px rgba(27, 31, 113, 0.06);
          box-shadow: inset 0 1px 3px rgba(27, 31, 113, 0.06);
}

.custom-days-row.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.day-chip {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0;
          flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  border: 1.5px solid rgba(27, 31, 113, 0.1);
  background-color: #ffffff;
  color: #475569;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 11px 4px;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
          box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.day-chip::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.day-chip:hover {
  color: #1b1f71;
  border-color: #a9b8f7;
  background-color: #f5f7ff;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 14px rgba(27, 31, 113, 0.14);
          box-shadow: 0 6px 14px rgba(27, 31, 113, 0.14);
}

.day-chip.active {
  background: linear-gradient(135deg, #1b1f71 0%, #3b4bc7 55%, #5a6bdc 100%);
  color: #ffffff;
  border-color: transparent;
  -webkit-box-shadow: 0 10px 22px rgba(27, 31, 113, 0.38);
          box-shadow: 0 10px 22px rgba(27, 31, 113, 0.38);
  -webkit-transform: translateY(-2px) scale(1.04);
      -ms-transform: translateY(-2px) scale(1.04);
          transform: translateY(-2px) scale(1.04);
}

.day-chip.active::before {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

@media (max-width: 420px) {
  .custom-days-row {
    gap: 5px;
    padding: 8px;
  }

  .day-chip {
    font-size: 11px;
    padding: 10px 2px;
    letter-spacing: 0.02em;
  }

  .day-chip::before {
    display: none;
  }
}

.gender-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 14px;
  overflow: hidden;
  background-color: #f2f4f8;
  -webkit-box-shadow: inset 0 0 0 1px #e7eaf3;
          box-shadow: inset 0 0 0 1px #e7eaf3;
}

.gender-box-wrap .input-group-text {
  background-color: #1b1f71;
  width: 46px;
  min-width: 46px;
  border-radius: 10px;
  margin: 3px 0 3px 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
}

.gender-box-wrap .gender-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 3px;
}

.gender-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 8px;
  background-color: #f2f4f8;
  border-radius: 14px;
  padding: 10px;
  -webkit-box-shadow: inset 0 0 0 1px #e7eaf3;
          box-shadow: inset 0 0 0 1px #e7eaf3;
  min-height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
}

.gender-placeholder {
  color: #8993a8;
  font-size: 14px;
}

.gender-seat {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0;
          flex: 1 1 0;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 5px 8px 5px 10px;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.gender-seat:hover {
  border-color: #a9b8f7;
  -webkit-box-shadow: 0 4px 10px rgba(27, 31, 113, 0.1);
          box-shadow: 0 4px 10px rgba(27, 31, 113, 0.1);
}

.gender-seat-label {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 700;
  white-space: nowrap;
}

.gender-seat-select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border: none;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1b1f71;
  background-color: #eef1fb;
  outline: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  .gender-seat-label {
    display: none;
  }

  .gender-seat {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 6px 4px;
  }
}

/* Pre-Book Ride panel - labeled card design */
.prebook_panel {
  padding-top: 4px;
}

.prebook_eyebrow {
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 8px;
}

.prebook_heading {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.prebook_subtitle {
  color: #64748b;
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.6;
}

.prebook_panel .form_group {
  margin-bottom: 18px;
}

.prebook_panel .form_group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 14px;
  color: #334155;
}

.prebook_panel .input_icon_wrap {
  position: relative;
  background-color: #f2f4f8;
  border-radius: 12px;
  -webkit-box-shadow: inset 0 0 0 1px #e7eaf3;
          box-shadow: inset 0 0 0 1px #e7eaf3;
  transition: box-shadow 0.2s ease;
}

.prebook_panel .input_icon_wrap:focus-within {
  -webkit-box-shadow: inset 0 0 0 1px #1b1f71;
          box-shadow: inset 0 0 0 1px #1b1f71;
}

.prebook_panel .input_icon_wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #8993a8;
  font-size: 14px;
}

.prebook_panel .input_icon_wrap input {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px 14px 42px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background-color: transparent;
  color: #1f2937;
}

.prebook_panel .input_icon_wrap input::placeholder {
  color: #8993a8;
}

.prebook_panel .form_hint {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 6px;
}

.prebook_submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 14px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.1s;
}

.prebook_submit:hover {
  opacity: 0.92;
}

.prebook_submit:active {
  transform: scale(0.99);
}

.prebook_submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .prebook_heading {
    font-size: 22px;
  }
}

.about_section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.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%;
  background: transparent;
}

.why_section {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #f5fbff 0%, #eef7ff 100%);
}

.why_section .why_container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.why_section .why_container .col-md-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.why_section .box {
  position: relative;
  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;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  padding: 40px 30px 36px;
  background:
    linear-gradient(160deg, rgba(37, 63, 150, 0.55) 0%, rgba(9, 22, 68, 0.85) 60%),
    linear-gradient(160deg, #0b1f5b 0%, #142a78 100%);
  color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(129, 178, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 25px 60px rgba(6, 14, 45, 0.28), 0 0 45px rgba(59, 130, 246, 0.22);
          box-shadow: 0 25px 60px rgba(6, 14, 45, 0.28), 0 0 45px rgba(59, 130, 246, 0.22);
  -webkit-transition: transform 0.35s ease, box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why_section .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(6, 14, 45, 0.32), 0 0 60px rgba(59, 130, 246, 0.35);
}

.why_section .box .icon-box {
  width: 84px;
  height: 84px;
  min-width: 84px;
  margin-bottom: 22px;
  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%;
  background: radial-gradient(circle at 35% 30%, rgba(120, 180, 255, 0.4), rgba(37, 60, 150, 0.65));
  border: 2px solid rgba(140, 195, 255, 0.55);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.55), inset 0 0 16px rgba(255, 255, 255, 0.12);
  font-size: 32px;
  color: #eaf3ff;
}

.why_section .box .detail-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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.why_section .box .detail-box h5 {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 16px;
}

.why_section .box .detail-box p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(230, 238, 255, 0.88);
}

.app_section {
  background: linear-gradient(135deg, #0f174a 0%, #1b1f71 55%, #2f4ad8 100%);
  border-radius: 32px;
  margin: 0 20px;
  overflow: hidden;
}

.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.layout_padding {
  padding: 55px 0;
}

.app_section .img-box img {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 0 auto;
  background: transparent;
}

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

.client_section .testimonial-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.client_section .testimonial-carousel {
  position: relative;
  padding: 0 60px;
}

.client_section .carousel-inner .carousel-item {
  display: none;
}

.client_section .carousel-inner .carousel-item.active {
  display: block;
  -webkit-animation: testimonialFade 0.4s ease;
          animation: testimonialFade 0.4s ease;
}

@-webkit-keyframes testimonialFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.client_section .testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(20, 30, 60, 0.1);
  padding: 40px 45px;
  text-align: center;
}

.client_section .testimonial-avatar {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(20, 30, 60, 0.18);
}

.client_section .testimonial-stars {
  color: #ffb400;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.client_section .testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4f5c;
  margin-bottom: 20px;
}

.client_section .testimonial-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.client_section .testimonial-role {
  font-size: 14px;
  color: #8a8f9a;
  font-weight: 400;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #e6e9f0;
  border-radius: 50%;
  color: #2f3542;
  opacity: 1;
  box-shadow: 0 6px 16px rgba(20, 30, 60, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.client_section .carousel-control-prev {
  left: 0;
}

.client_section .carousel-control-next {
  right: 0;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  background: #123456;
  color: #ffffff;
}

.client_section .carousel-control-prev i,
.client_section .carousel-control-next i {
  font-size: 15px;
}

.client_section .testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.client_section .testimonial-dot {
  box-sizing: border-box;
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #d7dbe3;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, width 0.3s ease, transform 0.3s ease;
}

.client_section .testimonial-dot:hover {
  background-color: #9aa4b5;
}

.client_section .testimonial-dot.active {
  background-color: #123456;
  width: 22px;
  border-radius: 5px;
}

.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 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blog_section .row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_section .box {
  margin-top: 45px;
  -webkit-box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
          box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 25px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 24px;
  background: #ffffff;
}

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

.blog_section .box .img-box img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.blog_section .box .detail-box {
  margin-top: 15px;
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.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;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.blog_section .box .detail-box a {
  display: inline-block;
  padding: 7px 30px;
  background-color: #1b1f71;
  border: 1px solid #1b1f71;
  color: #ffffff;
  border-radius: 0;
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

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

.info_section .footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ffffff;
  text-decoration: none;
}

.info_section .footer_logo:hover {
  color: #ffffff;
  text-decoration: none;
}

.info_section .footer_col_divider {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 35px;
}

.info_section .footer_logo img {
  width: 44px;
  height: auto;
}

.info_section .footer_logo_text h4 {
  margin: 0;
  text-transform: none;
  font-size: 19px;
  letter-spacing: 0.02em;
}

.info_section .footer_logo_text span {
  display: block;
  font-size: 12px;
  color: #b9bfe6;
  margin-top: 2px;
}

.info_section .info_detail p {
  color: #c3c8ec;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #ffffff;
  margin-bottom: 14px;
}

.info_section .contact_nav a i {
  font-size: 16px;
  line-height: 1;
  margin-right: 12px;
  margin-top: 3px;
  color: #b9bfe6;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: center;
}

.info_section .contact_nav a span {
  font-size: 14px;
  line-height: 1.6;
  color: #dfe2f5;
}

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

.info_section h4 {
  text-transform: none;
  position: relative;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
}

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

.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: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 15px;
  margin-right: 10px;
}

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

.info_section .info_form .newsletter_subtitle {
  color: #c3c8ec;
  font-size: 14px;
  margin-bottom: 18px;
}

.info_section .info_form .newsletter_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.info_section .info_form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border: none;
  height: 48px;
  padding-left: 18px;
  background-color: #eef1fb;
  outline: none;
  color: #101010;
  font-size: 14px;
}

.info_section .info_form button {
  display: inline-block;
  padding: 0 26px;
  background-color: #ff7070;
  border: 1px solid #ff7070;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
  white-space: nowrap;
}

.info_section .info_form button:hover {
  background-color: #ff5252;
  color: #ffffff;
}

/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
  background-color: #1b1f71;
}

.footer_section .footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 13px 0;
}

.footer_section p {
  color: #fefefe;
  padding: 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

.footer_section .footer_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
}

.footer_section .footer_links a {
  color: #c3c8ec;
  font-size: 14px;
}

.footer_section .footer_links a:hover {
  color: #ff7070;
}

@media (max-width: 767px) {
  .footer_section .footer_bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.more-text {
  margin: 10px 0 15px 0;
}

.more-text p {
  margin-bottom: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.read-more-link {
  cursor: pointer;
  font-weight: 700;
  color: #2563eb;
}

.read-more-link:hover {
  color: #1b1f71;
}

/* ============================================
   General mobile responsiveness (site-wide)
   Only applies at smaller widths; desktop layout
   is untouched.
   ============================================ */
@media (max-width: 991px) {
  .hero_area {
    min-height: auto;
  }

  .slider_section {
    padding: 30px 6% 90px;
    text-align: center;
  }

  .slider_section .detail-box {
    padding-left: 0;
    margin: 0 auto;
  }

  .slider_section .img-box {
    margin-top: 25px;
    margin-left: 0;
  }

  .book_section .book_form {
    margin: 20px auto 0 auto;
  }

  .why_section .box {
    margin-top: 30px;
  }

  .app_section .detail-box {
    text-align: center;
    margin-bottom: 25px;
  }

  .app_section .detail-box .btn-box {
    justify-content: center;
  }

  .about_section .detail-box {
    margin-top: 20px;
    text-align: center;
  }

  .layout_padding {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .slider_section .detail-box h1 {
    font-size: 26px;
  }

  .book_section .book_form {
    padding: 30px 18px;
  }

  .navbar-nav .nav-item .nav-link {
    padding: 10px;
    text-align: left;
  }

  .why_section .box {
    padding: 20px 15px 35px 15px;
  }

  .heading_container h2 {
    font-size: 26px;
  }

  .info_section .contact_nav {
    align-items: flex-start;
    width: -webkit-fit-content;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  .info_section .footer_col_divider {
    border-left: none;
    padding-left: 15px;
  }

  .blog_section .box {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .auth_visual,
  .auth_card {
    padding: 22px;
  }

  .auth_head h2 {
    font-size: 22px;
  }

  .book_section .book_form .btn-box button,
  .book_section .book_form .btn-box a {
    width: 100%;
    padding: 12px 0;
  }

  .slider_section .detail-box a {
    display: block;
    text-align: center;
  }

  .more-text {
    text-align: left;
  }

  .more-text p {
    font-size: 14px;
  }

  .app_section .detail-box .btn-box {
    margin: 0 auto;
  }

  .app_section .detail-box a {
    width: 150px;
  }
}
/*# sourceMappingURL=style.css.map */
