/*==============================*
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;
  }
  
  /* Dropdown styles */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    list-style: none;
    padding: 0.5rem 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 10;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #1e174f;
    text-decoration: none;
    font-weight: normal;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f4f4f4;
    color: #392a76;
  }
  
  /* Show the dropdown on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  /*==============================*
HERO SECTION
===============================*/
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    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;
}

/*==============================*
MAIN-SERVICES
===============================*/
/* Section Base */
#main-services-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 4rem;
    color: #1e174f;
  }
  
  /* Card Grid */
  .microfinance-services {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Cards */
  .loan-service-card,
  .insurance-service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 320px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  /* Icon styling */
  .service-icon {
    font-size: 2.5rem;
    color: #392a76;
    margin-bottom: 1rem;
  }
  
  /* On Hover */
  .loan-service-card:hover,
  .insurance-service-card:hover {
    transform: translateY(-10px);
  }
  
  /* Text styles */
  .loan-service-card h3,
  .insurance-service-card h3 {
    color: #1e174f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .loan-service-card p,
  .insurance-service-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Button styles */
  .see-more-btn {
    background-color: #392a76;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .see-more-btn:hover {
    background-color: #1e174f;
  }
  