/* Custom styles for slider area */
#parallax.slider-area {
    background-image: url(../img/slider/slider_bg2.png);
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.blur-motion-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.blur-motion-container .header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blur element base styles */
.blur-element.bm {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 2;
}

/* Blur element specific styles */
.blrng_5_15_10_1 {
    width: 200px;
    height: 200px;
    background: rgba(14, 84, 174, 0.3);
    top: 20%;
    left: 10%;
}

.blrng_3_12_8_0 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    top: 60%;
    left: 80%;
}

.blrng_4_10_6_1 {
    width: 100px;
    height: 100px;
    background: rgba(14, 84, 174, 0.2);
    top: 40%;
    left: 50%;
}

.slider-content h2 span {
    color: #ffffff;
    display: block;
}

.h-call-box .text strong a {
    color: #000000;
}

/* Slider content adjustments */
.slider-content {
    position: relative;
    z-index: 3;
}

/* Additional custom styles can be added here */
.blog-date-small {
    font-size: 11px !important;
    margin-right: 4px !important;
    padding-right: 6px !important;
}

/* Sticky Menu Styles */
.menu-area.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.menu-area.sticky-menu .logo img {
    /* max-height: 50px; */
    transition: all 0.3s ease;
}

.menu-area.sticky-menu .main-menu ul li a {
    color: #000000;
    transition: all 0.3s ease;
}

.menu-area.sticky-menu .login-text {
    color: #000000;
    transition: all 0.3s ease;
}

.menu-area.sticky-menu .header-social a {
    color: #000000;
    transition: all 0.3s ease;
}

/* News item animations and shadows */
.news-item .single-post2 {
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
}

.news-item .single-post2:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.news-item .blog-thumb2 img {
    transition: all 0.3s ease !important;
}

.news-item .single-post2:hover .blog-thumb2 img {
    transform: scale(1.05) !important;
}





.parallax-section {
    background-image: url("../img/bg/event-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    /* parallax effect */
    position: relative;

    color: #fff;
}

.parallax-section h2, .parallax-section h5, .parallax-section p {
    color: #fff;
}

.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    /* adjust darkness */
    z-index: 0;
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

