.about-hero {
  position: relative;
  height: 420px;
  top: 62px;
  overflow: hidden;
}

/* IMAGE DEFAULT */
.about-hero img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 🔥 DESKTOP FIX (1280px and above) */
@media (min-width: 1280px) {
  .about-hero {
    height: 500px;               
  }

}

/* TABLET & SMALL DESKTOP */
@media (max-width: 1279px) {
  .about-hero img {
    object-fit: cover;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-hero {
    height: 360px;
  }
}

/* ================= OVERLAY ================= */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* CONTENT CENTER */
.about-hero-content {
  max-width: 700px;
  padding: 0 20px;
}

/* H1 – PREMIUM GRADIENT */
.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;

  background: linear-gradient(135deg, #eaffc7, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.hero-subtext {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto;
}

/* TABLET */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }
}

/* MOBILE TEXT */
@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 14px;
  }
}


.company-overview {
  background: #ffffff;
  padding: 120px 0px 0px 0px;
}

.company-overview__wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT CONTENT */
.company-overview__content {
  flex: 1;
}

.company-overview__title {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 600;
}

.company-overview__content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

/* RIGHT VIDEO */
.company-overview__video {
  flex: 1;
  display: flex;
  justify-content: center;
}

.company-overview__video video {
  width: 100%;
  max-width: 225px;
  height: 400px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* -------- TABLET -------- */
@media (max-width: 1024px) {
  .company-overview {
    padding: 100px 0px 20px 0px;
  }

  .company-overview__wrapper {
    gap: 50px;
  }

  .company-overview__title {
    font-size: 30px;
  }
}

/* -------- MOBILE -------- */
@media (max-width: 767px) {
  .company-overview__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  /* show video first */
  .company-overview__video {
    order: -1;
  }

  .company-overview__video video {
    max-width: 280px;
    height: 301px;
  }

  .company-overview__title {
    font-size: 26px;
    text-align: center;
  }

  .company-overview__content p {
    font-size: 14px;
    text-align: left;
  }
}

.pp-who-we-are-for__cards-list {
  margin: 80px;
  gap: 70px;
}

.who-we-are-for-card__title {
  font-size: 28px;
}

.who-we-are-for-card__description {
  font-size: 15px;
  max-width: 450px;
}

.who-we-are-for-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* TABLET */
@media (max-width: 1024px) {
  .pp-who-we-are-for__cards-list {
    margin: 35px;
    gap: 50px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .pp-who-we-are-for__cards-list {
    margin: 35px;
    gap: 25px;
  }
  .who-we-are-for-card__title {
    font-size: 26px;
  }

  .who-we-are-for-card__description {
    font-size: 13px;
  }
}

/* Card header: image + title */
.who-we-are-for-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.who-we-are-for-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Keep text above gradient */
/* .who-we-are-for-card__title,
.who-we-are-for-card__description {
  position: relative;
  z-index: 2;
}
 */

/* CORE VALUES */
.core-values {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.02);
}

.core-values__container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.core-values__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grr {
  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.core-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.core-value-card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.core-value-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.core-value-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* HOVER EFFECT */
.core-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ICON WRAPPER */
.core-value-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(140, 255, 0, 0.18),
    rgba(34, 197, 94, 0.18)
  );

  transition: all 0.3s ease;
}

/* IMAGE ICON */
.core-value-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* CARD HOVER EFFECT */
.core-value-card:hover .core-value-icon {
  background: linear-gradient(
    135deg,
    rgba(140, 255, 0, 0.28),
    rgba(34, 197, 94, 0.28)
  );
}

.core-value-card:hover .core-value-icon img {
  transform: scale(1.1);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 767px) {
  .core-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .core-value-icon img {
    width: 30px;
    height: 30px;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .core-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values__title {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .core-values {
    padding: 60px 0;
  }

  .core-values__grid {
    grid-template-columns: 1fr;
  }

  .core-values__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .core-value-card {
    padding: 30px 22px;
  }

  .core-value-card h3 {
    font-size: 22px;
  }

  .core-value-card p {
    font-size: 14px;
  }
}

.about-team {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff, #f6f7f9);
}

.about-team h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 70px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 45px;
}

/* CARD */
.team-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* IMAGE WRAPPER */
.team-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;  
}

/* IMAGE */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; 
  transition: transform 0.6s ease;
}


.team-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* LINKEDIN */
.linkedin-btn {
  width: 42px;
  height: 42px;
  background: #0a66c2;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.team-card:hover .linkedin-btn {
  transform: translateY(0);
}

/* TEXT */
.team-card h4 {
  margin-top: 18px;
  font-size: 18px;
}

.team-card span {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-team {
    padding: 80px 15px;
  }

  .team-image img {
    height: 240px;
  }
}

/* GALLERY SECTION */
.about-gallery {
  padding: 120px 20px;
  background: linear-gradient(180deg, #fafafa, #ffffff);
}

.about-gallery h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 70px;
}

/* MASONRY GRID */
.gallery-masonry {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 220px;
  gap: 24px;
}

/* ITEMS */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.05));
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  font-size: 16px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-masonry {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .about-gallery {
    padding: 80px 15px;
  }

  .about-gallery h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .gallery-masonry {
    grid-auto-rows: 180px;
    gap: 18px;
  }
}

/* CONTACT SECTION */
.about-contact {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff, #f6f7f9);
}

.contact-box {
  max-width: 820px;
  margin: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* TAG */
.contact-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(140, 255, 0, 0.15);
  color: #3a7d12;
  margin-bottom: 16px;
}

/* TEXT */
.contact-box h2 {
  font-size: 38px;
  margin-bottom: 14px;
}

.contact-subtext {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* FORM */
.contact-form {
  margin-top: 10px;
}

.form-row {
  display: flex;
  gap: 22px;
  margin-bottom: 22px;
}

.form-group {
  position: relative;
  width: 100%;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: transparent;
  outline: none;
  transition: all 0.3s ease;
}

/* FLOATING LABEL */
.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #888;
  pointer-events: none;
  transition: all 0.25s ease;
  background: #fff;
  padding: 0 6px;
}

.form-group textarea + label {
  top: 22px;
}

/* ACTIVE STATE */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #8cff00;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #22c55e;
}

/* TEXTAREA */
.form-group textarea {
  min-height: 130px;
  resize: none;
}

/* BUTTON */
.contact-btn {
  margin-top: 10px;
  padding: 16px 50px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #053f2a, #065f33, #027a3f);
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-contact {
    padding: 90px 15px;
  }

  .contact-box {
    padding: 40px 22px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-box h2 {
    font-size: 30px;
  }

  .contact-subtext {
    font-size: 14px;
  }
}
