/* About Us Section Styles */
.about-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 20px;
  background: #f8f9fa;
  overflow: hidden;
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80"),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80"),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80");
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.about-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #d2a557, #e8cc87);
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.experience-counter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.counter-number {
  font-size: 9rem;
  font-weight: 900;
  color: #d2a557;
  line-height: 1;
  font-family: "Arial", sans-serif;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.counter-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin: 0;
  position: relative;
  padding-bottom: 15px;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #d2a557, #e8cc87);
  border-radius: 2px;
}

/* Enquire Now button */
.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  width: fit-content;
}

.about-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.45);
  /* background: linear-gradient(135deg, #0056b3 0%, #003d82 100%); */
  background: linear-gradient(135deg, #d2a557 0%, #e8cc87 100%);
  color: #fff;
}

.about-button:active {
  transform: translateY(0);
}

.about-button:focus-visible {
  outline: 2px solid #d2a557;
  outline-offset: 3px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* About Images Layout */
.about-right {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.about-images {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-rows: 1fr 1fr; */
  gap: 20px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

.image-main {
  grid-column: 1 / 3;
  grid-row: 1;
  height: 300px;
}

.image-secondary {
  grid-column: 1;
  grid-row: 2;
  height: 250px;
}

.image-tertiary {
  grid-column: 2;
  grid-row: 2;
  height: 250px;
}

/* Founder Section */
.founder-section {
  grid-column: 1/3;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Top row: image and name-title side by side */
.founder-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.founder-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.founder-name-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}

.founder-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.2;
  color: #d2a557;
}

.founder-title {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Bottom: description full width */
.founder-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: #555;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-heading {
    font-size: 3rem;
    margin-bottom: 50px;
  }

  .about-content {
    gap: 60px;
  }

  .counter-number {
    font-size: 7.5rem;
  }

  .about-title {
    font-size: 2.8rem;
  }

  .founder-section {
    gap: 20px;
    padding: 20px;
  }

  .founder-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 968px) {
  .about-section {
    padding: 100px 20px;
  }

  .section-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-right {
    min-height: 400px;
  }

  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-main {
    grid-column: 1;
    grid-row: 1;
    height: 250px;
  }

  .image-secondary {
    grid-column: 1;
    grid-row: 2;
    height: 200px;
  }

  .image-tertiary {
    grid-column: 1;
    grid-row: 3;
    height: 200px;
  }

  .founder-section {
    gap: 20px;
    padding: 20px;
    margin-top: 15rem;
  }

  .founder-name {
    font-size: 1.3rem;
  }

  .founder-title {
    font-size: 0.95rem;
  }

  .founder-description {
    font-size: 0.9rem;
  }

  .counter-number {
    font-size: 6rem;
  }

  .about-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }

  .section-heading {
    font-size: 2.2rem;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
  }

  .about-content {
    gap: 40px;
  }

  .experience-counter {
    margin-bottom: 15px;
  }

  .counter-number {
    font-size: 5.5rem;
  }

  .counter-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-right {
    min-height: 350px;
  }

  .image-main {
    height: 220px;
  }

  .image-secondary,
  .image-tertiary {
    height: 180px;
  }

  .founder-section {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 20px;
  }

  /* Stack image above name-title on smaller screens */
  .founder-image {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-image img {
    width: 90px;
    height: 90px;
  }

  .founder-name-title {
    align-items: center;
    text-align: center;
  }

  .founder-name {
    font-size: 1.2rem;
  }

  .founder-title {
    font-size: 0.9rem;
    text-align: center;
  }

  .founder-description {
    font-size: 0.85rem;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 15px;
  }

  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .about-content {
    gap: 30px;
  }

  .counter-number {
    font-size: 4.5rem;
  }

  .counter-text {
    font-size: 1rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-images {
    gap: 15px;
  }

  .image-main {
    height: 200px;
  }

  .image-secondary,
  .image-tertiary {
    height: 160px;
  }

  .founder-section {
    padding: 15px;
    margin-top: 12rem;
    gap: 12px;
  }

  .founder-image img {
    width: 80px;
    height: 80px;
  }

  .founder-name {
    font-size: 1.1rem;
  }

  .founder-title {
    font-size: 0.85rem;
  }

  .founder-description {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}
