* {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
}

body {
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
}

p {
  margin: 0;
}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
  overflow-x: hidden;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #ebeaea;
  border-top-color: #575757;
  animation: spinner 0.9s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/************ Header section ui end here ************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #0000002d;
  z-index: 999;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.header .logo {
  height: 70px;
}

.header .right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header .second-logo {
  width: 80px;
}

.header .nav_items {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.header .nav_items li {
  list-style: none;
  color: #ffffff;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.header .nav_items li:hover,
.header .nav_items li.active {
  color: #3ad4fd;
}
.header .nav_items li a {
  text-decoration: none;
  color: inherit;
}

/* Dropdown Menu Styles */
.header .nav_items li.dropdown {
  position: relative;
}

.header .nav_items li.dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header .nav_items li.dropdown .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.header .nav_items li.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.header .nav_items li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  min-width: 280px;
  padding: 1rem 0;
  margin-top: 1rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.header .nav_items li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header .nav_items li.dropdown .dropdown-menu li {
  margin: 0;
  padding: 0;
}

.header .nav_items li.dropdown .dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
}

.header .nav_items li.dropdown .dropdown-menu li a:hover {
  background-color: rgba(58, 212, 253, 0.1);
  color: #3ad4fd;
  border-left-color: #3ad4fd;
  padding-left: 2rem;
}

.header .menu_btn {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header {
    height: 80px;
  }

  .header .logo {
    height: 70px;
  }

  .header .second-logo {
    width: 70px;
  }

  .header .nav_items {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    flex-direction: column;
    padding: 1.5rem 0;
    background-color: #00000080;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    gap: 1rem;
  }

  .header .nav_items.show {
    padding: 1.5rem 0;
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .header .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: transparent;
    border: none;
  }
  .header .menu_btn img {
    width: 25px;
  }

  /* Mobile Dropdown Styles */
  .header .nav_items li.dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: rgba(58, 212, 253, 0.1);
    margin-top: 0.5rem;
    margin-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 4px;
    box-shadow: none;
  }

  .header .nav_items li.dropdown.active .dropdown-menu {
    max-height: 500px;
  }

  .header .nav_items li.dropdown .dropdown-arrow {
    margin-left: auto;
  }

  .header .nav_items li.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}

@media only screen and (max-width: 991px) {
  .header {
    padding: 0 5%;
  }
}
/************ Header section ui end here ************/

/************ view-more-btn ui start here ************/
.view_more_btn {
  background: linear-gradient(90deg, #056783 0%, #3ad4fd 100%);
  border: none;
  border-radius: 66px;
  padding: 0.55rem 2rem;
  padding-right: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view_more_btn.small {
  padding: 0.35rem 1.5rem;
  padding-right: 0.875rem;
  font-size: 15px;
}

.view_more_btn:hover {
  transform: translateY(-2px); /* slight lift */
  box-shadow: 0 4px 12px rgba(16, 134, 167, 0.4); /* subtle glow */
}

@media only screen and (max-width: 575px) {
  .view_more_btn {
    padding: 0.55rem 2rem;
    padding-right: 1rem;
    gap: 8px;
    font-size: 14px;
  }

  .view_more_btn img {
    width: 22px;
  }
}
/************ view-more-btn ui end here ************/

/************ section title ui start here ************/
.section_title_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section_title_wrapper .section_title {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  margin: 0;
}

.section_title_wrapper .section_title.white {
  color: #ffffff;
}

.section_title_wrapper .line {
  width: 76px;
  height: 1px;
  background-color: #000000;
}

.section_title_wrapper .line.white {
  background-color: #ffffff;
}

@media only screen and (max-width: 991px) {
  .section_title_wrapper {
    gap: 8px;
  }

  .section_title_wrapper .section_title {
    font-size: 18px;
  }

  .section_title_wrapper .line {
    width: 70px;
  }
}
/************ section title ui end here ************/

/************ Home-Hero section ui start here ************/

.hero_section {
  padding-top: 100px;
  width: 100%;
  min-height: 100vh;
  background: url("/assets/images/hero-bg.png") no-repeat center center;
  background-size: cover;
  background-position: center center;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: heroSectionFadeIn 1.5s ease-out 0.1s forwards, heroBackgroundFloat 15s ease-in-out 2s infinite alternate;
}

.hero_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  animation: heroOverlayFade 3s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero_section .container {
  position: relative;
  z-index: 1;
  margin-top: 200px;
}

@keyframes heroSectionFadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroOverlayFade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 0.6;
  }
}

@keyframes heroBackgroundFloat {
  0% {
    background-position: center center;
  }
  100% {
    background-position: center 55%;
  }
}

.hero_section .title {
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 48px;
}

.hero_section .sub-title {
  margin-top: 1rem;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
}

/* Hero Section Animations */
.hero_animate_title {
  opacity: 0;
  animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero_animate_subtitle {
  opacity: 0;
  animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero_animate_button {
  opacity: 0;
  animation: heroFadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

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

@keyframes heroFadeInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media only screen and (max-width: 991px) {
  .hero_section {
    padding-top: 80px;
  }
  .hero_section .container {
    margin-top: 80px;
  }

  .hero_section .title {
    font-size: 40px;
  }

  .hero_section .sub-title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 575px) {
  .hero_section {
    padding: 0 5%;
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero_section .title {
    font-size: 36px;
  }

  .hero_section .sub-title {
    font-size: 16px;
    line-height: 22px;
  }
}

/************ Home-Hero section ui ends here ************/

/************ Home-About-us section ui start here ************/
.home_about_us {
  width: 100%;
  padding: 3rem 0;
}
.home_about_us .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5rem;
}

.home_about_us .title {
  font-weight: 500;
  font-size: 45px;
  color: #282a39;
}

.home_about_us .para {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 180%;
  color: #666666;
  margin: 0;
  max-width: none;
}

.home_about_us .second_btn {
  display: none;
}

@media only screen and (max-width: 991px) {
  .home_about_us .container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home_about_us .title {
    font-size: 40px;
  }

  .home_about_us .first_btn {
    display: none;
  }

  .home_about_us .second_btn {
    display: block;
  }
}

@media only screen and (max-width: 575px) {
  .home_about_us {
    padding: 3rem 5%;
  }

  .home_about_us .title {
    font-size: 32px;
  }

  .home_about_us .para {
    font-size: 14px;
  }
}
/************ Home-About-us section ui end here ************/

/************ Home-Services section ui start here ************/
.home_services {
  background: url("/assets/images/home-services-bg.png") no-repeat center center;
  background-size: cover;
  padding: 4rem 0;
  padding-bottom: 6rem;
}

.home_services .title_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.home_services .title {
  font-weight: 700;
  font-size: 50px;
  color: #ffffff;
}
.home_services .view_all_service_wrapper {
  margin-left: auto;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.home_services .view_all_service_wrapper .round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(284.59deg, #2cb6dc -5.73%, #186276 60.77%);
  display: grid;
  place-items: center;
}

.service_card_wrapper {
  margin-top: 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service_card_wrapper .service_card {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 26px;
  position: relative;
  cursor: pointer;
}

.service_card_wrapper .service_card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.966), rgba(5, 5, 5, 0));
  pointer-events: none;
}
.service_card_wrapper .service_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service_card_wrapper .text_wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1rem;
}

.service_card_wrapper .service_card .text {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

@media only screen and (max-width: 991px) {
  .home_services .title {
    font-size: 40px;
  }
  .home_services .view_all_service_wrapper {
    font-size: 11px;
    gap: 6px;
  }

  .home_services .view_all_service_wrapper .round {
    width: 35px;
    height: 35px;
  }

  .service_card_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .service_card_wrapper .service_card {
    border-radius: 22px;
  }

  .service_card_wrapper .service_card .text {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 575px) {
  .home_services {
    padding: 3rem 5%;
  }

  .home_services .title {
    font-size: 36px;
  }

  .service_card_wrapper {
    margin-top: 3rem;
    grid-template-columns: 1fr;
  }

  .service_card_wrapper .service_card .text {
    font-size: 14px;
  }
}

/************ Home-Services section ui end here ************/

/************ Home-Fleets section ui start here ************/
.home_fleets {
  padding: 5rem 0 2rem 0;
}

.home_fleets .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home_fleets .title {
  font-weight: 500;
  font-size: 50px;
  text-align: center;
  color: #282a39;
  max-width: 550px;
}

.home_fleets .tabs_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.home_fleets .tabs_wrapper .tab {
  font-weight: 400;
  font-size: 15px;
  color: #3a3a3a;
  border: 1px solid #ebebeb;
  padding: 8px 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.home_fleets .tabs_wrapper .tab:hover {
  background-color: #f5f5f5;
  border-color: #3ad4fd;
}

.home_fleets .tabs_wrapper .tab.active {
  background: linear-gradient(90deg, #056783 0%, #3ad4fd 100%);
  color: #ffffff;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(5, 104, 131, 0.25);
}

.tab_description {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tab_description_text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 180%;
  color: #666666;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-height: 3.6rem;
  display: block;
}

.fleet_card_wrapper {
  margin-top: 5rem;
}

.fleet_tab_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: fadeIn 0.4s ease-in-out;
}

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

.fleet_card {
  width: 100%;
  border-radius: 30px;
  padding: 2.5rem 1rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.fleet_card .pic {
  max-width: 100%;
  margin-bottom: 2rem;
}

.fleet_card .details_wrapper {
  margin-top: auto;
}

.fleet_card .name {
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  text-align: left;
}

.fleet_card .about_wrapper {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.fleet_card .about_wrapper p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 1rem;
  color: #000000;
}

@media only screen and (max-width: 1199px) {
  .fleet_card_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .home_fleets .title {
    font-size: 40px;
    max-width: 450px;
  }
  .fleet_card .name {
    font-size: 18px;
  }
  .fleet_card .about_wrapper p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .fleet_tab_content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .fleet_tab_content {
    grid-template-columns: 1fr;
  }
  
  .tab_description_text {
    font-size: 15px;
    min-height: 3.24rem;
  }
}

@media only screen and (max-width: 575px) {
  .home_fleets {
    padding: 3rem 5%;
  }
  .home_fleets .title {
    font-size: 34px;
    max-width: 380px;
  }
  .home_fleets .tabs_wrapper .tab {
    font-size: 14px;
    padding: 6px 1.25rem;
  }
  
  .tab_description_text {
    font-size: 14px;
    min-height: 3.024rem;
  }
  .fleet_card .name {
    font-size: 1rem;
  }
  .fleet_card .about_wrapper p {
    font-size: 14px;
  }
}
/************ Home-Fleets section ui end here ************/

/************ Our-Clients section ui start here ************/
.our_clients {
  padding: 3rem 0;
  background-color: #f6f6f6;
  overflow: hidden;
}

.our_clients .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Infinite Logo Slider */
.our_clients .logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 1rem;
  mask: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.our_clients .logo-track {
  display: flex;
  gap: 50px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.our_clients .logo-track:hover {
  animation-play-state: paused;
}

.our_clients .logo-card {
  width: 200px;
  height: 100px;
  border-radius: 20px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.our_clients .logo-card.special {
  padding: .2rem;
}

.our_clients .logo-card .client-logo {
  height: 50%;
  width: 100%;
  object-fit: contain;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 991px) {
  .our_clients .logo-card {
    width: 300px;
    height: 130px;
  }
}

@media only screen and (max-width: 575px) {
  .our_clients .logo-card {
    width: 260px;
    height: 110px;
  }
}

/************ Our-Clients section ui end here ************/

/************ Why-Choose-Us section ui start here ************/
.why_choose_us {
  padding: 5rem 0;
  background-color: #ffffff;
}

.why_choose_us .container {
  display: flex;
  flex-direction: column;
}

.why_choose_us .title {
  font-weight: 500;
  font-size: 50px;
  color: #282a39;
}

.features_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature_card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature_card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(5, 104, 131, 0.15) 0px 8px 24px 0px;
  border-color: #3ad4fd;
}

.feature_icon_wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
}

.feature_icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.feature_card:hover .feature_icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(58, 212, 253, 0.3);
}

.feature_title {
  font-weight: 600;
  font-size: 22px;
  color: #282a39;
  margin-bottom: 1rem;
  font-family: "Raleway", sans-serif;
}

.feature_description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 180%;
  color: #666666;
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  .features_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 991px) {
  .why_choose_us .title {
    font-size: 40px;
  }

  .feature_card {
    padding: 2rem 1.5rem;
  }

  .feature_icon {
    width: 60px;
    height: 60px;
  }

  .feature_title {
    font-size: 20px;
  }

  .feature_description {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .features_wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .why_choose_us {
    padding: 3rem 5%;
  }

  .why_choose_us .title {
    font-size: 34px;
  }

  .feature_card {
    padding: 1.8rem 1.5rem;
  }

  .feature_icon {
    width: 55px;
    height: 55px;
  }

  .feature_icon svg {
    width: 28px;
    height: 28px;
  }

  .feature_title {
    font-size: 18px;
  }

  .feature_description {
    font-size: 14px;
  }
}
/************ Why-Choose-Us section ui end here ************/

/************ testimonials section ui start here ************/
.testimonial-section {
  padding: 5rem 0;
}

.testimonial-section .title {
  font-weight: 700;
  font-size: 34px;
  color: #170f49;
}

.testimonial-section .testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #eff0f6;
  box-shadow: 0px 5px 14px 0px #080f340a;
  min-height: 335px;
  display: flex;
  flex-direction: column;
}

.testimonial-section .testimonial-card .main-text {
  font-weight: 600;
  font-size: 20px;
  color: #170f49;
}

.testimonial-section .testimonial-card .para {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
  color: #6f6c90;
  margin-top: 10px;
  margin-bottom: 1rem;
}

.testimonial-section .testimonial-card .profile_wrapper {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-section .testimonial-card .profile_wrapper .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-section .testimonial-card .profile_wrapper .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section .testimonial-card .profile_wrapper .name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0%;
  color: #170f49;
}

.testimonial-section .testimonial-card .profile_wrapper .profession {
  font-weight: 400;
  font-size: 1rem;
  color: #6f6c90;
}

.testimonial-section .testimonial-navigation {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section .testimonial-navigation .swiper-button-prev,
.testimonial-section .testimonial-navigation .swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  background: #046882;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 600;
}

.testimonial-section .swiper-button-prev::after,
.testimonial-section .swiper-button-next::after {
  font-size: 18px;
}

@media only screen and (max-width: 991px) {
  .testimonial-section .title {
    font-size: 32px;
  }

  .testimonial-section .testimonial-card {
    min-height: 310px;
  }

  .testimonial-section .testimonial-card .main-text {
    font-size: 18px;
  }

  .testimonial-section .testimonial-card .para {
    font-size: 14px;
  }

  .testimonial-section .testimonial-card .profile_wrapper .avatar {
    width: 45px;
    height: 45px;
  }

  .testimonial-section .testimonial-card .profile_wrapper .name {
    font-size: 14px;
  }

  .testimonial-section .testimonial-card .profile_wrapper .profession {
    font-size: 14px;
  }

  .testimonial-section .testimonial-navigation .swiper-button-prev,
  .testimonial-section .testimonial-navigation .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .testimonial-section .swiper-button-prev::after,
  .testimonial-section .swiper-button-next::after {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-card {
    min-height: 280px;
  }
}

@media only screen and (max-width: 575px) {
  .testimonial-section {
    padding: 5rem 5%;
  }

  .testimonial-section .title {
    font-size: 28px;
  }
}
/************ testimonials section ui end here ************/

/************ CTA section ui start here ************/
.cta_section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta_section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta_card {
  width: 100%;
  background: linear-gradient(135deg, #046882 0%, #39d3fa 50%, #046882 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  padding: 5rem 4rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: start;
  box-shadow: 0 20px 60px rgba(5, 104, 131, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

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

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

.cta_title {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

.cta_subtitle {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 1.5rem auto 0;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta_section .cta_button {
  background: #ffffff;
  color: #056783;
  font-weight: 600;
  padding: 1rem 3.5rem;
  padding-right: 2rem;
  font-size: 1.15rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.cta_section .cta_button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(5, 104, 131, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta_section .cta_button:hover::before {
  width: 300px;
  height: 300px;
}

.cta_section .cta_button:hover {
  background: #ffffff;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.cta_section .cta_button:active {
  transform: translateY(-2px) scale(0.98);
}

.cta_section .cta_button img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(88%) saturate(1854%) hue-rotate(161deg) brightness(93%) contrast(91%);
    position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cta_section .cta_button:hover img {
  transform: translate(3px, -3px);
}

.cta_decorative_elements {
  position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
}

.cta_circle {
    position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.cta_circle_1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
  animation-delay: 0s;
}

.cta_circle_2 {
  width: 80px;
  height: 80px;
  bottom: -20px;
  left: 10%;
  animation-delay: 2s;
}

.cta_circle_3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
}

@media only screen and (max-width: 991px) {
  .cta_title {
    font-size: 42px;
  }

  .cta_subtitle {
    font-size: 1.05rem;
    margin-top: 1.25rem;
  }

  .cta_card {
    padding: 4rem 3rem;
    max-width: 100%;
  }

  .cta_circle_1 {
    width: 100px;
    height: 100px;
  }

  .cta_circle_2 {
    width: 70px;
    height: 70px;
  }

  .cta_circle_3 {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .cta_section {
    padding: 4rem 5%;
  }

  .cta_card {
    padding: 3.5rem 2rem;
    border-radius: 20px;
  }

  .cta_title {
    font-size: 32px;
    letter-spacing: -0.3px;
  }

  .cta_subtitle {
    font-size: 1rem;
    margin-top: 1rem;
    line-height: 1.6;
  }

  .cta_section .cta_button {
    padding: 0.85rem 2.75rem;
    padding-right: 1.5rem;
    font-size: 1.05rem;
    margin-top: 1.5rem;
  }

  .cta_circle_1 {
    width: 80px;
    height: 80px;
  }

  .cta_circle_2 {
    width: 60px;
    height: 60px;
  }

  .cta_circle_3 {
    width: 40px;
    height: 40px;
  }
}

/************ CTA section ui end here ************/

/************ footer section ui start here ************/
.footer {
  background-color: #000000;
  padding: 2.5rem 0;
  padding-bottom: 1rem;
}

.footer .footer_items_wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer .logo_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.footer .logo {
  height: 90px;
}

.footer .second_logo {
  margin-top: 22px;
  width: 90px;
}

.footer .para {
  margin-top: 1rem;
  font-weight: 400;
  font-size: .8rem;
  color: #dbdbdb;
  max-width: 400px;
}

.footer .items_title {
  font-weight: 400;
  font-size: 18px;
  color: #ffffffe5;
}

.footer .list {
  margin: 0;
  padding: 0;
}

.footer .list li {
  width: fit-content;
  list-style: none;
  font-weight: 300;
  font-size: 15px;
  color: #b0afaf;
  margin: 12px 0;
  transition: all 0.3s ease;
}

.footer .list li:hover {
  color: #39d3fa;
}

.footer .list li a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.powered-by{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.powered-by img{
  margin-bottom: 3px;
  width: 100px;
  height: 20px;
}
.powered-by span{
  font-weight: 300;
  font-size: 14px;
  color: white;
}
.footer .copyright_wrapper {
  margin-top: 3rem;
  width: 100%;
  background-color: #191919;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .copyright_wrapper p {
  font-weight: 300;
  font-size: 14px;
  color: #ffff;
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .footer {
    padding: 2.5rem 5%;
    padding-bottom: 1rem;
  }
  .footer .footer_items_wrapper {
    gap: 2rem;
    justify-content: flex-start;
  }
  .footer .logo {
    height: 70px;
  }
  .footer .second_logo {
    margin-top: 22px;
    width: 60px;
  }
  .footer .para {
    font-size: 14px;
  }
  .footer .items_title {
    font-size: 16px;
  }
  .footer .list li {
    font-size: 14px;
  }
  .footer .copyright_wrapper p {
    font-size: 12px;
  }
}
/************ footer section ui end here ************/

/************ page-hero ui start here ************/
.page_hero {
  height: 450px;
  background: url("/assets/images/about-us/about-banner.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_hero .title {
  margin-top: 3rem;
  font-weight: 600;
  font-size: 50px;
  color: #ffffff;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .page_hero .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .page_hero {
    height: 300px;
  }
  .page_hero .title {
    font-size: 38px;
  }
}

/************ page-hero ui end here ************/

/************ about page ui start here ************/
.about_images_wrapper {
  width: 100%;
  padding: 3rem 0;
}

.about_images_wrapper .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
}

.about_images_wrapper .image_container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.about_images_wrapper .image_container.first {
  aspect-ratio: 1/1;
}

.about_images_wrapper .image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_images_wrapper .image_container_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about_images_wrapper .center_item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

.about_images_wrapper .center_item img {
  height: 70px;
}

.about_counts_section {
  width: 100%;
  padding: 3rem 0;
  padding-bottom: 5rem;
}
.about_counts_section .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about_counts_section .count_card {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.about_counts_section .count_card .count {
  font-weight: 600;
  font-size: 40px;
  color: #000000;
  margin: 0;
  padding: 0;
}
.about_counts_section .count_card .label {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.about_counts_section .count_card .count_icon {
  width: 60px;
}

@media only screen and (max-width: 991px) {
  .about_counts_section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .about_images_wrapper .container {
    grid-template-columns: 1fr;
  }
  .about_images_wrapper .center_item {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .about_images_wrapper {
    width: 100%;
    padding: 3rem 5%;
  }

  .about_counts_section .container {
    grid-template-columns: 1fr;
  }
  .about_counts_section .count_card .count {
    font-size: 30px;
  }
  .about_counts_section .count_card .label {
    font-size: 13px;
  }
  .about_counts_section .count_card .count_icon {
    width: 50px;
  }
}

/************ Mission & Vision section ui start here ************/
.mission_vision_section {
  padding: 5rem 0;
}

.mission_vision_section .title {
  font-weight: 500;
  font-size: 50px;
  color: #282a39;
}

.mission_content {
  width: 100%;
}

.mission_statement {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid #3ad4fd;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission_heading {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #056783;
  margin-bottom: 1.5rem;
}

.mission_text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 180%;
  color: #282a39;
  margin: 0;
}

.core_values_section {
  width: 100%;
}

.values_heading {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #282a39;
}

.values_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value_card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(5, 104, 131, 0.15);
  border-color: #3ad4fd;
}

.value_icon_wrapper {
  margin-bottom: 1.5rem;
}

.value_icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.value_card:hover .value_icon {
  transform: scale(1.1) rotate(5deg);
}

.value_title {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #282a39;
  margin-bottom: 0.75rem;
}

.value_description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  color: #666666;
  margin: 0;
}

@media only screen and (max-width: 1199px) {
  .values_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 991px) {
  .mission_vision_section .title {
    font-size: 40px;
  }

  .mission_statement {
    padding: 2.5rem;
  }

  .mission_heading {
    font-size: 24px;
  }

  .mission_text {
    font-size: 1rem;
  }

  .values_heading {
    font-size: 28px;
  }

  .value_card {
    padding: 1.8rem;
  }

  .value_title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .values_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .mission_vision_section {
    padding: 3rem 5%;
  }

  .mission_vision_section .title {
    font-size: 34px;
  }

  .mission_statement {
    padding: 2rem 1.5rem;
    border-left-width: 3px;
  }

  .mission_heading {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .mission_text {
    font-size: 15px;
  }

  .values_heading {
    font-size: 24px;
  }

  .value_card {
    padding: 1.5rem;
  }

  .value_icon {
    width: 50px;
    height: 50px;
  }

  .value_icon svg {
    width: 20px;
    height: 20px;
  }

  .value_title {
    font-size: 18px;
  }

  .value_description {
    font-size: 14px;
  }
}
/************ Mission & Vision section ui end here ************/

/************ Meet Our Team section ui start here ************/
.meet_our_team_section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.meet_our_team_section .title {
  font-weight: 500;
  font-size: 50px;
  color: #282a39;
}

.team_photos_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team_photo_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team_photo_placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  border: 2px dashed #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team_photo_placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5, 104, 131, 0.05) 0%, rgba(58, 212, 253, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team_photo_item:hover .team_photo_placeholder {
  border-color: #3ad4fd;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(5, 104, 131, 0.15);
}

.team_photo_item:hover .team_photo_placeholder::before {
  opacity: 1;
}

.team_photo_label {
  margin-top: 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team_content {
  margin-left: auto;
  margin-right: auto;
  text-align: start;
}

.team_text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 180%;
  color: #282a39;
  margin: 0;
}

@media only screen and (max-width: 991px) {
  .meet_our_team_section .title {
    font-size: 40px;
  }

  .team_photos_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .team_text {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .team_photos_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .meet_our_team_section {
    padding: 3rem 5%;
  }

  .meet_our_team_section .title {
    font-size: 34px;
  }

  .team_photos_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .team_photo_placeholder {
    border-radius: 12px;
  }

  .team_photo_placeholder svg {
    width: 50px;
    height: 50px;
  }

  .team_photo_label {
    font-size: 12px;
    margin-top: 0.75rem;
  }

  .team_text {
    font-size: 15px;
  }
}

@media only screen and (max-width: 400px) {
  .team_photos_wrapper {
    grid-template-columns: 1fr;
  }
}
/************ Meet Our Team section ui end here ************/

/************ about page ui end here ************/

/************ service-view page ui start here ************/
/* Hero Section */
.service_hero_content {
  text-align: center;
  padding: 4rem 0;
  position: relative;
}

.service_hero_headline {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(5, 104, 131, 0.2);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.service_hero_subheadline {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.98);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Service Overview Section */
.service_overview_section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}



.service_overview_content {
  /* max-width: 900px; */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service_overview_heading {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #282a39;
  margin: 0 0 3rem 0;
  text-align: start;
}

.service_overview_text {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 2;
  color: #555555;
  margin: 0;
}

.service_overview_text p {
  margin-bottom: 2rem;
  position: relative;
}



.service_overview_text p:last-child {
  margin-bottom: 0;
}

/* How It Works Section */
.how_it_works_section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.how_it_works_heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #282a39;
  margin: 0 0 4rem 0;
  text-align: start;
}

.how_it_works_steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 0 auto;
}

.how_it_works_step {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.how_it_works_step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #056783 0%, #3ad4fd 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.how_it_works_step:hover::before {
  transform: scaleX(1);
}

.how_it_works_step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(5, 104, 131, 0.15);
  border-color: rgba(5, 104, 131, 0.2);
}

.how_it_works_step_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 50%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(5, 104, 131, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.how_it_works_step:hover .how_it_works_step_number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(5, 104, 131, 0.4);
}

.how_it_works_step_title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #282a39;
  margin: 0 0 1.25rem 0;
  transition: color 0.3s ease;
}

.how_it_works_step:hover .how_it_works_step_title {
  color: #056783;
}

.how_it_works_step_description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555555;
  margin: 0;
}

/* Features Section */
.service_features_section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.service_features_heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #282a39;
  margin: 0 0 4rem 0;
  text-align: center;
}

.service_features_heading.umrah_features_heading {
  text-align: start;
}

.service_features_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.service_feature_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service_feature_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 104, 131, 0.05), transparent);
  transition: left 0.5s ease;
}

.service_feature_item:hover::before {
  left: 100%;
}

.service_feature_item:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  transform: translateX(8px) translateY(-4px);
  box-shadow: 0 8px 25px rgba(5, 104, 131, 0.15);
  border-color: rgba(5, 104, 131, 0.2);
}

.service_feature_icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  color: #ffffff;
  margin-top: 0;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 15px rgba(5, 104, 131, 0.25);
  transition: all 0.3s ease;
}

.service_feature_item:hover .service_feature_icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(5, 104, 131, 0.35);
}

.service_feature_text {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #282a39;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.service_feature_item:hover .service_feature_text {
  color: #056783;
}

/* Chauffeur Features - Special Design */
.service_features_heading.chauffeur_features_heading {
  text-align: center;
}

.service_features_list.chauffeur_features_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service_feature_item.chauffeur_feature_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.chauffeur_feature_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 104, 131, 0.08), transparent);
  transition: left 0.6s ease;
}

.chauffeur_feature_item:hover::before {
  left: 100%;
}

.chauffeur_feature_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #056783 0%, #3ad4fd 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.chauffeur_feature_item:hover::after {
  transform: scaleX(1);
}

.chauffeur_feature_item:hover {
  transform: translateY(-8px) translateX(4px);
  box-shadow: 0 12px 40px rgba(5, 104, 131, 0.2);
  border-color: rgba(5, 104, 131, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.chauffeur_feature_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(5, 104, 131, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.chauffeur_feature_item:hover .chauffeur_feature_icon_wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(5, 104, 131, 0.35);
}

.chauffeur_feature_item .service_feature_icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  stroke-width: 3;
}

.chauffeur_feature_item .service_feature_text {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #282a39;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.chauffeur_feature_item:hover .service_feature_text {
  color: #056783;
}

/* Responsive Design for Chauffeur Features */
@media (max-width: 768px) {
  .service_features_list.chauffeur_features_list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chauffeur_feature_item {
    padding: 1.5rem 2rem;
  }
}

/* Umrah Booking Steps - Special Design */
.service_features_list.umrah_booking_steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  position: relative;
  margin: 0;
  align-items: flex-start;
}

.umrah_booking_step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid transparent;
  margin-bottom: 2rem;
  overflow: visible;
}

.umrah_booking_step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, #056783 0%, #3ad4fd 100%); */
  border-radius: 40px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.umrah_booking_step:hover::before {
  transform: scaleX(1);
}

.umrah_booking_step:hover {
  transform: translateX(8px) translateY(-4px);
  box-shadow: 0 12px 40px rgba(5, 104, 131, 0.2);
  border-color: rgba(5, 104, 131, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.umrah_step_number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 50%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(5, 104, 131, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.umrah_booking_step:hover .umrah_step_number {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(5, 104, 131, 0.4);
}

.umrah_step_content {
  flex: 1;
  padding-top: 0.5rem;
}

.umrah_step_title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #282a39;
  margin: 0 0 1rem 0;
  transition: color 0.3s ease;
}

.umrah_booking_step:hover .umrah_step_title {
  color: #056783;
}

.umrah_step_description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555555;
  margin: 0;
  transition: color 0.3s ease;
}

.umrah_booking_step:hover .umrah_step_description {
  color: #333333;
}

.umrah_step_connector {
  position: absolute;
  left: 35px;
  top: 100%;
  width: 3px;
  height: 2rem;
  background: linear-gradient(180deg, #056783 0%, #3ad4fd 100%);
  opacity: 0.3;
  z-index: 1;
}

/* Responsive Design for Umrah Steps */
@media (max-width: 768px) {
  .umrah_booking_step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .umrah_step_number {
    margin-bottom: 1rem;
  }

  .umrah_step_connector {
    left: 50%;
    transform: translateX(-50%);
  }

  .umrah_step_title {
    font-size: 1.5rem;
  }

  .umrah_step_description {
    font-size: 1rem;
  }
}

/* Umrah What's Included Section - Unique Design */
.umrah_included_section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.umrah_included_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(5, 104, 131, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(58, 212, 253, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.umrah_included_heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #282a39;
  margin: 0 0 4rem 0;
  text-align: start;
  position: relative;
}

.umrah_included_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0;
  position: relative;
}

.umrah_included_item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.umrah_included_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 104, 131, 0.08), transparent);
  transition: left 0.6s ease;
}

.umrah_included_item:hover::before {
  left: 100%;
}

.umrah_included_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #056783 0%, #3ad4fd 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.umrah_included_item:hover::after {
  transform: scaleX(1);
}

.umrah_included_item:hover {
  transform: translateY(-8px) translateX(4px);
  box-shadow: 0 12px 40px rgba(5, 104, 131, 0.2);
  border-color: rgba(5, 104, 131, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.umrah_included_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(5, 104, 131, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.umrah_included_item:hover .umrah_included_icon_wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(5, 104, 131, 0.35);
}

.umrah_included_icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  stroke-width: 3;
}

.umrah_included_text {
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  color: #282a39;
  margin: 0;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.umrah_included_item:hover .umrah_included_text {
  color: #056783;
}

/* Responsive Design for Umrah Included Features */
@media (max-width: 768px) {
  .umrah_included_heading {
    font-size: 36px;
    text-align: center;
  }

  .umrah_included_list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .umrah_included_item {
    padding: 1.5rem 2rem;
  }

  .umrah_included_text {
    font-size: 1.1rem;
  }
}

/* Desert Experience Section - Unique Design */
.desert_experience_section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.desert_experience_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(5, 104, 131, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(58, 212, 253, 0.05) 0%, transparent 40%),
    linear-gradient(135deg, transparent 0%, rgba(255, 193, 7, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.desert_experience_heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #282a39;
  margin: 0 0 4rem 0;
  text-align: center;
  position: relative;
}

.desert_experience_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.desert_experience_item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 28px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(5, 104, 131, 0.08);
  position: relative;
  overflow: hidden;
}

.desert_experience_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #056783 0%, #3ad4fd 50%, #ffc107 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 28px 28px 0 0;
  z-index: 1;
}

.desert_experience_item:hover::before {
  transform: scaleX(1);
}

.desert_experience_item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5, 104, 131, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.desert_experience_item:hover::after {
  opacity: 1;
}

.desert_experience_item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 20px 60px rgba(5, 104, 131, 0.25),
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(5, 104, 131, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.desert_experience_number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-radius: 50%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.desert_experience_item:hover .desert_experience_number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.desert_experience_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 20px;
  box-shadow: 
    0 8px 25px rgba(5, 104, 131, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.desert_experience_icon_wrapper::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, #056783, #3ad4fd, #ffc107);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(8px);
}

.desert_experience_item:hover .desert_experience_icon_wrapper::before {
  opacity: 0.6;
}

.desert_experience_item:hover .desert_experience_icon_wrapper {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    0 12px 35px rgba(5, 104, 131, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.desert_experience_icon {
  width: 36px;
  height: 36px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.desert_experience_item:hover .desert_experience_icon {
  transform: scale(1.1);
}

.desert_experience_content {
  flex: 1;
  padding-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.desert_experience_title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  color: #282a39;
  margin: 0 0 1rem 0;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.desert_experience_item:hover .desert_experience_title {
  color: #056783;
  transform: translateX(4px);
}

.desert_experience_description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #555555;
  margin: 0;
  transition: all 0.3s ease;
}

.desert_experience_item:hover .desert_experience_description {
  color: #333333;
}

.desert_experience_decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(5, 104, 131, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.desert_experience_item:hover .desert_experience_decoration {
  opacity: 1;
}

/* Responsive Design for Desert Experience */
@media (max-width: 768px) {
  .desert_experience_heading {
    font-size: 36px;
  }

  .desert_experience_list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .desert_experience_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .desert_experience_number {
    position: static;
    margin-bottom: 0.5rem;
  }

  .desert_experience_icon_wrapper {
    margin-bottom: 0;
    width: 70px;
    height: 70px;
  }

  .desert_experience_content {
    padding-top: 0;
  }

  .desert_experience_title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .desert_experience_description {
    font-size: 1rem;
  }
}

/* Chauffeur Use Cases Section - Unique Design */
.chauffeur_usecases_section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.chauffeur_usecases_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(5, 104, 131, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(58, 212, 253, 0.06) 0%, transparent 45%),
    linear-gradient(45deg, transparent 0%, rgba(139, 69, 19, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.chauffeur_usecases_heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #282a39;
  margin: 0 0 4rem 0;
  text-align: center;
  position: relative;
}

.chauffeur_usecases_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.chauffeur_usecase_item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 28px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(5, 104, 131, 0.1);
  position: relative;
  overflow: hidden;
}

.chauffeur_usecase_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #056783 0%, #3ad4fd 50%, #056783 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 28px 28px 0 0;
  z-index: 1;
}

.chauffeur_usecase_item:hover::before {
  transform: scaleX(1);
}

.chauffeur_usecase_item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5, 104, 131, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.chauffeur_usecase_item:hover::after {
  opacity: 1;
}

.chauffeur_usecase_item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 20px 60px rgba(5, 104, 131, 0.25),
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(5, 104, 131, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e8f4f8 100%);
}

.chauffeur_usecase_number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 50%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(5, 104, 131, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.chauffeur_usecase_item:hover .chauffeur_usecase_number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 6px 20px rgba(5, 104, 131, 0.6);
}

.chauffeur_usecase_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 20px;
  box-shadow: 
    0 8px 25px rgba(5, 104, 131, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.chauffeur_usecase_icon_wrapper::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, #056783, #3ad4fd, #056783);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(8px);
}

.chauffeur_usecase_item:hover .chauffeur_usecase_icon_wrapper::before {
  opacity: 0.6;
}

.chauffeur_usecase_item:hover .chauffeur_usecase_icon_wrapper {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 
    0 12px 35px rgba(5, 104, 131, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.chauffeur_usecase_icon {
  width: 36px;
  height: 36px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.chauffeur_usecase_item:hover .chauffeur_usecase_icon {
  transform: scale(1.1);
}

.chauffeur_usecase_content {
  flex: 1;
  padding-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.chauffeur_usecase_title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  color: #282a39;
  margin: 0 0 1rem 0;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.chauffeur_usecase_item:hover .chauffeur_usecase_title {
  color: #056783;
  transform: translateX(4px);
}

.chauffeur_usecase_description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #555555;
  margin: 0;
  transition: all 0.3s ease;
}

.chauffeur_usecase_item:hover .chauffeur_usecase_description {
  color: #333333;
}

.chauffeur_usecase_decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(5, 104, 131, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.chauffeur_usecase_item:hover .chauffeur_usecase_decoration {
  opacity: 1;
}

/* Responsive Design for Chauffeur Use Cases */
@media (max-width: 768px) {
  .chauffeur_usecases_heading {
    font-size: 36px;
  }

  .chauffeur_usecases_list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chauffeur_usecase_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .chauffeur_usecase_number {
    position: static;
    margin-bottom: 0.5rem;
  }

  .chauffeur_usecase_icon_wrapper {
    margin-bottom: 0;
    width: 70px;
    height: 70px;
  }

  .chauffeur_usecase_content {
    padding-top: 0;
  }

  .chauffeur_usecase_title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .chauffeur_usecase_description {
    font-size: 1rem;
  }
}

/* Service CTA Section */
.service_cta_section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 50%, #056783 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

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

.service_cta_section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.service_cta_content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service_cta_heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  margin: 0 0 2rem 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

.service_cta_text {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 0 3rem 0;
  line-height: 1.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service_cta_button {
  background: #ffffff;
  color: #056783;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  padding: 1.25rem 3.5rem;
  font-size: 1.15rem;
  border-radius: 66px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.service_cta_button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(5, 104, 131, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.service_cta_button:hover::before {
  width: 300px;
  height: 300px;
}

.service_cta_button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.service_cta_button:active {
  transform: translateY(-2px) scale(1.02);
}

.service_cta_button img {
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.service_cta_button:hover img {
  transform: translate(5px, -5px);
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
  .service_hero_headline {
    font-size: 42px;
  }

  .service_hero_subheadline {
    font-size: 1.2rem;
  }

  .service_overview_heading,
  .how_it_works_heading,
  .service_features_heading,
  .service_cta_heading {
    font-size: 38px;
    padding-bottom: 0;
  }

  .how_it_works_steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service_features_list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service_overview_text p {
    padding-left: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .service_hero_content {
    padding: 3rem 5%;
  }

  .service_hero_headline {
    font-size: 32px;
  }

  .service_hero_subheadline {
    font-size: 1rem;
  }

  .service_overview_section,
  .how_it_works_section,
  .service_features_section,
  .service_cta_section {
    padding: 4rem 5%;
  }

  .service_overview_heading,
  .how_it_works_heading,
  .service_features_heading,
  .service_cta_heading {
    font-size: 28px;
    padding-bottom: 0;
  }

  .service_overview_text {
    font-size: 1rem;
  }

  .service_overview_text p {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .service_overview_text p::before {
    width: 6px;
    height: 6px;
    top: 0.6rem;
  }

  .how_it_works_step {
    padding: 2rem 1.5rem;
  }

  .how_it_works_step_number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .how_it_works_step_title {
    font-size: 1.25rem;
  }

  .service_feature_item {
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .service_feature_icon {
    width: 45px;
    height: 45px;
    padding: 10px;
  }

  .service_feature_text {
    font-size: 1rem;
  }

  .service_cta_text {
    font-size: 1.1rem;
  }

  .service_cta_button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}
/************ service-view page ui end here ************/

/************ contact page ui start here ************/
.contact_header_section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.contact_header_content {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact_header_content .section_title_wrapper {
  justify-content: center;
}

.contact_header_content .title {
  font-weight: 500;
  font-size: 45px;
  color: #282a39;
  text-align: center;
}

.contact_header_content .subheadline {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #282a39;
  text-align: start;
  margin: 0;
}

.contact_header_content .para {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 180%;
  color: #666666;
  margin: 0;
  text-align: start;
  max-width: none;
}

@media only screen and (max-width: 991px) {
  .contact_header_content .title {
    font-size: 40px;
  }

  .contact_header_content .subheadline {
    font-size: 22px;
  }

  .contact_header_content .para {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 575px) {
  .contact_header_section {
    padding: 3rem 5%;
  }

  .contact_header_content .title {
    font-size: 32px;
  }

  .contact_header_content .subheadline {
    font-size: 20px;
  }

  .contact_header_content .para {
    font-size: 15px;
  }
}

.contacts_wrapper {
  padding: 5rem 0;
}
.contacts_wrapper .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 2rem;
}
.contacts_wrapper .contact_card {
  text-align: center;
}
.contacts_wrapper .contact_card .contact_icon {
  width: 35px;
}
.contacts_wrapper .contact_card .title {
  font-weight: 700;
  font-size: 26px;
  color: #000000;
  margin-top: 1rem;
  margin-bottom: 15px;
}
.contacts_wrapper .contact_card .text {
  margin-top: 6px;
  font-weight: 500;
  font-size: 1rem;
  color: #000000;
}

.contact_form_wrapper {
  padding: 5rem 0;
}
.contact_form_wrapper .title {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
}
.contact_form_wrapper .form {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact_form_wrapper .input_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.contact_form_wrapper .input {
  width: 100%;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 10px 1rem;
  outline: none;
  color: #000000;
}
.contact_form_wrapper .input:focus {
  border-color: #39d3fa;
}
.contact_form_wrapper .form_checkbox_wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact_form_wrapper .form_checkbox_wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #39d3fa;
  flex-shrink: 0;
}

.contact_form_wrapper .form_checkbox_wrapper label {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #282a39;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
}

.contact_form_wrapper .submit_btn {
  margin: 1rem auto 0 auto;
  font-size: 1rem;
  font-weight: 500;
  width: fit-content;
  border: none;
  padding: 12px 3rem;
  border-radius: 10px;
  color: #ffffff;
  background-color: #39d3fa;
}

@media only screen and (max-width: 991px) {
  .contacts_wrapper .contact_card .contact_icon {
    width: 35px;
  }
  .contacts_wrapper .contact_card .title {
    font-size: 22px;
  }
  .contacts_wrapper .contact_card .text {
    font-size: 14px;
  }

  .contact_form_wrapper .title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .contacts_wrapper .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact_form_wrapper .input_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .contacts_wrapper {
    padding: 5rem 5%;
  }
  .contacts_wrapper .container {
    grid-template-columns: 1fr;
  }

  .contact_form_wrapper {
    padding: 5rem 5%;
  }
  .contact_form_wrapper .title {
    font-size: 30px;
  }
  .contact_form_wrapper .input {
    font-size: 14px;
  }
  .contact_form_wrapper .form_checkbox_wrapper label {
    font-size: 14px;
  }
  .contact_form_wrapper .form_checkbox_wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
  .contact_form_wrapper .submit_btn {
    font-size: 14px;
  }
}
/************ Social Media section ui start here ************/
.social_media_section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.social_media_section .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
}

.social_description {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 180%;
  color: #666666;
  margin: 0;
  max-width: 700px;
}

.social_icons_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.social_icon_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.social_icon_link:hover {
  transform: translateY(-5px);
}

.social_icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 104, 131, 0.2);
}

.social_icon_link:hover .social_icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(5, 104, 131, 0.3);
}

.social_icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.social_label {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #282a39;
  transition: color 0.3s ease;
}

.social_icon_link:hover .social_label {
  color: #3ad4fd;
}

@media only screen and (max-width: 991px) {
  .social_media_section .title {
    font-size: 40px;
  }

  .social_description {
    font-size: 1rem;
  }

  .social_icons_wrapper {
    gap: 2rem;
  }

  .social_icon {
    width: 60px;
    height: 60px;
  }

  .social_icon img {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (max-width: 575px) {
  .social_media_section {
    padding: 4rem 5%;
  }

  .social_media_section .title {
    font-size: 32px;
  }

  .social_description {
    font-size: 15px;
  }

  .social_icons_wrapper {
    gap: 1.5rem;
  }

  .social_icon {
    width: 55px;
    height: 55px;
  }

  .social_icon img {
    width: 24px;
    height: 24px;
  }

  .social_label {
    font-size: 14px;
  }

  .social_icon_link {
    padding: 0.75rem;
  }
}
/************ Social Media section ui end here ************/

/************ contact page ui end here ************/

/************ Animation start here ************/

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/************ Animation end here ************/

/************ Scroll to Top Button start here ************/
.scroll_to_top_btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(5, 104, 131, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll_to_top_btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll_to_top_btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(5, 104, 131, 0.4);
}

.scroll_to_top_btn:active {
  transform: translateY(-2px);
}

.scroll_to_top_btn svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
}

@media only screen and (max-width: 575px) {
  .scroll_to_top_btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .scroll_to_top_btn svg {
    width: 20px;
    height: 20px;
  }
}
/************ Scroll to Top Button end here ************/

/************ Cookie Consent Banner start here ************/
.cookie_consent_banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-top: 2px solid #056783;
}

.cookie_consent_banner.show {
  transform: translateY(0);
}

.cookie_consent_banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.cookie_consent_content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.cookie_consent_icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.cookie_consent_text {
  flex: 1;
}

.cookie_consent_text h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #282a39;
  margin: 0 0 0.5rem 0;
}

.cookie_consent_text p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.cookie_consent_text a {
  color: #056783;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie_consent_text a:hover {
  color: #3ad4fd;
}

.cookie_consent_actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie_accept_btn {
  background: linear-gradient(135deg, #056783 0%, #3ad4fd 100%);
  border: none;
  border-radius: 66px;
  padding: 0.75rem 2rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.cookie_accept_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 104, 131, 0.4);
}

.cookie_decline_btn {
  background-color: transparent;
  border: 2px solid #666666;
  border-radius: 66px;
  padding: 0.75rem 2rem;
  color: #666666;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie_decline_btn:hover {
  border-color: #282a39;
  color: #282a39;
  transform: translateY(-2px);
}

@media only screen and (max-width: 991px) {
  .cookie_consent_banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cookie_consent_content {
    width: 100%;
  }

  .cookie_consent_actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 575px) {
  .cookie_consent_banner {
    padding: 1.25rem 1.5rem;
  }

  .cookie_consent_content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie_consent_icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .cookie_consent_text h4 {
    font-size: 1rem;
  }

  .cookie_consent_text p {
    font-size: 0.9rem;
  }

  .cookie_consent_actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie_accept_btn,
  .cookie_decline_btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}
/************ Cookie Consent Banner end here ************/
