@import url('https://rsms.me/inter/inter.css');

:root {
  --tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  --primary-blue: #0054a6;
  --secondary-blue: #0066cc;
  --accent-orange: #ff6b35;
  --accent-gold: #ffbe34;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
}

body {
  font-feature-settings: "cv03", "cv04", "cv11";
  line-height: 1.6;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  color: white;
  max-width: 400px;
  padding: 2rem;
}

.loader-logo h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: 1px;
}

.loader-spinner {
  margin: 2rem 0;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

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

.loader-text {
  margin-top: 2rem;
}

.loader-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-weight: 400;
}

.loader-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), #ffda6b);
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 190, 52, 0.5);
}

.loader-percentage {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

/* Animation for loader elements */
.loader-logo h2 {
  animation: fadeInUp 0.8s ease-out;
}

.loader-spinner {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.loader-text {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Mobile Responsive for Loader */
@media (max-width: 768px) {
  .loader-container {
    padding: 1.5rem;
    max-width: 300px;
  }
  
  .loader-logo h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .spinner {
    width: 50px;
    height: 50px;
  }
  
  .loader-text p {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  height: 100vh;
}

.hero-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-slide-cargo {
  background-image: url('../img/cargo-ship-navigating-ocean.jpg');
}

.hero-slide-natural {
  background-image: url('../img/bowls-with-natural-herbs.jpg');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
  padding-top: 80px;
}

.hero-content .container {
  max-width: 1200px;
}

.hero-content .row {
  justify-content: flex-start;
}

.hero-content .col-lg-8 {
  padding-left: 2rem;
}

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

.hero-title {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: white;
  line-height: 1.1;
  margin-top: 0;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
  color: white;
  line-height: 1.4;
  max-width: 700px;
}

/* Mobile Responsive Hero Text */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
  }
  
  .hero-carousel {
    height: 100vh;
  }
  
  .hero-slide {
    height: 100vh;
    background-attachment: scroll;
  }
  
  .hero-content {
    padding-top: 120px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-content .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-content .col-lg-8 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  }
  
  .hero-cta {
    margin-top: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 0 !important;
  }
  
  /* Override all button styles for mobile */
  .hero-cta .btn,
  .btn-hero-primary,
  .btn-hero-outline {
    padding: 1rem 1.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 300px !important;
    border-radius: 12px !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    min-height: 56px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
    border-width: 2px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
  }
  
  .hero-cta .btn:hover,
  .btn-hero-primary:hover,
  .btn-hero-outline:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35) !important;
  }
  
  .hero-cta .btn span,
  .btn-hero-primary span,
  .btn-hero-outline span {
    margin-right: 0.75rem !important;
    font-weight: 700 !important;
  }
  
  .hero-cta .btn svg,
  .btn-hero-primary svg,
  .btn-hero-outline svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2.5 !important;
    margin-left: 0 !important;
  }
  
  /* Make first button more prominent */
  .hero-cta .btn-hero-primary {
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: #000 !important;
    font-size: 1.15rem !important;
    min-height: 60px !important;
    box-shadow: 0 8px 25px rgba(255, 190, 52, 0.4) !important;
  }
  
  /* Make second button more visible */
  .hero-cta .btn-hero-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
    color: white !important;
    backdrop-filter: blur(10px);
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
    margin-bottom: 1.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding-top: 70px;
  }
}

.hero-cta {
  margin-top: 2rem;
}

/* Carousel Custom Styling */
.carousel-indicators {
  bottom: 30px;
  z-index: 3;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: white;
  transform: scale(1.2);
}

/* Hide carousel side controls */
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* Extra mobile safety for carousel controls */
@media (max-width: 768px) {
  /* Completely disable carousel functionality on mobile */
  .carousel {
    pointer-events: none !important;
  }
  
  .carousel-inner {
    pointer-events: auto !important;
  }
  
  /* Target all possible carousel control selectors */
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-control-prev-icon,
  .carousel-control-next-icon,
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next,
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next,
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next,
  [data-bs-slide="prev"],
  [data-bs-slide="next"],
  button[data-bs-slide],
  a[data-bs-slide] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -999 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    transform: scale(0) !important;
  }
  
  /* Target any dynamically added controls */
  [class*="carousel-control"],
  [class*="carousel-prev"],
  [class*="carousel-next"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0) !important;
  }
  
  /* Specific targeting for common carousel control classes */
  .carousel-control,
  .carousel-prev,
  .carousel-next,
  .carousel-arrow,
  .carousel-navigation,
  .carousel-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0) !important;
  }
  
  /* Remove any touch/swipe functionality on mobile */
  .carousel-inner {
    touch-action: pan-y !important;
  }
}

/* Animation for carousel items */
.carousel-item {
  transition: transform 1s ease-in-out;
}

/* Custom Hover Effects */
.btn.hover-filled-opacity {
  position: relative;
  overflow: hidden;
  background: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  color: rgb(0, 0, 0) !important;
  padding: 0.8rem 1.2rem !important;
  font-size: 1.05rem;
  border-radius: 8px;
  font-weight: 600;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn.hover-filled-opacity::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn.hover-filled-opacity:hover::before {
  opacity: 1;
}

.btn.hover-filled-opacity:hover {
  color: white !important;
  border-color: black;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn.hover-filled-opacity span,
.btn.hover-filled-opacity svg {
  position: relative;
  z-index: 1;
}

/* White transparent buttons for second buttons */
.btn.hover-filled-white {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  padding: 0.8rem 1.2rem !important;
  font-size: 1.05rem;
  border-radius: 8px;
  font-weight: 600;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn.hover-filled-white::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn.hover-filled-white:hover::before {
  opacity: 1;
}

.btn.hover-filled-white:hover {
  color: black !important;
  border-color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.btn.hover-filled-white span,
.btn.hover-filled-white svg {
  position: relative;
  z-index: 1;
}

/* Advanced Border Hover Effect for Yellow Buttons */
.btn.hover-border-11 {
  position: relative;
  overflow: visible;
}

.btn.hover-border-11::before,
.btn.hover-border-11::after {
  content: '';
  position: absolute;
  width: 100%; 
  height: 2px;
  z-index: 2;
  transition: 0.35s; 
}


.btn.hover-border-11:hover::before,
.btn.hover-border-11:hover::after {
  width: 0%;
  transition: 0.2s 0.2s ease-out; 
}

.btn.hover-border-11 span {
  position: relative;
  display: inline-block;
}

.btn.hover-border-11 span::before,
.btn.hover-border-11 span::after {
  content: '';
  position: absolute;
  width: 2px; 
  height: 100%;
  background-color: black;
  z-index: 2;
  transition: 0.25s; 
}

.btn.hover-border-11 span::before {
  bottom: 0; 
  right: -2px;
}

.btn.hover-border-11 span::after {
  top: 0; 
  left: -2px;
}

.btn.hover-border-11:hover span::before,
.btn.hover-border-11:hover span::after {
  height: 0%;
}

.btn-hero {
  padding: 12px 30px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border-width: 2px !important;
  min-height: 48px !important;
}

/* Yellow button: yellow bg, black text, hover to black bg, white text */
.btn-hero-primary {
  background: var(--accent-gold) !important;
  border: 2px solid var(--accent-gold) !important;
  color: black !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.3s cubic-bezier(.4,0,.2,1) !important;
}

.btn-hero-primary:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(255, 190, 52, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* White outline button */
.btn-hero-outline {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.3s cubic-bezier(.4,0,.2,1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-hero-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.btn-hero-outline:hover::before,
.btn-hero-outline:focus::before {
  opacity: 1;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
  color: #000 !important;
  border-color: #fff !important;
  transform: translateY(-2px) !important;
}

.btn-hero-outline span,
.btn-hero-outline svg {
  position: relative;
  z-index: 1;
}

/* CTA Button */
.btn-cta {
  background: #fff !important;
  border: 2px solid #fff !important;
  color: #000 !important;
  padding: 1rem 2rem !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  min-height: 52px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

.btn-cta:hover {
  background: transparent !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}

.btn-cta svg {
  margin-left: 0.5rem;
}

.btn-hero-outline {
  background: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: black;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.btn-hero-outline.hover-filled-opacity::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.btn-hero-outline.hover-filled-opacity:hover::before {
  opacity: 1;
}

.btn-hero-outline.hover-filled-opacity:hover {
  color: white;
  border-color: black;
  transform: translateY(-2px);
}

.btn-hero-outline.hover-filled-opacity span,
.btn-hero-outline.hover-filled-opacity svg {
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar-business {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-business.navbar-solid {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-business .navbar-brand {
  font-weight: 700;
  font-size: 2rem;
  color: white !important;
  transition: color 0.3s ease;
}

.navbar-business.navbar-solid .navbar-brand {
  color: var(--primary-blue) !important;
}

.navbar-business .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  padding: 0.8rem 1.2rem !important;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.navbar-business .nav-link:hover {
  color: var(--accent-gold) !important;
}

.navbar-business.navbar-solid .nav-link {
  color: var(--text-dark) !important;
}

.navbar-business.navbar-solid .nav-link:hover {
  color: var(--accent-gold) !important;
}

/* Mobile Navigation Styling */
.navbar-toggler {
  border: none !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 8px !important;
  width: 45px !important;
  height: 45px !important;
  display: none !important; /* Hide by default */
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
  position: relative !important;
}

/* Show hamburger only on mobile/tablet */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: flex !important;
  }
}

.navbar-toggler:focus {
  box-shadow: 0 2px 10px rgba(0,0,0,0.25) !important;
  outline: none !important;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.05) !important;
}

/* Custom hamburger lines */
.navbar-toggler-icon {
  display: none !important;
}

.navbar-toggler::before,
.navbar-toggler::after,
.navbar-toggler span {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-toggler::before {
  top: 15px;
}

.navbar-toggler span {
  top: 22px;
}

.navbar-toggler::after {
  top: 29px;
}

/* Transform to X when active */
.navbar-toggler[aria-expanded="true"]::before {
  top: 22px;
  transform: translateX(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"]::after {
  top: 22px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Adjust colors when navbar is solid */
.navbar-business.navbar-solid .navbar-toggler {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.navbar-business.navbar-solid .navbar-toggler::before,
.navbar-business.navbar-solid .navbar-toggler::after,
.navbar-business.navbar-solid .navbar-toggler span {
  background: #2c3e50;
}

.navbar-business.navbar-solid .navbar-toggler:hover {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

/* Mobile Menu Background */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
  
  .navbar-business .nav-link {
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.2rem 0 !important;
    margin: 0;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    text-align: center;
  }
  
  .navbar-business .nav-link:last-child {
    border-bottom: none;
  }
  
  .navbar-business .btn.nav-link {
    margin-top: 1.5rem;
    text-align: center;
    border-radius: 12px;
    padding: 1.2rem 2rem !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 190, 52, 0.4);
    background: var(--accent-gold) !important;
    border: 2px solid var(--accent-gold) !important;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .navbar-business .btn.nav-link:hover {
    background: #000 !important;
    border-color: #fff !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }
  
  .navbar-business .btn.nav-link span {
    margin-right: 0.75rem;
    font-weight: 700;
  }
  
  .navbar-business .btn.nav-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
  }
}

/* About Company Mobile Styles */
@media (max-width: 991.98px) {
  .about-company-image {
    display: none;
  }
  
  .about-company-image-mobile {
    display: block !important;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 12px;
  }
  
  .about-company-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }
  
  .about-company-image-mobile:hover img {
    transform: scale(1.05);
  }
  
  .about-company-section {
    padding-top: 4rem;
    min-height: auto;
  }
  
  .about-company-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .about-company-subtitle {
    justify-content: flex-start;
  }
}

.navbar-business .btn.nav-link {
  border: 1px solid var(--accent-gold);
  border-radius: 5px;
  background: var(--accent-gold);
  color: rgb(0, 0, 0) !important;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

.navbar-business .btn.nav-link.hover-filled-opacity::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.navbar-business .btn.nav-link.hover-filled-opacity:hover::before {
  opacity: 1;
   color: white !important;
}

.navbar-business .btn.nav-link.hover-filled-opacity:hover {
  color: white !important;
  border-color: black;
}

.navbar-business .btn.nav-link.hover-filled-opacity span,
.navbar-business .btn.nav-link.hover-filled-opacity svg {
  position: relative;
  z-index: 1;
}

.navbar-business.navbar-solid .btn.nav-link {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: black !important;
}

.navbar-business.navbar-solid .btn.nav-link.hover-filled-opacity:hover {
  color: white !important;
}

/* Services Overview Section */
.services-overview-section {
  padding: 100px 0;
  background: #fafafa;
}

.services-overview-header {
  margin-bottom: 2rem;
}

.services-overview-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accent-bar {
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  display: inline-block;
}

.services-overview-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0;
}

.view-all-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.view-all-link:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  transform: translateX(5px);
}

.view-all-link svg {
  transition: transform 0.3s ease;
}

.view-all-link:hover svg {
  transform: translateX(3px);
}

.service-overview-card {
  background: white;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.service-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--accent-gold);
}

.service-overview-number {
  font-size: 1rem;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.service-overview-icon {
  margin-bottom: 2rem;
  color: var(--text-dark);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.service-overview-card:hover .service-overview-icon {
  color: var(--accent-gold);
  opacity: 1;
  transform: scale(1.05);
}

.service-overview-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-overview-card-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.learn-more-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.learn-more-link:hover {
  color: var(--text-dark);
  transform: translateX(3px);
}

.learn-more-link svg {
  transition: transform 0.3s ease;
}

.learn-more-link:hover svg {
  transform: translateX(2px);
}

/* Image Service Cards */
.service-overview-card-image {
  overflow: hidden;
}

.service-overview-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  position: relative;
}

.service-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.service-overview-card-image:hover .service-overview-image img {
  transform: scale(1.1);
}

.service-overview-card-image .service-overview-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-overview-card-image .service-overview-icon {
  display: none;
}

/* Image Only Service Cards */
.service-overview-card-image-only {
  background: white;
  border-radius: 8px;
  padding: 0;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-overview-card-image-only:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--accent-gold);
}

.service-overview-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.service-overview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 8px;
}

.service-overview-card-image-only:hover .service-overview-image {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services-overview-section {
    padding: 60px 0;
  }
  
  .services-overview-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  
  .service-overview-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .services-overview-subtitle {
    font-size: 0.85rem;
  }
  
  .accent-bar {
    width: 30px;
  }
  
  .view-all-link {
    margin-top: 1rem;
    justify-content: center;
  }
  
  .service-overview-image {
    height: 180px;
    margin-bottom: 1.5rem;
  }
  
  .service-overview-card-image-only {
    margin-bottom: 1.5rem;
    height: 300px;
    padding: 0;
  }
  
  .service-overview-image-container {
    height: 100%;
  }
  
  .service-overview-image {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .services-overview-title {
    font-size: 2rem;
  }
  
  .service-overview-card {
    padding: 1.5rem 1rem;
  }
  
  .service-overview-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .service-overview-card-image-only {
    margin-bottom: 1rem;
    height: 250px;
    padding: 0;
  }
  
  .service-overview-image-container {
    height: 100%;
  }
  
  .service-overview-image {
    height: 100%;
    margin-bottom: 0;
  }
}

/* How It Work Section */
.how-it-work-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.how-it-work-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.how-it-work-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.how-it-work-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.step-card:hover {
  background: #1e3a8a;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: #e5e7eb;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  color: rgba(255, 255, 255, 0.2);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.step-card:hover .step-title {
  color: white;
}

.step-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.step-card:hover .step-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Support By Section */
.support-by-section {
  text-align: center;
  padding: 3rem 0 1rem;
}

.support-by-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

.support-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.support-logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #9ca3af;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.support-logo:hover {
  color: var(--text-dark);
  opacity: 1;
}

/* Mobile Responsive for How It Work */
@media (max-width: 768px) {
  .how-it-work-section {
    padding: 60px 0;
  }
  
  .how-it-work-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  
  .step-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .step-number {
    font-size: 3rem;
  }
  
  .support-logos {
    gap: 1.5rem;
  }
  
  .support-logo {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .how-it-work-title {
    font-size: 2rem;
  }
  
  .step-card {
    padding: 1.5rem 1rem;
  }
  
  .step-number {
    font-size: 2.5rem;
  }
}

/* About Company Section */
.about-company-section {
  min-height: 110vh;
  padding: 120px 0;
  background: #2c2c2c;
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-company-section .container {
  position: relative;
  z-index: 2;
}

.about-company-content {
  padding-right: 2rem;
  padding-left: 0;
}

.about-company-header {
  margin-bottom: 3rem;
}

.about-company-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-company-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 0;
}

.about-company-text {
  margin-bottom: 3rem;
}

.about-company-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.about-company-text p:last-child {
  margin-bottom: 0;
}

.about-company-stats {
  margin-top: 3rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

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

.stat-card-yellow {
  background: var(--accent-gold);
  color: #000;
}

.stat-card-blue {
  background: #1e3a8a;
  color: white;
}

.stat-card-label {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.stat-card-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-company-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45vw;
  height: 70%;
  overflow: hidden;
  z-index: 1;
  border-radius: 0;
}

.about-company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
}

.about-company-image:hover img {
  transform: scale(1.05);
}

.about-company-image-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .about-company-image-mobile {
    display: block !important;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 12px;
  }
  
  .about-company-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 12px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-company-section {
    min-height: auto;
    padding: 80px 0;
    overflow: visible;
  }
  
  .about-company-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 0;
    text-align: left;
  }
  
  .about-company-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  
  .about-company-text {
    margin-bottom: 2rem;
  }
  
  .about-company-stats {
    margin-top: 2rem;
  }
  
  .about-company-stats .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .stat-card {
    padding: 1.5rem 1rem;
    text-align: center;
  }
  
  .stat-card-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .about-company-title {
    font-size: 2rem;
  }
  
  .about-company-image {
    height: 250px;
  }
  
  .stat-card {
    padding: 1.2rem 0.8rem;
  }
  
  .stat-card-number {
    font-size: 2rem;
  }
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(255, 107, 53, 0.9), rgba(229, 90, 43, 0.9)), url('../img/cargo-ship-navigating-ocean.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 50px 0 30px;
}


/* White button: transparent bg, white border, white text, hover to white bg, black text */
.btn-hero-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.btn-hero-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.btn-hero-outline:hover::before,
.btn-hero-outline:focus::before {
  opacity: 1;
}
.btn-hero-outline:hover,
.btn-hero-outline:focus {
  color: #000;
  border-color: #fff;
}
.btn-hero-outline span,
.btn-hero-outline svg {
  position: relative;
  z-index: 1;
}
/* Existing responsive styles updated above */

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
  .hero-slide {
    background-attachment: scroll;
  }
  
  .cta-section {
    background-attachment: scroll;
  }
  
  .navbar-business {
    padding: 0.8rem 0;
  }
  
  .navbar-business .navbar-brand {
    font-size: 1.6rem;
  }
  
  .services-section {
    padding: 40px 0;
  }
  
  .stats-section {
    padding: 40px 0;
  }
  
  .about-section {
    padding: 40px 0;
  }
  
  .cta-section {
    padding: 40px 0;
  }
  
  .service-card {
    padding: 30px 20px;
    margin-bottom: 1rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Mobile Button Improvements */
  .btn {
    font-size: 1.1rem !important;
    padding: 1rem 1.5rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-width: 2px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease !important;
    text-transform: none !important;
    letter-spacing: 0.5px;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }
  
  .btn span {
    margin-right: 0.75rem;
    font-weight: 700;
  }
  
  .btn svg {
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    stroke-width: 2.5;
  }
  
  /* CTA Section Mobile Buttons */
  .cta-section .btn {
    font-size: 1.2rem !important;
    padding: 1.2rem 2.5rem !important;
    min-height: 60px;
    border-radius: 15px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-width: 3px !important;
  }
  
  .cta-section .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
  }
  
  /* Footer Links Mobile */
  .footer-link {
    font-size: 1rem !important;
    padding: 0.5rem 0 !important;
    display: inline-block;
  }
  
  /* Responsive Navigation Brand */
  .navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem !important;
    line-height: 1.4;
    padding: 0 1.5rem !important; /* More padding for very small screens */
    margin-bottom: 1rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.5rem !important;
    line-height: 1.4;
    padding: 0 2.5rem !important; /* More padding for very small screens */
    margin-bottom: 1.5rem !important;
  }
  
  .hero-content {
    padding-top: 40px;
    padding-left: 2.5rem !important; /* More padding for very small screens */
    padding-right: 1.5rem !important;
  }
  
  .hero-content .col-lg-8 {
    padding-left: 0.5rem !important; /* Reduce to avoid double padding */
    padding-right: 0.5rem !important;
  }
  
  .hero-cta .btn {
    padding: 1rem 1.2rem !important;
    font-size: 1rem !important;
    min-height: 54px;
  }
  
  .hero-cta .btn:first-child {
    font-size: 1.1rem !important;
    min-height: 58px;
  }
  
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .navbar-toggler {
    padding: 0.25rem 0.5rem !important;
  }
  
  .navbar-toggler-icon {
    width: 1.25em !important;
    height: 1.25em !important;
    background-size: 1.25em !important;
  }
  
  .cta-title {
    font-size: 1.8rem !important;
  }
  
  .about-title {
    font-size: 1.8rem !important;
  }
  
  .btn {
    font-size: 1rem !important;
    padding: 0.9rem 1.2rem !important;
    min-height: 52px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 1.8rem !important;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Extra padding for hero content */
  .hero-content {
    padding-top: 40px;
  }
  
  .hero-cta {
    padding: 0 0.5rem;
  }
}
