   /* Button primary style */
    .btn-primary,
    .btn-submit {
        background-color: #2A3E60;
        border-color: #2A3E60;
        color: white;
        border-radius: 16px;
        font-weight: bold;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .btn-primary:hover,
    .btn-submit:hover {
        background-color: #1e2d47; /* slightly darker blue on hover */
        border-color: #1e2d47;
    }

    /* Rounded card body */
   .card-bode  {
        border-radius: 20px !important;
        background-color: #AE4B87;
    }

    /* Form inputs and select box */
    .form-control,
    .form-select {
        border-radius: 12px;
        background-color: white !important;
        color: black;
    }

    /* Focused inputs also stay white */
    .form-control:focus,
    .form-select:focus {
        background-color: white !important;
        color: black;
        border-color: #2A3E60;
        box-shadow: 0 0 0 0.2rem rgba(42, 62, 96, 0.25);
    }

    /* Label and radio label styles */
    .form-label,
    .form-check-label {
        color: white;
        font-weight: 500;
    }

    /* Radio buttons */
    .form-check-input {
        background-color: white !important;
        border: 2px solid #ccc;
        width: 18px;
        height: 18px;
        cursor: pointer;
        margin-right: 5px;
        border-radius: 50%;
    }

    .form-check-input:checked {
        background-color: #2A3E60 !important;
        border-color: #2A3E60 !important;
    }

    /* Container image alignment */
    .container img {
        border-radius: 16px;
    }
.contact-section {
    padding: 50px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    max-width: 800px;        /* optional: control width */
    margin: 0 auto;          /* center horizontally */
}

.contact-title {
    color: #2A3E60;
    font-size: 2rem;
    font-weight: 700;        /* make it bold */
    margin-bottom: 30px;
    text-align: center;
}


    .contact-info {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .contact-details p {
        margin: 0;
        font-size: 1rem;
        color: black;
    }

    .contact-details strong {
        display: block;
        margin-bottom: 5px;
        color: #2A3E60;
        font-weight: 600;
    }

    .contact-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .contact-button {
        padding: 12px 30px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        border: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: inline-block;
    }

    .btn-whatsapp {
        background-color: #AE4B87;
        color: #fff;
    }

    .btn-whatsapp:hover {
        background-color: #922e6e;
        color: #fff;
    }

    .btn-phone {
        background-color: #2A3E60;
        color: #fff;
    }

    .btn-phone:hover {
        background-color: #1d2e4a;
        color: #fff
    }

    .contact-details a {
        color: black;
        text-decoration: none;
    }

    .contact-details a:hover {
        text-decoration: underline;
    }


