@font-face {
    font-family: 'ClashGrotesk-Medium';
    src: url('../fonts/ClashGrotesk-Medium.ttf');
    
}
.title3 {
  font-size: 30px;
  text-align: left;
  text-transform: uppercase;
  font-family: 'ClashGrotesk-Medium';
/*   margin: 0 0 40px 0; */
  position: relative;
}
.title {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'ClashGrotesk-Medium';
  margin: 0 0 20px 0;
  position: relative;
}

/* bottom line */
/* .title::after {
 content: "";
  display: block;
  width: 50px;
  height: 1.5px;
  background: #000;
  margin-top: 12px;
  justify-self: center;
} */

.subtitle{
  font-size:18px;
  text-align:center;
  text-transform:uppercase;
  font-family: 'ClashGrotesk-Medium';
}
 /* SECTION */
.team-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fbfc 0%, #ffffff 100%);
  overflow: hidden;
}

.team-container {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.team-title {
  text-align: center;
  font-size: 13px;
  letter-spacing: 3px;
  color: #7fb6c8;
  margin-bottom: 80px;
  font-weight: 600;
  position: relative;
}

.team-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #d7b58a;
  margin: 15px auto 0;
}

/* TEAM ITEM */
.team-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
  padding: 35px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}

/* LEFT ACCENT LINE */
.team-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #d7b58a, #7fb6c8);
  border-radius: 10px;
}

/* IMAGE */
.team-img {
  position: sticky;
  top: 20px; /* optional – keeps image visually stable */
  align-self: flex-start;
}

.team-img img {
  width: 160px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* IMAGE BORDER EFFECT */
.team-img::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(215,181,138,0.35);
  border-radius: 16px;
  z-index: -1;
}

/* CONTENT */
.team-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
  letter-spacing: 0.5px;
}

.team-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 620px;
}

/* DECORATIVE BRUSH */
.brush {
  position: absolute;
  width: 90px;
  height: 90px;
  background: url("images/orange-brush.png") no-repeat center;
  background-size: contain;
  opacity: 0.9;
}

.brush.left {
  left: -20px;
  top: 18%;
}

.brush.right {
  right: -20px;
  bottom: 18%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }

  .team-item::before {
    display: none;
  }

  .team-img img {
    margin: 0 auto 20px;
  }

  .team-content p {
    margin: auto;
  }
}
/* READ MORE FEATURE */
.team-text {
  max-height: 120px; /* controls how much text is visible */
  overflow: hidden;
  transition: max-height 0.4s ease;
  position: relative;
}

.team-text.expanded {
  max-height: 2000px;
}

/* Fade effect */
.team-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
}

.team-text.expanded::after {
  display: none;
}

/* Button */
.read-more-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #d7b58a;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.stats-section {
  padding: 90px 20px;
  background: #ffffff;
}

.stats-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

/* NUMBER */
.stat-item h2 {
  font-size: 72px;
  font-weight: 700;
  color: #0c74bb;
  margin-bottom: 10px;
  font-family: 'ClashGrotesk-Medium';
  letter-spacing: 2px;
}

.stat-item h2 span {
  font-size: 42px;
}

/* LABEL */
.stat-item p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin: 0;
  position: relative;
  display: inline-block;
}

/* UNDERLINE */
.stat-item p::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #000;
  margin: 10px auto 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .stat-item h2 {
    font-size: 56px;
  }
}





.about-section {
  padding: 100px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT COLUMN */
.text-col {
  flex: 1;
}


.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  max-width: 480px;
}

/* RIGHT COLUMN */
.image-col {
  flex: 1.2;
  position: relative;
}

.image-wrapper {
  position: relative;
}

.main-img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* OVERLAPPING IMAGE */
.overlay-img {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 45%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: #fff;
}

.image-caption {
  margin-top: 15px;
  font-size: 13px;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-row {
    flex-direction: column;
  }

  .overlay-img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin-top: 20px;
  }

  .about-text {
    max-width: 100%;
  }
}
