* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* 🌈 Attractive Background */

body {
    background: url('https://images.unsplash.com/photo-1559620192-032c4bc4674e') no-repeat center/cover;
}


/* Header */

header {
    background: #ff4d6d;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

nav a:hover {
    color: #ffd6dd;
}


/* Contact Section with overlay */

.contact {
    background: rgba(255, 255, 255, 0.92);
    margin: 30px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.contact h2 {
    color: #ff4d6d;
    margin-bottom: 30px;
}


/* Layout */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}


/* Info Box */

.contact-info {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 15px;
    color: #ff4d6d;
}


/* Form */

.contact-form {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}


/* Button */

.contact-form button {
    background: #ff4d6d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e63956;
}


/* Footer */

footer {
    background: #ff4d6d;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}