/* Hero Section */
#hero-partner {
    position: relative;
    background: url('./images/bg2.webp') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
  }
  
  #hero-partner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0;
  }
  
  #hero-partner h1,
  #hero-partner p {
    position: relative;
    z-index: 1;
  }
  
#hero-partner h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;color: white;
}

#hero-partner p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;color: white;
}

/* Partner Boxes Section */
.partner-box {
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-box img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.partner-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #006400;
    margin-bottom: 10px;
}

.partner-box p {
    font-size: 1rem;
    color: #555;
}

.partner-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}
footer p{
    color: white;
}

















.part-reviews-wrapper {
    width: 100%;
    margin: 60px auto;
    padding: 0 20px;
    margin-top: 0;
  }
  
  .part-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color:#006400;
  }
  
  .part-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .part-review-card {
    background-color: #ffffff;
    padding: 25px;border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .part-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  
  .part-customer-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }
  
  .part-customer-role {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
  }
  
  .part-customer-feedback {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }
  