body {
    background-color: #e3e9f7;
    font-family: 'Segoe UI', sans-serif;
}

.form-control,
.form-select {
    background: transparent;
    border: none;
    border-bottom: 2px solid grey;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-bottom-color: #007bff;
    box-shadow: none;
    background: transparent;
}

.form-label {
    font-weight: 600;
}

.form-check-input {
    margin-top: 0.3rem;
}

.form-check-label {
    margin-right: 15px;
}

.tstmctnr{
    opacity: 80%;
    margin-bottom: 100px;
}

.form-title {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 55px;
    color: #2c3e50;
    /*margin-top: 60px;*/
    /*text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);*/
    position: relative;
    animation: fadeIn 2s ease-in-out;
    padding: 3%;
}

.form-title::after {
    display: block;
    width: 80px;
    height: 4px;
    background: #2c3e50;
    margin: 10px auto 0;
    border-radius: 2px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .row > div {
        margin-bottom: 15px;
    }
}

/*FOr percentage and passing year scrollBar*/
.custom-scroll {
    overflow-y: auto;
}

/* For some browsers like Chrome, Safari */
.custom-scroll option {
    scrollbar-width: thin; /* Firefox */
}


/*Footer Styling*/
.main-footer {
    background-color: rgba(26, 26, 26, 0.4); /* 60% transparent black */
    color: #800080;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    /* removed opacity: 0.5 */
    position: relative;
    z-index: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1; /* ensures content is above background */
}

.footer-logo {
    flex: 1 2 100px;
}

.footer-logo img {
    width: 80%;
}

.footer-links,
.footer-contact,
.footer-social {
    flex: 1 1 70px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: #7846fa;
}

.footer-contact p {
    margin: 6px 0;
}

.footer-social a {
    margin-right: 10px;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #bbb;
    border-top: 1px solid #333;
    padding-top: 10px;
    color: #7846fa;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social a {
        margin: 5px;
    }
}



.main-footer,
.main-footer h4,
.main-footer a,
.main-footer li {
    color: white;
    font-weight: 900; /* Heavy bold */
    -webkit-text-stroke: 0px; /* Remove stroke if not needed */
}

.main-footer h4{
    color: #7846fa;
}


.page-hero-section.bg-image.hero-home-2 {
    background-image: linear-gradient(to bottom right, #e0f7fa, #b2ebf2, #80deea, #4dd0e1); /* Replace with your colors */
}

.logo-size-definatoin
{
    width: 100%;
    max-width: 150px;
    height: auto;
}