/* form */

.form-section {
    background-color: #f0f0f5;
    padding: 40px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-control {
    margin-bottom: 20px;
}

.btn-submit {
    background-color: #f06292;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #ec407a;
}

/* read more */
.read-more{
    border: 1px solid black;
}

  
/* footer 2 */
footer {
    /* background-color: #161D6F; */
    background-color: #201E43;
    padding: 20px 0;
}


/* Styling for headings and links */
h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}


/* Dropdown button styling */
.dropdown-btn {
    background-color: transparent;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chevron icon for dropdown */
.dropdown-btn::after {
    content: "\f078"; /* Unicode for FontAwesome chevron-down */
    font-family: "Font Awesome 5 Free"; /* Adjust according to your icon library */
    font-weight: 900;
    margin-left: 8px;
    /* background-color: #161D6F; */
}

/* Dropdown content styling */
.dropdown-content {
    display: none;
    position: absolute;
    /* background-color: #161D6F; */
    background-color: #201E43;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Dropdown content links */
.dropdown-content a {
    color: white;
    padding: 10px 20px;
    display: block;
    text-align: left;
}

/* Show dropdown on hover */
.footer-section:hover .dropdown-content {
    display: block;
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .text-center {
        margin-bottom: 20px;
    }

    /* Stack columns vertically */
    .col-md-4 {
        width: 100%;
        text-align: center;
        margin-bottom: 20px; /* Add margin for spacing */
    }

    /* Center the dropdown button on smaller screens */
    .dropdown-btn {
        width: 100%;
        text-align: center;
    }

    /* Make sure dropdown content is positioned properly */
    .dropdown-content {
        position: relative;
        min-width: 100%; /* Make it full-width on small screens */
    }

    /* Adjust the alignment for mobile */
    .dropdown-content a {
        text-align: center;
        padding: 15px;
    }
}

/* Ensure equal spacing for footer sections */
@media (min-width: 576px) {
    .footer-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-section h5 {
        margin: 0;
    }

    .footer-section a {
        display: block;
        padding: 0 10px;
        width: 100%;
    }
}
