body {
  font-family: "Montserrat", sans-serif;
   padding-top: 90px; /* adjust based on your navbar height */
}
.navbar {
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
  height: 50px; /* adjust logo size */
}
.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s;
}
.nav-link:hover {
  color: #54e2ea !important; /* charcoal hover */
}
.btn-login {
  background-color: #54e2ea;
  color: #fff;
  border-radius: 25px;
  padding: 0.4rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-login:hover {
  background-color: #333;
  color: #fff;
}
/* -----------------------------------------------------------------------  INDEX START */
/* Hero Carousel */
.carousel-item {
  height: 100vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.carousel-caption {
  bottom: 30%;
}
.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  animation: fadeInDown 1s ease-in-out;
}
.carousel-caption p {
  font-size: 1.2rem;
  margin: 15px 0;
  animation: fadeInUp 1.2s ease-in-out;
}
.btn-cta {
  background-color: #54e2ea;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: fadeInUp 1.5s ease-in-out;
}
.btn-cta:hover {
  background-color: #333;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*. ------------------ Solutions Section */
/* Background */
#solutions {
  background: linear-gradient(135deg, #454752, #2c2e34);
  color: #fff;
}

/* Solution Box Styling */
.solution-box {
  background: #fff;
  color: #000;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}
.solution-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}
.solution-box .icon {
  color: #54e2ea;
  transition: transform 0.3s ease;
}
.solution-box:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

/* Scroll Reveal Animation */
.solution-box.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

/* EFFICIENCY SECTION */
.efficiency-bg {
  background: linear-gradient(135deg, #6610f2, #54e2ea);
  position: relative;
  overflow: hidden;
}

/* Optional abstract shapes */
.efficiency-bg::before,
.efficiency-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  z-index: 0;
}
.efficiency-bg::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
}
.efficiency-bg::after {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -50px;
}

/* Circular Progress Placeholder */
.efficiency-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 8px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  transition: transform 0.5s ease;
  z-index: 1;
}
.efficiency-circle span {
  position: absolute;
  z-index: 2;
  color: #fff;
}
.efficiency-circle:hover {
  transform: scale(1.1);
}


/* TESTIMONIAL SECTION */
.testimonials {
    background: linear-gradient(90deg,#6610f2, #0d6efd ); 
}
.testimonial-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ----------- ABOUT US SECTION */
#about .about-img img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
#about .about-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.about-btn {
    background-color: #54e2ea;
    color: #fff;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ---------- PROCESS */
.process-timeline {
  position: relative;
  align-items: flex-start;
}

.process-item {
  flex: 1;
  min-width: 200px;
  padding: 10px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.process-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0d6efd, #54e2ea);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.process-circle:hover {
  transform: scale(1.15) rotate(8deg);
}

.process-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(90deg,#54e2ea, #0d6efd );
  margin: 30px 0;
  border-radius: 2px;
}

.process-item:hover {
  transform: translateY(-8px);
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .process-line {
    display: none !important;
  }
  .process-item {
    margin-bottom: 40px;
  }
}

/* WHY CHOOSE US */
.choose-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.choose-card i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.choose-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* ----------- STATS SECTION */
.stat-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.stat-card i {
  transition: transform 0.3s ease;
}
.stat-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

/* COUNTRIES SECTION */ 
.countries-carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.countries-carousel {
  display: flex;
  gap: 30px;
  animation: scrollFlags 30s linear infinite;
}

.country-flag {
  height: 60px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.country-flag:hover {
  transform: scale(1.2);
}

/* Infinite scroll animation */
@keyframes scrollFlags {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move half since we duplicated flags */
}


/* FOOTER */
footer a:hover {
  text-decoration: underline;
  color: #0d6efd; /* Bootstrap primary */
}

footer h3, footer h5 {
  color: #fff;
}

footer p, footer li {
  color: #ccc;
}
/* -----------------------------------------------------------------------  INDEX END */

/* -----------------------------------------------------------------------  ABOUT START */
#about-hero {
  height: 100vh;
  /* Replace the URL below with your own image path if needed */
  background: url('../images/aboutpg.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#about-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5); /* dark overlay for readability */
  z-index:0;
}

#about-hero .container {
  position: relative;
  z-index:1;
}

#about-hero h1 {
  font-size: 3rem;
}

#about-hero p {
  font-size: 1.25rem;
}

#about-hero .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* OUR STORY SECTION */
#our-story h2 {
  font-size: 2.5rem;
}

#our-story p {
  font-size: 1.1rem;
  line-height: 1.7;
}

#our-story img {
  transition: transform 0.4s ease;
}

#our-story img:hover {
  transform: scale(1.05);
}

#mission img,
#vision img {
  transition: transform 0.4s ease;
}

#mission img:hover,
#vision img:hover {
  transform: scale(1.05);
}

#mission h2,
#vision h2 {
  font-size: 2.5rem;
}

#mission p,
#vision p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.service-card i {
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

.process-step {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #0d6efd;
}

.eff-card {
  background: #f0f4f8;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* -----------------------------------------------------------------------  ABOUT END */
/* -----------------------------------------------------------------------  GIVE GOOD START */
#give-good-hero {
  height: 100vh;
  background: url('../images/givegoodhero.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#give-good-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5); /* dark overlay */
  z-index:0;
}

#give-good-hero .container {
  position: relative;
  z-index:1;
}

#give-good-hero h1 {
  font-size: 3rem;
}

#give-good-hero p {
  font-size: 1.25rem;
}

#give-good-hero .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

#courier-qualities h2 {
  font-size: 2.5rem;
}

#courier-qualities h5 {
  font-size: 1.5rem;
}

#courier-qualities p {
  font-size: 1.1rem;
  line-height: 1.7;
}

#shipment-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

#shipment-form button:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease;
}


/* -----------------------------------------------------------------------  GIVE GOOD END */
/* -----------------------------------------------------------------------  DEMAND ORDER START  */
#demand-order-hero {
  height: 100vh;
  background: url('../images/demandorder.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#demand-order-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5); /* dark overlay for readability */
  z-index:0;
}

#demand-order-hero .container {
  position: relative;
  z-index:1;
}

#demand-order-hero h1 {
  font-size: 3rem;
}

#demand-order-hero p {
  font-size: 1.25rem;
}

#demand-order-hero .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* -----------------------------------------------------------------------  DEMAND ORDER END */
/* -----------------------------------------------------------------------  GALLERY START */
#gallery-hero {
  height: 100vh;
  background: url('../images/gallerymain.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.55); /* Dark overlay */
  z-index:0;
}

#gallery-hero .container {
  position: relative;
  z-index:1;
}

#gallery-hero h1 {
  font-size: 3rem;
}

#gallery-hero p {
  font-size: 1.25rem;
}

#gallery-hero .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

#gallery-carousel img {
  max-height: 500px;
  object-fit: cover;
}



/* -----------------------------------------------------------------------  GALLERY END */

/* -----------------------------------------------------------------------  CONTACT START */
#contact-hero {
  height: 100vh;
  background: url('../images/contactmain.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact-hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.55); /* Overlay */
  z-index:0;
}

#contact-hero .container {
  position: relative;
  z-index:1;
}

#contact-hero h1 {
  font-size: 3rem;
}

#contact-hero p {
  font-size: 1.25rem;
}

#contact-hero .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

#map {
  background: #f9f9f9;
}

#map .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Background section */
#contact-info-form {
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
}

/* Form Wrapper */
#contact-info-form .form-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contact-info-form .form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 30px;
  transition: background 0.4s ease, transform 0.2s ease;
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #0056b3, #0099cc);
  transform: scale(1.05);
}

/* Floating labels */
.form-floating label {
  color: #6c757d;
  transition: color 0.3s ease;
}

.form-floating input:focus ~ label,
.form-floating textarea:focus ~ label {
  color: #007bff;
}

/* -----------------------------------------------------------------------  CONTACT END */