
.hero-section {
  background: url('/bg11.avif') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  flex-direction: column;
  padding: 0 15px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: 'Times New Roman', Times, serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 20px;
  letter-spacing: 1px;
  font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}






.about-section {
    padding: 60px 30px;
    background-color: #f5f5f5;
    font-family: 'Georgia', serif;
  }
  
  .about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #008080;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
  }
  
  .read-more-btn {
    background-color: #008080;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #006666;
    transform: scale(1.05);
  }
  
  .about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .about-image:hover {
    transform: scale(1.02);
  }
  
  
  
  
  
  .mark-section {
    padding: 60px 30px;
    background-color: #f5f5f5;
    font-family: 'Georgia', serif;
  }
  
  .mark-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #008080;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .mark-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
  }
  
  .btn-read-more {
    background-color: #008080;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .btn-read-more:hover {
    background-color: #006666;
    transform: scale(1.05);
  }
  
  .img-fluid {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .img-fluid:hover {
    transform: scale(1.02);
  }




