/* Title section */

.page-title-section {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.page-title {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    background: linear-gradient(90deg, #0056b3, #d9534f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #d9534f;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.3s ease;
}

.page-title:hover::before {
    animation: shine 1.5s forwards;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .page-title-section {
        margin-top: 140px;
    }
}

/* Section 1 */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.contact-info h2, .contact-form h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #0056b3;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info a {
    color: #0056b3;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.divider {
    margin: 20px 0;
    border: 0;
    height: 2px;
    background: linear-gradient(to right, #0056b3, #d9534f);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, .contact-form textarea {
    font-size: 1em;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    font-size: 1.2em;
    padding: 15px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #4a99ee;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .contact-info, .contact-form {
        margin: 10px 0;
    }
}
