@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none;
}

@font-face {
  font-family: fetishBold;
  src: url(../fonts/Fashion\ Fetish\ Bold.ttf);
}

:root {
  --main-color: #0a1029;
  --white-text: #ffffff;
  --black: #02060d;
  --secondary-color: #e58f17;
  --orange-bg: #fae9d1;
  --light-background: #eef3fc;
  --navy-text: #073b6d;
  --gray-bg: #ebeefa;
  --gray-text: #7f7e7d;
  --dark-blue: #0d254c;
}
p {
  margin-bottom: 0px !important;
}

.main-btn {
  background-color: #ffa500;
  width: 197px;
  height: 53px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  color: var(--white-text);
  text-align: center;
}

.main-btn a {
  color: var(--white-text);
}

body {
  font-family: "Montserrat", sans-serif !important;
  color: var(--black);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Desktop header */
.desktop-header {
  display: block;
}

/* Mobile header (hidden on desktop) */
.mobile-header {
  display: none;
  background: transparent;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  z-index: 999;
  position: absolute;
  width: 100%;
}

.mobile-right-section {
  display: flex;
  align-items: center;
}

.mobile-right-section .dropdown .dropdown-toggle {
  border: 1px solid var(--dark-blue);
  color: var(--dark-blue);
  padding: 3px;
}

.mobile-right-section .dropdown .dropdown-toggle i {
  color: var(--dark-blue);
  font-size: 30px;
  background: transparent;
}
.menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--dark-blue);
}

.navbar-brand img {
  width: 279px;
  height: 75px;
}

.navbar-nav {
  gap: 1rem;
  font-size: 1rem;
}

/* Active Link Highlight */
.nav-link.active {
  background-color: var(--orange-bg);
  border-radius: 15px;
  color: var(--secondary-color) !important;
  width: 88px;
  height: 36px;
  font-weight: bold !important;
  text-align: center;
}

.nav-link {
  padding: 5px 25px;
  font-weight: 400 !important;
  color: var(--black) !important;
}

.dropdown .btn-light {
  background-color: transparent;
  border: none;
  color: #000;
}
.main-btn.sign-btn {
  width: 122px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.search-box {
  display: flex;
  align-items: center;
  background-color: transparent; /* Dark background */
  border-radius: 12px;
  padding: 8px 12px;
  width: 100%;
  border: 1px solid var(--dark-blue);
  margin-top: 50px;
}

.search-box input {
  border: none;
  background: transparent;
  color: #fff;
  flex: 1;
  font-size: 16px;
  outline: none;
}

.search-box input::placeholder {
  color: #b0b0b5; /* Light gray placeholder */
}

.search-box button {
  background: none;
  border: none;
  color: var(--dark-blue);
  font-size: 18px;
  cursor: pointer;
}

.search-box button:hover {
  color: #ffa500; /* Optional hover color */
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px; /* give fixed width */
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  padding: 20px;
  transform: translateX(100%); /* hide off screen */
  transition: transform 0.4s ease;
  /* display: flex;
  flex-direction: column; */
  overflow-y: auto;
}

.sidebar.active {
  transform: translateX(0);
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: var(--dark-blue);
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  position: absolute;
  right: 5%;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
}

.sidebar-nav li {
  margin: 15px 0;
}

.sidebar-nav a {
  text-decoration: none;
  color: var(--dark-blue);
  font-size: 1.2rem;
  display: block;
}

.sidebar-nav a:hover {
  color: var(--secondary-color);
}

.sidebar-bottom {
  margin-top: auto;
}

.sidebar-bottom .main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .sidebar {
    /* display: flex;
    flex-direction: column;
    align-items: start; */
    width: 100%;
  }
}

.header-page {
  position: relative;
  background: var(--white-text);
}
.main {
  background-color: #fbfcfe;
}

section {
  padding: 7rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
}

.section-title h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  text-transform: capitalize;
}

.main section {
  padding: 3rem 0;
}
.main .breadcrumb-section {
  padding: 2rem 0;
}

/* breadcrumb */
.breadcrumb {
  justify-content: center;
}

.breadcrumb li a {
  color: var(--black) !important;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  /* background: url("../Images/home-hero.svg") no-repeat center center/cover; */
  position: relative;
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  font-family: fetishBold;
  color: var(--black);
  line-height: 75px;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0;
  color: #333;
}
.hero-content .main-btn {
  margin-top: 20px;
}

/* Notice Ticker Styling */
.notice-ticker {
  background-color: var(--light-background);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

.ticker-container {
  display: flex;
  gap: 50px;
}

.ticker-loop {
  display: flex;
  gap: 50px;
  animation: ticker-scroll 20s linear infinite;
}

.ticker-loop p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroll-top-btn {
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border-radius: 50%;
  border: 2px solid var(--white-text);
  background-color: var(--white-text);
  outline: none;
}

.scroll-top-btn .btn {
  outline: none;
  border: none;
  padding: 3px;
}
.btn i {
  background-color: #ffa500;
  color: var(--white-text);
  border-radius: 50%;
  padding: 10px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-circle i {
  font-size: 1.2rem;
}

.btn-circle:hover {
  background-color: #ff8c00;
}

.why-logistics {
  position: relative;
}

.why-logistics-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 40px !important;
}

.why-logistics-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 24px;
}

.why-logistics-content img {
  width: 82px;
}

.logistics-border {
  position: relative;
}

.logistics-border::before {
  position: absolute;
  content: "";
  border: 1px solid var(--gray-bg);
  height: 210px;
  left: 0%;
  top: 10%;
}

.tutorials-page .why-logistics-content img {
  width: 60px;
}

.section-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.section-card img {
  width: 100%;
}
.card-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-text h3 {
  color: var(--white-text);
  text-align: center;
}

.corner-btn {
  position: absolute;
  bottom: 4px;
  right: -2px;
  border-radius: 50%;
  width: 55px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-more-btn {
  display: inline-block;
  padding: 10px 80px;
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 24px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.view-more-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-text);
}

/* logistics section */
.logistics-box {
  background: url(../Images/logistics-services-bg.svg) no-repeat;
  background-size: cover;
  border-radius: 40px;
  position: relative;
  height: 100%;
  padding-bottom: 80px;
}

.tabs {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.tab-btn {
  flex: 1;
  text-align: center;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 24px;
  color: #777;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-top: 10px;
}

.tab-btn.active {
  color: var(--navy-text);
  font-weight: 700;
}

.tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--navy-text);
  transition: transform 0.3s ease;
  transform: translateX(0%);
}

.tabs.service-active::after {
  transform: translateX(100%);
}

.tab-pane {
  padding: 00px 20px;
}
.tab-content {
  margin-top: 40px;
}
.tab-content .tab-pane {
  display: none;
}

.tab-content .tab-pane.active {
  display: block;
}

.highlight {
  color: var(--secondary-color); /* Orange text */
}
.tab-pane h3 {
  color: var(--navy-text);
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 20px;
}
.tab-pane p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px !important;
}

.logistics-icons {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.logisitcs-service-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-blue);
}
.logisitcs-service-icons h5 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
.how-it-works {
  margin-top: 50px;
}
.how-title-wrapper {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  margin-bottom: 20px;
}

.how-title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #0b0b33;
  display: inline-block;
}

.works-box {
  position: relative;
  margin-bottom: 30px;
}
.works-box img {
  width: 100%;
}
.works-content {
  position: absolute;
  top: 18%;
  left: 35%;
}
.works-content h5 {
  font-weight: bold;
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.works-content p {
  width: 85%;
  font-size: 14px;
  margin-bottom: 0px !important;
}

.works-btn {
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.works-btn a {
  color: var(--secondary-color);
}

.works-btn i {
  color: var(--secondary-color);
}

.works-bottom {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 97%;
  bottom: 2%;
}

/* Center slide bigger */
.homepage-img-swiper .swiper-slide {
  width: 450px;
  transition: transform 0.5s ease, opacity 0.5s ease, width 0.5s ease;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-img-swiper img {
  width: 400px !important;
}

.homepage-img-swiper .swiper-pagination-bullet {
  background-color: #ddd;
  opacity: 1;
}
.swiper-pagination {
  position: relative !important;
  bottom: 0px !important;
}
.homepage-img-swiper .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
  transform: scale(1.6);
}

.news-title {
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.news-title h3 {
  color: var(--white-text);
  width: 80%;
  font-weight: 500;
  font-size: 24px;
}

/* optimize section */
.optimize {
  background: url(../Images/optimize.svg) no-repeat center center;
  background-size: contain;
  position: relative;
  min-height: 40vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.optimize-content {
  color: var(--white-text);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
.optimize-content h2 {
  font-size: 32px;
  font-weight: bold;
}

.optimize-content .main-btn {
  width: 275px;
  border-radius: 20px;
}

/* about-page */
.our-story {
  margin-top: -2rem !important;
}

.story-content p {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
}

.mission-values .value-box {
  position: relative;
  background-color: var(--light-background);
  width: 100%;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
  height: 240px;
}

.value-box .right-line {
  position: absolute;
  right: 5%;
  top: 10%;
}

.value-box .left-line {
  position: absolute;
  left: 5%;
  bottom: 10%;
}

.mission-values .value-box h3 {
  color: var(--navy-text);
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
}

.mission-values .value-box p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}

.solution-box {
  text-align: center;
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  padding: 20px;
}

.solution-box h3 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.solution-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

.team-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b0b33;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.team-member img {
  border-radius: 12px;
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
}

.team-member:hover img {
  transform: scale(1.05); /* subtle zoom */
}

.team-name {
  position: absolute;
  bottom: 0px;
  left: 10px;
  right: 10px;
  color: var(--white-text);
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
}

/* service page */

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-row {
  display: flex;
  border: 2px solid var(--gray-bg);
  border-radius: 52px;
  overflow: visible;
}

/* base card */
.service-box {
  flex: 1;
  background: #fff;
  transition: all 0.4s ease;
  border: 2px solid var(--gray-bg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  height: 650px;
  align-items: center;
  text-align: center;
  border-radius: 0; /* reset per-card radius by default */
}
.service-box img {
  margin-bottom: 12px;
}
.service-box.active img {
  filter: invert(54%) sepia(92%) saturate(618%) hue-rotate(359deg)
    brightness(95%) contrast(93%);
}

/* keep outer corners of the row rounded */
.service-box:first-child {
  border-radius: 52px 0 0 52px;
}
.service-box:last-child {
  border-radius: 0 52px 52px 0;
}

/* active = bigger, thicker border, rounded */
.service-box.active {
  flex: 2;
  transform: scale(1.05);
  border: 5px solid var(--gray-bg);
  /* border-radius: 52px; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* if the active card is on the edges, keep only the outer corners rounded */
.service-box.active:first-child {
  border-radius: 52px 0 0 52px;
}
.service-box.active:last-child {
  border-radius: 0 52px 52px 0;
}

/* cosmetics (unchanged) */
.service-box h3 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
}
.service-box.active h3 {
  color: var(--secondary-color);
}
.service-box.active .service-content {
  margin-top: -150px;
}
.service-content,
.service-description {
  height: 120px;
}
.service-content h4 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--black);
}
.service-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px !important;
}
.services-info h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-blue);
  margin: 10px 0 0 !important;
}
.service-description {
  text-align: center;
  border-top: 1px solid var(--gray-bg);
  margin-top: 40px;
}
.service-box.active .service-description {
  border-top: 0;
}
.service-box.active .service-description .description {
  padding: 5px 40px;
}
.service-description .description {
  padding: 5px;
}

/* show the detailed list only on the active card */
.services-info {
  display: none;
}
.service-box.active .services-info {
  display: block;
}

.elevate .row {
  align-items: stretch;
}

.elevate-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.logistics-future .elevate-content {
  justify-content: baseline;
  gap: 1rem;
}

.logistics-future .elevate-content p {
  font-weight: bold;
}

.logistics-future .elevate-content .elevate-button .main-btn {
  width: 253px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.elevate-content .elevate-button .main-btn {
  width: 155px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.future-details {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.future-details h5 {
  margin-bottom: 0.2rem;
  color: #073b6d;
  font-weight: bold;
  font-size: 16px;
}

.elevate-content h3 {
  color: var(--dark-blue);
  font-size: 32px;
  font-weight: bold;
  text-transform: capitalize;
}

.elevate-content h3 span {
  color: var(--navy-text);
}

.elevate-content p {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
}
.elevate-image {
  padding-left: 30px;
}
.second-elevate .elevate-content {
  padding-left: 30px;
}
.second-elevate .elevate-image {
  padding-left: 0;
}
.elevate-image img {
  width: 100%;
}

/* career page */
.career-content {
  background: var(--gray-bg);
  padding: 20px 10px;
  height: 350px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  text-align: center;
  gap: 10px;
}

.info-content {
  background: var(--white-text);
  width: 90px;
  padding: 10px 0;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}
.info-content h5 {
  font-size: 16px;
  font-weight: bold;
  color: var(--navy-text);
  margin-bottom: 0px !important;
}

.career-content h4 {
  font-size: 24px;
  font-weight: bold;
  color: var(--navy-text);
  width: 80%;
}
.career-content p {
  font-weight: 400;
  font-size: 16px;
  padding: 0 10px;
  color: var(--navy-text);
}
.line-img {
  position: absolute;
  left: 20px;
  bottom: 25px;
}

.career-bottom a {
  position: absolute;
  bottom: -5px;
  right: -3px;
}
/* faqs page */
.faq-section .form-label {
  font-weight: 500;
  color: #555;
}

.faq-section .form-select.custom-select,
.faq-section .custom-search {
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  box-shadow: none;
  color: #0b0b33;
}

.faq-section .form-select.custom-select:focus,
.faq-section .custom-search:focus {
  border-color: #ffa500;
  outline: none;
  box-shadow: none; /* removes default blue shadow */
}

.faq-section .form-select.custom-select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

/* Search icon */
.search-icon {
  position: absolute;
  right: 30px;
  top: 60%;
  color: var(--gray-text);
  font-size: 1rem;
}

/* Accordion Styling */
.custom-accordion {
  background: var(--white-text);
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  outline: none !important;
}

.custom-accordion .accordion-button {
  background-color: var(--white-text);
  color: #0b0b33;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: none;
  padding: 1rem;
  justify-content: space-between;
  outline: none !important;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none !important; /* no blue shadow */
}
.accordion-button::after {
  display: none;
}
.accordion-button:not(.collapsed) {
  background: none !important;
  box-shadow: none !important;
}

.accordion-arrow {
  color: #ffa500;
  transition: transform 0.3s ease;
  font-size: 25px;
}

.accordion-button.collapsed .accordion-arrow {
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed) .accordion-arrow {
  transform: rotate(180deg);
}

.custom-accordion .accordion-body {
  color: #333;
  padding: 1rem;
  font-size: 0.95rem;
}

.accordion-body {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin-top: -20px;
}

/* sign up pages */
.signup-selection .row {
  --bs-gutter-x: 0;
}
.signup-box {
  position: relative;
  padding: 0;
}

.signup-box h2 {
  color: var(--white-text);
  font-weight: bold;
  font-family: fetishBold;
  font-size: 48px;
}
.signup-box p {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 32px;
}
.first-signup-card,
.second-signup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
}
.first-signup-card {
  background: url(../Images/Shipper.svg) no-repeat;
  background-position: bottom;
  background-size: auto;
}

.second-signup-card {
  background: url(../Images/service-provider.svg) no-repeat;
  background-position: bottom;
  background-size: auto;
}

.signup-box .main-btn {
  position: absolute;
  left: 35%;
  padding: 12px 10px;
  bottom: 0%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-box .main-btn a {
  display: flex;
  flex-direction: row;
}

.form-control {
  box-shadow: none !important;
  border: 1px solid #ebeefa !important;
}
.signup-page {
  background-color: #f9fafc;
}

.signup-card {
  background-color: var(--white-text);
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(80, 112, 255, 0.15);
  padding: 50px 140px;
  margin: 0 3rem;
}
.signup-card h3 {
  font-weight: bold;
  font-size: 32px;
}

.signup-card label {
  font-weight: bold;
}

.password-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.password-content span {
  color: var(--gray-text);
  cursor: pointer;
}

.custom-captcha {
  width: 50%;
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 50px;
}

.form-check-input {
  appearance: none !important;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc !important;
  border-radius: 4px;
  background-color: var(--white-text);
  cursor: pointer;
  position: relative;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #000 !important;
  border-color: #000 !important;
  box-shadow: none !important;
}

.custom-captcha .form-check-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.custom-captcha img {
  opacity: 0.8;
}

.terms,
.already-account {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

.terms a {
  color: var(--black);
}
.already-account a {
  font-weight: bold;
  font-size: 16px;
  color: var(--secondary-color);
}

.signup-card-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
}

.signup-card-bottom .main-btn {
  width: 323px;
  height: 64px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.forgot-pass {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 16px;
}

/* contact-us page */
.contact-us-form div {
  margin-top: 20px;
}
.contact-us img {
  width: 100%;
}
.contact-us-title {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: bold;
}

.contact-us-btn .main-btn {
  padding: 15px;
  width: 227px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 20px;
}
.reach-us .solution-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.reach-us .solution-box h3 {
  color: var(--black);
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0;
}

/* news page */
.news-lunch {
  background: url(../Images/news-bg.svg) no-repeat;
  background-size: cover;
  padding: 40px 20px 30px;
  border-radius: 30px;
  position: relative;
}

.news-content {
  padding: 0 20px;
}
.news-content h2 {
  font-weight: bold;
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 30px;
}

.news-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

.news-lunch-img img {
  width: 100%;
}

.news-btn {
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  bottom: 5%;
  left: 3%;
}

.news-btn a {
  color: var(--secondary-color);
}

.news-way {
  background: url(../Images/news-way.svg) no-repeat;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-way-content {
  display: flex;
  flex-direction: column;
  color: var(--white-text);
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.news-way-content h2 {
  font-size: 32px;
  font-weight: bold;
}
.news-way-content p {
  font-size: 16px;
  font-weight: bold;
}
.news-way-content button {
  margin-top: 30px;
}
.news-way-content .discover-btn {
  font-size: 14px;
  width: 210px;
}

.news .section-card img {
  width: 100%;
}

/* news detail page */
.news-main-title {
  font-size: 40px;
  font-weight: bold;
  color: var(--dark-blue);
}

.sub-news-title {
  font-size: 20px;
  font-weight: 400;
  color: var(--main-color);
}

.news-date {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-text);
  display: block;
  margin-top: 15px !important;
}

.news-details-img {
  margin-top: 20px;
  margin-bottom: 60px;
}

.news-details-content p {
  font-size: 24px;
  color: var(--main-color);
  font-weight: 400;
  margin-bottom: 20px !important;
}

/* subscription page */
.subscription-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscription-main h2 {
  font-size: 36px;
  font-weight: 600;
}
.subscription-main p {
  font-size: 20px;
  font-weight: 500;
  width: 60%;
  margin-top: 20px;
  text-align: center;
}
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  justify-content: center;
}

.billing-label {
  font-size: 16px;
  font-weight: 600;
  color: #121417;
  cursor: pointer;
  user-select: none;
}

.billing-label.active {
  color: #000;
}

/* Toggle */
.toggle-switch {
  width: 64px;
  height: 32px;
  background: #E59B1A;
  border-radius: 999px;
  padding: 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background .3s;
}

.toggle-circle {
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform .3s;
}

/* When switched to Yearly, we will add this class with JS */
.toggle-switch.yearly .toggle-circle {
  transform: translateX(32px);
}

/* Save Badge */
.save-badge {
  font-size: 12px;
  padding: 1px 7px;
  border-radius: 12px;
  border: 1px solid #ccc;
  background: #ffffff;
  color: #000;
  font-weight: 500;
}


/* page container */
.pricing {
  padding: 48px 0;
  background: #f5f7fb;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* cards */
.price-card {
  background: url("../Images/price-bg.png") no-repeat bottom;
  background-size: cover;
  border-radius: 22px;
  padding: 28px 24px 200px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* middle card outline */
.price-card.popular {
  background: url("../Images/price-bg-border.png") no-repeat bottom;
  background-size: cover;
  overflow: visible;
}


/* top pill cap */
.popular .popular-cap {
  position: absolute;
  top: 0px; /* sits above the rounded top like the design */
  left: 50%;
  transform: translateX(-50%);
  width: 99%;
  height: 44px;
  background: #e59b1a;
  border-radius: 14px 14px 0px 0px;
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: center;
}
.popular .popular-cap span {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.2px;
}

/* headings / price */
.card-head {
  margin-bottom: 8px;
  text-align: center;
  margin-top: 70px;
}
.plan {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
  color: #121417;
}
.price {
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  color: #121417;
}
.price .currency {
  font-size: 22px;
  vertical-align: super;
  margin-right: 2px;
}
.custom-quote {
  font-size: 48px;
  font-weight: 500;
  color: #121417;
}

/* features */
.features {
  list-style: none;
  margin: 18px 0 26px;
  padding: 0;
}
.features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 16px;
  color: #121417;
}

.features li img {
  margin-right: 12px;
}

/* tray + button */
.cta-tray {
  margin-top: auto;
  align-self: center;
  border-radius: 999px;
  padding: 8px;
  width: 210px;
  position: absolute;
  bottom: -10px;
  display: flex;
  justify-content: center;
}
.btn-pill {
  border: 0;
  background: #e59b1a;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  width: 265px;
  height: 53px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(229, 155, 26, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(229, 155, 26, 0.28);
}

/* responsive */
@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .popular .popular-cap {
    top: -20px;
  }
  .popular .card-head {
    margin-top: 36px;
  }
}

/* tutorial page */
.logiconnect-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 120px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logiconnect-content h2 {
  font-size: 2rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: fetishBold;
  letter-spacing: 10px;
}

.logiconnect-content p {
  font-size: 20px;
  color: var(--black);
  font-weight: 500;
}

.bubble {
  position: absolute;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 74px;
  font-size: 0.9rem;
}

.bubble h5 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0 !important;
}

.bubble-left {
  top: 70%;
  left: 20px;
  background: url("../Images/icons/user-left.png") no-repeat center/contain;
}

.bubble-right {
  top: 10%;
  right: 20px;
  background: url("../Images/icons/user-right.svg") no-repeat center/contain;
}
/* Tutorials Swiper Styles */

.container-fluid {
  --bs-gutter-x: 0rem !important;
}
.tutorials-swiper {
  width: 100%;
  margin: auto;
}

.tutorials-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.video-container img,
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

.video-container video {
  display: none; /* Hide video initially */
}

.video-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
}

.play-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  color: #fff;
  border-radius: 50%;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscription-main h2 {
  font-size: 22px;
}
.subscription-main p {
  width: 100%;
  font-size: 18px;
  text-align: left;
}
.price-card {
  margin-bottom: 30px;
}
.price-card .plan {
  font-size: 30px;
}
.price-card .price {
  font-size: 25px;
}

.custom-quote {
  font-size: 25px;
}

.tutorials-swiper .swiper-pagination {
  position: relative;
  margin-top: 15px;
  z-index: 5;
  text-align: center;
}

.tutorials-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
}

.tutorials-swiper .swiper-pagination-bullet-active {
  background: #ffa500;
}

/* footer */
.footer {
  background: var(--white-text);
  font-size: 0.95rem;
}

.footer-logo {
  width: 310px;
  margin-bottom: 20px;
}

.footer h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--main-color);
}
.footer li {
  margin-bottom: 10px;
  font-weight: 500;
}

.footer li a {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer li a:hover {
  color: var(--secondary-color);
}
.news-letter {
  background: var(--light-background) !important;
  width: 220px !important;
}
.social-icons .social-icon {
  background-color: var(--secondary-color);
  color: var(--white-text);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  font-size: 20px;
}
.footer-newsletter {
  display: flex;
  gap: 0;
}

.footer-news {
  background: #fbfbfb !important;
}
.footer-news::placeholder {
  color: #a5a4a4 !important; /* Change to any color you want */
  opacity: 1; /* Ensures full color visibility */
}

.footer-btn {
  background: var(--secondary-color);
  width: 155px;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  color: var(--white-text);
  font-weight: 500;
  font-size: 14px;
}

.footer-bottom {
  font-size: 0.85rem;
  color: var(--main-color);
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.footer-bottom p {
  font-weight: 600;
}
.footer-bottom span {
  color: var(--gray-bg);
}
.footer-bottom a {
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: underline !important;
}

.footer-bottom a:hover {
  color: var(--secondary-color);
}

@media only screen and (max-width: 1366px) {
  .main {
    margin-top: 40px;
  }

  .tab-content {
    margin-top: 0px;
  }
  .scroll-top-btn {
    position: absolute;
    top: -11%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    border-radius: 50%;
    border: 2px solid var(--white-text);
    background-color: var(--white-text);
    outline: none;
  }
}

@media (min-width: 760px) and (max-width: 1020px) and (orientation: portrait) {
  .logistics-box {
    background: url("../Images/service-mobile.jpeg") no-repeat;
    background-position: center;
    background-size: contain;
    height: 100%;
    padding: 30px 20px 80px 30px;
  }
  .logistics-icons {
    margin-bottom: 20px;
  }
  .works-content {
    top: 25%;
    left: 40%;
  }
  .works-bottom {
    bottom: 1%;
    width: 88%;
  }
  .works-box img {
    height: 230px;
  }
}

@media screen and (max-width: 750px) {
  .hero-title {
    font-size: 32px;
    line-height: 35px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .section-title h1 {
    font-size: 24px;
  }

  .why-logistics-content h3 {
    font-size: 20px;
  }

  .view-more-btn {
    font-size: 18px;
  }
  .logistics-box {
    background: url("../Images/service-mobile.jpeg") no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
  }
  .works-content {
    top: 25%;
  }
  .works-bottom {
    width: 90%;
    bottom: 1%;
  }
  .tab-btn {
    font-size: 18px;
  }

  .tab-pane h3 {
    font-size: 22px;
  }
  .logistics-icons {
    gap: 2rem;
    margin-bottom: 20px;
  }

  .how-title-wrapper {
    padding: 0px;
    align-items: normal;
  }
  .works-line img {
    width: 70px;
  }
  .how-title {
    font-size: 22px;
  }
  .works-box {
    height: 14vh;
  }
  .works-content h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .works-btn a {
    font-size: 14px;
  }

  .optimize {
    background-size: cover;
  }

  .story-content p {
    font-size: 18px;
  }
  .mission-values .value-box h3 {
    font-size: 38px;
  }
  .solution-box {
    margin-bottom: 20px;
  }
  .team-section .row {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 1rem;
  }

  .team-name {
    font-size: 20px;
  }
  .service-row {
    flex-direction: column;
    border: none;
  }
  .service-box {
    margin-bottom: 30px;
    border-radius: 20px;
  }
  .service-box.active {
    transform: scale(1);
    box-shadow: none;
    border-radius: 20px;
    border: 2px solid var(--gray-bg);
  }
  .service-box:last-child {
    border-radius: 20px;
  }
  .service-box h3 {
    font-size: 24px;
  }
  .service-content h4 {
    font-size: 20px;
  }
  .service-box.active .service-content {
    margin-top: 0px;
  }
  .service-content {
    height: auto;
  }
  .elevate-content {
    gap: 1rem;
    margin-bottom: 20px;
  }
  .elevate-image {
    padding-left: 0px;
  }
  .second-elevate {
    flex-direction: column-reverse;
  }
  .second-elevate .elevate-content {
    padding-left: 0px;
  }
  .first-signup-card,
  .second-signup-card {
    background-size: cover;
  }
  .signup-box h2 {
    font-size: 18px;
  }
  .signup-box p {
    font-size: 16px;
  }
  .signup-box .main-btn {
    position: absolute;
    left: 18%;
    padding: 12px 35px;
    bottom: -1%;
    border-radius: 20px;
  }
  .signup-card {
    width: 100%;
    padding: 50px 15px;
    margin: 0;
  }
  .signup-card-bottom .main-btn {
    font-size: 18px;
  }

  .bubble-right {
    top: 5%;
  }
  .bubble-left {
    top: 75%;
  }
  .logiconnect-content h2 {
    font-size: 1.5rem;
  }
  .logiconnect-content p  {
    font-size: 18px;
  }
  .career-content {
    height: 400px;
  }
  .info-content {
    width: 100%;
  }
  .contact-us img {
    margin-bottom: 20px;
  }

  .footer-bottom {
    gap: 0px;
  }
}
