body {
    font-family: 'Roboto', sans-serif;
}



.half-fluid .left-half,
.half-fluid .right-half {
    left: 50%;
    margin-left: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
    padding: 0px;
}

.half-fluid .image {

    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
}

@media (min-width: 992px) {
    .half-fluid .left-half {
        padding-left: 0 !important;
        position: absolute;
        left: 0;
        right: 50%;
        margin-left: auto;
        width: auto;
    }

    .half-fluid .right-half {
        padding-right: 0 !important;
        position: absolute;
        right: 0;
        left: 50%;
        margin-left: auto;
        width: auto;
    }
}

.intro-block {
    background-attachment: fixed;
    background-image: url(../images/p1.png);
    background-color: #f1f1f1;
}

.intro-block .image {
    background-image: url("../images/conf.jpg");
}

.about-block {}

.about-block .image {
    background-image: url("../images/seed.jpg");
}

.register-block {
    background-attachment: scroll;
    background-image: url(../images/p2.png);
    background-color: #fcfcfce6;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.register-block .image {
    background-image: url("../images/register.jpg");
}

.seed-block .image {
    background-image: url("../images/seed2.jpg");
}


.contact-block {
    background-attachment: scroll;
    background-image: url(../images/contactus.webp);
    background-color: #fcfcfce6;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.object-fit-cover {
    object-fit: cover;
}

.hover-effect {
    transition: transform 0.3s ease-in-out;
}

.hover-effect:hover {
    transform: translateY(-5px);
}

.card {
    border-radius: 0.5rem;
}

.card-img-top {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.btn-primary {
    padding: 0.5rem 1.5rem;
}

.sponsor-logo {
    max-height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.05);
}


.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background-color: var(--bs-danger);
    color: white;
}