@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

body {
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
  background-color: #fdfdfd;
}

:root {
  --primary-color: #72308a;
  --secondary-color: #09098b;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000000;
}

.whatsapp-icon i {
  background-color: #72308a;
  color: #fff;
  width: 60px;
  line-height: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 50px;
  z-index: 99;
}

.whatsapp-icon i:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.get-connect-btn button {
  border: none;
  padding: 10px 10px 10px 20px;
  border-radius: 40px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.get-connect-btn button i {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 12px;
}

header {
  position: absolute;
  width: 100%;
  z-index: 103;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: background-color 1.4s ease;
  transition: background-color 0.6s ease;
  border-bottom: 1px solid #ffffff57;
}

header .logo {
  float: left;
}

header .logo img {
  width: 150px;
}

.menu_bar {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

header div.main_list {
  float: right;
}

header div.main_list ul {
  width: 100%;
  display: flex;
  gap: 30px;
  height: 57px;
  align-items: center;
}

header div.main_list ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
}

header .tracking_button {
  float: right;
  height: 57px;
  display: flex;
  align-items: center;
}

.tracking_button button {
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 99px;
}

.affix {
  position: fixed;
  background-color: #030385;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  max-width: 1340px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
  top: 20px;
  padding: 15px 0;
  border: none;
}

.affix .logo {
  margin-left: 15px;
}

.affix .logo img {
  width: 125px;
}

.affix div.main_list ul {
  gap: 30px;
  height: 47px;
}

.affix .tracking_button {
  height: 47px;
}

/* ========================banner========================= */
.hero-banner {
  position: relative;
  z-index: 101;
}

.services-slide {
  height: 100vh;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.services-slide .hero-text h2 {
  font-size: 3.3rem;
  color: #fff;
  line-height: 65px;
}

.hero-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13rem;
}

.hero-heading ul li {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  background: #ffffff24;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-banner .bottom-col {
  display: flex;
  margin-bottom: 100px;
  justify-content: space-between;
}

.hero-banner .get-in-col {
  display: flex;
  color: #fff;
  gap: 20px;
  align-items: center;
}

.hero-banner .get-in-col p {
  font-size: 16px;
  font-weight: 200;
  max-width: 800px;
  margin: 0;
}

.scroll-down p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
}

.scroll-down p img {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.services-slide-a {
  background: linear-gradient(93deg, #63b3ff33, #0074df2e, #0053a105),
    url(../images/banner-shipment.jpg) center / cover no-repeat;
}

.services-slide-b {
  background: linear-gradient(93deg, #63b3ff33, #0074df2e, #0053a105),
    url(../images/banner-air.jpg) center / cover no-repeat;
}

.services-slide-c {
  background: linear-gradient(93deg, #63b3ff33, #0074df2e, #0053a105),
    url(../images/banner-land.jpg) center / cover no-repeat;
}

.services-slide-d {
  background: linear-gradient(93deg, #63b3ff33, #0074df2e, #0053a105),
    url(../images/banner-doorstep.webp) center / cover no-repeat;
}

.hero-banner .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 2px;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}

.hero-banner .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #ffffff4d;
  text-indent: -9999px;
  transition: 0.3s all ease-in;
  margin: 0px 5px;
}

.hero-banner .slick-prev,
.hero-banner .slick-next {
  display: none !important;
}

.hero-banner li.slick-active button {
  background-color: #ffffff;
  width: 1.6rem;
  border-radius: 50px;
}

.hero-banner .slick-active .hero-text h2 {
  overflow: hidden;
}

.hero-banner .slick-active .hero-text h2 span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.hero-banner .slick-active .get-in-col p {
  overflow: hidden;
  /* width: 70%; */
}

.hero-banner .slick-active .get-in-col p span {
  display: block;
  animation: reveal 2.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.hero-banner .slick-active .get-connect-btn {
  overflow: hidden;
}

.hero-banner .slick-active .get-connect-btn button {
  display: block;
  animation: reveal 2.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.hero-banner .get-connect-btn button {
  background: #fff;
  color: var(--primary-color);
}

.hero-banner .get-connect-btn button i {
  background-color: var(--primary-color);
  color: #fff;
}

.hero-banner .get-connect-btn button:hover {
  background-color: #fff;
  color: var(--primary-color);
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ====================About Us==================== */
.section-padding {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.sub-heading {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.sub-heading .line {
  width: 40px;
  height: 1px;
  background-color: #000;
  display: inline-block;
}

.animate {
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
}

.animate p {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
  margin-bottom: 30px;
}

.stat-number {
  font-size: 42px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0px;
  line-height: 1.2;
  font-family: "Nunito Sans", sans-serif;
}

.stat-number span {
  font-size: 42px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0px;
  line-height: 1.2;
  font-family: "Nunito Sans", sans-serif;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 0px;
}

.light-text {
  margin-bottom: 60px;
}

.sub-section-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
}

.sub-section-title .highlight {
  color: var(--primary-color);
  font-weight: 500;
}

.video-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.custom-video {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  max-height: 400px;
}

.about-border {
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
}

.about-border::before {
  content: "";
  position: absolute;
  top: -5000px;
  bottom: 0;
  right: 0;
  /* Align to the right edge of the container */
  width: 1px;
  background-color: #e6e6e6;
}

.about-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5000px;
  right: -5000px;
  height: 1px;
  background-color: #e6e6e6;
}

/* ====================Services Section==================== */

.services-section {
  background: linear-gradient(131deg, #72308a0f, #72308a0f),
    url(../images/square-arrow.png) center / cover no-repeat;
  height: 950px;
}

.service-item {
  padding: 0 10px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  height: 400px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid transparent;
}

.service-card:hover {
  box-shadow: 0 20px 50px rgb(0 0 0 / 2%);
  transform: translateY(-25px);
  height: 430px;
}

.service-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 7rem;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Hover state changes: Hide number and small icon */
.service-card:hover .service-num,
.service-card:hover .icon-wrapper {
  opacity: 0;
  transform: translateY(-20px);
}

.icon-wrapper {
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
  margin-top: auto;
  /* Push to bottom in flex container if needed */
}

.icon-wrapper img {
  max-width: 135px;
  height: auto;
}

.service-img-wrapper {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 96%;
  height: 200px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 0;
  border-radius: 10px;
}

.service-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 90%
  );
}

.service-card:hover .service-img-wrapper {
  opacity: 1;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* On hover, expand description */
.service-card:hover .service-desc {
  max-height: 150px;
  /* enough for text */
  opacity: 1;
  margin-top: 10px;
}

.service-card:hover .service-desc p {
  font-size: 15px;
}

/* Custom Arrows */
.slick-prev-custom,
.slick-next-custom {
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: #fff;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  background: var(--secondary-color);
}

.services-slider .slick-list {
  padding: 50px 0;
}

.services-slider .slick-arrow {
  background: var(--primary-color);
  transform: rotate(90deg);
  width: 40px;
  height: 40px;
  /* text-align: center; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  border-radius: 30px;
  position: absolute;
  right: 0;
  top: 500px;
  bottom: auto;
  z-index: 10;
  font-size: 20px;
}

.services-slider .ser-slick-prev {
  right: 70px;
  background-color: var(--secondary-color);
  left: auto;
}

.services-slider .ser-slick-next {
  right: 15px;
}

/* Adjust responsiveness */
@media (max-width: 991px) {
  .about-border {
    border-right: none;
    border-bottom: none;
  }
}

/* ====================Why Choose Us Section==================== */

.choose-us-section {
  position: relative;
  overflow: visible;
  background: #f5f1f6;
}

.delivery-man-wrapper {
  position: relative;
  margin-top: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.delivery-man-img {
  position: relative;
  z-index: 1;
  width: 100%;
  bottom: 0;
}

.parachute-container {
  position: absolute;
  top: -70px;
  right: 10%;
  width: 260px;
  height: 300px;
  z-index: 2;
  pointer-events: none;
}

.parachute {
  position: absolute;
  width: 80px;
  height: auto;
}

.parachute.p1 {
  top: 0;
  left: 0;
  width: 100px;
}

.parachute.p2 {
  top: 60px;
  right: 20px;
  width: 120px;
}

.parachute.p3 {
  top: 120px;
  left: 40px;
  width: 70px;
  opacity: 0.9;
}

.choose-content {
  margin-top: 135px;
  position: relative;
}

.choose-title {
  font-size: 28px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  position: absolute;
  left: -330px;
  top: 5px;
}

.choose-title .highlight-text {
  color: var(--primary-color);
  font-weight: 600;
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature-box {
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.feature-box p {
  max-width: 270px;
  margin: 0;
}

.feature-box .icon-box {
  margin-bottom: 15px;
}

.feature-box .icon-box i {
  font-size: 40px;
  color: var(--primary-color);
}

/* ====================App Features Section==================== */

.app-features-wrapper {
  background-color: #431678;
  /* Deep purple base */
  background: linear-gradient(100deg, #300f6b 0%, #72308a 100%);
  border-radius: 30px;
  padding: 60px 80px;
  position: relative;
  /* overflow: hidden; -- Let phones pop out if needed, but usually contain them */
  overflow: visible;
}

.app-content {
  color: #fff;
  position: relative;
  z-index: 2;
}

.app-sub-title {
  font-size: 32px;
  font-weight: 300;
  display: block;
  color: #fff;
}

.app-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #fff;
}

.app-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}

.app-buttons {
  display: flex;
  gap: 20px;
}

.store-btn img {
  width: auto;
  transition: transform 0.3s ease;
}

.store-btn:hover img {
  transform: translateY(-3px);
}

.app-phones-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-phones-img {
  position: absolute;
  right: auto;
  top: -250px;
}

/* @media (max-width: 1199px) {
    .app-phones-img {
        max-width: 400px;
        right: 0;
    }
} */

/* @media (max-width: 991px) {
    .app-features-wrapper {
        padding: 50px 30px;
        text-align: center;
    }

    .app-content {
        margin-bottom: 50px;
    }

    .app-desc {
        margin: 0 auto 40px;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-phones-wrapper {
        height: auto;
        display: block;
        margin-top: 20px;
    }

    .app-phones-img {
        position: relative;
        display: block;
    }
} */

/* ====================our-stories==================== */

.our-stories {
  background-color: #f5f1f6;
}

.our-stories .stories {
  margin-top: 50px;
}

/* ====================FAQ Section==================== */

.highlight-purple {
  color: var(--primary-color);
  font-weight: 500;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #f9f9f9;
  border-radius: 15px;
  padding: 15px 10px 15px 30px;
  /* transition: all 0.3s ease; */
  border: 1px solid #eeeeee;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  /* padding: 5px 0; */
}

.faq-header h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
  flex: 1;
}

.faq-arrow {
  width: 28px;
  height: 28px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  opacity: 0;
}

.faq-body p {
  margin: 0;
  font-size: 14px;
  color: #666;
  padding-right: 20px;
}

/* Active State */
.faq-item.active {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 20px 20px 20px 30px;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

.faq-item.active .faq-body {
  max-height: 500px;
  /* Adjust based on content length */
  padding-top: 15px;
  opacity: 1;
}

.faq-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .faq-image-wrapper {
    margin-top: 50px;
  }
}

/* ====================Footer==================== */

.footer-section {
  background-color: #1e1e1e;
  padding: 80px 0 30px;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: #ffffff;
  font-size: 16px;
  /* line-height: 1.7; */
  margin-bottom: 30px;
  padding-right: 50px;
  font-weight: 200;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
  background-color: #fff;
  color: var(--primary-color);
  border-color: #fff;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 19px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e6e6e6;
  font-size: 16px;
  font-weight: 300;
  transition: 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-contact li a {
  color: #e6e6e6;
  font-size: 16px;
  font-weight: 300;
}

.footer-contact li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact li i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.office-address a {
  color: #e6e6e6;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.office-address {
  max-width: 250px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 25px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.footer-bottom p a:hover {
  color: #ffc012;
}

/* Specific adjustment for columns spacing */
@media (min-width: 992px) {
  .footer-col {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .footer-col {
    margin-bottom: 40px;
  }

  .footer-section {
    padding: 60px 0 20px;
  }
}

@media (max-width: 767px) {
  .footer-bottom .text-md-end {
    text-align: left;
    margin-top: 10px;
  }
}

/* ====================About Us-================================================================ 
================================================================================================
================================================================================================*/

.inner-banner {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/about-banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner-banner-content {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.inner-banner-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Nunito Sans", sans-serif;
}

.breadcrumb-nav span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: var(--primary-color);
}

.breadcrumb-nav .separator {
  color: #fff;
}

.breadcrumb-nav .current {
  color: #fff;
  font-weight: 500;
}

.inner-banner .inner-banner-title {
  overflow: hidden;
}

.inner-banner .inner-banner-title span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.inner-banner .breadcrumb-nav {
  overflow: hidden;
}

.inner-banner .breadcrumb-nav span {
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ====================Vision & Mission Section==================== */
.vision-mission-section {
  overflow: hidden;
}

.vision-mission-section .container {
  background-color: #f2f8ff;
  border-radius: 20px;
}

.vision-mission-img {
  height: 100%;
  min-height: 500px;
  background: url(../images/vision-mission.webp) no-repeat center center;
  background-size: cover;
  border-radius: 20px 0 0 20px;
}

.vision-mission-content {
  padding: 80px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vm-block {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 0;
}

.vm-block .icon-box {
  flex-shrink: 0;
  width: 90px;
}

.vm-block .icon-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vm-block .text-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-family: "Nunito Sans", sans-serif;
}

.vm-block .text-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.vm-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 40px 0;
  width: 100%;
}

/* ====================Legacy Section==================== */
.legacy-title {
  font-size: 30px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Nunito Sans", sans-serif;
}

.legacy-title span {
  color: var(--primary-color);
}

.legacy-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  /* max-width: 100%; */
}

.get-connect-btn button:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.map-image-wrapper img {
  max-width: 100%;
  height: auto;
}

.flag-pin {
  position: relative;
}

.flag-pin .bahrain {
  position: absolute;
  top: -165px;
  left: 69px;
  transform: scale(0.5);
}

.flag-pin .india {
  position: absolute;
  top: -155px;
  left: 170px;
  transform: scale(0.5);
}

.cityscape-wrapper {
  margin-top: 40px;
  position: relative;
  line-height: 0;
  max-height: 500px;
}

.cityscape-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}

/* ====================Services-================================================================ 
================================================================================================
================================================================================================*/

.services-sec {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/service-banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-para {
  padding: 80px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.services-col-sec {
  padding: 80px 0;
}

.services-col-sec .image-box {
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.services-col-sec .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.services-col-sec .image-box .overlay-box {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    #09098be6 0%,
    #09098b7a 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
  z-index: 1;
}

.service-col-card:hover .overlay-box {
  bottom: 0;
}

.overlay-box h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: left;
}

.overlay-box .connect-btn {
  background: #fff;
  color: var(--secondary-color);
  padding: 6px 6px 6px 12px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  justify-content: space-between;
  gap: 8px;
  width: fit-content;
  text-decoration: none;
  font-size: 14px;
}

.overlay-box .connect-btn i {
  background: var(--secondary-color);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.services-col-sec .content-box {
  padding: 10px;
}

.services-col-sec .content-box h3 {
  font-size: 24px;
  font-weight: 600;
}

.service-col-card {
  margin-bottom: 40px;
}

.service-col-card-head {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.service-col-card-head h3 {
  font-size: 35px;
}

.service-col-card-head h3 span {
  color: var(--primary-color);
}

/* ====================Contact Section====================================================
==========================================================================================
========================================================================================== */

.contact-banner {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../images/contact-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-info-wrapper {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.contact-form-wrapper {
  background: #fafaff;
  padding: 30px;
  border-radius: 20px;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.05); */
  border: 1px solid #e7e7e7;
  height: 100%;
}

.contact-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: "Nunito Sans", sans-serif;
  color: #222;
}

.form-label {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  padding-left: 10px;
}

.custom-input {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #c7c7c73d;
  padding: 10px 20px;
  font-size: 14px;
  color: #212121;
  background-color: #ffffff;
}

textarea.custom-input {
  height: auto;
  padding-top: 15px;
}

.custom-input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.explore-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 10px 10px 15px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
  font-size: 15px;
}

.explore-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

.explore-btn i {
  width: 28px;
  height: 28px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

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

.address-col {
  padding: 20px 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.address-col img {
  width: 50px;
}

.info-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.info-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.address-col .info-desc {
  font-size: 15px;
}

.info-desc a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  transition: 0.3s;
}

.contact-social a img {
  height: 22px;
}

.map-adresses {
  padding: 20px;
  border: 1px solid #72308a;
  border-radius: 20px;
}

.contact-side-image img {
  width: 100%;
  border-radius: 20px;
  height: 460px;
  object-fit: cover;
  margin-top: 50px;
}

.map-wrapper iframe {
  border-radius: 20px;
}

/* ====================Thank You Section==================== */
.inner-header {
  background-color: var(--primary-color);
  position: relative;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.thank-you-content {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: inline-block;
  max-width: 600px;
  width: 100%;
}

.check-icon {
  font-size: 80px;
  color: #28a745;
  margin-bottom: 20px;
}

.thank-you-content h1 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.thank-you-content p {
  margin-bottom: 30px;
  font-size: 18px;
  color: #555;
}

.thank-you-content .get-connect-btn button {
  margin: 0 auto;
}
