* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

/* Sticky Navbar */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #5fbe36; /* Dark blue color - change as needed */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

    #back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    #back-to-top:hover {
        background-color: #5fbe36; /* Darker shade for hover */
        transform: translateY(-3px);
    }

.expo-conferences-logo {
    width: 150px;
    object-fit: contain;
    height: 60px;
}

.hero-banner {
    background-image: linear-gradient(to right, rgb(20 83 45 / 0.5) 20%, rgba(0, 0, 0, 0.6) 80%), url(../images/banner.jpg);
    background-size: cover;
    background-position: center;
    height: 85vh;
    position: relative;
    z-index: 0;
}

.hero-banner h1 {
    font-size: clamp(30px, 6vw, 50px);
    font-weight: bold;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.5);
    text-transform: capitalize;
}

.theme-text-color {
    color: #3eb324;
}

.interlink-color{
    color: #000;
}
    .interlink-color:hover {
        color: #3eb324;
    }

.theme-title {
    font-size: 36px;
    font-weight: 700;
}

.theme-btn {
    background-color: #3EB324;
    color: #ffffff;
    font-size: 16px;
    border-radius: 10px;
}

.bg-grey {
    background-color: #F9FAFC;
}

.race-expo img {
    width: 200px;
    height: 60px;
    object-fit: contain;
    object-position: left;
}

.expo-upcoming-event {
    background: linear-gradient(to right, #008000, #009900);
}

.conferences-program {
    position: relative;
    overflow: hidden;
    border: 1px solid #3eb324;
    background-color: #ffffff;
    display: block;
    min-height:150px;
}

    .conferences-program::after {
        width: 80px;
        height: 80px;
        background-color: #3eb324;
        content: "";
        display: block;
        position: absolute;
        right: -40px;
        top: -40px;
        border-radius: 60px;
    }

    .cso-events a {
        background: linear-gradient(to right, #008000, #009900);
    }

.directory-bg {
    background-size: cover !important;
    background-position: center;
    background: linear-gradient(rgba(254, 254, 254, 0.5), rgba(254, 254, 254, 0.8)), url(../images/RACE-directory-bg.jpg) no-repeat;
}


@media screen and (max-width: 480px) {
    .theme-title {
        line-height:46px;
    }
}
