/* General Styles */
.header {
  background: #222;
  color: white;
  text-align: center;
  padding: 80px 0;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.intro {
  text-align: center;
  padding: 40px 20px;
}

.idif {
  color: red;
}

/* Content Sections */
.content-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Mission, Vision, Goals - Alignment */
.content-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 30px;
}

.content-block.left {
  flex-direction: row;
  text-align: left;
}

.content-block.right {
  flex-direction: row-reverse;
  text-align: left;
}

.content-block img {
  width: 35%;
  border-radius: 10px;
}

.text-content {
  width: 50%;
  padding: 20px;
}

/* What We Offer */
.offer-section {
  text-align: center;
  padding: 60px 20px;
}

.offer-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.offer-box {
  width: 30%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offer-box img {
  width: 100%;
  border-radius: 5px;
}

body.dark-mode .offer-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1), 0 10px 25px rgba(0, 0, 0, 0.5);
  color: white;
  transition: all 0.3s ease-in-out;
}

body.dark-mode .offer-box:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(-3px);
}

/* Join Us */
.join-us {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: white;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.jutxt {
  color: #000;
}

.join-us p {
  font-size: 18px;
  font-weight: normal;
  margin: 20px auto;
  max-width: 800px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: white;
  color: #ff5722;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.cta-btn:hover {
  background: #222;
  color: white;
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .content-block {
    flex-direction: column !important;
    text-align: center;
  }

  .content-block img,
  .text-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .offer-container {
    flex-direction: column;
    gap: 15px;
  }

  .offer-box {
    width: fit-content;
  }

  .join-us {
    padding: 50px 20px;
    font-size: 20px;
  }

  .join-us p {
    font-size: 16px;
  }
}
