/*style.css*/
 body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}
.landing-section {
    background-color: #f0f4ff;
    padding: 50px 0;
}
.landing-section .heading {
    /* Add gradient to the heading text */
    background-image: linear-gradient(90deg, #ffde59, #ff914d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-align: center; /* Center the heading */
}
.form-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.form-label {
    font-weight: bold; /* Make form labels bold */
}
.btn-submit {
    /*background-color: #5b33f5;*/
    background-image: linear-gradient(90deg, #ffde59, #ff914d);
    border: none;
    color: #fff;
}
.btn-submit:hover {
    background-color: #4a27c3;
}
.terms {
    font-size: 12px;
    color: #6c757d;
}

/* Logo Styling */
.logo {
    display: block;
    margin: 0 auto 20px auto; /* Center the logo and add bottom margin */
    max-width: 150px; /* Adjust the max width for the logo */
    height: auto;
}

/* Services Section */
.services-section {
    background-color: #f0f4ff;
    padding: 50px 0;
}
.service-card {
    background-image: linear-gradient(90deg, #ffde59, #ff914d); /* Match gradient to heading */
    border-radius: 10px;
    padding: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* Space between cards */
}

/* Make sure the cards are responsive */
.service-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.service-card h5 {
    font-weight: bold;
}

/* Footer Section Styling */
.footer-section {
    background-color: #343a40; /* Dark background */
    padding: 20px 0;
    color: #fff; /* White text */
}

.footer-section .disclaimer {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section .copyright {
    font-size: 12px;
    margin-bottom: 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .landing-section {
        padding: 15px;
        margin: 15px; /* Uniform margin on all sides */
    }

    /* Reverse the order of the form and title for mobile */
    .row {
        display: flex;
        flex-direction: column;
    }

    /* Add spacing and center text on mobile */
    .col-md-5, .col-md-4, .col-md-12 {
        text-align: center;
        margin-top: 20px;
    }

    /* Cards should stack vertically with margins */
    .service-card {
        margin: 15px 15px; /* Add left-right margin on mobile */
    }

    .footer-section {
        padding: 15px;
    }

    .footer-section .disclaimer, 
    .footer-section .copyright {
        text-align: center;
        font-size: 12px;
    }
}