/* Section Styling */
.partner-section {
  text-align: center;
  padding: 30px 20px;
  background: #000; /* Changed from light gray to black */
  border-radius: 0; /* Removed rounded corners */
  width: 100%; /* Full width */
  max-width: 100%; /* No max-width limit */
  margin: 0; /* Remove margin to stretch to edge */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Heading (White with black outline) */
.partner-section h1 {
  font-size: 1.8rem;
  color: #fff; /* White text */
  text-shadow: 
    -1px -1px 0 #000,  
    1px -1px 0 #000,  
    -1px 1px 0 #000,  
    1px 1px 0 #000; 
  margin-bottom: 10px;
  font-weight: 800;
}

/* Subheading and Paragraph */
.partner-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #fff; /* Changed from black to white */
}

/* Call to Action Button */
.cta-btn {
  padding: 10px 20px;
  border: none;
  background: #fff; /* White button for contrast */
  color: #000; /* Black text for visibility */
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #ddd; /* Slight gray on hover */
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #111; /* Dark modal for consistency */
  color: #fff; /* White text */
  padding: 20px;
  border-radius: 10px;
  width: 95%;
  max-width: 500px;
  transition: all 0.3s ease;
}

/* Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Modal Controls */
.modal-controls button {
  margin-left: 5px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #fff; /* White icons */
  cursor: pointer;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

form label {
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
  color: #fff; /* White labels */
}

form input,
form select,
form textarea {
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #444;
  width: 100%;
  resize: none;
  background: #222; /* Dark inputs */
  color: #fff; /* White text inside inputs */
}

textarea {
  min-height: 100px;
}

/* Submit Button */
.submit-btn {
  margin-top: 15px;
  padding: 12px;
  background: #fff; /* White button */
  border: none;
  color: #000; /* Black text */
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #ddd;
}

/* Minimized Modal */
.modal.minimized .modal-content {
  height: 40px;
  overflow: hidden;
  max-width: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partner-section h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partner-section h1 {
    font-size: 1.3rem;
  }
}
