@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #121212;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

.color_1 {
  color: #121212;
}

/* ===================================
   TOP LATEST UPDATES BAR
   =================================== */
.top-bar {
  display: flex;
  width: 100%;
  background: #001f3e;
  height: 40px;
  align-items: center;
}

.top-bar-label {
  background: #001f3e;
  color: #f36e26;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  gap: 10px;
  padding-right: 3px;
  background: -webkit-linear-gradient(45deg, #ff8b0f, #f36e26);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .5px;
}

.top-bar-label img {
  position: relative;
  top: -2px;
}

.top-bar-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  align-items: center;
  height: 100%;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 400;
  padding: 0 10px;
  text-transform: uppercase;
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  background: #FF6B35;
  border-radius: 0;
  display: inline-block;
  margin-right: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.top-bar-button {
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 5px;
  padding-inline: 5px 15px;
}

.btn-call-now {

  border: none;
  color: white;
  font-weight: 400;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  letter-spacing: .10px;

}

.top-bar-button>button {
  background: #003468;
  padding: 5px 11px;
  border-radius: 5px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border: 2px solid #114172;
  border-left: none;
  border-top: 0;
  width: 8px;
  height: 8px;
  /* transform: rotate(45deg) translateY(0px) translateX(2px); */
  transform: rotate(45deg) translateY(-3px) translateX(2px);
}

header .container-fluid,
.banner_sec .container-fluid {
  width: 100%;
  max-width: 100%;
  padding-inline: 4.1%;
}

/* ===================================
   MAIN NAVBAR
   =================================== */
.main-navbar {
  box-shadow: 0 2px 6px rgba(4, 65, 160, 0.11);
  padding: 0px 0;
  z-index: 1;
}

.navbar-brand {
  position: relative;
  top: -15px;
  padding: 0;
}

.logo {
  height: 68px;
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  color: #010101 !important;
  font-weight: 400;
  font-size: 15px;
  padding: 35px 0px !important;
  position: relative;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.navbar-nav .nav-item {
  padding-inline: 22px 15px;
}

/* .nav-link.active {
    border-bottom: 2px solid #104071;
} */

.dropdown-menu {
  border: 1px solid #E0E0E0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  margin-top: 0px;
}

.dropdown-item {
  color: #010101;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 20px;
}

/* Desktop: Dropdown on hover */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

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

.btn-account:hover {
  transition: all .4s linear;
  background: #114172;
  color: #fff;
}

.btn-account {
  background: #f36e26;
  border: 1px solid #f36e26;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .4s linear;
  text-transform: uppercase;
}

.btn-group .btn-account img {
  height: 18px;
  filter: brightness(100);
  /* filter: brightness(0) saturate(100%) invert(56%) sepia(84%) saturate(2100%) hue-rotate(350deg) brightness(98%) contrast(95%); */
  /* filter: brightness(0) saturate(100%) invert(17%) sepia(38%) saturate(1345%) hue-rotate(176deg); */
}

.btn-group .btn-account.show img,
.btn-group .btn-account:hover img {
  filter: brightness(100);
  transition: all .4s linear;
}

.btn-ship-now:hover {
  background: #FF6B35;
  color: white;
  border: 1px solid #FF6B35;
  transition: all .4s linear;
}

.btn-ship-now {
  background: #114172;
  border: 1px solid #114172;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .4s linear;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-group .btn-ship-now img {
  height: 16px;
}

.navbar-buttons .btn-group .dropdown-toggle::after {
  transform: rotate(45deg) translateY(0px) translateX(-2px);
}

.navbar-buttons .btn-group .show.dropdown-toggle::after,
.navbar-buttons .btn-group .dropdown-toggle:hover::after {
  border-color: #fff;
}

.navbar-buttons .btn-group .dropdown-toggle.btn-ship-now::after {
  border: 2px solid #ffffff;
  border-left: none;
  border-top: 0;
}

.navbar-buttons .btn-group .dropdown-toggle.show.btn-ship-now::after,
.navbar-buttons .btn-group .dropdown-toggle.btn-ship-now:hover::after {
  border-color: #fff;
}

.btn.show {
  color: #fff;
  background-color: #114172;
  border-color: #114172;
}

.btn.btn-ship-now.show {
  color: #fff;
  background-color: #ff6b35;
  border-color: #ff6b35;
}

.navbar-buttons .btn-group .dropdown-toggle.btn-ship-now::after,
.navbar-buttons .btn-group .dropdown-toggle::after {
  display: none;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #114172;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #114172;
}

/* banner_sec */

.banner_sec {
  position: relative;
  padding-block: 35px 0;
  margin-bottom: 30px;
}

.banner_sec.inner .inner_banner_part .banner_content_part::after {
  display: none;
}

.banner_sec.inner {
  background: url(../img/about_banner.png) #114172;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-block: 50px 30px;
  margin-bottom: 30px;
  min-height: 250px;
}

.banner_img_part {
  border-radius: 30px;
  overflow: hidden;
}

.banner_content_part {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 0;
  padding-left: 50px;
  align-items: flex-start;
}

.banner_sec .sub_title {
  font-size: 15px;
  color: #465977;
  margin-block: 5px 15px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

.banner_sec .sub_title span {
  color: #f36e26;
}

.banner_sec .stars {
  color: #ebb309;
  font-size: 14px;
}

.banner_title {
  font-size: 37px;
  line-height: 1.15;
  font-weight: 600;
  color: #0b0b0b;
  margin-bottom: 15px;
  letter-spacing: .5px;
}

.banner_title span {
  font-size: 30px;
  display: inline-block;
  color: #114172;

}

.banner_sec .content {
  color: #3d4145;
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
}

.banner_btns {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.common_btn {
  font-size: 14px;
  padding: 10px 20px;
  border: 1px solid #114172;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #fff;
  background-color: #114172;
  font-weight: 400;
}

.common_btn i {
  font-size: 22px;
  line-height: 100%;
}

.common_btn.btn2 {
  color: #f36e26;
  background: transparent;
  border-color: #f36e26;
}

.common_btn.btn2:hover {
  background: #f36e26;
  color: #fff;
}

.banner_content_part .banner_icon {
  position: absolute;
  bottom: -31px;
  right: 60px;
  max-height: 205px;
}

.banner_sec .banner_content_part::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 1px;
  background: #dfe5f4;
  left: -10%;
  bottom: 0;
  z-index: -1;

}

/* banner_sec_close */


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #114172;
  padding: 10px 40px;
  border: 0;
  border-radius: 40px;
  text-transform: capitalize;
  display: inline-block;
  line-height: initial;
  transition: all .4s ease;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.theme-btn-s2 {
  background-color: rgb(242, 110, 38);
  color: #fff;
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
  background-color: #114172;
  color: #fff;
}

.theme-btn-s3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}

i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}

a:hover {
  text-decoration: none;
}

@media (max-width: 991px) {

  .theme-btn,
  .theme-btn-s2,
  .theme-btn-s3 {
    font-size: 13px;
    padding: 15px 25px;
  }
}

@media (max-width: 767px) {

  .theme-btn,
  .theme-btn-s2 {
    padding: 13px 20px;
    font-size: 13px;
  }
}

/* Hero Sec Close */

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 991px) {
  .top-bar-label {
    padding: 0 15px;
    font-size: 12px;
  }

  .marquee-item {
    font-size: 12px;
    padding: 0 30px;
  }

  .btn-call-now {
    font-size: 12px;
  }

  .navbar-buttons {
    margin-top: 15px;
    flex-direction: column;
    width: 100%;
  }

  .btn-account,
  .btn-ship-now {
    width: 100%;
    justify-content: center;
  }


}

@media (max-width: 576px) {
  .top-bar {
    flex-wrap: wrap;
    height: auto;
  }

  .top-bar-label {
    width: 100%;
    justify-content: center;
    padding: 10px;
  }

  .top-bar-marquee {
    height: 40px;
  }

  .top-bar-button {
    width: 100%;
    justify-content: center;
    padding: 10px;
  }


}

/*  */
.enquery_sec {
  padding-block: 40px;
}

.enqury_tab_set {
  /* background: #114172 ; */
  background-color: transparent;
  position: relative;
  top: 0px;
  z-index: 11;
  max-width: 900px;
  padding: 0px;
  margin-inline: auto;
  border-radius: 0px;
  overflow: hidden;
}

.enqury_tab_set .nav-tabs li {
  width: 100%;
  max-width: 33.33%;
}

.enqury_tab_set .nav-tabs .nav-item:first-child .nav-link.active {
  border-right: none;
}

.enqury_tab_set .nav-tabs .nav-item:last-child .nav-link.active {
  border-left: none;
}

.enqury_tab_set .nav-tabs .nav-link.active {
  color: #f36e26 !important;
  border-color: #dddd;
  background: #fff9f3;
  border-bottom-color: #f36e26;

}

.enqury_tab_set .nav-tabs .nav-link {
  padding: 10px 30px;
  font-weight: 500;
  color: #747e97 !important;
  font-size: 16px;
  display: block;
  width: 100%;
  border-radius: 0;
  border-bottom-color: #fff;
  border-top-color: #e1e4ec;
  border-right-color: #e1e4ec;
  background: #fff;
}

.enqury_tab_set .nav-tabs li:nth-child(2) .nav-link {
  border-inline: none;
}

.enqury_tab_set .nav-tabs .nav-item .nav-link {
  text-transform: capitalize;
}

.enqury_tab_set .nav-tabs li:nth-child(3) .nav-link {
  border-left: 1px solid #e1e4ec;
}

.enqury_tab_set .tab-content {
  background: #fff;
  padding: 40px 30px 25px;
  min-height: 120px;
  border: 1px solid #e1e4ec;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.input_set {
  position: relative;
}

.input_set .pbmit-btn .pbmit-button-text::before {
  display: none;
}

.input_set .pbmit-btn {
  padding: 12px 20px 12px 20px;
  margin-block: 0 !important;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
}

.enqury_tab_set .nav-link {
  padding-block: 16px !important;
}

.form-control,
form select {
  display: block;
  font-weight: normal;
  line-height: normal;
  border: 1px solid #ddd;
  /* background-color: transparent; */
  background: rgba(255, 255, 255, 0.3);
  height: 50px;
  font-size: 14px;
  padding: 10px 23px;
  margin-bottom: 10px;
}

.enqury_tab_set .input_set input::placeholder {
  color: #b5beca;
}

.enqury_tab_set .pbmit-btn {
  background: #f36e26;
  color: #fff;
  padding: 10px 30px 10px 30px;
  border-radius: 5px;
  border: none;
  position: relative;
  bottom: 4px;
  height: 48px;
  top: -6px;
}

.input_set label {
  position: absolute;
  top: -9px;
  left: 18px;
  display: inline-block;
  background: #fff;
  padding-inline: 4px;
  color: #2b4260;
  font-size: 13px;
}

.enqury_tab_set {
  box-shadow: 0 5px 20px rgba(103, 110, 135, 0.12);
  border-radius: 15px;
}



/*  */
.stats-section {
  padding-block: 40px 0px;
  /* background: #ffffff; */
}

.stats-title {
  font-size: 38px;
  font-weight: 500;
  color: #292929;
}

.stat-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
}

.stat-item h3 {
  font-size: 26px;
  font-weight: 600;
  color: #3a3325;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 14px;
  font-weight: 500;
  color: #114072;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .stats-title {
    font-size: 28px;
  }
}



/* Section */
.services-section {
  padding: 40px 0 0;
  background: #ffffff;
}

/* Heading */
.section-title {
  font-size: 40px;
  font-weight: 600;
  color: #0b2c5d;
}

.section-subtitle {
  font-size: 16px;
  color: #7a7a7a;
  margin-top: 10px;
}

/* Card */
.service-card {
  height: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid #e5eaf4;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: 0.35s ease;
  z-index: -1;
}

.service-card:hover::before {
  border-color: #e5eaf4;
}

.service-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-content .know-more-btn {
  margin-top: auto;
}

/* Hover lift */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.06);
}

/* Image */
.small_title {
  text-align: center;
  font-size: 24px;
  margin-top: 40px;
}

/* Image zoom on hover */
.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* Content */
.service-content {
  padding: 20px;
}

.service-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #3a3325;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

/* Button */
.know-more-btn {
  /* background: #f36e26; */
  border: 1px solid #ddd;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  margin: 0 0 0 auto;
}

/* .know-more-btn:hover {
  background: #114172;
  color: #fff;
  box-shadow: 0 4px 10px rgba(3, 72, 122, 0.43);
} */

/* Responsive */
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

/* Owl spacing */
.services-carousel .item {
  padding: 15px;
}

.blog-carousel .item {
  padding: 15px;
}

/* Hide default dots spacing fix */
.owl-theme .owl-dots {
  margin-top: 30px;
}

/* Custom dots */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #f36e26;
  transform: scale(1.3);
}

/* Navigation arrows */
.owl-nav button {
  position: absolute;
  top: 50%;
  background: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px !important;
  color: #114172 !important;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
  /* border: 1px solid #114172 !important; */
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}

.owl-nav button:hover {
  background: #114172 !important;
  color: #fff !important;
}

.owl-nav .owl-prev {
  left: -10px;
}

.owl-nav .owl-next {
  right: -10px;
}

@media screen and (min-width:1450px) {
  .owl-nav .owl-prev {
    left: -34px;
  }

  .owl-nav .owl-next {
    right: -34px;
  }
}

.stat-item {
  display: flex;
  gap: 10px;
  border: 1px solid #000;
  height: 100%;
  padding: 15px;
  align-items: center;
  border-radius: 15px;
}

.stat-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 0;
  object-fit: contain;
}


.why_choose_sec {
  position: relative;
}

.why_choose_sec {
  position: relative;
}

.why_choose_sec .container-fluid {
  background: linear-gradient(#fff0, #f1f4fb);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  width: 100%;
  max-width: 96%;
  padding-block: 20px 80px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.why_choose_item img {
  height: 85px;
  margin-bottom: 10px;
}

.why_choose_item .why_choose_content h3 {
  font-size: 40px;
  font-weight: 700;
  color: #084786;
  text-align: center;
}

.stats-section .row div:nth-child(2) .why_choose_item .why_choose_content h3 {
  color: #084786;
}

.stats-section .row div:nth-child(3) .why_choose_item .why_choose_content h3 {
  color: #084786;
}


.why_choose_part {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.why_choose_item .why_choose_content h5 {
  color: #181818;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
}

.why_choose_item {
  background: white;
  border: 1px solid #ddddddab;
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s !important;
}

.serv_icon img {
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.serv_icon {
  width: 100%;
  margin-bottom: 10px;
}

.service-card .service-content h4 {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-card .service-content h4 span img {
  height: 25px;
}

.owl-carousel.services-carousel .owl-stage {
  margin-bottom: 20px;
}

.services-section .owl-carousel .owl-stage {
  display: flex;
}

.services-section .item,
.service-card {
  height: 100%;
}


/*  */





.why_choose_part .why_choose_item .why_choose_content>span {
  font-size: 50px;
  display: flex;
  line-height: 100%;
  text-align: center;
  margin-bottom: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -18px;
  gap: 6px;
}

.why_choose_part .why_choose_item {
  color: #114172;
  border-color: #114172;
  background: linear-gradient(to right, #d1e8ff, #f6f9ff);
}

.why_choose_part .why_choose_item .why_choose_content h3 {
  color: #114172;

}

/*
.why_choose_part .why_choose_item:nth-child(2) {
  color: #6a72d9;
  border-color: #6a72d9;
  background: linear-gradient(to right, #ede9ff, #faf9ff);
}

.why_choose_part .why_choose_item:nth-child(2) .why_choose_content h3 {
  color: #6a72d9;

}

.why_choose_part .why_choose_item:nth-child(3) {
  color: #54cc8b;
  border-color: #54cc8b;
  background: linear-gradient(to right, #e4fff9, #f5fffc);
}

.why_choose_part .why_choose_item:nth-child(3) .why_choose_content h3 {
  color: #54cc8b;

}

.why_choose_part .why_choose_item:nth-child(4) {
  color: #bf6385;
  border-color: #bf6385;
  background: linear-gradient(to right, #ffedf3, #fceff4);
}

.why_choose_part .why_choose_item:nth-child(4) .why_choose_content h3 {
  color: #bf6385;

}

.why_choose_part .why_choose_item:last-child {
  color: #3898c9;
  border-color: #3898c9;
  background: linear-gradient(to right, #e8f8ff, #f6fdff);
}

.why_choose_part .why_choose_item:last-child .why_choose_content h3 {
  color: #3898c9;

} */

/* =========================
   HOW IT WORKS SECTION
========================= */

.how-it-steps {
  padding: 50px 0;
  background: #fff;
}

.steps-wrapper {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 45%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #d8dce3;
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin-inline: auto;
}

.step-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 32px;
  background: #fff;
  border: 6px solid #eee;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.icon-orange {
  border-color: #fde1c8;
  color: #f36e26;
}

.icon-blue {
  border-color: #cfe0ff;
  color: #114172;
}

.icon-green {
  border-color: #c8efd8;
  color: #0fa958;
}

.icon-dark {
  border-color: #e3e6ea;
  color: #1b2330;
}

.step-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  margin-top: 15px;
}

.badge-orange {
  background: #f36e26;
}

.badge-blue {
  background: #114172;
}

.badge-green {
  background: #0fa958;
}

.badge-dark {
  background: #1b2330;
}

.step-item h5 {
  margin-top: 15px;
  font-weight: 600;
  font-size: 18px;
}

.step-item p {
  font-size: 13px;
  color: #777;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* mobile */
@media(max-width:768px) {


  .step-item {
    margin-bottom: 40px;
  }

  .steps-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 80%;
    background: #d8dce3;
    z-index: 0;
  }

  .simple_steps {
    background: #fff;
    margin-block: 10px;
  }

  .step-badge {
    margin-top: 0;
  }

}



/* =========================
   GOOGLE REVIEWS SECTION
========================= */

.google-reviews-section {
  padding: 80px 0;
  background: #114172;
}

.google-review-info .google-logo {
  width: 45px;
  margin-bottom: 0;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
}

.google-review-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.google-reviews-section h2 {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 15px;
}

.google-reviews-section p.dec {
  color: white;
  margin-bottom: 30px;
  max-width: 420px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-bottom: 10px; */
}

.stars i {
  font-size: 13px;
  color: #e0b411;
}

.stars {
  color: #fbbc04;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.review-count {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.google-btn {
  display: inline-flex;
  background: #fff;
  color: #113f6f;
  padding: 10px 25px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  align-items: center;
}

.google-btn:hover {
  background: #000;
  color: #fff;
}

/* Review Cards */
.review-card {
  background: #114e8d;
  border: 1px solid #4c69b4;
  border-radius: 15px;
  padding: 30px;
  min-height: 170px;
}

.review-card p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 67px;
}

.review-card span.user_set {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 0;
}

.review-card {
  position: relative;
  z-index: 0;
}

.review-card::before {
  position: absolute;
  content: url(../img/quoites.png);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 30px;
}

.review-card span {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

/* Owl Dots */
.owl-dots {
  text-align: center;
  margin-top: 12px;
}

.owl-dot span {
  width: 14px;
  height: 14px;
  background: #dddddd57;
  border-radius: 50%;
  display: block;
  margin: 0 5px;
}

.owl-dot.active span {
  background: #fa7317;
}

/* Responsive */
@media (max-width: 991px) {
  .google-review-info {
    text-align: center;
    margin-bottom: 40px;
  }

  .rating-row {
    justify-content: center;
  }

  .google-review-info h2 {
    font-size: 34px;
  }
}

/* =========================
   BRANCH LOCATOR SECTION
========================= */
.branch-locator-modern {
  padding: 90px 0;
  background: #f8f9fb;
}

.branch-small-title {
  color: #f36e26;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}

.branch-main-title {
  font-size: 38px;
  font-weight: 700;
  margin-top: 10px;
}

.branch-desc {
  color: #666;
  margin: 15px 0 30px;
}

.branch-cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.city-card {
  text-align: center;
}

.city-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 3px;
}

.city-card span {
  font-size: 14px;
  font-weight: 500;
}

.branch-btn-main {
  display: inline-block;
  background: #163a8f;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
}

.branch-map-card {
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid #f36e26;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-bottom {
  background: #f36e26;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  margin-top: auto;
}

.map-bottom h4 {
  margin: 0;
  font-size: 22px;
}

.map-bottom p {
  margin: 0;
  font-size: 14px;
}

.map-box {
  height: 100%;
}

.map-users {
  margin-left: auto;
  position: relative;
  left: 10px;
}

.map-users img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-left: -15px;
  border: 2px solid #fff;
}

.map-arrow {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #f36e26;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  position: relative;
}

.map-arrow::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
}

@media (max-width:768px) {

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

  .branch-main-title {
    font-size: 28px;
  }

  .map-box iframe {
    height: 250px;
  }

}

/* =========================
   franchise SECTION
========================= */
.franchise-section {
  overflow: hidden;
}

.franchise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.franchise-content {
  background: #243d8f;
  color: #fff;
  padding: 80px 70px;
  position: relative;
}

.franchise-tag {
  color: #f36e26;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.franchise-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.franchise-content p {
  font-size: 18px;
  color: #d6dcef;
  margin-bottom: 35px;
  max-width: 520px;
}

.franchise-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #243d8f;
  padding: 10px 30px;
  border-radius: 40px;
  font-weight: 400;
  text-decoration: none;
  transition: .3s;
  font-size: 14px;
}

.franchise-btn:hover {
  background: #f36e26;
  color: #fff;
}

.franchise-btn i {
  font-size: 26px;
  line-height: 100%;
}

.franchise-content {
  background: url('../img/franchise_map.jpg') right center no-repeat;
  background-size: cover;
}

/* =========================
   LATEST BLOGS SECTION
========================= */

.insights-section {
  padding: 60px 0 0;
}

.insights-title {
  font-size: 38px;
  font-weight: 700;
}

.insights-subtitle {
  color: #666;
  margin-top: 5px;
}

.btn-view-articles {
  border: 1px solid #abb7d3;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  background: #e7edfe;
  letter-spacing: .5px;
}

.insight-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  transition: .35s;
  height: 100%;
}

.insight-card img {
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}

.insight-content {
  padding: 15px 0;
}

.insight-category {
  color: #f36e26;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.insight-content h4 {
  margin: 12px 0;
  font-size: 20px;
  font-weight: 500;
  max-width: 350px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #000;
}

.insight-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.insight-meta {
  font-size: 13px;
  color: #888;
}

/* .insight-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.08);
} */


/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-section .container-fluid {
  background: linear-gradient(to top, #fff0, #f1f4fb);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  width: 100%;
  max-width: 96%;
  padding-block: 80px 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.faq-title {
  font-size: 38px;
  font-weight: 500;
  color: #292929;
  line-height: 1.2;
}

/* Accordion Styling */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 18px;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0px 0px 15px 1px #efefef5c; */
  border: 1px solid #e4eaf6;
}

.faq-section .accordion-header button {
  font-size: 18px;
}

.faq-accordion .accordion-button {
  font-size: 20px;
  font-weight: 400;
  color: #111827;
  padding: 20px 60px 20px 25px;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  position: relative;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 15px;
  color: #2d2d2d;
  padding: 20px 25px;
  padding-top: 0;
  /* line-height: 27px; */
}

/* Remove default arrow */
.faq-accordion .accordion-button::after {
  display: none;
}

/* Plus / Minus Icon */
.faq-accordion .accordion-button::before {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  /* background: #6b6b6b; */
  color: #113f6f;
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d0d4db;
}

.accordion-item.reveal.show .accordion-header button[aria-expanded="true"] {
  color: #062b82;
}

/* Open State */
.faq-accordion .accordion-button:not(.collapsed)::before {
  content: "–";
  color: #ff3b3b;
}

/* CTA Button */
.faq-cta-btn {
  display: inline-block;
  background: #ff3b3b;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 18px 45px;
  border-radius: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.faq-cta-btn:hover {
  background: #d93030;
  color: #fff;
}

.support-question-card {
  background: linear-gradient(180deg, #ffffff, #eef1f6);
  padding: 25px 30px;
  border-radius: 16px;
  border: 1px solid #e3e7ef;
  max-width: 500px;
}

.support-question-card h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #222;
}

.support-question-card p {
  color: #121212;
  margin-bottom: 20px;
  font-size: 15px;
}

.support-btn {
  display: inline-block;
  background: #f36e26;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  transition: .3s;
  font-size: 14px;
}

.support-btn:hover {
  background: #e4680f;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-title {
    margin-bottom: 40px;
    font-size: 34px;
    text-align: center;
  }
}

/* =========================
   FOOTER
========================= */
.gv-footer {
  background: url(../img/map-pattern-light.png) #040507;
  color: #fff;
  padding-top: 80px;
  background-repeat: no-repeat;
  background-position: center;
}

.footer_grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr 0.6fr;
}

.footer-about {
  padding-right: 40px;
}

.footer-logo {
  width: 240px;
  margin-bottom: -10px;
  position: relative;
  top: -45px;
}

.footer-about p {
  color: #fff;
  /* color:#d7e5f8; */
  font-size: 13px;
  line-height: 1.7;
}

.footer-about p a {
  color: #d7e5f8;
}

.footer-about p a:hover {
  color: #f36e26;
}

.footer-links h5 {
  color: #f36e26;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 18px;
}

.footer-links ul {
  padding: 0;
  list-style: none;
}

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

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: .3s;
}

.footer-links ul li a:hover {
  color: #f36e26;
}

/* .footer-social{
margin-top:20px;
} */
.links_title {
  color: #f36e26;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 15px;
}

.footer-countries .apps img {
  height: 50px;
  border: 1px solid #ffffff30;
}

.footer-social-set,
.footer-countries {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: #114172;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 5px;
  color: #fff;
  font-size: 12px;
}

.footer-middle {
  background: #0405071a;
  /* background: #040507; */
  padding: 25px 0;
  margin-top: 40px;
  border-block: 1px solid #ffffff21;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 30px;
}

.footer-middle-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-policies a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

.footer-policies a:hover {
  color: #f36e26;
}

.footer-countries button {
  background: #114172;
  border: none;
  color: #fff;
  padding: 6px 15px;
  border-radius: 6px;
  margin-left: 10px;
  font-size: 12px;
}

.footer-bottom {
  background: #000;
  padding: 25px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container.footer-bottom-inner p {
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
}

.footer-bottom span {
  color: #f36e26;
}


/*  */
.services-carousel .owl-nav button i {
  font-size: 16px;
}

/* sticky links */
.yh-sticky {
  position: fixed;
  right: 0px;
  top: 50%;
  z-index: 99;
  content-visibility: visible;
  transform: translateY(-50%);
}

.yh-sticky ul {
  display: flex;
  right: 0;
  gap: 0px;
  margin: 0;
  padding: 0;
  border: 1px solid #fff;
  border-top: none;
  flex-direction: column;
}

.yh-sticky ul li {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.yh-sticky ul li a {
  background: #114172;
  color: #fff;
  text-decoration: none;
  display: block;
  text-align: center;
  border-top: 1px solid #fff;
}

.yh-sticky ul li a img {
  width: 50px;
  object-fit: contain;
}

/* sticky links close */

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 5px 20px rgba(103, 110, 135, 0.12);
}

.how-card.reveal.show {
  transition: all 0.3s ease !important;
}

/* animation */
/* ================================
   Custom Reveal Animation
   ================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-left,
  .reveal-right {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/*  */
/* =========================================
   Garudavega Call Us Modal (Custom)
   ========================================= */

.gv-call-modal .modal-dialog {
  max-width: 480px;
}

.gv-call-modal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", sans-serif;
}

/* Header */
.gv-call-modal .modal-header {
  border-bottom: none;
  padding: 35px 35px 10px;
}

.gv-call-modal .modal-title {
  font-size: 22px;
  font-weight: 600;
  color: #0b2c5d;
  flex-grow: 1;
}

/* Body */
.gv-call-modal .modal-body {
  padding: 0px 35px 35px;
}

.gv-call-modal .modal-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Call box */
.gv-call-modal .call-box {
  background: #f4f8fd;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.gv-call-modal .call-box img {
  height: 30px;
}

.gv-call-modal .call-label {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

.gv-call-modal .call-number {
  font-size: 22px;
  font-weight: 600;
  color: #0b2c5d;
  text-decoration: none;
}

.gv-call-modal .call-number:hover {
  text-decoration: underline;
}

/* Footer */
.gv-call-modal .modal-footer {
  border-top: none;
  padding: 16px 28px 24px;
  gap: 12px;
}

/* Buttons */
.gv-call-modal .btn {
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
}

.gv-call-modal .call-now-btn {
  background-color: #f37021;
  /* Garudavega orange */
  border-color: #f37021;
}

.gv-call-modal .call-now-btn:hover {
  background-color: #d95f1c;
  border-color: #d95f1c;
}

.gv-call-modal.fade .modal-dialog {
  transform: translateY(20px);
  transition: transform 0.3s ease-out;
}

.gv-call-modal.show .modal-dialog {
  transform: translateY(0);
}

/*  */
header {
  position: relative;
  z-index: 999;
  transition: all .4s linear;
}

header.fixed_menu {
  position: fixed;
  top: -50px;
  transform: translateY(49px);
  width: 100%;
  transition: all .4s linear;
}

.main-navbar .navbar-nav .nav-item .nav-link.active::before,
.main-navbar .navbar-nav .nav-item .nav-link:hover::before {
  width: 90%;
  transition: all .3s linear;
}

.main-navbar .navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 3px;
  background-color: #ff6b35;
  left: 50%;
  top: 65%;
  transform: translate(-50%, 50%);
  border-radius: 20px;
  transition: all .3s linear;
}

.navbar .top-bar-button {
  display: none;
}

.why_choose_item.reveal.show:hover {
  box-shadow: 0 6px 8px rgba(190, 190, 190, 0.74);
  transform: translateY(-6px) !important;
}

/* --------------btn hover------------- */
.know-more-btn {
  z-index: 1;
  position: relative;
  transition: all 250ms;
  overflow: hidden;
  background-color: #114172;
  color: #fff;
}

.know-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #f36e26;
  z-index: -1;
  transition: all 250ms
}

.know-more-btn:hover {
  color: #e8e8e8;
}

.know-more-btn:hover::before {
  width: 100%;
}

.service-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.service-video img {
  width: 100%;
  display: block;
}


.service-video {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.service-video img {
  width: 100%;
  display: block;
  min-height: 270px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #ff0033;
  background: radial-gradient(circle at center,
      #fff 12%,
      #fff 0%,
      rgba(0, 0, 0, 0.6) 30%);


  /* background: rgba(0,0,0,0.6); */
  border-radius: 50%;
  padding: 8px 16px;
  height: 70px;
  width: 70px;
  object-fit: cover;
}

.Videos .services-carousel .item {
  padding: 15px 6px;
}

.Videos .owl-nav .owl-prev {
  left: -46px;
}

.Videos .owl-nav .owl-next {
  right: -46px;
}

.play-btn img {
  object-fit: cover;
}

.Videos {
  padding-bottom: 46px;
}

.review-card:hover {
  border: 1px solid #fff;
}

#myTab .nav-item:nth-child(1) .nav-link {
  border-left: 1px solid #c6c4c4;
  border-top-left-radius: 15px;
}

#myTab .nav-item:nth-child(3) .nav-link {
  border-top-right-radius: 15px;
}

header .navbar-expand-lg .navbar-collapse .navbar-nav.mx-auto {
  padding-right: 11px;
}

.sticky_img img {
  width: 110px;
  filter: brightness(100);
}

.sticky_img {
  position: fixed;
  top: 50%;
  right: -30px;
  transform: rotateZ(90deg) translateY(-50%);
  background: #114172;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid #ffffff30;
  z-index: 998;
}

.left_sticky_img img {
  height: 42.5px;
  filter: brightness(100);
  padding: 10px 15px;
}

.left_sticky_img {
  position: fixed;
  top: 50%;
  transform: rotateZ(90deg) translateY(-50%);
  left: -125px;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  gap: 3px;
  z-index: 998;
}

.left_sticky_img a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.left_sticky_img a:first-child img {
  padding-inline: 10px;
}

.left_sticky_img a:first-child {
  border: 1px solid #f36e26;
  background: #f36e26;
}

.left_sticky_img a:last-child {
  border: 1px solid #ffffff30;
  background: #114172;
}

.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #114172;
  color: #fff;
  font-size: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #ffffff30;
  transition: 0.3s;
  z-index: 999;
}

.chat-btn:hover {
  background: #0056b3;
  transform: scale(1.1);
}

/*  */

/* .inner_img_part {
  background:url(../img/about_banner.png) #114172;
  padding: 40px;
  border-radius: 30px;
} */
.inner_banner_part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.inner_img_part .section-title,
.inner_img_part>p {
  color: #fff;
}

.inner_banner_part .banner_content_part .banner_icon {
  position: absolute;
  bottom: 0px;
  right: 10px;
  max-height: 150px;
  z-index: -1;
}

.banner_sec .inner_banner_part .banner_content_part::after {
  bottom: 0px;
  width: 130%;
  left: -22%;
}

.common_sec p {
  font-size: 15px;
}

.common_sec {
  padding-block: 30px 50px;
  position: relative;
}

.about_immer_img {
  width: 100%;
  max-width: 620px;
  margin-right: auto;
  display: block;
  background-color: #00438a12;
  border-radius: 10px;
  max-height: 470px;
  object-fit: cover;
  padding: 15px;
}

.inner_title {
  font-size: 28px;
  margin-bottom: 15px;
}

.enqury_tab_set .tab-content>.tab-pane p {
  font-size: 15px;
}

.banner_sec .inner_banner_part .content {
  color: #3d4145;
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 20px;
}


/*volumetric  */
.volumetric-section {
  padding: 80px 0;
}

/* titles */
.vol-title {
  font-size: 28px;
  font-weight: 700;
}

.vol-sub {
  color: #666;
  margin-bottom: 20px;
}

/* box */
.vol-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e3e7ef;
}

.vol-box label {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  display: block;
}

.form-control {
  border-radius: 8px;
  height: 45px;
}

/* button */
.calc-btn {
  background: #114172;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
}

/* result */
.dim-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

.dim-result {
  background: #eef1f6;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
  /* letter-spacing: 1px; */
}

.empty-title {
  font-weight: 600;
  color: #334155;
  margin-bottom: 5px;
}

.empty-sub {
  font-size: 13px;
  color: #94a3b8;
}

.error-text {
  color: red !important;
}

/* cards */
.vol-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #114172;
}

.vol-card-header {
  background: #114172;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  text-align: center;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.vol-card-body img {
  border-radius: 12px;
}

.vol-card-body {
  padding: 0;
}

.vol-card-body img {
  width: 100%;
  display: block;
}

/* pricing */
.pricing-section {
  padding: 40px 0;
}

.price-title {
  font-size: 28px;
  font-weight: 700;
}

.price-desc {
  color: #111;
  margin: 5px 0 10px;
}

.price-link span {
  background: #f36e26;
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
}

/* form */
.price-form-box {
  background: #fff;
  padding: 80px;
  border-radius: 16px;
  border: 1px solid #e3e7ef;
}

.price-form-box label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.form-control {
  height: 45px;
  border-radius: 8px;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.price-btn {
  background: #114172;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

/* image */
.price-image-box {
  background: #f1ece8;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

/* table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

/* .table-responsive:has(.price-table) {
  border-radius: 10px;
  max-width: 1200px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
} */
.price-form-box .price-form-box label {
  color: #2b4260;
}

.price-form-box .input_set input::placeholder {
  color: #898989;
}

.price-form-box .input_set select.form-control {
  background: url("https://cdn-icons-png.flaticon.com/512/271/271210.png") no-repeat right 10px center;
  background-size: 12px;
  padding-right: 30px;
  /* space for icon */
}

.vol-box select.form-control {
  background: url("https://cdn-icons-png.flaticon.com/512/271/271210.png") no-repeat right 10px center;
  background-size: 12px;
  padding-right: 30px;
  /* space for icon */
  border: 1px solid #f1f4f8;
  background-color: #f1f4f8;
}

.price-form-box .form-control {
  height: 45px;
  border-radius: 5px;
}

.price-table thead {
  background: #114172;
  color: #fff;
}

.price-table th,
.price-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.price-table tbody tr:hover {
  background: #f9f9f9;
}

/* notes */
.price-notes {
  margin-top: 20px;
  padding-left: 18px;
  color: #666;
}

ul.list_style li::after {
  content: "";
  position: absolute;
  background: url(../img/serv_icon1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 17px;
  height: 17px;
  left: 0;
  top: 4px;
}

ul.list_style li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

ul.list_style {
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
}

.price-image-box img {
  max-height: 400px;
}

/*  */

.vol-box {
  padding: 50px;
}


.track-ui {
  padding: 40px 0 80px;
}

/* LEFT CARD */
.track-left {
  background: linear-gradient(#f0f8ff00, #f1f4fb);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top-left-radius: 73px;
  border-top-right-radius: 73px;
  border: 1px solid #d7dff1;
  border-top: none;
  position: sticky;
  top: 135px;
}

.track-left p {
  font-size: 14px;
  margin-bottom: 10px;
}

.track-top {
  background: linear-gradient(135deg, #1e75cccc, #114172);
  color: #fff;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-radius: 100px;
}

.track-top.track-delay {
  background: linear-gradient(135deg, #f36e269c, #f36e26);
}

.track-top.track-delivered {
  background: linear-gradient(135deg, #17b4125e, #17b412);
}

.check-circle img {
  max-width: 100px;
  width: 100%;
}

.track-top h4 {
  margin: 0;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}


.track-id {
  display: inline-block;
  background: #fff;
  color: #f36e26;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
}

.track-content {
  padding: 35px;
}

.color_2 {
  color: #114172;
}

.info-block {
  border-left: 4px solid #f36e26;
  padding-left: 12px;
  margin-top: 15px;
}

.info-block>h6 {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
}

.qr-section {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.qr-section div {
  text-align: center;
}

.qr-section>div {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  /* padding-bottom: 5px; */
  max-width: 170px;
}

.qr-section>div>img {
  width: 100%;
  padding-bottom: 10px;
  max-width: 100px;
}

/* RIGHT CARD */
.track-right {
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: linear-gradient(#f0f8ff00, #f1f4fb);
  border: 1px solid #d7dff1;
  position: relative;
}

.time-content h5 {
  color: #f36e26;
  padding-top: 5px;
  font-size: 18px;
  margin-bottom: 15px;
}

/* TIMELINE */
.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: 20px;
  top: 0;
  background: #56678f;
}



.time-block {
  position: relative;
  margin-bottom: 30px;
}

.time-dot img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.time-dot {
  width: 40px;
  height: 40px;
  /* border: 1px solid #2ecc71; */
  border-radius: 50%;
  position: absolute;
  left: -1px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.time-dot.yellow {
  border-color: #f1c40f;
}

.time-dot.red {
  border-color: #e74c3c;
}

.time-content::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 10px;
  left: 18px;
  top: 40px;
  background: linear-gradient(#fafcff 50%, #56678f 50%);
}

.time-content::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 10px;
  left: 18px;
  bottom: -30px;
  background: linear-gradient(to top, #f1f4fb 50%, #56678f 50%);
}

.timeline .time-block:nth-last-child(2) .time-content::after {
  bottom: 10px;
}

.time-content {
  padding-left: 50px;
  margin-top: 15px;
  position: relative;
}

.time-content>h6 {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
}

.time-content span {
  font-size: 13px;
  color: #999;
}

.time-content ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.time-content ul li {
  font-size: 14px;
  margin-bottom: 6px;
  border-width: 3px;

}

.time-dot.red {
  background: transparent;
  position: absolute;
  top: -35px;
}

.time-dot.red img {
  width: 50px;
  height: 50px;
}


/*  */

.location_search .feildset {
  border: 1px solid #cfd7e0;
  display: inline-flex;
  padding: 5px;
  border-radius: 5px;
  max-width: 400px;
}

.location_search .feildset>input {
  border: none;
  font-size: 15px;
  padding: 7px;
  width: 100%;
}

.location_search .feildset>input.search_btn {
  background: #fa7317;
  color: #fff;
  padding: 8px 20px;
  font-size: 15px;
  border-radius: 5px;
  max-width: 150px;
}

.branch-exact {
  padding: 60px 0;
  /* background:#f4f6fb; */
}

/* HEAD */
.head-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.head-card,
.office-card,
.grid-3 {
  background: linear-gradient(#f1f4fb, #fff);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #dfe3ed;
}

.head-left .left_part {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.head-left .left_part>div {
  width: 100%;
}

.tag {
  background: #1f3c88;
  color: #fff;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  left: -30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.head-right .garudavega_map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* info */
.info {
  font-size: 15px;
  color: #0c0c0c;
  list-style: none;
  padding-left: 0;
}

/* .info li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 13px;
} */
.head-left .left_part>div:first-child {
  padding-right: 80px;
}

.info li i {
  color: #062b82;
  font-size: 20px;
  position: relative;
  top: -3px;
}

.info li .bi-clock,
.info li .bi-x-lg {

  font-size: 14px;
  position: relative;
  top: -0px;
}

.head-left .left_part>div.head-middle ul {
  padding: 0;
  list-style: none;
}

.head-left .left_part>div.head-middle ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 50%;
  background-color: #fa7317;
  border-radius: 50%;
  transform: translateY(-50%);
}

.head-left .left_part>div.head-middle ul li {
  font-size: 14px;
  margin-bottom: 7px;
  position: relative;
  padding-left: 15px;
}

.head-left .left_part>div.head-middle h6 {
  font-size: 20px;
  color: #1b1b1b;
}

.scanme_img {
  height: 75px;
}

/* buttons */


.btn_inner.blue {
  background: #114172;
  color: #fff;
  border: none;
}

.btn_inner.orange {
  background: #f36e26;
  color: #fff;
  border: none;
}

/* .btn_inner.light{ background:#eef1f6; } */

.head-left .btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn_inner i {
  font-size: 22px;
  line-height: 0;
  display: inline-block;
}

.btn_inner {
  padding: 7px 25px;
  font-size: 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  color: #114172;
  background: transparent;
  border: 1px solid;
}

.office-card .qr {
  position: absolute;
  right: 50px;
  bottom: 130px;
}

/* divider */
.section-divider {
  text-align: center;
  margin: 30px 0 15px;
  position: relative;
}

.section-divider span {
  padding: 0 35px;
  color: #fa7317;
  font-weight: 600;
  font-size: 24px;
  position: relative;
}

.section-divider span::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 28px;
  height: 28px;
  background: url(../img/wing.png);
  z-index: -1;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.section-divider span::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 28px;
  height: 28px;
  background: url(../img/wing.png);
  z-index: -1;
  transform: rotateY(180deg) translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.location_search_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.location_search_header .btn-account {
  padding-block: 7px;
  padding-inline: 15px;
}

input[type="radio"] {
  accent-color: #fa7317;
}

.location_search_header .btn-account.dropdown-toggle::after {
  margin-left: 2.255em;
  transform: rotate(45deg) translateY(-4px) translateX(1px);
}

/* grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-3>div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px 20px;
}

/* office card */
.office-card {
  position: relative;
}

.card-content {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.info li a {
  color: #fa7317;
}

.qr img {
  height: 60px;
}

.grid-3 {
  margin-bottom: 20px;
}

/* mini cards */
.mini-card {
  padding: 0 15px;
  border-left: 3px solid #f36e26;
}

.mini-card .info li {
  margin-bottom: 5px;
}

.mini-card .info {
  margin-bottom: 10px;
}

/* responsive */
@media(max-width:992px) {

  .head-card {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

}


.banner_sec.inner .banner_title,
.banner_sec.inner .inner_banner_part .content {
  color: #fff;
}

.badze {
  display: inline-block;
  color: #fff;
  background: #f36e26;
  padding: 4px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: .5px;
}

.inner_img_part {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #fff;
}

.inner_img_part>div span {
  font-weight: 600;
  display: block;
  font-size: 32px;
  color: #fff;
}

.inner_img_part>div {
  font-size: 16px;
  padding: 30px;
  background: #114172;
  border: 1px solid #ffffff4d;
  min-width: 160px;
  text-align: center;
  border-radius: 5px;
  color: #ffffff91;
}

.inner_title.icon_adding img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: 1px solid #0003;
  padding: 4px;
  border-radius: 5px;
}

.inner_title.icon_adding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.heightlet_points p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
}

.heightlet_points img {
  height: 23px;
}

.heightlet_points {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 25px;
}

/* =========================
   FOUNDATION OF EXCELLENCE
========================= */

.excellence-section {
  padding: 70px 0;
  background: #f5f7fb;
}

.excellence-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0b2c5d;
}

.excellence-header p {
  color: #6c757d;
  max-width: 690px;
  margin: 10px auto 20px;
  font-size: 16px;
}

/* Card */
.excellence-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: left;
  transition: 0.3s ease;
  height: 100%;
  border: 1px solid #eef1f6;
}

.excellence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Icon */
.icon-box {
  width: 55px;
  height: 55px;
  background: #0b2c5d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  color: #fff;
  font-size: 22px;
}

/* Text */
.excellence-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b2c5d;
}

.excellence-card p {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.6;
}

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

/*  */
/* =========================
   ADVANCED TIMELINE (EXACT UI)
========================= */

.timeline-advanced {
  padding: 70px 0;
  background: #fff;
}

.timeline-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0b2c5d;
}

.timeline-header p {
  color: #6c757d;
  margin-top: 10px;
  margin-bottom: 80px;
}

/* Wrapper */
.timeline-wrapper {
  position: relative;
}

/* Center line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #d9dee7;
  transform: translateX(-50%);
}

/* Row */
.timeline-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-wrapper>div:last-child {
  margin-bottom: 0;
}

/* Reverse layout */
.timeline-row.reverse {
  direction: rtl;
}

.timeline-row.reverse .timeline-content,
.timeline-row.reverse .timeline-year {
  direction: ltr;
}

/* Year */
.timeline-year {
  font-size: 48px;
  font-weight: 700;
  color: #d0d6df;
  text-align: right;
}

/* Sticky effect */
.timeline-year.sticky {
  position: sticky;
  top: 120px;
}

/* Dot */
.timeline-dot {
  width: 25px;
  height: 25px;
  background: #114172;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 4px solid #b4c3d4;
}

/* Orange first dot */
.timeline-dot.orange {
  background: #f36e26;
  border-color: #fce3d6;
}

/* Content */
.timeline-content {
  padding-left: 20px;
}

.timeline-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c5d;
}

.timeline-content p {
  font-size: 15px;
  color: #6c757d;
  margin-top: 8px;
  line-height: 1.6;
  max-width: 400px;
}

.timeline-row.reverse .timeline-year.sticky {
  text-align: left;
}

.timeline-row.reverse .timeline-content p {
  margin-left: auto;
}

.timeline-row.reverse .timeline-content {
  text-align: end;
}

/* =========================
   MOBILE
========================= */


@media (max-width: 768px) {

  .timeline-line {
    left: 20px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    padding-left: 40px;
  }

  .timeline-dot {
    position: absolute;
    left: 7px;
    top: 25px;
  }

  .timeline-row.reverse .timeline-content {
    text-align: start;
  }

  .timeline-row.reverse .timeline-content p {
    margin-left: 0;
  }

  .timeline-year {
    text-align: left;
    /* display: none; */
  }

  .timeline-dot {
    margin-left: 0;
  }

  .timeline-content {
    padding-left: 10px;
    position: relative;
    z-index: 0;
    background: #ffffffa1;
  }
}

@media (max-width: 450px) {
  .timeline-row {
    margin-bottom: 0px;
  }
}

/* =========================
   GARUDAVEGA EDGE SECTION
========================= */

.edge-section {
  background: #062b52;
  padding: 90px 0;
  color: #fff;
}

/* LEFT CONTENT */
.edge-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.edge-desc {
  font-size: 17px;
  color: #9bb7da;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 520px;
}

/* LIST */
.edge-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.edge-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* ICON */
.edge-item .icon {
  width: 46px;
  height: 42px;
  border: 1px solid #f36e26;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  top: 5px;
}

.edge-item .icon i {
  color: #f36e26;
  font-size: 26px;
}

/* TEXT */
.edge-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.edge-item p {
  font-size: 15px;
  color: #9bb7da;
  line-height: 1.6;
  margin: 0;
}

/* RIGHT IMAGE */
.edge-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.edge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Optional dark overlay like screenshot */
.edge-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 43, 82, 0.2), rgba(6, 43, 82, 0.6));
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .edge-content {
    margin-bottom: 40px;
  }

  .edge-content h2 {
    font-size: 32px;
  }

  .edge-desc {
    font-size: 15px;
  }

  .edge-item h5 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {

  .edge-section {
    padding: 60px 0;
  }

  .edge-content h2 {
    font-size: 26px;
  }

  .edge-item {
    gap: 12px;
  }

  .edge-item .icon {
    width: 28px;
    height: 28px;
  }

  .edge-item h5 {
    font-size: 16px;
  }

  .edge-item p {
    font-size: 14px;
  }
}

/* =========================
   TEAM SECTION
========================= */

.team-section {
  padding: 80px 0;
  background: #f5f7fb;
}

/* Header */
.team-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0b2c5d;
}

.team-header p {
  color: #6c757d;
  max-width: 600px;
  margin: 10px auto 50px;
  font-size: 16px;
}

/* Card */
.team-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #eef1f6;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Image */
.team-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  object-position: top;
}

/* Content */
.team-info {
  padding: 20px;
}

.team-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 5px;
}

.team-info span {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

/* LinkedIn */
.team-info .linkedin {
  font-size: 14px;
  color: #0b2c5d;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.team-info .linkedin i {
  font-size: 14px;
}

.team-info .linkedin:hover {
  color: #f36e26;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .team-img img {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 0;
  }

  .team-header h2 {
    font-size: 28px;
  }

  .team-info h4 {
    font-size: 18px;
  }
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
  position: relative;
  padding: 70px 20px;
  background: #eef2f6;
  border-radius: 30px;
  overflow: hidden;
}

/* Decorative shapes */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.05);
}

/* Top right shape */
.cta-section::before {
  width: 160px;
  height: 120px;
  top: 0;
  right: 0;
}

/* Bottom left shape */
.cta-section::after {
  width: 180px;
  height: 140px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);
}

/* Heading */
.cta-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0b2c5d;
}

/* Description */
.cta-desc {
  font-size: 18px;
  color: #5f6f82;
  max-width: 600px;
  margin: 15px auto 40px;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.btn-primary-custom {
  background: #114172;
  color: #fff;
  padding: 10px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #fff;
  color: #114172;
  transform: translateY(-2px);
}

/* Secondary */
.btn-secondary-custom {
  background: #ffffff;
  color: #114172;
  padding: 10px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #dfe5ec;
  transition: 0.3s;
}

.btn-secondary-custom:hover {
  background: #114172;
  color: #fff;
}

/* Features */
.cta-features {
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #333f4a;
  text-transform: uppercase;
  font-weight: 400;
}

.cta-features span::after {
  content: "•";
  margin-left: 25px;
}

.cta-features span:last-child::after {
  display: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-desc {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-features {
    flex-direction: column;
    gap: 10px;
    letter-spacing: 1px;
  }

  .cta-features span::after {
    display: none;
  }
}


/* =========================
   CONTACT SECTION
========================= */

.inner-banner-section {
  padding: 40px 0 0;
}

/* LEFT */
.banner_inner_content h1,
.banner_inner_content h2 {
  font-size: 44px;
  font-weight: 600;
  color: #114172;
  /* your main blue */
  margin-bottom: 15px;
  max-width: 630px;
}

.banner_inner_content h1 span,
.banner_inner_content h2 span {
  color: #f97126;
}

.contact-desc {
  font-size: 18px;
  color: #5f6f82;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 30px;
}

/* Buttons */
.contact-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Primary Button */
.btn-primary-main {
  background: #114172;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}

.btn-primary-main:hover {
  background: #0b2c5d;
  color: #fff;
}

/* Link button */
.btn-link-main {
  color: #114172;
  font-weight: 500;
  text-decoration: none;
}

.btn-link-main:hover {
  color: #f36e26;
}

/* RIGHT IMAGE */
.banner_side_img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.banner_side_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  max-height: 350px;
}

.inner_img_part {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .banner_inner_content {
    margin-bottom: 40px;
  }

  .banner_inner_content h1 {
    font-size: 32px;
  }

  .contact-desc {
    font-size: 15px;
  }
}

@media (max-width: 576px) {

  .inner-banner-section {
    padding: 60px 0;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.common_sec.inner_page_sec {
  padding-block: 70px;
  position: relative;
}

/*  */
/* =========================
   CONTACT FORM SECTION
========================= */

.contact-form-section {
  padding: 40px 0 0;
  position: relative;
}

/* LEFT BOXES */
.contact-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #eef1f6;
}

.contact-box h5 {
  font-size: 22px;
  font-weight: 600;
  color: #114172;
}

.contact-box p {
  font-size: 16px;
  margin: 2px 0;
}

.contact-box span {
  font-size: 14px;
  color: #6c757d;
  text-transform: uppercase;
}

/* ICON */
.contact-box .icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  min-width: 45px;
}

.icon.blue {
  background: #114172;
}

.icon.orange {
  background: #f36e26;
}

/* RIGHT FORM */
.form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eef1f6;
}

.form-card h3 {
  font-size: 40px;
  font-weight: 600;
  color: #114172;
  margin-bottom: 20px;
}

/* Inputs */
.form-card label {
  font-size: 14px;
  color: #6c757d;
  /* text-transform: uppercase; */
  margin-bottom: 5px;
  display: block;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: #f1f4f8;
  font-size: 14px;
  border: 1px solid transparent;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: #11417247;
  /* background: #fff; */
}

.text-red {
  color: #ef486a;
}

/* Button */
.btn-submit {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #114172;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #0b2c5d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .contact-box {
    flex-direction: row;
  }

  .form-card {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {

  .contact-form-section {
    padding: 60px 0;
  }

  .form-card {
    padding: 20px;
  }
}

/* =========================
   PRICING BANNER
========================= */

.pricing-banner {
  padding: 40px 0 0;
}

/* LEFT */
.banner-content h1 {
  font-size: 40px;
  font-weight: 600;
  color: #114172;
}

.banner-content h1 span {
  color: #f36e26;
}

.banner-content p {
  color: #6c757d;
  margin-top: 15px;
  font-size: 18px;
}


/* =========================
   BANNER FORM IMPROVED
========================= */

.pricing-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e6ebf2;
}

/* Group */
.form-group {
  margin-bottom: 5px;
}

/* Label */
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Input */
.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dfe5ec;
  font-size: 16px;
  transition: 0.3s;
  background: #f9fbff;
}

/* Focus effect */
.form-group input:focus {
  outline: none;
  border-color: #114172;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(17, 65, 114, 0.08);
}

/* Button */
.btn-check.orenge {
  background: #f36e26;
}

.btn-check {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  background: #114172;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
  position: relative;
  pointer-events: unset;
}

.btn-check.orenge:hover {
  background: #114172;
}

.btn-check:hover {
  background: #f36e26;
  transform: translateY(-1px);
}

/* FORM */
.pricing-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e6ebf2;
}

.pricing-form h5 {
  margin-bottom: 15px;
  color: #114172;
  font-size: 22px;
}

.pricing-form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.pricing-form button {
  width: 100%;
  padding: 12px;
  background: #114172;
  color: #fff;
  border: none;
  border-radius: 6px;
}

/* ESTIMATE BOX (HIDDEN INITIALLY) */
.estimate-box {
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  display: none;
  /* IMPORTANT */
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e6ebf2;
}

/* LEFT */
.estimate-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.estimate-left .label {
  font-size: 12px;
  color: #6c757d;
}

.estimate-left h3 {
  color: #114172;
  margin: 0;
}

/* BUTTON */
.book-btn {
  background: #114172;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}


/* =========================
   COURIER CHARGES TABLE
========================= */

.courier-charges-section {
  padding: 40px 0;
}

/* Heading */
.courier-charges-section .section-title {
  font-size: 40px;
  font-weight: 600;
  color: #114172;
  text-align: center;
}

.courier-charges-section .section-subtitle {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 25px;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

/* Table */
.table-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6ebf2;
}

/* Header */
.charges-table thead {
  background: #114172;
}

.charges-table th {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 14px;
  text-align: left;
}

/* Body */
.charges-table td {
  padding: 14px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #eef1f6;
}

/* Hover */
.charges-table tbody tr:hover {
  background: #f9fbff;
}

/* Flag */
.flag {
  margin-right: 8px;
}

/* Transit Time */
.time {
  font-weight: 500;
}

.time.fast {
  color: #f36e26;
}

.time.medium {
  color: #ff9800;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .charges-table th,
  .charges-table td {
    padding: 10px;
    font-size: 12px;
  }

  .courier-charges-section .section-title {
    font-size: 20px;
  }

}


/* =========================
   WHAT AFFECTS SECTION
========================= */

.affects-section {
  padding: 40px 0;
  background: #f5f7fb;
}

/* Title */
.affects-section .section-title {
  font-size: 40px;
  font-weight: 600;
  color: #114172;
  margin-bottom: 40px;
}

/* Card */
.affect-card {
  background: transparent;
  text-align: center;
  padding: 10px;
}

/* Icon */
.affect-card .icon-box {
  width: 70px;
  height: 70px;
  background: #e9eef5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: 0.3s;
}

.affect-card .icon-box i {
  font-size: 30px;
  color: #114172;
}

/* Hover */
.affect-card:hover .icon-box {
  background: #114172;
}

.affect-card:hover .icon-box i {
  color: #fff;
}

/* Text */
.affect-card h6 {
  font-size: 20px;
  font-weight: 600;
  color: #114172;
}

.affect-card p {
  font-size: 16px;
  color: #6c757d;
  margin-top: 5px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .affects-section .section-title {
    font-size: 20px;
  }

  .affect-card .icon-box {
    width: 45px;
    height: 45px;
  }

  .affect-card h6 {
    font-size: 14px;
  }

  .affect-card p {
    font-size: 12px;
  }

}


/* =========================
   PRECISION SECTION
========================= */

.precision-section {
  background: #062b52;
  padding: 80px 0;
  color: #fff;
}

/* LEFT */
.precision-content h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* LIST */
.precision-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.precision-item {
  display: flex;
  gap: 15px;
}

/* ICON */
.precision-item .check {
  width: 46px;
  height: 42px;
  border: 1px solid #f36e26;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  top: 5px;
}

.precision-item .check i {
  color: #f36e26;
}

/* TEXT */
.precision-item h5 {
  font-size: 20px;
  margin-bottom: 5px;
}

.precision-item p {
  font-size: 16px;
  color: #c9d6e5;
}

/* IMAGE */
.precision-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.precision-image img {
  width: 100%;
  border-radius: 16px;
}

/* STAT BOX */
.precision-stat {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #f36e26;
  padding: 15px 20px;
  border-radius: 10px;
  color: #000;
}

.precision-stat h4 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.precision-stat p {
  font-size: 12px;
  margin: 0;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .precision-content {
    margin-bottom: 40px;
  }

  .precision-content h2 {
    font-size: 28px;
  }

}


/* =========================
   EMPTY COLOR SECTION
========================= */

.top-fill-section {
  height: 180px;
  /* adjust based on design */
  background: #f36e26;
  /* your main theme color */
}


/* =========================
   GLOBAL CORRIDORS
========================= */

.corridors-section {
  padding: 70px 0 0;
}

/* Header */




.view-all {
  font-size: 16px;
  color: #114172;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid;
  padding: 9px 20px;
  border-radius: 5px;
}

.view-all:hover {
  color: #f36e26;
}

/* Card */
.corridor-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  text-align: left;
  border: 1px solid #e6ebf2;
  transition: 0.3s;
}

/* Hover */
.corridor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Icon */
.corridor-card .icon {
  width: 55px;
  height: 55px;
  background: #eef2f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.corridor-card .icon i {
  color: #114172;
  font-size: 24px;
}

/* Text */
.corridor-card h6 {
  font-size: 24px;
  font-weight: 600;
  color: #114172;
  margin-bottom: 3px;
}

.corridor-card p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .corridors-section .section-title {
    font-size: 20px;
  }

  .corridor-card {
    padding: 15px;
  }

}


.Blog-section {
  padding-block: 40px;
}

.Blog-section .insight-card {
  margin-bottom: 10px;
}


/*  */
/* Blog details */
/*  */
.blog-detail-page {
  padding-block: 40px;
}

/* ---------- Inner Banner ---------- */
.blog-inner-banner {
  background: linear-gradient(135deg, #001f3e 0%, #114172 60%, #0b2c5d 100%);
  padding: 50px 0 40px;
  position: relative;
  overflow: hidden;
}

.blog-inner-banner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(243, 110, 38, 0.08);
  top: -80px;
  right: -60px;
}

.blog-inner-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -60px;
  left: 5%;
}

.blog-inner-banner .breadcrumb-wrap {
  position: relative;
  z-index: 1;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.blog-breadcrumb li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.blog-breadcrumb li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color .2s;
}

.blog-breadcrumb li a:hover {
  color: #f36e26;
}

.blog-breadcrumb li.active {
  color: rgba(255, 255, 255, 0.45);
}

.blog-breadcrumb li+li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.3);
}

.blog-inner-banner h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 20px;
}

.blog-meta-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-meta-banner .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.blog-meta-banner .meta-item i {
  color: #f36e26;
  font-size: 14px;
}

.blog-cat-badge {
  background: #f36e26;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Main layout ---------- */
.blog-detail-layout {
  padding-top: 40px;
}

/* ---------- Article column ---------- */
.blog-article-col {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(17, 65, 114, 0.07);
}

.blog-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.blog-article-body {
  padding: 36px 40px 40px;
}

/* Share row */
.blog-share-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef1f6;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-share-row .share-label {
  font-size: 13px;
  color: #7a7a7a;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.share-icons {
  display: flex;
  gap: 8px;
}

.share-icons a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: .3s;
}

.share-icons a.fb {
  background: #1877F2;
}

.share-icons a.tw {
  background: #1DA1F2;
}

.share-icons a.li {
  background: #0A66C2;
}

.share-icons a.tb {
  background: #35465C;
}

.share-icons a.pin {
  background: #E60023;
}

.share-icons a:hover {
  transform: translateY(-2px);
  opacity: .88;
}

/* Article typography */
.blog-article-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.blog-article-body h2,
.blog-article-body h3 {
  font-weight: 600;
  color: #0b2c5d;
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-article-body h2 {
  font-size: 22px;
}

.blog-article-body h3 {
  font-size: 18px;
}

.blog-article-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 18px;
}

.blog-article-body ul li {
  font-size: 15px;
  color: #444;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 300;
  line-height: 1.7;
}

.blog-article-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #f36e26;
  border-radius: 2px;
}

/* Highlight / pullquote block */
.blog-highlight {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fd 100%);
  border-left: 4px solid #114172;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.blog-highlight p {
  margin: 0;
  font-size: 15px;
  color: #114172;
  font-weight: 500 !important;
  font-style: italic;
  line-height: 1.7;
}

/* Tags row */
.blog-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eef1f6;
}

.blog-tags-row .tag-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.blog-tag {
  background: #f0f4fa;
  color: #114172;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 400;
  transition: .2s;
  border: 1px solid #dce5f0;
}

.blog-tag:hover {
  background: #114172;
  color: #fff;
  border-color: #114172;
}

/* Author box */
.author-box {
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  border: 1px solid #dce5f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 36px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #114172;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: #fff;
  font-weight: 600;
}

.author-info h5 {
  font-size: 17px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 4px;
}

.author-info .author-role {
  font-size: 12px;
  color: #f36e26;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.author-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Prev / Next post nav */
.post-nav {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.post-nav-item {
  flex: 1;
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  transition: .3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-nav-item:hover {
  border-color: #114172;
  background: #f0f5ff;
}

.post-nav-item .nav-dir {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f36e26;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-nav-item .nav-title {
  font-size: 14px;
  font-weight: 500;
  color: #0b2c5d;
  line-height: 1.4;
}

.post-nav-item.next {
  text-align: right;
}

/* ---------- Sidebar ---------- */
.blog-sidebar {
  position: sticky;
  top: 20px;
}

/* Sidebar widget shared */
.sidebar-widget {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(17, 65, 114, 0.06);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 16px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f36e26;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget-title i {
  color: #f36e26;
}

/* Search widget */
.sidebar-search {
  display: flex;
  gap: 0;
}

.sidebar-search input {
  flex: 1;
  border: 1px solid #dce5f0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.sidebar-search button {
  background: #114172;
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  cursor: pointer;
  transition: .3s;
}

.sidebar-search button:hover {
  background: #f36e26;
}

/* Recent posts */
.recent-post-item {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f0f2f7;
  text-decoration: none;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.recent-post-thumb {
  width: 68px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5eaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #114172;
  font-size: 22px;
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-post-info span {
  font-size: 11px;
  color: #f36e26;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.recent-post-info p {
  font-size: 13px;
  color: #222;
  font-weight: 500;
  margin: 3px 0 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Categories widget */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0f2f7;
  font-size: 14px;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list li a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}

.category-list li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #f36e26;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0;
}

.category-list li a:hover {
  color: #114172;
}

.category-list li .cat-count {
  background: #f0f4fa;
  color: #114172;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
}

/* Tags cloud widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  background: #f0f4fa;
  color: #114172;
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 400;
  transition: .2s;
  border: 1px solid #dce5f0;
}

.tag-cloud a:hover {
  background: #114172;
  color: #fff;
  border-color: #114172;
}

/* Archive widget */
.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f2f7;
  font-size: 14px;
}

.archive-list li:last-child {
  border-bottom: none;
}

.archive-list li a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}

.archive-list li a i {
  color: #f36e26;
  font-size: 12px;
}

.archive-list li a:hover {
  color: #114172;
}

/* ---- "You May Also Like" ---- */
.blog-related-section {
  padding: 50px 0 0;
}

.blog-related-section .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.blog-related-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0b2c5d;
}

.blog-related-section h2 span {
  color: #f36e26;
}

/* Related card */
.related-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef1f6;
  height: 100%;
  transition: .3s;
  text-decoration: none;
  display: block;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(17, 65, 114, 0.10);
  border-color: #dce5f0;
}

.related-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #dce5f0;
}

.related-card-body {
  padding: 16px 18px 20px;
}

.related-card-body .rc-date {
  font-size: 11px;
  color: #f36e26;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.related-card-body h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0b2c5d;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 991px) {
  .blog-inner-banner h1 {
    font-size: 26px;
  }

  .blog-article-body {
    padding: 24px 20px 28px;
  }

  .blog-hero-img {
    height: 240px;
  }

  .author-box {
    flex-direction: column;
  }

  .post-nav {
    flex-direction: column;
  }

  .post-nav-item.next {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .blog-inner-banner {
    padding: 36px 0 28px;
  }

  .blog-inner-banner h1 {
    font-size: 22px;
  }

  .blog-share-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*  */
/*  */
/*  */

.prohibited-section {
  padding: 40px 0;
}

.prohibited-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.prohibited-section .sec-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2c5d;
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
}

.prohibited-title-bar {
  width: 56px;
  height: 3px;
  background: #114172;
  border-radius: 0;
  margin-bottom: 28px;
}

.prohibited-subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #114172;
  background: #e6f1fb;
  border-left: 3px solid #114172;
  padding: 10px 18px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
  font-family: 'Poppins', sans-serif;
}

.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.prohibited-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e5eaf4;
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}

.prohibited-item:hover {
  border-color: #114172;
  box-shadow: 0 4px 16px rgba(17, 65, 114, 0.08);
}

.prohibited-icon-box {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
}

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


.prohibited-item-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.prohibited-item-label {
  font-size: 18px;
  font-weight: 600;
  color: #114172;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}

.prohibited-item-text {
  font-size: 13px;
  color: #333;
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 576px) {
  .prohibited-grid {
    grid-template-columns: 1fr;
  }

  .prohibited-section .sec-title {
    font-size: 24px;
  }
}



/* Wrapper */
.tools-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0 60px;
  border-top: 1px solid #00000017;
  max-width: 1300px;
  margin-inline: auto;
}

/* Card */
.tool {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid #00000021;
}

/* Icon */
.tool i {
  width: 28px;
  height: 28px;
  font-size: 20px;
  transition: all 0.3s ease;
}

/* Text */
.tool span {
  font-size: 18px;
  color: #555;
  transition: color 0.3s ease;
}

/* Hover Effect */
.tool:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Hover Icon Animation */
.tool:hover i {
  transform: rotate(8deg) scale(1.1);
}

/* Active State */
.tool:hover {
  background: #114172;
  box-shadow: 0 10px 25px rgba(17, 65, 114, 0.4);
}

.tool:hover span {
  color: #fff;
}

.tool:hover i {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {

  .tools-wrapper {
    gap: 10px;
  }

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

/*  */
/* Layout */
.state {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* Card */
.state__box {
  width: 100%;
  max-width: 720px;
  padding: 40px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-align: center;
}

/* Top status */
.state__top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef4fa;
  color: #114172;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* Animated dot */
.state__dot {
  width: 9px;
  height: 9px;
  background: #114172;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

/* Title */
.state__title {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

/* Description */
.state__desc {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Progress line */
.state__progress {
  width: 100%;
  height: 3px;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.state__progress::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 30%;
  background: #114172;
  animation: move 1.5s infinite;
}

/* Animations */
@keyframes move {
  0% {
    left: -30%;
  }

  100% {
    left: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .tools-wrapper {
    padding: 30px 15px;
    display: block;
    margin: 0;
  }

  .tool {
    justify-content: flex-start;
    padding: 10px 20px;
    margin-block: 10px;
  }

  .tool span {
    font-size: 16px;
    font-weight: 400;
  }

  .state__box {
    padding: 25px;
  }

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



.banner_side_img.title_only img {
  max-height: 250px;
  object-position: top;
}


.track-empty-state h4,
.track-error-box h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.track-empty-state p,
.track-error-box p {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 340px;
}

.state-hint {
  font-size: 12px;
  font-weight: 500;
  margin-top: 14px;
}

.track-page-wrap {
  overflow: hidden;
}

.track-hero {
  background: linear-gradient(135deg, #0f2a5e 0%, #1a3a7a 60%, #1e4499 100%);
  padding: 40px 48px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.track-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.track-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.track-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.track-breadcrumb span {
  color: #f47733;
  font-weight: 700;
}

.track-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.track-hero-icon {
  width: 40px;
  height: 40px;
  border: 2.5px solid #f5a623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.track-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  position: relative;
  z-index: 1;
}

.track-card-outer {
  background: #eef1f6;
  padding: 0 32px 32px;
}

.track-search-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  padding: 32px 36px;
  margin-top: 10px;
  position: relative;
}

.track-label {
  font-size: 13px;
  font-weight: 600;
  color: #1a3a7a;
  margin-bottom: 10px;
}

.track-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.track-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1.5px solid #dde3f0;
  border-radius: 10px;
  font-size: 14px;
  color: #1a2d5a;
  background: #f7f9fc;
  outline: none;
  transition: border-color .2s, background .2s;
}

.track-input:focus {
  border-color: #1a56db;
  background: #fff;
}

.track-btn {
  padding: 14px 28px;
  background: #e87e1e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .2s;
}

.track-btn:hover {
  background: #d06a10;
}

.track-error-msg {
  color: #c0392b;
  margin: 8px 0 0;
  font-size: 13px;
}

@media (max-width: 576px) {
  .track-hero {
    padding: 28px 18px 52px;
  }

  .track-hero-title {
    font-size: 24px;
  }

  .track-card-outer {
    padding: 0 14px 24px;
  }

  .track-search-wrap {
    padding: 22px 18px;
  }

  .track-form {
    flex-direction: column;
  }

  .track-input,
  .track-btn {
    width: 100%;
  }
}

.sticky_faq_part {
  position: sticky;
  top: 140px;
}

/* Wrapper */
.float-contact {
  position: fixed;
  bottom: 23px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

/* Button */
.float-btn {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  height: 52px;
  width: 52px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
  position: relative;
}

/* Icon Circle */
.float-btn .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #ffffff30;
  cursor: pointer;
}

/* Icon */
.float-btn i {
  width: 24px;
  height: 24px;
  font-size: 24px;
  position: relative;
  color: #fff;
  top: -6px;
}

/* Text */
.float-btn span {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  margin-left: 12px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

/* Hover Expand */
.float-btn:hover {
  width: 200px;
}

/* Text Reveal */
.float-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Style */
.whatsapp .icon {
  background: #25D366;
}

.whatsapp span {
  color: #23C15E;
}

/* Call Style */
.call .icon {
  background: #114172;
}

.call span {
  color: #114172;
}

/* Hover lift */
.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Mobile (tap instead of hover) */
@media (max-width: 768px) {
  .float-btn {
    width: 52px;
  }

  .float-btn:active {
    width: 180px;
  }

  .float-btn:active span {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Wrapper */
.cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  z-index: 9999;
  animation: slideUp 0.6s ease;
}

/* Box */
.cookie__box {
  width: 100%;
  max-width: 720px;
  background: rgba(17, 65, 114, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-direction: column;
  margin-inline: auto;
}

/* Text */
.cookie__text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 90%;
  text-align: center;
}

/* Actions */
.cookie__actions {
  display: flex;
  gap: 10px;
}

/* Buttons */
.cookie__btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

/* Accept */
.cookie__btn--accept {
  background: #fff;
  color: #114172;
}

.cookie__btn--accept:hover {
  background: #e6eef7;
}

/* Ghost */
.cookie__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(80px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .cookie__box {
    flex-direction: column;
  }

  .cookie__text {
    max-width: 100%;
  }

  .cookie__actions {
    width: 100%;
  }

  .cookie__btn {
    flex: 1;
    text-align: center;
  }
}


/* careers css */
/* ══════════════════════════════════════════════
       2. WHY GARUDAVEGA
    ══════════════════════════════════════════════ */
.why-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
  border: 1px solid #e8eef5;
  transition: box-shadow .3s, transform .3s;
}

.why-card:hover {
  box-shadow: 0 12px 36px rgba(0, 31, 62, .1);
  transform: translateY(-4px);
}

.why-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff3ec, #ffd9c0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 18px;
}

.why-card h5 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ══════════════════════════════════════════════
       3. CORE VALUES
    ══════════════════════════════════════════════ */
.values-section {
  padding: 80px 0;
  background: #fff;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  height: 100%;
  transition: background .3s, box-shadow .3s;
}

.value-item:hover {
  background: #f5f8fc;
  box-shadow: 0 6px 24px rgba(17, 65, 114, .07);
}

.value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.value-text h6 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.value-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* ══════════════════════════════════════════════
       4. WORK CULTURE BAND
    ══════════════════════════════════════════════ */
.culture-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}

.culture-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(243, 110, 38, .07);
  top: -120px;
  right: -100px;
}

.culture-section .section-title {
  color: #fff;
}

.culture-section .section-desc {
  color: rgba(255, 255, 255, .65);
  max-width: 600px;
}

.culture-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: 10px 20px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 400;
  margin: 6px 4px;
  transition: background .3s;
}

.culture-pill:hover {
  background: rgba(243, 110, 38, .25);
  border-color: var(--orange);
}

.culture-pill i {
  color: var(--orange);
  font-size: 16px;
}

/* ══════════════════════════════════════════════
       5. GROWTH & BENEFITS
    ══════════════════════════════════════════════ */
.growth-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #e8eef5;
  transition: box-shadow .3s;
}

.benefit-card:hover {
  box-shadow: 0 8px 28px rgba(0, 31, 62, .09);
}

.benefit-card .bc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.benefit-card .bc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-card .bc-icon.orange {
  background: linear-gradient(135deg, #fff3ec, #ffd9c0);
  color: var(--orange);
}

.benefit-card .bc-icon.navy {
  background: linear-gradient(135deg, #e8f0fb, #c8d8f0);
  color: var(--navy-2);
}

.benefit-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

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

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
  padding: 6px 0;
  border-bottom: 1px solid #f2f5f9;
  line-height: 1.55;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list li i {
  color: var(--orange);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════
       6. OPEN POSITIONS
    ══════════════════════════════════════════════ */
.positions-section {
  padding: 80px 0;
  background: #fff;
}

.no-positions-box {
  background: linear-gradient(135deg, #f5f8fc, #edf2f9);
  border: 2px dashed #c8d8f0;
  border-radius: 18px;
  padding: 64px 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.no-positions-box .np-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 22px;
}

.no-positions-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.no-positions-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════
       7. HIRING PROCESS
    ══════════════════════════════════════════════ */
.process-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, var(--navy-2), #c8d8f0);
  margin-top: 6px;
}

.process-step:last-child .step-line {
  display: none;
}

.step-body {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  padding: 20px 24px;
  flex: 1;
  margin-top: 2px;
}

.step-body h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════
       8. APPLY CTA
    ══════════════════════════════════════════════ */
.apply-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}

.apply-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(243, 110, 38, .08);
  top: -160px;
  right: -160px;
}

.apply-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(6px);
}

.apply-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.apply-card h2 span {
  color: var(--orange);
}

.apply-card p {
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px;
}

.apply-email-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 16px 28px;
  margin-bottom: 28px;
}

.apply-email-block i {
  font-size: 20px;
  color: var(--orange);
}

.apply-email-block a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: .3px;
}

.apply-email-block a:hover {
  color: var(--orange);
}

/* ── Buttons ──────────────────────────────────── */
.btn-gv-primary {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .3s, border-color .3s, transform .2s;
  letter-spacing: .3px;
}

.btn-gv-primary:hover {
  background: #e05d18;
  border-color: #e05d18;
  color: #fff;
  transform: translateY(-2px);
}

.btn-gv-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .3s, border-color .3s, transform .2s;
  letter-spacing: .3px;
}

.btn-gv-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .hero-stats {
    gap: 24px;
  }

  .hero-divider {
    display: none;
  }

  .apply-card {
    padding: 36px 24px;
  }

  .apply-email-block {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .careers-hero {
    padding: 50px 0 44px;
  }

  .why-section,
  .values-section,
  .culture-section,
  .growth-section,
  .positions-section,
  .process-section,
  .apply-section {
    padding: 56px 0;
  }
}

:root {
  --navy: #001f3e;
  --navy-2: #114172;
  --orange: #f36e26;
  --orange-2: #FF6B35;
  --light-bg: #f5f8fc;
  --text: #121212;
  --muted: #5a6a7a;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #fff3ec, #ffe0cc);
  color: var(--orange);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}



.enquery_sec .banner_side_img.title_only img {
  max-height: 275px;
  object-position: top;
  position: relative;
  left: -20px;
}

/* ---------------------------
==========================
Manjunath CSS
---------------------------
========================== */
.form-control,
form select {
  border: none;
  background: #f1f4f8;
}

.fixed-textarea {
  height: 100px;
  resize: none;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #888;
  opacity: 1;
}

/* Cross-browser support */
.form-card input::-webkit-input-placeholder,
.form-card textarea::-webkit-input-placeholder {
  color: #888;
}

.form-card input:-ms-input-placeholder,
.form-card textarea:-ms-input-placeholder {
  color: #888;
}

.form-card select {
  color: #888;
  font-size: 16px;
}

.form-card select:valid {
  color: #000;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-card select.form-control:focus {
  border: 1px solid #000 !important;
  outline: none;
  box-shadow: none;
}

.pickup-action .prohibited-item {
  gap: 8px;
  padding: 13.5px 14px;
}

.pickup-action .prohibited-icon-box {
  max-width: 70px;
  height: auto !important;
}

.pickup-action .prohibited-item-label {
  font-size: 15px;
}

.pickup-action .prohibited-item-text {
  font-size: 11px;
}

.pickup-form-section {
  padding: 40px 0 40px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .enquery_sec .banner_side_img.title_only img {
    position: relative;
    left: 0px;
  }
}

@media screen and (max-width: 991px) {
  .inner-banner-section {
    padding: 60px 0 0;
  }

  .form-card h3 {
    font-size: 32px;
  }
}

/* ??? */
.cookie__close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  opacity: 0.7;
}

.input_set .form-control,
.input_set form select {
  background: #fff;
  border: 1px solid #ddd;
}

/* ---- Section 2: What Is Express Priority ---- */
.ep-what-sec {
  padding-block: 80px 70px;
  background: #fff;
}

.ep-what-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
}

.ep-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff4ee;
  border: 1px solid #f7d2b8;
  color: #f36e26;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.ep-tag i {
  font-size: 14px;
}

.ep-what-sec .ep-section-h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0b2c5d;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ep-what-sec .ep-section-h2 span {
  color: #f36e26;
}

.ep-what-lead {
  font-size: 20px;
  font-weight: 600;
  color: #114172;
  margin-bottom: 16px;
}

.ep-what-body {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.75;
  max-width: 560px;
}

.ep-what-body p {
  margin-bottom: 14px;
}

.ep-what-body .ep-tagline {
  font-size: 15px;
  font-weight: 500;
  color: #114172;
  border-left: 3px solid #f36e26;
  padding-left: 14px;
  margin-top: 20px;
}

.ep-what-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2c5d 0%, #114172 55%, #1a56b0 100%);
  padding: 50px 40px 40px;
  color: #fff;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ep-what-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(243, 110, 38, 0.18) 0%, transparent 60%);
}

.ep-what-visual-icon {
  font-size: 72px;
  opacity: 0.15;
  position: absolute;
  top: 30px;
  right: 30px;
  line-height: 1;
}

.ep-what-visual h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.ep-what-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.ep-what-pills span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 40px;
}

.ep-what-pills span i {
  color: #f36e26;
  margin-right: 5px;
}

.ep-route-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 30px;
  position: relative;
}

.ep-route-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f36e26;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ep-route-line-bar {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 6px, transparent 6px, transparent 12px);
}

.ep-route-dot.end {
  background: #fff;
}

/* ---- Section 3: Why Choose ---- */
.ep-why-sec {
  padding-block: 70px 80px;
  background: #f8faff;
}

.ep-why-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
}

.ep-section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f36e26;
  margin-bottom: 10px;
}

.ep-why-sec .ep-section-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 10px;
  line-height: 1.2;
}

.ep-why-sec .ep-section-sub {
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 50px;
  max-width: 500px;
}

.ep-feature-card {
  background: #fff;
  border: 1px solid #e5eaf4;
  border-radius: 20px;
  padding: 30px 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.ep-feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #114172, #f36e26);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.ep-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(17, 65, 114, 0.1);
}

.ep-feature-card:hover::after {
  transform: scaleX(1);
}

.ep-feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef3ff, #dce8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ep-feat-icon i {
  font-size: 24px;
  color: #114172;
}

.ep-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 10px;
}

.ep-feature-card p {
  font-size: 14px;
  color: #5a6880;
  line-height: 1.65;
  margin: 0;
}

.ep-feature-card .ep-feat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f36e26;
  background: #fff4ee;
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

/* ---- Section 4: What Can You Send ---- */
.ep-send-sec {
  padding-block: 80px;
  background: #fff;
}

.ep-send-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
}

.ep-send-sec .ep-section-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 10px;
}

.ep-send-sec .ep-section-sub {
  font-size: 16px;
  color: #7a7a7a;
  max-width: 480px;
}

.ep-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.ep-item-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f7f9ff;
  border: 1px solid #e4eaf6;
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.28s ease;
}

.ep-item-pill:hover {
  border-color: #114172;
  background: #eef3ff;
}

.ep-item-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #114172, #1a56b0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ep-item-pill-icon i {
  font-size: 18px;
  color: #fff;
}

.ep-item-pill-text h6 {
  font-size: 14px;
  font-weight: 600;
  color: #1a2d5a;
  margin-bottom: 2px;
}

.ep-item-pill-text span {
  font-size: 12px;
  color: #7a8aa0;
}

.ep-send-note {
  background: linear-gradient(135deg, #fff8f3, #fff0e6);
  border: 1px solid #f7d2b8;
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ep-send-note p {
  font-size: 16px;
  color: #5a3010;
  margin: 0;
}

.ep-send-note p strong {
  color: #f36e26;
}

/* ---- Section 5: How It Works ---- */
.ep-how-sec {
  padding-block: 80px;
  background: #f8faff;
}

.ep-how-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
}

.ep-how-sec .ep-section-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 8px;
}

.ep-how-sec .ep-section-sub {
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 60px;
  max-width: 480px;
}

.ep-steps-track {
  position: relative;
}

.ep-steps-track::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, #d8dce3 0, #d8dce3 8px, transparent 8px, transparent 16px);
}

.ep-step-row {
  display: flex;
  gap: 28px;
  margin-bottom: 30px;
  position: relative;
  align-items: flex-start;
}

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

.ep-step-num {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #dde5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.28s ease;
}

.ep-step-num i {
  font-size: 28px;
  color: #114172;
}

.ep-step-row:hover .ep-step-num {
  border-color: #f36e26;
  box-shadow: 0 0 0 6px #fff4ee;
}

.ep-step-row:hover .ep-step-num i {
  color: #f36e26;
}

.ep-step-content {
  background: #fff;
  border: 1px solid #e5eaf4;
  border-radius: 16px;
  padding: 22px 26px;
  flex: 1;
  transition: all 0.28s ease;
}

.ep-step-row:hover .ep-step-content {
  border-color: #cdd9f0;
  box-shadow: 0 6px 20px rgba(17, 65, 114, 0.07);
}

.ep-step-content .ep-step-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #f36e26;
  margin-bottom: 6px;
  display: block;
}

.ep-step-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 8px;
}

.ep-step-content p {
  font-size: 14px;
  color: #5a6880;
  line-height: 1.65;
  margin: 0;
}

.ep-step-aside {
  text-align: center;
}

.ep-step-aside .ep-time-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #114172, #1a56b0);
  color: #fff;
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.ep-step-aside .ep-time-chip i {
  font-size: 14px;
}

/* ---- Section 6: Comparison Table ---- */
.ep-compare-sec {
  padding-block: 80px;
  background: #fff;
}

.ep-compare-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
}

.ep-compare-sec .ep-section-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 10px;
}

.ep-compare-sec .ep-section-sub {
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 50px;
  max-width: 520px;
}

.ep-compare-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e4eaf6;
  box-shadow: 0 8px 32px rgba(17, 65, 114, 0.07);
}

.ep-compare-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: #0b2c5d;
  color: #fff;
}

.ep-compare-header div {
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ep-compare-header div:last-child {
  border-right: none;
}

.ep-compare-header .ep-col-priority {
  background: linear-gradient(135deg, #f36e26, #ff8b40);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ep-compare-header .ep-col-priority i {
  font-size: 18px;
}

.ep-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid #eef1f8;
  background: #fff;
  transition: background 0.2s ease;
}

.ep-compare-row:nth-child(even) {
  background: #f8faff;
}

.ep-compare-row:hover {
  background: #eef3ff;
}

.ep-compare-row div {
  padding: 18px 28px;
  font-size: 14px;
  color: #3d4a5c;
  border-right: 1px solid #eef1f8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ep-compare-row div:last-child {
  border-right: none;
}

.ep-compare-row .ep-row-label {
  font-weight: 600;
  color: #1a2d5a;
  font-size: 15px;
}

.ep-check {
  color: #0fa958;
  font-size: 18px;
}

.ep-cross {
  color: #c0c8d8;
  font-size: 18px;
}

.ep-badge-priority {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff4ee;
  color: #f36e26;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}

/* ---- Section 7: Trusted ---- */
.ep-trust-sec {
  padding-block: 80px;
  background: #114172;
  position: relative;
  overflow: hidden;
}

.ep-trust-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(243, 110, 38, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(243, 110, 38, 0.12) 0%, transparent 55%);
}

.ep-trust-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
  position: relative;
}

.ep-trust-sec .ep-section-h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.ep-trust-sec .ep-section-h2 span {
  color: #f36e26;
}

.ep-trust-sec .ep-trust-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 560px;
}

.ep-trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  padding: 10px 22px;
}

.ep-trust-rating .stars i {
  color: #ebb309;
  font-size: 15px;
}

.ep-trust-rating strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.ep-trust-rating span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.ep-trust-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ep-trust-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  transition: background 0.28s ease;
}

.ep-trust-stat:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ep-trust-stat h3 {
  font-size: 34px;
  font-weight: 700;
  color: #f36e26;
  margin-bottom: 4px;
}

.ep-trust-stat p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ep-cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.ep-city-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 40px;
}

/* ---- Section 8: FAQ ---- */
.ep-faq-sec {
  padding-block: 80px;
  background: #fff;
}

.ep-faq-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
  background: linear-gradient(to top, #fff0, #f1f4fb);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 70px;
  padding-bottom: 0;
}

.ep-faq-sec .ep-section-h2 {
  font-size: 40px;
  font-weight: 500;
  color: #292929;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ep-faq-sec .ep-section-sub {
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 40px;
  max-width: 400px;
}

/* ---- Section 9: Final CTA ---- */
.ep-cta-sec {
  padding-block: 80px;
  background: linear-gradient(135deg, #0b1e3d 0%, #0b2c5d 50%, #0d3a7a 100%);
  position: relative;
  overflow: hidden;
}

.ep-cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(243, 110, 38, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(243, 110, 38, 0.10) 0%, transparent 50%);
}

.ep-cta-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
  position: relative;
}

.ep-cta-sec h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ep-cta-sec h2 span {
  color: #f36e26;
}

.ep-cta-sec p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 38px;
  max-width: 520px;
}

.ep-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ep-cta-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {

  .ep-what-sec .ep-section-h2,
  .ep-why-sec .ep-section-h2,
  .ep-send-sec .ep-section-h2,
  .ep-how-sec .ep-section-h2,
  .ep-compare-sec .ep-section-h2,
  .ep-trust-sec .ep-section-h2,
  .ep-faq-sec .ep-section-h2,
  .ep-cta-sec h2 {
    font-size: 30px;
  }

  .ep-cta-sec {
    text-align: center;
  }

  .ep-cta-btns {
    justify-content: center;
  }

  .ep-cta-sec p {
    margin-inline: auto;
  }

  .ep-trust-body {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .ep-steps-track::before {
    display: none;
  }

  .ep-compare-header div,
  .ep-compare-row div {
    padding: 14px 16px;
    font-size: 13px;
  }

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

  .ep-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ep-compare-wrap {
    overflow-x: auto;
  }

  .ep-compare-header,
  .ep-compare-row {
    min-width: 540px;
  }

  .ep-how-sec .ep-step-row {
    flex-direction: column;
  }

  .ep-steps-track::before {
    display: none;
  }

  .ep-step-num {
    margin-inline: auto;
  }
}

/*  */
/* ---------
-------LEGAL-section-------
--------- */
.legal-title {
  font-size: 22px;
  font-weight: 600;
  color: #114172;
  margin-bottom: 8px;
  padding-top: 10px;
}

.legal-section {
  padding: 50px 0;
  background-color: #f9fbfd;
}

.legal-content {
  margin-bottom: 20px;
}

.legal-title:first-child {
  margin-top: 0;
}

.legal-text {
  font-size: 14px;
  color: #1f1f1f;
  line-height: 1.8;
  font-weight: 400;
}

.legal-text a {
  color: #114172;
  text-decoration: underline;
}

.legal-banner-section {
  margin-bottom: 40px;
}

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

.legal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #1f1f1f;
  line-height: 1.7;
  font-weight: 400;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url('../img/fav.ico') no-repeat center;
  background-size: contain;
}

.contact-box p a:hover {
  color: #f36e26;
  transition: all .4s linear;
}

.contact-box p a {
  font-size: 16px;
  display: inline-block;
  color: #000;
  font-weight: 500;
  transition: all .4s linear;
}

/* Wrapper */
.loc {
  max-width: 460px;
  width: 100%;
  position: relative;
  font-family: system-ui, sans-serif;
}

.sans {
  font-family: sans-serif;
}

/* Input box */
.loc__input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

/* Focus effect */
.loc__input-wrap:focus-within {
  border-color: #114172;
  box-shadow: 0 12px 30px rgba(17, 65, 114, 0.15);
  transform: translateY(-2px);
}

/* Input */
.loc input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 15px;
  padding: 0 10px;
}

/* Icons */
.loc__left-icon {
  color: #114172;
  font-size: 18px;
}

.loc__right-icon {
  color: #aaa;
  font-size: 16px;
}

/* Dropdown */
.loc__dropdown {
  position: absolute;
  width: 100%;
  margin-top: 8px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 6px 0;
  max-height: 260px;
  overflow-y: auto;
  display: none;
  animation: fadeIn 0.2s ease;
}

/* Dropdown item */
.loc__dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}

/* Icon inside dropdown */
.loc__dropdown li i {
  color: #114172;
}

/* Hover */
.loc__dropdown li:hover {
  background: #f3f7fb;
  color: #114172;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* service pages css */



/* ---- PLANS SECTION ---- */
.es-plans-sec {
  padding-block: 60px;
  background: #f8faff;
}

.es-plans-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
}

.es-section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f36e26;
  margin-bottom: 10px;
}

.es-plans-sec .es-section-h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c5d;
  line-height: 1.2;
  margin-bottom: 12px;
}

.es-plans-sec .es-section-sub {
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 30px;
}

/* Service Card */
.es-plan-card {
  background: #fff;
  border: 1px solid #e4eaf6;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.es-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(17, 65, 114, 0.13);
}

.es-plan-card-top {
  height: 8px;
  background: #114172;
}

.es-plan-card-top.orange {
  background: linear-gradient(90deg, #f36e26, #ff8b40);
}

.es-plan-card-top.navy {
  background: linear-gradient(90deg, #114172, #1a56b0);
}

.es-plan-card-top.dark {
  background: linear-gradient(90deg, #0b2c5d, #114172);
}

.es-plan-card-top.gold {
  background: linear-gradient(90deg, #c8960c, #e8b420);
}

.es-plan-card-top.teal {
  background: linear-gradient(90deg, #0d7a6e, #15a396);
}

.es-plan-card-body {
  padding: 28px 30px 32px;
}

.es-plan-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.es-plan-icon {
  font-size: 32px;
  line-height: 1;
}

.es-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.es-plan-badge.fastest {
  background: #fff0e6;
  color: #f36e26;
}

.es-plan-badge.premium {
  background: #eef3ff;
  color: #114172;
}

.es-plan-badge.value {
  background: #e6fff3;
  color: #0a7a48;
}

.es-plan-badge.budget {
  background: #fff8e0;
  color: #9a6c00;
}

.es-plan-badge.region {
  background: #e6f4ff;
  color: #0a5a8a;
}

.es-plan-name {
  font-size: 22px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 4px;
  line-height: 1.2;
}

.es-plan-desc {
  font-size: 14px;
  color: #5a6880;
  line-height: 1.65;
  margin-bottom: 22px;
}

.es-plan-divider {
  height: 1px;
  background: #eef1f8;
  margin-bottom: 20px;
}

.es-plan-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.es-plan-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.es-plan-meta-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.es-plan-meta-icon.orange {
  background: #fff0e6;
}

.es-plan-meta-icon.orange i {
  color: #f36e26;
}

.es-plan-meta-icon.navy {
  background: #eef3ff;
}

.es-plan-meta-icon.navy i {
  color: #114172;
}

.es-plan-meta-icon.gold {
  background: #fff8e0;
}

.es-plan-meta-icon.gold i {
  color: #9a6c00;
}

.es-plan-meta-icon.teal {
  background: #e6f4ff;
}

.es-plan-meta-icon.teal i {
  color: #0a5a8a;
}

.es-plan-meta-icon i {
  font-size: 16px;
}

.es-plan-meta-text strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1a2d5a;
  letter-spacing: 0.3px;
  margin-bottom: 1px;
}

.es-plan-meta-text span {
  font-size: 13px;
  color: #6b7a90;
  line-height: 1.4;
}

.es-plan-card-foot {
  padding: 0 30px 28px;
  margin-top: auto;
}

/* Featured Card (APEX) */
.es-plan-card.featured {
  border-color: #f36e26;
  box-shadow: 0 10px 40px rgba(243, 110, 38, 0.15);
}

.es-plan-card.featured .es-plan-card-body {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.es-featured-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: #f36e26;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(45deg);
}

/* Corridor pills */
.es-corridor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 18px;
}

.es-corridor-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: #eef3ff;
  color: #114172;
  border: 1px solid #cdd9f0;
}

/* ---- WHY EXPRESS SECTION ---- */
.es-why-sec {
  padding-block: 80px;
  background: #fff;
}

.es-why-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
}

.es-why-sec .es-section-h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c5d;
  line-height: 1.2;
  margin-bottom: 12px;
}

.es-why-sec .es-section-sub {
  font-size: 16px;
  color: #7a7a7a;
  max-width: 520px;
  margin-bottom: 55px;
}

.es-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.es-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 24px;
  border: 1px solid #e4eaf6;
  border-radius: 18px;
  background: #f8faff;
  transition: all 0.3s ease;
}

.es-feat-item:hover {
  background: #fff;
  border-color: #c5d5f0;
  box-shadow: 0 8px 24px rgba(17, 65, 114, 0.08);
}

.es-feat-item:nth-child(odd) .es-feat-item-icon {
  background: linear-gradient(135deg, #f36e26, #ff8b40);
}

.es-feat-item:nth-child(even) .es-feat-item-icon {
  background: linear-gradient(135deg, #114172, #1a56b0);
}

.es-feat-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.es-feat-item-icon i {
  font-size: 22px;
  color: #fff;
}

.es-feat-item-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 4px;
}

.es-feat-item-text p {
  font-size: 13px;
  color: #6b7a90;
  margin: 0;
  line-height: 1.5;
}

/* ---- FINAL CTA SECTION ---- */
.es-cta-sec {
  padding-block: 80px;
  background: linear-gradient(135deg, #071628 0%, #0b2c5d 50%, #0d3a7a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* .es-cta-sec::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(circle at 20% 50%, rgba(243,110,38,0.16) 0%, transparent 50%),
          radial-gradient(circle at 80% 50%, rgba(243,110,38,0.10) 0%, transparent 50%);
      } */
.es-cta-sec .container-fluid {
  max-width: 96%;
  margin-inline: auto;
  position: relative;
}

.es-cta-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.es-cta-sec h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.es-cta-sec h2 span {
  color: #f36e26;
}

.es-cta-sec p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 40px;
  max-width: 500px;
  margin-inline: auto;
}

.es-cta-btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.es-cta-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.es-cta-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.es-cta-strip-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #f36e26;
}

/* Shared btn override for dark sections */
.es-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 11px 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 60px;
  color: #fff;
  background: transparent;
  transition: all 0.28s ease;
}

.es-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .es-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .es-hero-title {
    font-size: 38px;
  }

  .es-plans-sec .es-section-h2,
  .es-why-sec .es-section-h2,
  .es-cta-sec h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .es-feat-grid {
    grid-template-columns: 1fr;
  }

  .es-hero-title {
    font-size: 30px;
  }

  .es-hero-sub {
    font-size: 15px;
  }

  .es-cta-strip {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .es-hero-pills {
    gap: 12px;
  }

  .es-cta-strip-item {
    font-size: 13px;
  }
}

/* ---- Ocean Freight page-specific overrides ---- */
.of-hero-banner .banner_side_img {
  position: relative;
}

.of-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 65, 114, 0.18) 0%, rgba(243, 110, 38, 0.10) 100%);
  border-radius: inherit;
  pointer-events: none;
}

.of-steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
}

.of-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #444;
  margin-bottom: 7px;
  line-height: 1.5;
}

.of-steps-list li i {
  color: #114172;
  margin-top: 2px;
  flex-shrink: 0;
}

.of-container-pills .es-corridor-pill {
  background: #fff4ee;
  color: #c04f0d;
  border-color: #f9c4a2;
}

.of-ideal-card {
  text-align: center;
}

.of-ideal-card .es-plan-card-head {
  justify-content: center;
}

.of-ideal-card .es-plan-name {
  text-align: center;
}

.of-ideal-card .es-plan-desc {
  text-align: center;
  font-size: 13px;
}

.of-capabilities-sec .es-feat-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.branch-exact form {
  position: relative;
  display: flex;
  justify-content: end;
  top: 30px;
  margin-bottom: -40px;
}

.office-card .card-content .btns {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.info li {

  display: flex;

  align-items: flex-start;

  gap: 5px;

}

.info li a {

  color: #114172;

  font-weight: 500;

}

.info li a:hover {

  color: #f36e26;

}

.review-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: 0.3s ease;
}

.review-text.expanded {
  -webkit-line-clamp: unset !important;
}

.read-more-btn {
  display: none;
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
  margin-top: 5px;
}

.review-text {

  overflow: hidden;
  line-height: 1.5em;
  position: relative;
}

.review-text.expanded {
  -webkit-line-clamp: unset !important;
  max-height: unset !important;
}

/* .readmore-link{display: none;} */
.readmore-link {
  color: #104842;
  font-weight: 500;
  cursor: pointer;
  margin-left: 4px;
  position: absolute;
  bottom: 0;
  right: 4px;
  background-color: #114e8d;
  padding-inline: 10px 29px;
}

.loc {

  display: flex;

}

.loc .loc__input-wrap {

  width: 100%;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.loc button {

  background: #114172 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 0;
  border: 1px solid #e5e7eb !important;
  min-width: 60px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

}

.loc #clearBtn {

  position: absolute;
  right: -46px !important;
  z-index: 1;
  background: #114172;
  width: 30px;
  height: 30px;
  /* display: flex !important; */
  justify-content: center;
  align-items: center;
  color: #fff;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  text-decoration: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  padding-right: 5px;
}

.goog-te-gadget-simple {
  background-color: #003468 !important;
  border: none !important;
  padding-left: 30px !important;
  position: relative !important;
}

.goog-te-gadget img {
  display: none !important;
}

.goog-te-gadget-simple::after {
  position: absolute;
  content: "";
  background: url(../img/globe.png);
  width: 16px;
  height: 16px;
  left: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 4px;
}

iframe.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none;
}

.mini-card .btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

roup1 {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.radio-group1 {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}


.radio-group1 label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  color: #334155;
  background: #f9fafb;
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  background-color: #ffffff;
  margin: 0px !important;
}

/* .radio-group1 label:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  transform: translateY(-1px);
} */

/* Custom radio button styling */
.radio-group1 label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  margin: 0;
  position: relative;
  cursor: pointer;
  background-color: white;
  transition: all 0.15s ease;
}

.radio-group1 label input[type="radio"]:checked {
  border-color: #114172;
  background-color: #114172;
  box-shadow: inset 0 0 0 3px white;
}

.radio-group1 label input[type="radio"]:focus {
  /* outline: 2px solid #93c5fd; */
  outline-offset: 2px;
}

/* Selected label styling */
.radio-group1 label:has(input[type="radio"]:checked) {
  background: #eff6ff;
  border-color: #114172;
  color: #114172;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15);
}



.radio-group1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.radio-group1 label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  color: #334155;
  background: #f9fafb;
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  background-color: #ffffff;
  margin: 0px !important;
}

/* .radio-group1 label:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  transform: translateY(-1px);
} */

/* Custom radio button styling */
.radio-group1 label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  margin: 0;
  position: relative;
  cursor: pointer;
  background-color: white;
  transition: all 0.15s ease;
}

.radio-group1 label input[type="radio"]:checked {
  border-color: #114172;
  background-color: #114172;
  box-shadow: inset 0 0 0 3px white;
}

.radio-group1 label input[type="radio"]:focus {
  /* outline: 2px solid #93c5fd; */
  outline-offset: 2px;
}

/* Selected label styling */
.radio-group1 label:has(input[type="radio"]:checked) {
  background: #eff6ff;
  border-color: #114172;
  color: #114172;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .form-group {
    padding: 16px;
  }

  .radio-group1 {
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .radio-group1 label {
    width: 100%;
    justify-content: space-between;
    padding: 4px 7px;
  }
}

.inner_img_part>div span {
  line-height: 1.2;
  font-size: 28px;
}

.inner_img_part>div {
  padding: 20px;
}

/* General Section Styling */
.solution-section {
  background-color: #f8faff;
  /* Light background as seen in image */
}

/* Image Styling */
.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  /* Large rounded corners */
}

/* Solution Card Styling */
.solution-card {
  background: #fff;
  border-radius: 30px;
  border: 1px solid #eef2f6;
  flex-grow: 1;
}

.section-title22 {
  font-size: 24px;
  font-weight: 600;
  color: #0b1a4a;
}

.solution-item {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  /* Pill shape */
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  color: #0b1a4a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Reach Out Card Styling */
.contact-card {
  background: linear-gradient(135deg, #114172 0%, #114172e5 45%, #00A3E0 100%);
  /* Bright blue from image */
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Circular decorative background effect */
.contact-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: -2;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: url(../img/usa-flag.png);
  border-radius: 50%;
  z-index: -1;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}

.custom-btn {
  background-color: #f36e26;
  border: 1px solid #ffffff2e;
  border-radius: 10px;
  padding: 8px 25px;
  font-size: 14px;
  transition: 0.3s;
  text-transform: uppercase;
}

.custom-btn:hover {
  background-color: #114172;
}


/*  */
/*  */
.solution-section .container-fluid {
  max-width: 100%;
  background: transparent;
}

.usa_to_anywhare_content {
  padding-right: 80px;
}

.usa_to_anywhare_content {
  padding-right: 80px;
  max-width: 590px;
}

.img-fluid.main-img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.solution-item {
  font-size: 14px;
  font-weight: 400;
  color: #0b1a4a;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  padding: 30px;
}

.review-star {
  display: inline-block;
  transition: transform 0.3s ease;
}

.review-star:hover {
  transform: scale(1.3);
}

/* Optional: soft pulse effect */
.review-star.pulse {
  animation: pulseStar 1.5s infinite;
}

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

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.solution-card .legal-list li span {
  color: #f36e26;
  font-weight: 500;
}

.main-navbar .navbar-nav .nav-item .nav-link.home::before {
  top: 59%;
}

.google-review-slider.owl-carousel .owl-stage {
  display: flex;
}

.google-review-slider .item,
.review-card {
  height: 100%;
}

.review-card span.readmore-link.read-less {
  position: relative;
  display: flex;
  justify-content: end;
}

.pagination {
  justify-content: center;
}

.terms_check #terms-error {
  position: absolute;
  bottom: -5px;
}

.terms_check {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 15px;
  gap: 4px;
}

/* ── Section wrapper ── */
.gv-network-sec {
  padding: 48px 0 52px;
  background: #f4f7fb;
}

/* ── Card base ── */
.gv-network-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 178px;
  display: flex;
  align-items: flex-start;
  padding: 24px 22px 24px 22px;
  box-shadow: 0 4px 18px rgba(17, 65, 114, 0.09);
  border: 1px solid #e3eaf7;
  background: #fff;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  height: 100%;
}

.gv-network-card:hover {
  box-shadow: 0 10px 32px rgba(17, 65, 114, 0.16);
  transform: translateY(-3px);
}

/* ── Card image (right side illustration) ── */
.gv-network-card .card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 48%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  border-radius: 0 18px 18px 0;
}

/* ── Card content ── */
.gv-network-card .card-body-inner {
  position: relative;
  z-index: 2;
  width: 65%;
}

.gv-network-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.gv-network-card .card-heading {
  font-size: 17px;
  font-weight: 600;
  color: #0b2c5d;
  line-height: 1.3;
  margin-bottom: 0px;
}

.gv-network-card .card-desc {
  font-size: 14px;
  color: #5a6a82;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Shared CTA button (reuses .common_btn pill style) ── */
.gv-network-card .gv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 60px;
  border: none;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.gv-network-card .gv-card-btn .btn-arrow {
  font-size: 15px;
  line-height: 1;
}

/* ── Card 1: India to Anywhere – light blue tint bg ── */
.gv-card--india {
  background-color: #d6e4fa;
  background-image: url("../img/gv-icon-1.png");
  background-size: 130px;
  background-repeat: no-repeat;
  background-position: right center;
}

.gv-card--india .gv-card-btn {
  background: #f36e26;
}

.gv-card--india .gv-card-btn:hover {
  background: #f36e26;
  box-shadow: 0 4px 14px rgba(200, 30, 30, 0.3);
}

/* ── Card 2: USA – light steel bg ── */
.gv-card--usa {
  background-color: #f0f4fd;
  background-image: url("../img/gv-icon-2.png");
  background-size: 130px;
  background-repeat: no-repeat;
  background-position: right center;
}

.gv-card--usa .gv-card-btn {
  background: #114172;
}

.gv-card--usa .gv-card-btn:hover {
  background: #0d3260;
  box-shadow: 0 4px 14px rgba(17, 65, 114, 0.3);
}

/* ── Card 3: GarudaBazaar – white with green accent ── */
.gv-card--bazaar {
  background-color: #dff5d8;
  background-image: url("../img/grocery-cart.png");
  background-size: 180px;
  background-repeat: no-repeat;
  background-position: right center;
}

.gv-card--bazaar .card-heading {
  color: #1a4f1a;
}

.gv-card--bazaar .gv-card-btn {
  background: #2d8a2d;
}

.gv-card--bazaar .gv-card-btn:hover {
  background: #246424;
  box-shadow: 0 4px 14px rgba(45, 138, 45, 0.3);
}

.card-body-inner img.card_icon {
  width: 45px;
  border-radius: 40px;
  padding: 9px;
  background: #fff;
  border: 1px solid #2d8a2d;
}

/* ── Globe SVG icon for "Anywhere" ── */

.card_header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .gv-network-sec .section-title {
    font-size: 26px;
  }

  .gv-network-card {
    min-height: 160px;
  }

  .gv-network-card .card-img {
    width: 42%;
  }

  .gv-network-card .card-body-inner {
    width: 62%;
  }
}

@media (max-width: 767px) {
  .gv-network-sec {
    padding: 36px 0 40px;
  }

  .gv-network-sec .section-title {
    font-size: 22px;
  }

  .gv-network-sec .section-subtitle {
    font-size: 13.5px;
    margin-bottom: 22px;
  }

  .gv-network-card {
    min-height: 160px;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .gv-network-card .card-img {
    width: 44%;
    opacity: 0.88;
  }

  .gv-network-card .card-body-inner {
    width: 60%;
  }

  .gv-network-card .card-heading {
    font-size: 15px;
  }

  .gv-network-card .card-desc {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .gv-network-card .card-img {
    width: 40%;
    opacity: 0.75;
  }

  .gv-network-card .card-body-inner {
    width: 65%;
  }

  .gv-network-card .card-heading {
    font-size: 14px;
  }

  /* .gv-network-card .card-desc { display: none; } */
  .gv-network-card .gv-card-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* home services */

/* SECTION */
.services-section {
  background: #f7f7f7;
}
 
/* CARD */
.services-section .service-card {
  position: relative;
  overflow: hidden;
}
 
/* IMAGE */
.services-section .service-img {
  position: relative;
  padding: 0px;
  background: #fff;
}
 
.services-section .service-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 10px;
}
.services-section .service-card:hover .service-content .serv_icon {
  position: relative;
}
.services-section .service-card:hover .service-content  {
  padding: 18px 20px 18px 20px;
}
/* TOP CUT */
/* .services-section .service-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 40px solid #fff;
  border-right: 40px solid transparent;
  z-index: 2;
} */
 
/* CONTENT BOX */
.services-section .service-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 18px 20px 18px 65px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 60px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease;
}
.service-content p {-webkit-line-clamp: 3;}
/* TRIANGLE */
.services-section .service-content::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 30px;
 
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
}
 
/* ICON */
.services-section .serv_icon {
  position: absolute;
  left: 5px;
  top: 5px;
  transform: translateY(0%);
  width: 50px;
  height: 50px;
  background: #114172;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.services-section .service-card:hover .service-content .serv_icon {
  background: #f36e26;
}
.services-section .serv_icon img {
  width: 28px;
}
 
/* TEXT */
.services-section .service-text h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: #0b2c4d;
  transition: 0.3s;
}
 
.services-section .service-text p {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
 
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.3s ease;
}
 
.services-section .know-more-btn {
  font-size: 12px;
  margin-top: 8px;
  display: inline-block;
 
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
 
/* 🔥 HOVER EFFECT */
.services-section .service-card:hover .service-img img {
  transform: scale(1.05);
}
 
.services-section .service-card:hover .service-content {
  height: auto;
}
 
.services-section .service-card:hover .service-text p,
.services-section .service-card:hover .know-more-btn {
  opacity: 1;
  transform: translateY(0);
}
 
@media screen and (max-width:992px) {
  .services-section .service-content {
  height: auto;
  position: relative;
  left: 0;
  padding-block: 30px;
}
  .services-section .service-text p, .services-section .know-more-btn{opacity: 1; transform: translateY(0px);}
  .services-section .service-card .service-content .serv_icon {
  position: relative;
}
.services-section .service-card .service-content  {
  padding: 18px 20px 0px 20px;
}
 
.services-section .service-content{box-shadow: none; padding-bottom: 0;}
.services-section .service-img img {
  height: 260px;}
}
 
.office-card {
  display: flex;
  flex-direction: column;
}
.office-actions {
  margin-top: auto;
}
.office-actions > a {
  margin-top: 15px;
}
.dynamic-box div, .dynamic-box {
  margin-bottom: 10px;
}