
/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
  }
  
  .bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
  }
  
  .tech-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .tech-dots::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--zhahi-teal);
    top: 20%;
    left: 80%;
  }
  
  .tech-dots::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--zhahi-teal);
    top: 70%;
    left: 30%;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-top: 50px;
  }
  
  .form-card {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 255, 218, 0.2);
  }
  
  .form-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgb(0, 0, 0);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(0, 0, 0);
  }

  
  .form-input,
  .form-select,
  .form-textarea {
    border: 1px solid rgba(0, 0, 0, 0.315);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s ease;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
  }
  
  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
  }
  
  /* Contact Info */
  .info-card {

    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgb(0, 0, 0,0.2);
    border: 1px solid rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(0, 0, 0);
  }
  
  .info-section {
    margin-bottom: 1.5rem;
  }
  
  .info-section:last-child {
    margin-bottom: 0;
  }
  
  .info-subheading {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--zhahi-teal);
  }
  
  .info-text {
    color: rgb(0, 0, 0);
    margin-bottom: 0.5rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(10, 25, 47, 0.7);
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.3);
  }
  
  .social-icon:hover {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--zhahi-teal);
    transform: translateY(-3px);
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .form-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .contact-grid {
      grid-template-columns: 3fr 2fr;
    }
  }





  /* Form animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease-out;
}

.fade-in-left.animate,
.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Loading spinner */
.bx-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Form success/error states */
.form-success .form-input,
.form-success .form-select,
.form-success .form-textarea {
  border-color: #4CAF50 !important;
}

.form-error .form-input,
.form-error .form-select,
.form-error .form-textarea {
  border-color: #F44336 !important;
}
  
/* Notification Toast Styles */
.notification-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgba(17, 34, 64, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  max-width: 350px;
}

.notification-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.notification-toast.success {
  border-left: 4px solid #4CAF50;
}

.notification-toast.error {
  border-left: 4px solid #F44336;
}

.toast-icon {
  font-size: 24px;
}

.toast-icon.success {
  color: #4CAF50;
}

.toast-icon.error {
  color: #F44336;
}

.toast-message {
  color: white;
  font-size: 14px;
  line-height: 1.4;
}

/* Close button for toast */
.toast-close {
  margin-left: 15px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: white;
}