/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-image: url('https://images.pexels.com/photos/325185/pexels-photo-325185.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

section {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.section-header p {
    font-size: 1rem;
    color: #ddd;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Contact Info */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon {
    height: 50px;
    width: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-icon i {
    font-size: 18px;
    color: #1da9c0;
}

.contact-info-content h4 {
    font-size: 1rem;
    color: #1da9c0;
    margin-bottom: 5px;
}

.contact-info-content p {
    font-size: 0.9rem;
    color: #fff;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    color: #333;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.input-box {
    position: relative;
    margin-bottom: 15px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #333;
    font-size: 1rem;
    padding: 5px 10px;
    outline: none;
    color: #333;
    background: none;
}

.input-box input:focus,
.input-box textarea:focus {
    border-bottom: 2px solid #00bcd4;
}

.input-box span {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #666;
    pointer-events: none;
    transition: 0.3s;
}

.input-box input:focus ~ span,
.input-box textarea:focus ~ span {
    transform: translateY(-20px);
    font-size: 0.8rem;
    color: #ffffff;
}

.input-box textarea {
    resize: none;
    height: 80px;
}

.input-box input[type="submit"] {
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
}

.input-box input[type="submit"]:hover {
    background: #fff;
    color: #00bcd4;
    border: 1px solid #00bcd4;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}
