/*==============================*
NAVBAR
===============================*/
.navbar {
  padding: 1rem 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.nav-links li a:hover {
  color: #ffcc00;
}


/*==============================*
HERO SECTION
===============================*/
.hero-section {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-image{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .middle-texts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
  }
  
  .middle-texts h1 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .hero-button {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .hero-button button {
    background-color: #362b77;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .hero-button button:hover {
    background-color: #362b77;
  }
  
  /*------hero overay----------*/
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 42, 118, 0.6); /* #392a76 with 60% opacity */
    z-index: 1;
}

/*==============================*
SERVICE CARDS
===============================*/
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h1 {
  color: #1e174f; /* same color as other section headings */
  font-size: clamp(2rem, 5vw, 5em);
}

@media screen and (max-width: 768px) {
  .section-header h1 {
    font-size: 2em;
    padding: 0 1rem;
  }
}

.service-card {
  background-color: #f5f5fa;
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: #1e174f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  margin: 0;
}

/* Grid remains the same */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1rem;
}




/*==============================*
GUMISA NUMBERS
===============================*/
#gumisa-figures {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  #section-header h2 {
    font-size: 2rem;
    color: #392a76;
    margin-bottom: 2rem;
  }
  
  .figures-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .logistics-figures h1 {
    font-size: 3rem;
    color: #392a76;
    margin-bottom: 0.5rem;
  }
  
  .logistics-figures p {
    font-size: 1rem;
    color: #333;
  }
  
  @media screen and (min-width: 768px) {
    .figures-wrapper {
      flex-direction: row;
      justify-content: space-around;
    }
  }
  
/*==============================*
CALL TO ACTION, DESTINATIONS
===============================*/

#destinations-call-to-action {
    background-color: #392a76; /* Matching the dark blue button color */
    color: white;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  #destinations-call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .destinations-texts p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .destinations-texts button {
    background-color: white;
    color: #392a76;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .destinations-texts button:hover {
    background-color: #ddd;
  }
  