/* Outer section: full white background */
.about {
  background-color: #ffffff;
  padding: 40px 20px;margin-top:-23px;
}
/* Flex container for H3 and logo image */
.about-header {
  display: flex;
  align-items: center;
  gap: 12px; /* space between text and image */
  margin-bottom: 12px;
}

.about-header h3 {
  font-size: 24px;
  color: #222;
  margin: 0;
}

.about-header img {
  max-width: 50px;
  height: auto;
}


/* Inner content wrapper */
.about-inner {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  color: #222;

}

/* Grid layout: logo + video/text */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}

/* Logo styling */
.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-box img {
  width: 400px;
  height: auto;
}

/* Video + text styling */
.video-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #222;
}

.video-box img {
  max-width: 120px;
  margin-bottom: 12px;
}

.video-box p {
  font-size: 16px;
  margin-top: -23px;
  margin-bottom: 12px;
  color: #555;
}

/* Video styling */
.video-box video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Summary paragraph + button */
.about-summary {
  margin-top: 0px;
}

.about-summary p {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.contact-us {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #E95420;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-us:hover {
  background-color: #5f1a01;
  transform: translateY(-2px);
}

/* Responsive: stack grid on small screens */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-box {
    text-align: center;
  }
}
