body {
    font-family: 'Poppins', sans-serif;
    color: #0c0c0c;
    background-color: #181223;
    margin: 0;
    padding: 0;
}

.layout_padding {
    padding: 75px 0;
}

.layout_padding2 {
    padding: 45px 0;
}

.layout_padding2-top {
    padding-top: 45px;
}

.layout_padding2-bottom {
    padding-bottom: 45px;
}

.layout_padding-top {
    padding-top: 75px;
}

.layout_padding-bottom {
    padding-bottom: 75px;
}

.heading_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
    color: #000;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.heading_container h2 {
    font-weight: bold;
    color: #050000;
    padding: 3px 10px;
    border-bottom: 1px solid #000000;
}

.section_content {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.section_content img,
.section_content video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.section_content img {
    max-height: 200px;
    object-fit: cover;
}

.section_content video {
    max-height: 300px;
}

/* Header section */
.hero_area {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #181223;
    background-size: cover;
    background-position: center;
    opacity: 15%;
    z-index: -1;
}

.sub_page .hero_area {
    height: auto;
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

.header_section .nav_container {
    margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    padding: 10px 30px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand span {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.custom_nav-container {
    z-index: 99999;
    padding: 15px 0;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.image_wrapper {
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    height: 100%;
}

.overlay:hover {
    opacity: 1;
}

.image_wrapper img {
    max-width: 100%;
    height: 25vh;
    display: block;
    transition: transform 0.3s ease;
}

.image_wrapper:hover img {
    transform: scale(1.1);
}


.overlay .text {
    text-align: center;
}

.footer_section {
    font-weight: 500;
    justify-content: center;
    padding: 20px;
    background-color: #1d1d1d;
}

.footer_section p {
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.footer_section a {
    color: #ffffff;
}

#logo {
    height: 60px;
    width: auto;
}

