.elementor-6828 .elementor-element.elementor-element-8b03eef{--display:flex;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-6828 .elementor-element.elementor-element-8b0550b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:1024px){.elementor-6828 .elementor-element.elementor-element-8b03eef{--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(max-width:767px){.elementor-6828 .elementor-element.elementor-element-8b03eef{--margin-top:-80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS */<style>
/* =========================================
   PREMIUM TEAM SECTION CSS
   ========================================= */

.pro-team-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #eef2f7, #dbe5f1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.pro-team-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pro-team-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 45px;
  font-weight: 500;
}

.pro-team-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pro-team-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  animation: fadeUp 0.8s forwards;
  opacity: 0;
}

.pro-team-card:hover {
  transform: translateY(-6px);
  border-color: #81a7ff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.pro-team-card.ceo {
  grid-column: span 2;
  grid-row: span 2;
}

/* IMAGE BLOCK */
.pro-team-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.pro-team-img img {
  width: 100%;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.pro-team-card:hover img {
  transform: scale(1.12);
}

/* OVERLAY BIO */
.pro-team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 25, 0.87);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
  border-radius: 18px;
  font-size: 15px;
  line-height: 1.5;
}

.pro-team-card:hover .pro-team-overlay {
  opacity: 1;
}

/* TEXT */
.pro-team-card h3 {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

.role {
  font-size: 15px;
  color: #777;
  margin-bottom: 10px;
}

/* ICONS */
.pro-team-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
  cursor: default;
}

.icon:hover {
  transform: scale(1.3) rotate(8deg);
}

/* FADE-UP ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE FIX FOR CEO */
@media(max-width: 768px) {
  .pro-team-card.ceo {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .pro-team-title {
    font-size: 32px;
  }
}
</style>


<!-- =========================================
     TEAM SECTION HTML
     ========================================= -->

<section class="pro-team-section">
  <h2 class="pro-team-title">Meet Our Amazing Team</h2>
  <p class="pro-team-subtitle">The People Behind Our Success</p>

  <div class="pro-team-grid">

    <!-- CEO BLOCK -->
    <div class="pro-team-card ceo">
      <div class="pro-team-img">
        <img src="OWNER-IMAGE-URL" alt="CEO">
        <div class="pro-team-overlay">
          <p>
            Visionary leader with expertise in strategy, innovation, and business growth. 
            Building the company with passion, precision, and long-term vision.
          </p>
        </div>
      </div>
      <h3>CEO Name</h3>
      <p class="role">Founder & CEO</p>

      <div class="pro-team-icons">
        <i class="icon">👑</i>
        <i class="icon">🚀</i>
        <i class="icon">⭐</i>
      </div>
    </div>

    <!-- Team Member 1 -->
    <div class="pro-team-card">
      <div class="pro-team-img">
        <img src="IMAGE-URL" alt="Team Member">
        <div class="pro-team-overlay">
          <p>Short bio about the team member. Add 2-3 lines describing expertise.</p>
        </div>
      </div>
      <h3>Member Name</h3>
      <p class="role">Designation</p>
      <div class="pro-team-icons">
        <i class="icon">✨</i>
        <i class="icon">💼</i>
      </div>
    </div>

    <!-- Team Member 2 -->
    <div class="pro-team-card">
      <div class="pro-team-img">
        <img src="IMAGE-URL" alt="Team Member">
        <div class="pro-team-overlay">
          <p>Short bio about the team member. Add 2-3 lines describing expertise.</p>
        </div>
      </div>
      <h3>Member Name</h3>
      <p class="role">Designation</p>
      <div class="pro-team-icons">
        <i class="icon">✨</i>
        <i class="icon">💼</i>
      </div>
    </div>

    <!-- Team Member 3 (Duplicate this 11 more times for all 14 members) -->
    <div class="pro-team-card">
      <div class="pro-team-img">
        <img src="IMAGE-URL" alt="Team Member">
        <div class="pro-team-overlay">
          <p>Short bio about the team member. Add 2-3 lines describing expertise.</p>
        </div>
      </div>
      <h3>Member Name</h3>
      <p class="role">Designation</p>
      <div class="pro-team-icons">
        <i class="icon">✨</i>
        <i class="icon">💼</i>
      </div>
    </div>

    <!-- Continue duplicating until all 14 blocks are completed -->

  </div>
</section>/* End custom CSS */