/* ============================
   General Styles
============================ */
.inside {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.field__input {
  width: 280px;
}

/* ============================
   Team Page Styles
============================ */
.team-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.team-card {
  width: 300px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover .overlay {
  background: rgba(0, 0, 0, 0.1);
}

/* ============================
   Team Image Styling
============================ */
.team-img {
  width: 100%;
  height: 54vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.team-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

/* ============================
   Team Content Styling
============================ */
.team-content {
  padding: 10px;
}
.team-content .block__top-sub {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin-bottom: 5px;
}
.team-content .block__title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-content .block__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}

/* ============================
   Contact Info
============================ */
.block-contact {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.block-contact li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #333;
}
.block-contact li i {
  font-size: 16px;
  color: #0073e6;
}
.block-contact li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.block-contact li a:hover {
  color: #0073e6;
}

/* ============================
   Read More Button
============================ */
.more {
  margin-top: 15px;
}
.more .popup-btn {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.more .popup-btn:hover {
  background: #005bb5;
}

/* ============================
   Popup Modal Styles
============================ */
.popup-modal {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 1200px;
  height: 100vh;
  background: #fff;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  transition: left 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
  z-index: 99999;
}
.popup-modal.active {
  display: block;
  left: 0;
}
.popup-modal .popup-content {
  display: flex;
  height: 100%;
}
.popup-modal .popup-content .popup-inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.popup-modal .popup-content .popup-inner .popup-image {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}
.popup-modal .popup-content .popup-inner .popup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.popup-modal .popup-content .popup-inner .popup-text {
  flex: 1;
  padding: 80px 40px;
  overflow-y: auto;
}
.popup-modal .popup-content .popup-inner .popup-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}
.popup-modal .popup-content .popup-inner .popup-text .popup-meta {
  margin-bottom: 20px;
}
.popup-modal .popup-content .popup-inner .popup-text .popup-meta p {
  color: #666;
  margin: 5px 0;
  font-size: 1.1rem;
}
.popup-modal .popup-content .popup-inner .popup-text .popup-description {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
}
.popup-modal .popup-content .popup-inner .popup-text .popup-contact {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.popup-modal .popup-content .popup-inner .popup-text .popup-contact p {
  margin: 8px 0;
}
.popup-modal .popup-content .popup-inner .popup-text .popup-link {
  display: inline-block;
  padding: 12px 25px;
  background: #0073e6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.popup-modal .popup-content .popup-inner .popup-text .popup-link:hover {
  background: #005bb5;
  transform: translateY(-2px);
}
.popup-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.popup-modal .close-btn:hover {
  color: #0073e6;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(90deg);
}

/* ============================
   Popup Overlay
============================ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
  transition: opacity 0.3s ease;
  z-index: 99989;
}
.popup-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================
   Responsive Design
============================ */
@media (max-width: 768px) {
  .popup-modal {
    width: 100%;
    max-width: none;
  }
  .popup-inner {
    flex-direction: column;
  }
  .popup-image {
    flex: 0 0 300px;
    width: 100%;
  }
  .popup-text {
    padding: 25px;
  }
  .close-btn {
    top: 10px;
    right: 10px;
  }
}/*# sourceMappingURL=style.css.map */