/* Modern About & Village Info Styling */

.about-modern-section {
    background: linear-gradient(135deg, #d9ecff 0%, #b5dcff 100%);
    padding: 90px 0;
  }
  .about-title {
    font-size: 42px;
    font-weight: 800;
    color: #1b1b1b;
    margin-bottom: 25px;
  }
  .about-title span {
    color: #007bff;
  }
  .about-desc {
    color: #333;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
  }
  .about-btn {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .about-btn:hover {
    background: #0056b3;
  }
  .about-image {
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
  }
  .about-image:hover {
    transform: scale(1.03);
  }
  
  /* 🌾 Village Info Modern Section */
  .village-info-modern {
    background: linear-gradient(180deg, #ffffff 0%, #eaf3ff 100%);
    padding: 100px 0;
  }
  .section-header h1 {
    font-weight: 800;
    color: #1b1b1b;
    font-size: 42px;
  }
  .section-header h1 span {
    color: #007bff;
  }
  .section-header .divider {
    width: 80px;
    height: 4px;
    background: #007bff;
    margin: 12px auto 25px;
    border-radius: 2px;
  }
  .section-header p {
    max-width: 850px;
    margin: auto;
    color: #333;
    line-height: 1.9;
    font-size: 17px;
  }
  
  .info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
  }
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  .info-card h3 {
    color: #007bff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
  }
  .info-card p {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-title {
      font-size: 32px;
    }
    .section-header h1 {
      font-size: 34px;
    }
    .info-card {
      padding: 20px;
    }
  }
  