﻿
body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #222;
}
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}
.contact-form-section {
    padding: 60px 0;
}

.form-container {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

    .form-container::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(13, 110, 253, 0.12);
        border-radius: 50%;
        top: -200px;
        right: -200px;
        z-index: 0;
    }

    .form-container * {
        position: relative;
        z-index: 1;
    }

.form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .form-head h2 {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .form-head p {
        color: #6c757d;
        margin: 0;
    }

.form-badge {
    background: #0d6efd;
    color: #fff;
    padding: 10px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

    .form-badge i {
        font-size: 18px;
    }

/* Success Message */
.success-message {
    display: none;
    background: #e6ffed;
    border: 1px solid #4ade80;
    color: #166534;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Input Styling */
.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #e4e7ea;
    transition: 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13,110,253,0.15);
    }

/* Submit Button */
.btn-submit {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    padding: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

    .btn-submit:hover {
        background: #084298;
        transform: translateY(-2px);
    }

.contact-section {
    padding: 60px 0;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .contact-info-card i {
        font-size: 30px;
        color: #0d6efd;
        margin-bottom: 12px;
    }

    .contact-info-card h3 {
        font-weight: 700;
        margin-bottom: 8px;
    }

    .contact-info-card p {
        color: #6c757d;
        font-size: 14px;
    }

    .contact-info-card a {
        color: #0d6efd;
        text-decoration: none;
    }
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .form-container {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .form-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-badge {
        width: 100%;
        justify-content: center;
    }
}
