/* ===============================
   CONNECT SECTION
================================= */
.connect-section {
  padding: 80px 20px;

  background: linear-gradient(135deg, #ff6e00, #00ff9c);
  background-size: 200% 200%;

  transition: background 1s ease;
}

/* WRAPPER */
.connect-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* HEADER */
.connect-header {
  text-align: center;
  margin-bottom: 50px;
}

.connect-header h2 {
  font-size: 38px;
  color: #007a4d; /* 🔥 GREEN */
  margin-bottom: 10px;
}

.connect-header p {
  color: #222;
}

/* ===============================
   CARDS
================================= */
.connect-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* CARD */
.connect-card {
  display: flex;
  align-items: center;
  gap: 25px;

  padding: 25px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  transition: all 0.4s ease;
}

/* HOVER */
.connect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* REVERSE */
.connect-card.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.connect-image {
  flex: 0.8;
  max-width: 350px;

  border-radius: 12px;
  overflow: hidden;
}

.connect-image img {
  width: 100%;
  height: auto;

  object-fit: cover;
  transition: transform 0.5s ease;
}

/* IMAGE HOVER */
.connect-card:hover img {
  transform: scale(1.08);
}

/* TEXT */
.connect-text {
  flex: 1.2;
}

.connect-text h3 {
  color: #007a4d; /* 🔥 GREEN */
  margin-bottom: 10px;
}

.connect-text p {
  color: #333;
  margin-bottom: 15px;
}

/* 🔥 BUTTON */
.connect-btn {
  display: inline-block;
  padding: 10px 18px;

  background: #ff6e00; /* 🔥 ORANGE */
  color: white;

  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;

  transition: 0.3s;
}

.connect-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 110, 0, 0.7);
}

/* ===============================
   MOBILE
================================= */
@media (max-width: 900px) {
  .connect-card {
    flex-direction: column;
    text-align: center;
  }

  .connect-card.reverse {
    flex-direction: column;
  }

  .connect-image {
    max-width: 100%;
  }
}
