/* Join Now Section */
.joinnow {
  background: url('https://www.sit.edu.au/wp-content/uploads/2025/09/Section.jpg') no-repeat center center/cover;
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.joinnowcontent {
  max-width: 800px;
  animation: fadeup 1s ease-in-out;
}

.joinnowheading {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: white;
}


.joinnowheading .highlight {
  color: #c6e35c;
}

.joinnowtext {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #eaeaea;
}


.joinnowbtns {
    margin-bottom: 20px;
    display: inline-flex;
}

.joinnowbtns a {
  display: inline-block;
  margin: 0 8px;
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btnapply {
  background: #c6e35c;
  color: #000;
  border: 2px solid #c6e35c;
  
  
}

.btnapply:hover {
  background: #c6e35c;
  color: #000;
  border: 2px solid #c6e35c;
}

.btnenquire {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}

.btnenquire:hover {
   background: #000;
  color: #fff;
  border: 2px solid #000;
}



/* Contact Icons */
.joinnowcontact {
  font-size: 1rem;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.joinnowcontact a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;   /* ✅ vertically center icon with text */
  gap: 8px;              /* spacing between icon and text */
}

.joinnowcontact a:hover {
  text-decoration: none;
  color: white !important;
}

.joinnowicon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Footer */
.joinnowfooter {
  background: #c6e35c;
  color: #000;
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeup {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .joinnowheading { font-size: 2rem; }
}

@media (max-width: 768px) {
  .joinnow { padding: 50px 15px; }
  .joinnowheading { font-size: 1.8rem; }
  .joinnowtext { font-size: 1rem; }
  .joinnowbtns a { padding: 10px 20px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .joinnow { padding: 40px 12px; }
  .joinnowheading { font-size: 1.5rem; }
  .joinnowtext { font-size: 0.95rem; }
  .joinnowbtns a {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .joinnowcontact { flex-direction: column; gap: 10px; }
}
