body {
    background-image: url(../images/backgroundImage.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}

/* Landing Page Style */
.landPage {
    margin-top: 200px;
    text-align: center;
    color: white;
}

    .landPage .titleText h1 {
        font-size: 80px;
        padding-top: 20px;
        text-transform: uppercase;
    }

    .landPage .titleText h3 {
        font-size: 50px;
        text-transform: uppercase;
    }

    .landPage .paragraphTextBtn p {
        font-size: 20px;
        padding-top: 10px;
    }

#btn-1:nth-child(1) {
    border: 2px solid #3eb2e4;
    background-color: transparent;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.2s all ease;
    margin-right: 50px;
}

    #btn-1:nth-child(1):hover {
        background-color: #3eb2e4;
    }

#btn-2 {
    border: 2px solid #3eb2e4;
    background-color: #3eb2e4;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    transition: 0.2s all ease;
}

    #btn-2:hover {
        background-color: transparent;
    }

.landPage .arrowDwnImg {
    margin-top: 100px;
}

    .landPage .arrowDwnImg img {
        animation: upAndDown 2s linear infinite;
    }

@keyframes upAndDown {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.landPage .titleText h1 {
    margin-top: -150px;
}

/* Responsive Settings for LandPage*/
@media screen and (max-width: 999px) {
    .landPage .titleText h1 {
        font-size: 60px;
    }

    .landPage .titleText h3 {
        font-size: 40px;
    }

    .landPage {
        margin-top: 150px;
    }
}

/* About Page Style */
.aboutPage {
    background-color: #fff6ee;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 100px;
    margin-top: 50px;
    padding-bottom: 100px;
    font-family: "Poppins", sans-serif;
}

    .aboutPage .whatRiverathon {
        font-weight: bold;
        text-transform: uppercase;
        color: #002449;
    }

    .aboutPage .whyRiverathon {
        font-size: 18px;
        padding-top: 10px;
        /* font-weight: 600; */
        color: #284563;
    }

/* Why Page */
.whyPage {
    background-color: white;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: "Poppins", sans-serif;
}

    .whyPage h1 {
        font-weight: bold;
        text-transform: uppercase;
        color: #002449;
        text-align: center;
    }

    .whyPage .gridWhyPerks {
        margin-top: 50px;
        display: flex;
        justify-content: space-around;
    }

        .whyPage .gridWhyPerks .perkBox {
            border-bottom: 3px solid #3eb2e4;
            text-align: center;
        }

            .whyPage .gridWhyPerks .perkBox img {
                width: 180px;
                padding-bottom: 10px;
            }

            .whyPage .gridWhyPerks .perkBox h3 {
                font-size: 20px;
                padding-bottom: 10px;
                font-weight: bold;
                color: #284563;
            }

        .whyPage .gridWhyPerks img {
            width: 250px;
        }

/* Why Page Responsiveness */
@media screen and (max-width: 999px) {
    .whyPage .gridWhyPerks {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

        .whyPage .gridWhyPerks img {
            margin-top: 30px;
        }
}

/* Organizing Page */
.organizerPage {
    border-top: 2px solid rgba(0, 0, 0, 0.384);
    background-color: white;
    padding-top: 50px;
    padding-bottom: 100px;
}

    .organizerPage h1 {
        font-weight: bold;
        color: #002449 !important;
        text-transform: uppercase;
    }

.team4 {
    font-family: "Poppins", sans-serif;
    color: #002449;
    font-weight: 300;
}

    .team4 h1,
    .team4 h2,
    .team4 h3,
    .team4 h4,
    .team4 h5,
    .team4 h6 {
        color: #3e4555;
    }

    .team4 .font-weight-medium {
        font-weight: 500;
    }

    .team4 h5 {
        line-height: 22px;
        font-size: 18px;
    }

    .team4 .subtitle {
        color: #8d97ad;
        line-height: 24px;
        font-size: 13px;
    }

    .team4 ul li a {
        color: #8d97ad;
        padding-right: 15px;
        -webkit-transition: 0.1s ease-in;
        -o-transition: 0.1s ease-in;
        transition: 0.1s ease-in;
    }

        .team4 ul li a:hover {
            -webkit-transform: translate3d(0px, -5px, 0px);
            transform: translate3d(0px, -5px, 0px);
            color: #316ce8;
        }

.organizerPage h6 {
    font-weight: bold;
    color: #002449 !important;
    font-size: 20px !important;
}

.orgImage {
    align-items: center !important;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    color: white;
    background-color: #1e1e1e;
    padding-top: 2.5vh;
    padding-bottom: 0.5vh;
}

#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: #3eb2e4;
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
}

    #myBtn:hover {
        background-color: #555;
        /* Add a dark-grey background on hover */
    }

/* Themes */
.themes {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    background-color: white;
    background-image: url(../images/backgroundImage-2.png);
}

    .themes h1 {
        padding-top: 10px;
        padding-bottom: 10px;
        font-weight: bold;
        text-transform: uppercase;
        color: #002449;
        text-align: center;
    }

    .themes h6 {
        padding-top: 10px;
        padding-bottom: 30px;
        font-size: 24px;
    }

.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.themeBox {
    width: 100%;
    max-width: 500px;
    /* For responsive scaling */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers child elements horizontally */
    background: #f9f9f9;
    /* Optional for better visibility */
    padding: 20px;
    border-radius: 10px;
    /* Optional for rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional for shadow effect */
    height: 320px;
}

    .themeBox img {
        width: 100px !important;
        height: auto;
        /* Maintains aspect ratio */
        margin-bottom: 15px;
        /* Adds spacing below the image */
    }

    .themeBox h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .themeBox p {
        font-size: 16px;
        color: #555;
        /* Slightly darker text for contrast */
        margin: 0;
        line-height: 1.5;
    }

.marquee {
    background-color: black;
    border-bottom: 2px solid white;
    border-top: 2px solid white;
}

.marq {
    display: flex;
    width: 100%;
}

.marquee .marq img {
    width: 100px;
}

.marquee p {
    padding-top: 0px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.divider {
    border-left: 2px solid #ccc;
    height: 100px;
}

@media (max-width: 767px) {
    .divider {
        display: none;
    }
}

.image-col img {
    max-width: 100%;
    height: auto;
}

.navbar-toggler {
    border-color: white !important;
}

.orgImage img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ddd;
}

.name {
    font-weight: 700;
    color: darkblue;
    font-family: inherit;
}

.designation {
    font-weight: 400;
    color: inherit;
    font-family: inherit;
}

.prizes-section {
    background: linear-gradient( 135deg, #f2f6ff, #fcf4ee ); /* A serene, inviting gradient */
    padding: 7rem 0;
    overflow: hidden;
    position: relative;
}

    /* Subtle animated background */
    .prizes-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../images/abstract-geometric-bg.svg") repeat; /* Replace with your SVG */
        opacity: 0.06;
        z-index: 0;
        pointer-events: none;
        animation: subtleZoom 60s linear infinite; /* Add a subtle zoom animation */
    }

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.prizes-section .container {
    max-width: 1250px;
    position: relative;
    z-index: 1;
}

.prizes-section h2 {
    font-family: "Nunito Sans", sans-serif; /* A balanced, modern font */
    font-size: 3.75rem;
    font-weight: 800;
    color: #2c3e50;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.2rem;
    text-align: center;
    letter-spacing: -1.5px;
}

.prizes-section p {
    font-family: "Roboto", sans-serif; /* A highly readable font */
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 4.5rem;
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
}

.prize-card {
    background-color: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16); /* Refined shadow */
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

    .prize-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .prize-card .card-body {
        padding: 4.5rem;
        text-align: center;
    }

    .prize-card .card-title {
        font-family: "Poppins", sans-serif; /* A versatile, stylish font */
        font-size: 2.4rem;
        font-weight: 700;
        color: #34495e;
        margin-bottom: 2rem;
        position: relative;
        padding-bottom: 1.4rem;
    }

        .prize-card .card-title::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            height: 6px;
            width: 80px;
            background-color: #f1c40f; /* A vibrant, attention-grabbing accent */
            border-radius: 4px;
        }

    .prize-card .card-subtitle {
        font-family: "Roboto", sans-serif;
        font-size: 1.3rem;
        color: #777;
        font-weight: 500;
        margin-bottom: 1.2rem;
    }

    .prize-card .card-text {
        font-family: "Roboto", sans-serif;
        font-size: 1.4rem;
        color: #666;
        line-height: 1.9;
    }

    /* Dynamic Ribbon Styling */
    .prize-card::before {
        content: "Exclusive";
        position: absolute;
        top: 16px;
        right: -38px;
        background-color: #8e44ad; /* A sophisticated, eye-catching color */
        color: #fff;
        font-family: "Montserrat", sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.8rem 4.5rem;
        transform: rotate(45deg);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18);
        z-index: 2;
    }

/* Media Queries - Optimized Responsiveness */
@media (max-width: 1400px) {
    .prizes-section h2 {
        font-size: 3.5rem;
    }

    .prizes-section p {
        font-size: 1.3rem;
    }

    .prize-card .card-body {
        padding: 4rem;
    }

    .carousel-item .prize-card .card-body {
        padding: 3rem 0px;
    }

    .prize-card .card-title {
        font-size: 2.2rem;
    }

    .prize-card .card-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 1200px) {
    .prizes-section h2 {
        font-size: 3.25rem;
    }

    .prizes-section p {
        font-size: 1.2rem;
    }

    .prize-card .card-body {
        padding: 3.5rem;
    }

    .prize-card .card-title {
        font-size: 2rem;
    }

    .prize-card .card-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .prizes-section h2 {
        font-size: 3rem;
    }

    .prizes-section p {
        font-size: 1.1rem;
    }

    .prize-card .card-body {
        padding: 3rem;
    }

    .prize-card .card-title {
        font-size: 1.8rem;
    }

    .prize-card .card-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .prizes-section h2 {
        font-size: 2.75rem;
    }

    .prizes-section p {
        font-size: 1rem;
    }

    .prize-card .card-body {
        padding: 2.5rem;
    }

    .prize-card .card-title {
        font-size: 1.6rem;
    }

    .prize-card .card-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .prizes-section h2 {
        font-size: 2.4rem;
    }

    .prizes-section p {
        font-size: 0.9rem;
    }

    .prize-card .card-body {
        padding: 2rem;
    }

    .prize-card .card-title {
        font-size: 1.4rem;
    }

    .prize-card .card-text {
        font-size: 0.9rem;
    }
}
