/* --- Section Styling --- */
.team-synctac .about-section {
  padding: 80px 0;
  background-color: #fff;
  color: #333;
}
.team-synctac .about-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.team-synctac .about-description {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  color: #555;
}

/* --- Team Section --- */
.team-synctac #teambkg {
  background: #f9f9f9;
  padding: 80px 0;
}
.team-synctac #teamcontainer {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.team-synctac #teamheading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
}

/* --- Team Profiles --- */
.team-synctac #profile {
  display: inline-block;
  width: 220px;
  margin: 20px;
  text-align: center;
  vertical-align: top;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}
.team-synctac #profile:nth-child(2) { animation-delay: 0.2s; }
.team-synctac #profile:nth-child(3) { animation-delay: 0.4s; }
.team-synctac #profile:nth-child(4) { animation-delay: 0.6s; }
.team-synctac #profile:nth-child(5) { animation-delay: 0.8s; }

.team-synctac #profileimage {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

/* Hover Animation */
.team-synctac #profile:hover #profileimage {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  filter: brightness(1.1);
}

/* Fade-up keyframe */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-synctac #profileheading {
  margin-top: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #111;
}
.team-synctac #profilesubheading {
  color: #777;
  font-size: 0.95rem;
}

/* --- CTA Section --- */
.team-synctac .cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #111;
  color: #fff;
}
.team-synctac .cta-heading {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.team-synctac .cta-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.team-synctac .cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #fff;
  color: #111;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.team-synctac .cta-button:hover {
  background-color: #ffb400;
  color: #fff;
}
/* --- Contact Page Styling --- */
.contact-hero {
  background: linear-gradient(135deg, #111, #1e1e1e);
  color: #fff;
  text-align: center;
  padding: 100px 20px 60px;
}
.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-hero p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Contact Form Section --- */
.contact-section {
  background: #fff;
  padding: 80px 20px;
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

/* Left Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.contact-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.contact-details {
  margin-top: 30px;
}
.contact-details div {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}
.contact-details strong {
  color: #111;
}

/* Right Form */
.contact-form {
  flex: 1;
  min-width: 340px;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* --- CF7 Styling --- */
.wpcf7-form p {
  margin-bottom: 20px;
}
.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #ffb400;
  box-shadow: 0 0 0 3px rgba(255,180,0,0.15);
  outline: none;
}
.wpcf7-form textarea {
  height: 120px;
  resize: none;
}
.wpcf7-submit {
  display: inline-block;
  background: #111;
  color: ##22205e;
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.wpcf7-submit:hover {
  background: #22205e;
  color: #fff;
}

/* --- Animation --- */
.contact-section {
  animation: fadeUp 1s ease both;
}
.map {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 15px;
    background: #f9f9f9;
}
.map iframe {
  width: 99%;
  border-radius: 20px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}