
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  
  background-color: #fff;
  line-height: 1.6;
}


.about-section {
   position: relative;
  padding: 60px 20px;
  background-color: #fdfdfd;
  background-image:url(images/slides-3.jpeg);
  background-size: cover;
  
  z-index: 0;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(images/slides-3.jpeg);
  background-size: cover;
  background-position: center;
  filter: blur(6px); 
  z-index: -1; 
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}


.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 24px;
  color: orange;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: white;
  line-height: 1.8;
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-content {
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content h3 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 15px;
  }
}
/* Animation keyframes */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes */
.animated {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.2s;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}
