/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Header section */
.about-header {
  position: relative;
  background-image: url('./image/img1.jpg'); /* 🖼️ Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.about-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* black transparent layer */
  z-index: 1;
}

.about-header h2 {
  font-size: 48px;
  z-index: 2;
  position: relative;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}


/* About section layout */
 body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
      color: #333;
    }

   .about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 20px;
  gap: 40px;
  background-color: #f9f9f9;
}

.about-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.about-image img {
  width: 100%;
  height: auto;
  
}

.about-content {
  flex: 1;
  min-width: 280px;
  max-width: 700px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.highlight-blue {
  color: #007BFF;
  font-weight: 600;
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    padding: 0 10px;
  }
}


