.mission-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}
  .mission-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(1, 34, 51, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .mission-content {
    color: white;
    max-width: 800px;
  }
  
  .mission-content h1 {
    font-size: 65px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 20px;
    margin-bottom: 20px;
  }
  
  .mission-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .welcome-section {
    text-align: center;
    padding: 80px 20px 100px;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
  }
  
  .welcome-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #012233;
    margin-bottom: 30px;
  }
  
  .welcome-description {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.8;
  }
  
  .welcome-note {
    font-size: 16px;
    color: #1a1a1a;
    margin-top: 10px;
  }
  
  .team-section {
    margin-top: 100px;
  }
  
  .team-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #012233;
    letter-spacing: 5px;
    margin-bottom: 10px;
  }
  
  .team-subtext {
    font-size: 15px;
    color: #999;
  }

  .contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
  
  .contact-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.9) contrast(1.15);
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }
  
  .contact-info {
    flex: 1 1 45%;                    
    max-width: 45%;
  }
  
  .contact-form-wrapper {
    background-color: white;
    color: black;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    align-self: flex-start;
    margin-left: 0; flex: 1 1 45%; max-width: 45%;
    padding-top: 20px;
  }
  
 .form-header {
    background: #e91e63;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 30px 30px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    width: 100%;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
    
  .contact-form h3 {
    background: #e91e63;
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    border-radius: 6px 6px 0 0;
    margin: -30px -40px 30px -40px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 80px;
  }
  
  .contact-form button {
    align-self: flex-start;
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
  }
  
/* Success Message Banner Styles */
.success-message-banner {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
  animation: slideInFromTop 0.5s ease-out;
}

.success-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.success-icon {
  font-size: 20px;
  color: #fff;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .success-message-banner {
    margin: 15px 0;
    padding: 12px 15px;
  }
  
  .success-content {
    font-size: 14px;
  }
}


/* Fix for section titles alignment conflicts */
.journals-section .section-title {
    text-align: center !important;
    margin: 0 auto !important;
    display: block !important;
    width: 100% !important;
}

.journals-section .section-title .title-text {
    display: block;
    text-align: center;
}

/* Adjust Academic Journals title spacing */
.journals-section .section-title {
    margin-top: 2rem !important;
    margin-bottom: 2.5rem !important;
}
