@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/rubik/Rubik-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/rubik/Rubik-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/rubik/Rubik-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/rubik/Rubik-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/rubik/Rubik-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/rubik/Rubik-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}

@font-face {
  font-family: 'Rubik';
  src: url('../../fonts/rubik/Rubik-Light.ttf') format('truetype');
  font-weight: 300;
}
:root {
  --primary-color: #4d148c;
  --secondary-color: #ff6600;
}

.text-shippex-primary {
  color: var(--primary-color);
}
.text-shippex-secondary {
  color: var(--secondary-color);
}
.hero-section {
  /* background: url('../../images/shipment.jpg') center center/cover no-repeat; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.hero-section .animated-arrow {
  background-color: var(--primary-color);
  border-radius: 50%;
  bottom: 20px;
  display: inline-block;
  font-size: 25px;
  height: 60px;
  left: calc(50% - 30px);
  position: absolute;
  width: 60px;
  z-index: 100;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.btn-start:hover {
  background-color: var(--primary-color);
}
.btn-start {
  background-color: var(--secondary-color);
  border: none;
  padding: 12px 24px;
}
.navbar-brand img {
  border-radius: 50%;
}
.navbar .nav-link {
  position: relative;
}
.navbar .nav-link.active {
  position: relative;
  color: var(--primary-color);
}
.navbar .nav-link.menu-link.active::after {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 3px;
  left: 0;
  background-color: var(--primary-color);
}

/* border pseudo-element */
.navbar .nav-item .nav-link.menu-link:hover::before {
  width: 100%;
}
.navbar .nav-item .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  bottom: 3px;
  transition: width 0.3s ease-out;
}
.navbar .nav-link {
  color: #333;
  font-weight: 500;
}

.navbar-brand img {
  height: 40px;
}
.logo img {
  height: 65px;
}

/* Loader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* White background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--primary-color); /* Purple from the logo */
  border-bottom-color: var(--secondary-color); /* Reddish color from the logo */
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

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

.loader-text {
  margin-top: 20px;
  color: #333;
  font-weight: bold;
  text-align: center;
  font-family: sans-serif;
}
/* auth */
/* AUTHENTICATION PAGES STYLES */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  background-color: #f8f9fa;
  padding: 20px;
}

.auth-card.register {
  max-width: 700px;
}
.auth-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  width: 100%;
  max-width: 450px;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: #718096;
  font-size: 0.95rem;
}

.auth-form .form-group {
  margin-bottom: 1.25rem;
}
.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2e3542;
  font-size: 0.9rem;
}
.auth-form .form-check-label {
  margin-bottom: 0 !important;
}
.auth-card .hint {
  color: #999;
  opacity: 0.8;
  font-size: 12px;
}
.auth-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #7d7d7d;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.auth-header h4 {
  letter-spacing: -1.5px;
  font-weight: 700;
}
.auth-header h2 {
  letter-spacing: -1px;
  font-weight: 700;
}
.auth-form input::placeholder,
textarea::placeholder {
  color: #777;
  opacity: 0.5;
  font-size: 12px;
}

.auth-form .form-control:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-auth {
  width: 100%;
  padding: 0.75rem;
  background-color: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-auth:hover {
  background-color: #5a67d8;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.forgot-password {
  color: #667eea;
  font-size: 0.85rem;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}
.remember-checkbox {
  width: 1rem;
  height: 1rem;
}
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #718096;
}

.auth-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.alert-danger {
  background-color: #fff5f5;
  color: #e53e3e;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #fed7d7;
  font-size: 0.9rem;
}
/* servvices */
.service-card {
  max-width: 600px;
  margin: 0 auto;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: white;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 30px;
}

.service-title {
  font-weight: 600;
  color: #2f2e41;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
}
.btn-secondary {
  padding: 0.625rem 1.25rem;
  display: flex;
  gap: 4px;
  align-items: center;
}
.btn-outline-primary,
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 8px;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  background-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.6;
}
.btn-fiverr {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-fiverr:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-fiverr i {
  margin-right: 8px;
  font-size: 18px;
}

.flags {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.flag-icon {
  font-size: 24px;
}
.service-card {
  max-width: 600px;
  margin: 0 auto;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: white;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 30px;
}

.service-title {
  font-weight: 600;
  color: #2f2e41;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-fiverr {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-fiverr:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-fiverr i {
  margin-right: 8px;
  font-size: 18px;
}

.flags {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.flag-icon {
  font-size: 24px;
}

/* how it work
 */
.how-it-works .step-box {
  padding: 20px;
}

.how-it-works .icon img {
  filter: grayscale(100%);
}

.how-it-works h5 {
  font-size: 1.25rem;
}

.how-it-works p {
  font-size: 0.95rem;
  color: #555;
}
.how-parcel-forwarding-works .step-1.triggerAnimation,
.how-parcel-forwarding-works .step-2.triggerAnimation,
.how-parcel-forwarding-works .step-3.triggerAnimation,
.how-parcel-forwarding-works .step-4.triggerAnimation {
  animation: pop 0.3s linear 0.5s;
  text-align: left;
}
.component-text {
  text-align: left;
}

.locations-section {
  background-color: #fff;
}

.location-card {
  display: flex;
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  color: inherit;
  text-decoration: none;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.hexagon-flag {
  width: 60px;
  height: 60px;
  position: absolute;
  margin-right: 15px;
  flex-shrink: 0;
  top: -30px;
  left: -20px;
}

.hexagon-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-content {
  flex-grow: 1;
}

.location-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6c757d;
  letter-spacing: 0.5px;
}

.location-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 5px 0;
  color: #212529;
}

.location-name img {
  width: 16px;
  margin-left: 5px;
}

.location-info {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}

.location-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 110px;
  opacity: 0.8;
}

.coming-soon-card {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  border-radius: 8px;
  padding: 20px;
  height: 100%;
  color: white;
}

.hexagon-logo {
  width: 60px;
  height: 60px;
  position: relative;
  margin-right: 15px;
  flex-shrink: 0;
}

.hexagon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coming-soon-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.coming-soon-content img {
  width: 16px;
  margin-left: 5px;
}
/* deliverrred today */

.delivered-today-section {
  /* background: linear-gradient(90deg, #4361ee, #f72585); */
  background-color: var(--primary-color);
}

/* Carousel Item Styles */
.carousel-item {
  padding: 0 10px;
}

.courier-logo {
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

.retailer-logo {
  max-height: 40px;
  width: auto !important;
  float: right;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
/* home caalculator */
/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      1200px 500px at 10% -20%,
      rgba(107, 77, 246, 0.16),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 100% 0%,
      rgba(255, 122, 26, 0.18),
      transparent 60%
    );
  padding: 2.6rem 1rem 1rem;
}
.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.hero h1 {
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  margin: 0.25rem 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: #2b2f47;
  max-width: 60ch;
}
.hero .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}
.pill {
  background: white;
  border: 1px solid #eceef6;
  color: #37406b;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.cta-row .btn {
  padding: 0.85rem 1.05rem;
}

/* Calculator Card */
.card {
  background: #fff;
  border: 1px solid #eceef6;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0.25rem 0 1rem;
}
.grid {
  display: grid;
  gap: 0.75rem;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #37406b;
  margin-bottom: 0.4rem;
}
input,
select {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1.5px solid #e5e7f1;
  border-radius: 12px;
  background: #fafbfe;
  font-weight: 600;
  color: #1b2140;
  outline: none;
  transition: border 0.15s ease;
}
input:focus,
select:focus {
  border-color: var(--brand);
}
.helper {
  font-size: 0.8rem;
  color: #61688b;
  margin-top: 0.4rem;
}
.switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.switch input {
  width: auto;
}
.submit-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.75rem;
}
.calc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.65rem;
}

/* Results */
.results {
  margin-top: 1rem;
  display: none;
}
.result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.sorter {
  display: flex;
  gap: 0.4rem;
}
.sorter button {
  background: #f3f4fa;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-weight: 700;
  color: #47507b;
  cursor: pointer;
}
.sorter .active {
  background: var(--brand);
  color: #fff;
}
.rate-list {
  display: grid;
  gap: 0.6rem;
}
.rate {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.8fr 0.8fr auto;
  gap: 0.6rem;
  align-items: center;
  border: 1px solid #eceef6;
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem;
}
.rate .name {
  font-weight: 800;
}
.rate .eta {
  font-weight: 700;
  color: #38406a;
}
.rate .price {
  font-weight: 900;
}
.rate .btn {
  padding: 0.6rem 0.9rem;
}

/* Hexagon Styles */
.hexagon-wrapper {
  width: 80px;
  margin: 0 auto;
}

.hexagon-shape {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 115.47%;
  /* Ratio for hexagon */
  background-color: #4d148c1f;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hexagon-shape-inner i {
  font-size: 3rem;
  color: var(--secondary-color);
}
.hexagon-shape-inner {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background-color: white;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-laptop {
  font-size: 24px;
  color: #333;
}

/* Country Info Styles */
.country-flag {
  width: 24px !important;
  height: 24px;
  object-fit: contain;
}

.country-name {
  font-size: 13px;
  font-weight: 500;
  display: block; /* takes full width of parent */
  width: 100%; /* fill parent width */
  white-space: nowrap; /* prevent wrapping */
  overflow: hidden; /* cut off overflow */
  text-overflow: ellipsis;
}

/* Metric Styles */
.metric {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Navigation Buttons */
.carousel-prev,
.carousel-next {
  padding: 5px;
}

.carousel-prev:hover,
.carousel-next:hover {
  color: var(--primary-color) !important;
}
/* return and price */

/* Base Styles */
.promo-section {
  padding: 50px 0;
}

/* Promo Card Styles */
.promo-card {
  height: 100%;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-size: auto;
  background-position: 105% 110%;
  background-repeat: no-repeat;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.rts-card {
  background-image: url('https://d2z2mkwk6fkehh.cloudfront.net/f2me/page/Homepage/background-rts.jpg');
}

.pmg-card {
  background-image: url('https://d2z2mkwk6fkehh.cloudfront.net/f2me/page/Homepage/backgound-pmg.jpg');
}

/* Content Styles */
.promo-content {
  max-width: 350px;
}
.promo-content h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.promo-content p {
  margin-bottom: 30px;
}
/* warehouses */
.brands {
  position: relative;
  overflow: hidden;
}
.brands img.bg-element-2 {
  position: absolute;
  left: -60px;
}
.brands img.bg-element-1 {
  position: absolute;
  right: -90px;
}
/* Footer Styles */
.promo-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.link {
  text-decoration: none !important;
}
.promo-btn,
.shippex-btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  padding: 10px 25px;
  font-weight: 600;
}

.promo-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.promo-logo {
  height: 100px;
  width: auto;
}

/* blog */
.post-page .thumbnail {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}
.post-page .post-content img {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.breadcrumb li a {
  text-decoration: none;
}
.breadcrumb {
  background-color: #eee;
  padding: 12px;
  border-radius: 5px;
}
/* footer */

/* Footer Styles */
#main-footer {
  background-color: #333;
  background-position: 50% -50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 99;
  opacity: 0;
  transition: all 0.3s ease;
}
#main-footer h4 {
  font-size: 1rem;
}
.back-to-top.active {
  opacity: 1;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: white;
}

.svg-icon {
  width: 16px;
  height: 16px;
}

/* Footer content */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #c1c1c1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

/* Dividers */
.divider-short {
  width: 40px;
  height: 1px;
  background-color: var(--secondary-color);
}

.divider-long {
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
}

/* Social icons */
.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: var(--secondary-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-icon:hover {
  color: white;
  background-color: var(--primary-color);
}

.social-icon .svg-icon {
  width: 18px;
  height: 18px;
}

/* Partner logos */
.partner-logos,
.payment-methods,
.security-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.partner-logo,
.payment-logo,
.security-logo {
  height: 30px;
  width: auto;
  /*object-fit: contain;*/
}

.payment-logo {
  height: 25px;
}
.text-purple {
  color: var(--primary-color);
}
.bg-shippex-purple {
  background-color: var(--primary-color) !important;
  padding: 0px;
}
.bg-shippex-orange {
  background-color: var(--secondary-color) !important;
}
.nav-link:focus-visible {
  box-shadow: none !important;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  margin: 0;
  border-radius: 0px;
}
.dropdown-item:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.dropdown-item:active {
  background-color: #4e148c6c;
}
@import url('media-queries.css');


/* Navbar fixes for purple background */
.navbar[style*="background-color: #502b8c"],
.navbar.bg-shippex-purple {
  /* Override Bootstrap .navbar-light styles */
  --navbar-light-color: rgba(255, 255, 255, 0.9);
  --navbar-light-hover-color: white;
  --navbar-light-active-color: white;
  --navbar-light-disabled-color: rgba(255, 255, 255, 0.3);
}

/* Navbar links - white on purple */
.navbar[style*="background-color: #502b8c"] .nav-link,
.navbar.bg-shippex-purple .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
}

.navbar[style*="background-color: #502b8c"] .nav-link:hover,
.navbar.bg-shippex-purple .nav-link:hover,
.navbar[style*="background-color: #502b8c"] .nav-link.active,
.navbar.bg-shippex-purple .nav-link.active {
  color: white !important;
}

/* Fix active underline to be orange on purple */
.navbar[style*="background-color: #502b8c"] .nav-link.menu-link.active::after,
.navbar.bg-shippex-purple .nav-link.menu-link.active::after {
  background-color: var(--secondary-color) !important; /* Orange underline */
  height: 3px;
}

/* Fix hover underline */
.navbar[style*="background-color: #502b8c"] .nav-item .nav-link::before,
.navbar.bg-shippex-purple .nav-item .nav-link::before {
  background-color: var(--secondary-color) !important; /* Orange hover */
}

/* Fix navbar toggler icon for light background */
.navbar[style*="background-color: #502b8c"] .navbar-toggler,
.navbar.bg-shippex-purple .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar[style*="background-color: #502b8c"] .navbar-toggler-icon,
.navbar.bg-shippex-purple .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Login button styling */
.navbar[style*="background-color: #502b8c"] .btn-outline-light,
.navbar.bg-shippex-purple .btn-outline-light {
  border-color: white;
  color: white;
}

.navbar[style*="background-color: #502b8c"] .btn-outline-light:hover,
.navbar.bg-shippex-purple .btn-outline-light:hover {
  background-color: white;
  color: #502b8c;
}

/* Dropdown menu styling */
.navbar[style*="background-color: #502b8c"] .dropdown-menu,
.navbar.bg-shippex-purple .dropdown-menu {
  background-color: white;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.navbar[style*="background-color: #502b8c"] .dropdown-item,
.navbar.bg-shippex-purple .dropdown-item {
  color: #333;
}

.navbar[style*="background-color: #502b8c"] .dropdown-item:hover,
.navbar.bg-shippex-purple .dropdown-item:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Icon colors */
.navbar[style*="background-color: #502b8c"] .nav-link i,
.navbar.bg-shippex-purple .nav-link i {
  color: rgba(255, 255, 255, 0.9);
}

.navbar[style*="background-color: #502b8c"] .nav-link.active i,
.navbar.bg-shippex-purple .nav-link.active i,
.navbar[style*="background-color: #502b8c"] .nav-link:hover i,
.navbar.bg-shippex-purple .nav-link:hover i {
  color: white;
}

/* Purple Footer Styles */
#main-footer {
  background: linear-gradient(135deg, #502b8c 0%, #4d148c 100%) !important;
  position: relative;
}

#main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), #ff8c00);
}

/* Footer link styles for purple background */
#main-footer .footer-links a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 0;
  display: inline-block;
  position: relative;
  font-weight: 400;
}

#main-footer .footer-links a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
  text-decoration: underline;
}

/* Social icons on purple */
#main-footer .social-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  transition: all 0.3s ease;
}

#main-footer .social-icon:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

#main-footer .social-icon .svg-icon {
  fill: white;
}

/* Divider styling */
#main-footer .divider-short {
  background: var(--secondary-color) !important;
  height: 3px;
  width: 50px;
}

#main-footer .divider-long {
  background: rgba(255, 255, 255, 0.2) !important;
  height: 1px;
}

/* Footer bottom */
#main-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.2) !important;
}

#main-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
}

#main-footer .footer-bottom a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline;
}

/* Back to top button for purple */
#main-footer .back-to-top {
  background: var(--secondary-color) !important;
  color: white;
}

#main-footer .back-to-top:hover {
  background: #ff5500 !important;
  transform: translateY(-3px);
}

/* Partner logos styling */
#main-footer{
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px;
}

#main-footer .partner-logo,
#main-footer .payment-logo {
  /*filter: brightness(0) invert(1);*/
  opacity: 0.9;
  transition: all 0.3s ease;
}

#main-footer .partner-logo:hover,
#main-footer .payment-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive improvements */
@media (max-width: 768px) {
  #main-footer {
    text-align: center;
  }
  
  #main-footer .divider-short {
    margin-left: auto;
    margin-right: auto;
  }
  
  #main-footer .partner-logos {
    justify-content: center;
  }
  
  #main-footer .social-links {
    justify-content: center;
  }
}