/* GLOBAL STYLES */
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

section {
  padding: 80px 0;
}

/*  NAVBAR  */
.custom-navbar {
  height: 70px;
  padding: 0;
  display: flex;
  align-items: center;

  background: #e1ebef;
  /*  Gray background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
}

/* LOGO SIZE */
.logo {
  height: 140px;
  /* base height */
  width: auto;
  transform: scale(1.4);
  transform-origin: left center;
}

@media (max-width: 768px) {
  .logo {
    transform: scale(1.1);
  }
}

/* On scroll shrink logo */
.custom-navbar.scrolled .logo {
  height: 45px;
}

/* MENU ALIGNMENT */
.navbar-nav {
  gap: 30px;
  align-items: center;
}

/* LINKS */
.navbar-nav .nav-link {
  padding: 6px 0;
  font-weight: 500;
  color: #000;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #077c17;
}

/* CONTACT BUTTON */
.nav-btn {
  background: #ffc107;
  color: #000 !important;
  padding: 6px 15px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #e0a800;
}

/* MOBILE */
@media (max-width: 991px) {
  .navbar-nav {
    gap: 15px;
    padding-top: 15px;
  }

  .nav-btn {
    margin-top: 10px;
  }
}

/* CTA BUTTON */

.nav-btn {
  background: #179b08;
  color: #fff !important;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #d62828;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* MOBILE */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    padding-top: 15px;
  }

  .nav-btn {
    margin-top: 10px;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section {
  padding-top: 70px; 
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Deep Green Text */
.text-deep-green {
  color: #07b730;
  font-weight: 700;
}

/* Smooth fade animation */
.animate-text {
  display: inline-block;
  animation: fadeSlide 1.2s ease-in-out;
}

/* Hero paragraph styling */
.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e6e6e6;
  max-width: 720px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease-in-out;
}

/* Soft entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bounce Animation */
.bounce-btn {
  animation: bounce 2s infinite;
}

/* Bounce Keyframes */
@keyframes bounce {

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

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

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

/* Hover enhancement */

.bounce-btn:hover {
  animation-play-state: paused;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 128, 0, 0.3);
}

/* Animation */

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

/* Content */
.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: auto;
}

.hero-content {
  max-width: 850px;
  margin: auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(183, 195, 239, 0.15);
  color: #0acd1a;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-text {
  color: #ffffff !important;
}

.hero-content h1 {
  line-height: 1.2;
}

.hero-content p {
  max-width: 650px;
  margin: auto;
  color: #e0e0e0;
}

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

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  animation: moveBg 10s ease-in-out infinite alternate;
  transform-origin: center;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  z-index: 3;
}

/* BACKGROUND ANIMATION */
@keyframes moveBg {
  0% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.05) translateX(-30px);
  }
  100% {
    transform: scale(1.1) translateX(30px);
  }
}
 
/* SERVICES */

.services-section {
  background: #f8f9fa;
}

.service-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 90px;
  height: 90px;
  background: #fff3cd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 40px;
  color: #0949c0;
}

.service-box h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-btn {
  background: linear-gradient(135deg, #03cb49, #0a39ba);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: linear-gradient(135deg, #1f4fd8, #0d1b44);
  color: #fff;
}

#service {
  scroll-margin-top: 90px;
  
}

/* WAREHOUSE SECTION */
.warehouse-section {
  background: #f3f4f5;
}

.title-line {
  width: 60px;
  height: 4px;
  background: #ff3b3b;
  margin: 15px 0;
}

/* ADVANTAGE SECTION */
.advantage-section {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  padding: 90px 0;
}

.adv-title {
  font-weight: 700;
  color: #0f172a;
}

.adv-title span {
  color: #1f6fdc;
  position: relative;
}

.adv-title span::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #1fa34a;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* CARD */
.adv-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.adv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f6fdc, #1fa34a);
  opacity: 0;
  transition: 0.35s;
  z-index: 0;
}

.adv-card:hover::before {
  opacity: 0.08;
}

.adv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

.adv-card * {
  position: relative;
  z-index: 1;
}

/* ICON */
.adv-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(31, 111, 220, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #1f6fdc;
}

/* TEXT */
.adv-card h5 {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.adv-card p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}


/* WORKFLOW */
.workflow-card {
  background: #f3f4f5;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* FOOTER */
.main-footer {
  background: #f3f4f5;
  padding: 70px 0 30px;
}

.main-footer h6 {
  font-weight: 700;
  margin-bottom: 15px;
}

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

.main-footer ul li {
  margin-bottom: 8px;
  color: #444;
}

.footer {
  background: #0b1c2d;
  color: #ccc;
  padding: 15px;
  text-align: center;
  font-size: 14px;
}

.workflow-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

.workflow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.workflow-img {
  width: 100%;
  max-width: 180px;
  margin-bottom: 20px;
}

.workflow-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.workflow-card p {
  font-size: 15px;
  color: #555;
}

/* PRESENCE SECTION  */
.presence-section {
  background: linear-gradient(135deg, #f9fafb, #eef1f4);
  padding: 100px 0;
}

/* Section Titles */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
}

.section-subtitle {
  color: #6b7280;
  max-width: 480px;
  margin: 0 auto 30px;
  font-size: 1rem;
}

/* Badge */
.section-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Map */
.map-wrapper {
  margin-top: 30px;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
}

.map-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.presence-map {
  width: 100%;
  border-radius: 18px;
}

/* VALUES */
.values-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Card */
.value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 22px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Icon */
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Text */
.value-card h5 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f2937;
}

.value-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Map Styling */
.presence-map {
  max-width: 75%;
  margin: auto;
  border-radius: 10px;
}

/* VALUES */
.values-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.value-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.value-line {
  width: 4px;
  height: 100%;
  background: #00a8cc;
  border-radius: 10px;
}

.value-card h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.value-card h5 span {
  color: #00a8cc;
}

.value-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .presence-map {
    max-width: 90%;
  }
}
.values-down {
  margin-top: 140px; 
}

/* Mobile fix */
@media (max-width: 991px) {
  .values-down {
    margin-top: 30px;
  }
}

.warehouse-section {
  background: #f8f9fa;
}

.section-badge {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.title-line {
  width: 70px;
  height: 4px;
  background: #000;
  border-radius: 10px;
}

.warehouse-section p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.warehouse-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.warehouse-img-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.warehouse-img-wrapper:hover img {
  transform: scale(1.05);
}

.contact-section {
  background-color: #f2f2f2;
  color: #212529;
}

/* CLIENT WORDS SECTION */
.client-words-section {
  background: #fff;
}

.title-underline {
  width: 120px;
  height: 3px;
  background: #4fb6ff;
  margin-top: 10px;
}

/* Testimonial Card */
.testimonial-card {
  position: relative;
  background: #fff;
  padding: 40px 25px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* Quote Corner */
.quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #2f73ff;
  border-bottom-left-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  color: #fff;
  font-size: 28px;
}

/* Stars */
.stars i {
  color: #ffc107;
  margin: 0 2px;
}

/* Text */
.testimonial-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
/* ABOUT ORION SECTION */
.about-orion-section {
  background: #ffffff;
}

.about-title {
  font-weight: 700;
  font-size: 32px;
}

.about-underline {
  width: 140px;
  height: 3px;
  background: #4fb6ff;
  margin: 12px 0 25px;
}

.about-orion-section p {
  color: #333;
  line-height: 1.7;
  font-size: 15.5px;
}

/* Address List */
.about-address-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-address-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
}

.about-address-list i {
  color: #e63946;
  margin-top: 4px;
}

/* Image Styling */
.about-image-wrapper {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.about-orion-section {
  scroll-margin-top: 90px;
}

#process {
  scroll-margin-top: 90px; 
}
/* WHY CHOOSE US SECTION */

.why-choose-section {
  background: #fff;
}

.why-image-wrapper img {
  max-width: 100%;
}

.why-card {
  padding: 10px 0;
}

.why-card i {
  font-size: 28px;
  color: #f4b400;
  margin-bottom: 10px;
  display: inline-block;
}

.why-card h5 {
  font-weight: 600;
  color: #0b1f44; 
  margin-bottom: 8px;
}

.why-card .divider {
  display: block;
  width: 60px;
  height: 2px;
  background: #ddd;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .why-card {
    text-align: center;
  }
}
/* Brand text colors */
.brand-ars {
  color: #1fa34a; 
  font-weight: 700;
}

.brand-solutions {
  color: #094caa;
  font-weight: 700;
  margin-left: 6px;
}
#choose {
  scroll-margin-top: 90px;
}

.contact-section {
  background-color: #f3f4f6;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-details li {
  margin-bottom: 16px;
  font-size: 14.5px;
  color: #374151;
}

.contact-details a {
  color: #1f6fdc;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.form-control {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14.5px;
}

.form-control:focus {
  border-color: #1f6fdc;
  box-shadow: 0 0 0 0.15rem rgba(31, 111, 220, 0.25);
}

.btn-success {
  border-radius: 30px;
  font-weight: 600;
}
#contact {
  scroll-margin-top: 90px; 
}
.main-footer {
  padding-top: 24px;
}

.main-footer hr {
  margin: 16px 0;
}
