/* Contact Section Styling */
.contact-section {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.9), rgba(0, 20, 50, 0.9));
    padding: 60px 20px;
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent background */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00d8ff; /* Bright accent color */
}

p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.info-item {
    flex: 1;
    margin: 0 10px;
}

.info-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00d8ff; /* Bright accent color */
}

.info-item p a {
    color: #ffffff; /* White for links */
    text-decoration: none;
}

.info-item p a:hover {
    color: #00d8ff; /* Highlight on hover */
}

/* Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff; /* Label color */
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff; /* Text color */
    transition: background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #e0e0e0; /* Placeholder color */
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.3);
}

button[type="submit"] {
    background-color: #00d8ff; /* Button color */
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0078d4; /* Darker shade on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column; /* Stack info items on smaller screens */
        margin-bottom: 30px;
    }

    .info-item {
        margin-bottom: 20px; /* Space between info items */
    }
}
