body {
    font-family: "Roboto", sans-serif;
    background-color: #f5f3f4;
}
html, body {
overflow-x: hidden;
}
.navbar-toggler-icon {
    background-color: black;
}
.navbar-nav .nav-item .nav-link.active {
    color: black;
}
a:focus {
    outline: none;
}

.navbar-nav .nav-item .nav-link {
    color: white;
    text-transform: uppercase;
    font-size: 13px;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-top {
    justify-content: space-between;
}

.navbar-top .navbar-nav {
    flex-direction: row;
}

.navbar-top {
    /* background: linear-gradient(270deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%); */
    background: linear-gradient(270deg, #ffc107 0%, rgba(88, 20, 121, 1) 100%);
}

.dropdown-menu {
    background-color: #fff;
}

.dropdown-item {
    /* color: #ffffff; */
    color: black;
    font-size: 14px;
    /* Text color */
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #343a40;
    /* Hover background color */
    color: #ffffff;
    /* Hover text color */
}

.dropdown-divider {
    background-color: #495057;
    /* Divider color */
}

.menu-bar {
    background-color: black;
    position: unset;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.venue_date {
    font-weight: 600;
}
.nav_date{
    font-size:22px !important;
}
.hero {
    position: relative;
    background: url('images/people_banner.png') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    animation: fadeInUp 1s ease-in-out;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out 0.5s;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    background-color: #3498db;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.hero-button:hover {
    background-color: #2980b9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p_text {
    font-size: 17px;
    font-weight: 500;
}

.left-side-content {
    position: relative;
    padding: 0;
}

.left-side-content:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    /* Adjust the width as needed */
    height: 100%;
    background-image: url('images/left_img.png');
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}

.left-side-content .container {
    position: relative;
    /* Ensure the container remains on top */
    z-index: 1;
    /* Ensure the container remains on top */
}

.box_shadow {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(270deg, rgba(171, 0, 229, 1) 0%, rgba(88, 20, 121, 1) 100%);
}

.box_shadow h1,
.box_shadow p {
    margin-bottom: 10px;
    color: white;
}

.schedule-row-1 {
    background-color: #e5e5e5;
    /* Light grey background for the first row */
}

.schedule-row:nth-of-type(3) {
    background-color: #e5e5e5;
    /* Light grey background for the third row */
}

.name {
    position: absolute;
}

.desgination {
    position: relative;
    bottom: 40px;
    left: 60px;
}

/* Media query for small screens */
@media (max-width: 576px) {
    .navbar-brand h2 {
        font-size: 13px;
    }
}

/* categories & Upcoming events  */

/* speakers css  */

.name_color{
    color: #7815b0 !important;
}
.rounded-full {
    border-radius: 9999px !important;
}
.fw-normal{
    font-weight: 400;
}
/* Media query for small screens */
@media (max-width: 576px) {
    .navbar-brand h2 {
        font-size: 13px;
    }
}
/* Styles for the counter button */
.counter {
  font-size: 1rem !important;
}

#visitor-counter {
    font-weight: bold;
    font-size: 1.2em;
}
@keyframes counterAnimation {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#visitor-counter {
    animation: counterAnimation 0.5s ease-in-out;
}
