/* Import stylish fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Font Style for Entire Website */
body, h1, h2, h3, h4, h5, h6, p, a, li, input, textarea, button {
    font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdfdfd;
  color: #1a1a1a;
}

.about-section {
  padding: 100px 20px;
  background: linear-gradient(120deg, #f9f9f9 60%, #ffffff 100%);
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Images */
.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images .img-box {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-images .img-box:hover {
  transform: scale(1.07);
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Content */
.about-content {
  flex: 1;
}

.section-title {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.section-title span {
  color: #ff6600;
  font-weight: 800;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

/* Stats */
.about-stats {
  display: flex;
  gap: 40px;
  margin: 30px 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ebae63;
  display: block;
}

.stat-text {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
}

/* Button */
.btn-readmore {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ff6600, #ff9900);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-readmore:hover {
  background: linear-gradient(45deg, #ff9900, #ff6600);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }
  .about-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
  .about-stats {
    flex-direction: column;
    align-items: center;
  }
}


.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}
