 /* Enhanced floating animation */
    .floating-img {
        animation: floatUpDown 3s ease-in-out infinite;
        transition: transform 0.3s ease;
    }

    /* Keyframe animation for smooth up-down movement */
    @keyframes floatUpDown {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* Optional: Add hover effect to pause animation */
    .floating-img:hover {
        animation-play-state: paused;
        transform: scale(1.05);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        @keyframes floatUpDown {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }
    }

    /*hero section start*/
    .grecaptcha-badge {
        display: none !important;
    }

    #fireworks-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        pointer-events: none;
    }

    .hero-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hrs_hero .hero-section.hs-2 {
        position: relative;
        overflow: hidden;
    }

    .hrs_hero .hero-banner {
        position: relative;
        width: 100%;
        min-height: 390px;
        /* Minimum height to prevent collapse */
        overflow: hidden;
    }

    .hrs_hero .slide-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    /* First slide should be positioned relative to set container height */
    .hrs_hero .slide-item:first-child {
        position: relative;
    }



    .no-js .slide-item:first-child {
        display: block;
    }

    .hrs_hero .slide-item.active {
        opacity: 1;
    }

    .hrs_hero .hero-slide {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hrs_hero .hero-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .hrs_hero .hero-slide picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hrs_hero .hero-slide picture img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    @keyframes kenBurns {
        0% {
            transform: scale(1) translateX(0);
        }

        50% {
            transform: scale(1.15) translateX(-30px);
        }

        100% {
            transform: scale(1.2) translateX(0);
        }
    }

    .hrs_hero .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    .hrs_hero .slide-content {
        position: absolute;
        top: 50%;
        left: 32%;
        transform: translate(-50%, -50%);
        z-index: 2;
        color: #fff;
        width: 90%;
        max-width: 856px;
    }

    .hrs_hero .hero-sub-title {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #ffc107;
        margin-bottom: 20px;
        opacity: 1;
        animation: none;
        /*animation: slideInUp 1s ease-out 0.3s both;*/
    }

    .hrs_hero .slide-item.active .hero-sub-title {
        opacity: 1;
    }

    .hrs_hero .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
        color: orange;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        opacity: 1;
        animation: none;
        /*animation: slideInDown 1s ease-out both;*/
    }

    .hrs_hero .slide-item.active .hero-title {
        opacity: 1;
    }

    .hrs_hero .hero-description {
        font-size: 1.5rem;
        line-height: 1.8;
        margin-bottom: 40px;
        color: #ffffff;
        opacity: 1;
        animation: none;
        /*animation: slideInUp 1s ease-out 0.3s both;*/
    }

    .hrs_hero .slide-item.active .hero-description {
        opacity: 1;
    }

    .hrs_hero .slide-item.active .hero-btn {
        opacity: 1;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }

        50% {
            opacity: 1;
            transform: scale(1.05);
        }

        70% {
            transform: scale(0.9);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Slider Navigation Dots */
    .hrs_hero .slider-nav {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 10;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .hrs_hero .slider-dot {
        width: 40px;
        height: 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        padding: 0;
    }

    .hrs_hero .slider-dot.active {
        background: white;
        width: 40px;
        height: 10px;
        border-radius: 10px;
        background: linear-gradient(90deg, #fff, #ffc107);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    /* Slider Arrow Controls */
    .hrs_hero .slider-arrow {
        position: absolute;
        top: 57%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        border: 2px solid #fff !important;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hrs_hero .slider-arrow:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: translateY(-50%) scale(1.1);
    }

    .hrs_hero .slider-arrow.prev {
        left: 30px;
    }

    .hrs_hero .slider-arrow.next {
        right: 30px;
    }

    .hs-2 .hero-sub-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 21px;
        border-bottom: 3px solid #ffc107;
        border-radius: 50px;
        width: 56px;
    }

    /* Responsive - Tablet */
    @media (max-width: 768px) {
        .hrs_hero .hero-banner {
            height: 500px;
        }

        .hrs_hero .hero-title {
            font-size: 1.5rem;
        }

        .hrs_hero .hero-description {
            font-size: 1.2rem;
        }

        .hrs_hero .hero-btn .theme-btn {
            padding: 12px 30px;
            font-size: 1rem;
        }

        .hrs_hero .slider-arrow {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .hrs_hero .slider-arrow.prev {
            left: 10px;
            display: none;
        }

        .hrs_hero .slider-arrow.next {
            right: 10px;
            display: none;
        }
    }

    /* Responsive - Mobile */
    @media (max-width: 576px) {
        .hrs_hero .hero-banner {
            height: 385px;
        }

        .hrs_hero .hero-title {
            font-size: 1.5rem;
        }

        .hrs_hero .hero-sub-title {
            font-size: 14px;
        }

        .hrs_hero .hero-description {
            font-size: 1rem;
        }

        .hrs_hero .hero-btn .theme-btn {
            padding: 3px 4px;
            font-size: 0.9rem;
        }

        .hero-btn .theme-btn {
            padding: 3px 4px;
            font-size: 12px;
            width: 50%;
        }

        .hrs_hero .slider-arrow {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .hrs_hero .slider-nav {
            bottom: 20px;
            gap: 10px;
        }

        .hrs_hero .slider-dot {
            width: 12px;
            height: 12px;
        }

        .hrs_hero .slider-dot.active {
            width: 30px;
        }

        .hs-2 .hero-sub-title::before {
            content: "";
            position: absolute;
            left: 131px !important;
            top: 18px;
            display: none;
            border-bottom: 3px solid #ffc107;
            border-radius: 50px;
            width: 56px;
        }

        .hrs_hero .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            color: #fff;
            width: 90%;
            text-align: center;
            max-width: 856px;
        }

        .hero-btn,
        .hero-single .hero-content .hero-btn {
            gap: 1rem;
            display: block;
            margin-top: 35px;
            justify-content: start;
        }
    }

    /* Desktop and Mobile visibility */
    @media (max-width: 991.98px) {
        .hrs_hero .d-none.d-lg-block {
            display: none !important;
        }
    }

    @media (min-width: 992px) {
        .hrs_hero .d-block.d-lg-none {
            display: none !important;
        }

        .hrs_hero .rightbars {
            margin-left: 30%;
        }
    }

    /* Desktop/Laptop sizes - Width 100%, Height Auto */
    /* Laptop - 1200px and above */
    @media (min-width: 1200px) {
        .hrs_hero .hero-banner {
            width: 100%;
            min-height: 500px;
        }

        .hrs_hero .hero-slide img {
            width: 100%;
            height: auto;
            object-fit: cover;
            object-position: center center;
        }

        .hrs_hero .hero-slide picture img {
            width: 100%;
            height: auto;
            object-fit: cover;
            object-position: center center;
        }

        .hrs_hero .hero-title {
            font-size: 2.2rem;
        }

        .hrs_hero .hero-description {
            font-size: 1.3rem;
        }

        .hrs_hero .slider-arrow {
            width: 55px;
            height: 55px;
        }
    }

    /* Small Laptop - 992px to 1199px */
    @media (min-width: 992px) and (max-width: 1199px) {
        .hrs_hero .hero-banner {
            min-height: 450px;
        }

        .hrs_hero .hero-slide img {
            height: auto;
            object-fit: cover;
            object-position: center center;
        }

        .hrs_hero .hero-title {
            font-size: 2rem;
        }

        .hrs_hero .hero-description {
            font-size: 1.2rem;
        }

        .hrs_hero .slider-arrow {
            width: 50px;
            height: 50px;
        }

        .hrs_hero .slider-arrow.prev {
            left: 20px;
        }

        .hrs_hero .slider-arrow.next {
            right: 20px;
        }
    }

    /* Tablet - 768px to 991px */
    @media (min-width: 768px) and (max-width: 991px) {
        .hrs_hero .hero-banner {
            height: 500px;
        }

        .hrs_hero .hero-slide img {
            object-fit: cover;
            object-position: center center;
        }

        .hrs_hero .hero-title {
            font-size: 1.8rem;
        }

        .hrs_hero .hero-description {
            font-size: 1.2rem;
        }

        .hrs_hero .hero-btn .theme-btn {
            padding: 12px 30px;
            font-size: 1rem;
        }

        .hrs_hero .slider-arrow {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .hrs_hero .slider-arrow.prev {
            left: 15px;
        }

        .hrs_hero .slider-arrow.next {
            right: 15px;
        }
    }

    /*hero section end*/
    /*hero section end*/
    @media (min-width: 992px) {
        .rightbars {
            margin-left: 30%;
        }
    }






    /*faq*/
    .main-menu .navigation>li>.megamenu,
    .main-menu .navigation>li>ul {
        background-color: rgb(245, 250, 255);
    }

    h3 {
        font-size: 40px;
    }

    /* CSS */

    .service-content .service-text {
        /*line-height: 20px;*/
        /*margin-top: 10px;*/
        text-align: center;
        text-align: justify;


    }

    .service-item {

        min-height: 457px;
    }

    .service-text {
        padding: 14px 5px;
    }

    .service-item .service-content h3 {
        text-align: center;

    }


    .faq-section {
        max-width: 1000px;
        margin: 60px auto;
        padding: 0 20px;
        font-family: Arial, sans-serif;
    }

    .faq-title {
        text-align: center;
        font-size: 30px;
        margin-bottom: 40px;
    }

    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-item {
        background: #f9f9fb;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        padding: 16px 22px;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f9f9fb;
        border: none;
        cursor: pointer;
        text-align: left;
    }

    .faq-question:hover {
        background: #e2e7ed;
    }

    .faq-answer {
        display: none;
        padding: 18px 22px;
        font-size: 15px;
        line-height: 1.6;
        background: #fff;
        border-top: 1px solid #ddd;
    }

    .faq-question.active .icon {
        transform: rotate(45deg);
    }

    .icon {
        transition: transform 0.3s ease;
        font-size: 22px;
    }

    .faq-flex {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .faq-half {
        flex: 1 1 45%;
        min-width: 220px;
    }

    .faq-show-more {
        padding: 12px 25px;
        background-color: #0056b3;
        color: #fff;
        border: none;
        border-radius: 5px;
        font-size: 15px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .faq-show-more:hover {
        background-color: #004499;
    }

    .hidden-faq {
        display: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .faq-flex {
            flex-direction: column;
        }

        .faq-half {
            width: 100%;
        }
    }

    .modal-dialog {
        max-width: 350px;
    }

    .modal-content {
        border: none;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .modal-header {
        background: linear-gradient(135deg, #ec4899, #ed993a);
        padding: 12px 9px;
        text-align: center;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge-new {
        display: inline-block;
        background: #ffd700;
        color: #333;
        padding: 6px 16px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .modal-title {
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        margin: 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        width: 100%;
    }

    .modal-header .close {
        position: absolute;
        right: 15px;
        top: 15px;
        color: #ffffff;
        font-size: 28px;
        font-weight: bold;
        opacity: 1;
        text-shadow: none;
        width: 35px;
        height: 35px;
        display: flex;
        line-height: 34px;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        padding: 0;
        margin: 0;
    }

    .modal-header .close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .modal-body {
        padding: 0;
    }

    .magazine-image-wrapper {
        width: 100%;
        margin-bottom: 0;
    }

    .magazine-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

    .content-section {
        padding: 20px;
    }

    .content-text {
        color: #2d3748;
        line-height: 1.6;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .content-text strong {
        color: #667eea;
        font-weight: 700;
    }

    .feature-list {
        background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
        padding: 15px;
        border-radius: 12px;
        border-left: 4px solid #667eea;
        margin: 15px 0;
    }

    .feature-list p {
        margin: 0;
        padding: 6px 0;
        color: #2d3748;
        font-weight: 600;
        font-size: 13px;
        display: flex;
        align-items: center;
    }

    .feature-list p:before {
        content: "✓";
        display: inline-block;
        width: 22px;
        height: 22px;
        background: #667eea;
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 22px;
        margin-right: 10px;
        font-weight: bold;
        font-size: 12px;
        flex-shrink: 0;
    }

    .modal-footer {
        padding: 20px;
        border: none;
        text-align: center;
        justify-content: center;
    }

    .btn-read {
        color: linear-gradient(135deg, #667eea 0%, #764ba2 100%)#ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        border: none;
    }

    .btn-read:hover {
        text-decoration: none;
    }

    @media (max-width: 768px) {
        .modal-dialog {
            max-width: 320px;
            margin: 1.75rem auto;
        }

        .modal-title {
            font-size: 20px;
        }
    }


    .table {
        margin-bottom: 0;
        border-collapse: separate;
        border-spacing: 0;
    }

    .table thead th {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 1px;
        border: none;
        padding: 1.25rem 1rem;
        position: sticky;
        top: 0;
        z-index: 10;
        white-space: nowrap;
        text-align: left;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .table thead th:first-child {
        border-top-left-radius: 0px;
        padding-left: 1.5rem;
    }

    .table thead th:last-child {
        border-top-right-radius: 0px;
        padding-right: 1.5rem;
    }

    .table tbody tr {
        transition: all 0.3s ease;
        border-bottom: 1px solid #f0f0f0;
        background: white;
    }

    .table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 15px;
    }

    .table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 15px;
    }

    .table tbody tr:hover {
        transform: translateX(3px);
        box-shadow: -3px 0 0 #667eea, 0 3px 10px rgba(102, 126, 234, 0.1);
    }

    .table tbody td {
        vertical-align: middle;
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
        color: #2c3e50;
        white-space: nowrap;
    }

    .table tbody td:first-child {
        padding-left: 1.5rem;
        font-weight: 600;
        max-width: 250px;
        white-space: normal;
    }

    .table tbody td:last-child {
        padding-right: 1.5rem;
    }

    /* Status Row Styles with Badges */
    .table tbody tr.status-listing {
        background: linear-gradient(90deg, #fff5f5 0%, #ffe5e5 100%) !important;
        border-left: 4px solid #ef3f50;
    }

    .table tbody tr.status-listing:hover {
        background: linear-gradient(90deg, #ffe5e5 0%, #ffd5d5 100%) !important;
    }

    .table tbody tr.status-closed {
        background: linear-gradient(90deg, #fffef5 0%, #fffacd 100%) !important;
        border-left: 4px solid #f4d03f;
    }

    .table tbody tr.status-closed:hover {
        background: linear-gradient(90deg, #fffacd 0%, #fff9b8 100%) !important;
    }

    .table tbody tr.status-open {
        background: linear-gradient(90deg, #f0fff4 0%, #d4f4dd 100%) !important;
        border-left: 4px solid #48bb78;
    }

    .table tbody tr.status-open:hover {
        background: linear-gradient(90deg, #d4f4dd 0%, #c6f6d5 100%) !important;
    }

    /* Company Name Styling */
    .table tbody td a {
        color: #2c3e50;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .table tbody td a:hover {
        color: #667eea;
        transform: translateX(5px);
    }

    /*.table tbody td a::before {*/
    /*    content: '📊';*/
    /*    font-size: 1rem;*/
    /*    transition: all 0.3s ease;*/
    /*}*/

    .table tbody td a:hover::before {
        transform: scale(1.2);
    }

    /* Price Range Styling */
    .table tbody td:nth-child(5) {
        font-weight: 600;
        color: #667eea;
    }

    /* Alternating Row Style */
    .table tbody tr:nth-child(even):not(.status-listing):not(.status-closed):not(.status-open) {
        background-color: #fafbfc;
    }

    /* Responsive */
    @media (max-width: 768px) {


        .table {
            font-size: 0.8rem;
        }

        .table thead th,
        .table tbody td {
            padding: 0.75rem 0.5rem;
        }

        .table tbody td:first-child {
            padding-left: 0.75rem;
            max-width: 180px;
        }

        .table tbody td:last-child {
            padding-right: 0.75rem;
        }


        /* Make table scrollable on mobile */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .table {
            min-width: 900px;
        }
    }

    /* Table Header Icons */
    .table thead th i {
        margin-left: 0.5rem;
        opacity: 0.7;
    }

    /* Scrollbar Styling for Table */
    .table-responsive::-webkit-scrollbar {
        height: 5px;
    }

    .table-responsive::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .table-responsive::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 10px;
    }

    .table-responsive::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }

    .upcom-ipo .table .table-head {
        position: sticky;
        top: 0;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0px 0.1px 15px gray;
        z-index: 99;
    }

    @media (max-width: 480px) {
        .table {
            font-size: 0.75rem;
            min-width: 0px;
        }
    }

    @media only screen and (max-width: 775px) {
        .upcom-ipo .table td {
            font-size: 14px;
            padding: 1.25rem 1rem;
        }
    }

    @media only screen and (max-width: 775px) {
        .upcom-ipo .table th {
            padding: 1.25rem 1rem;
        }
    }

    /*Video*/

    .scroll-container-wrapper {
        width: 1080px;
        margin: auto;
        position: relative;
    }

    .video-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 20px;
        scrollbar-width: none;
    }

    .video-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .video-card {
        flex: 0 0 auto;
        width: 330px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .video-title {
        padding: 10px;
        text-align: center;
        font-weight: bold;
        color: #333;
    }

    .scroll-btn {
        position: absolute;
        top: 55%;
        transform: translateY(-50%);
        font-size: 30px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        cursor: pointer;
        padding: 10px 15px;
        z-index: 2;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .scroll-btn.left {
        left: 10rem;
    }

    .scroll-btn.right {
        right: 10rem;
    }

    .scroll-btn:hover {
        background-color: #eee;
    }

    .video-thumbnail {
        position: relative;
    }

    .video-thumbnail img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .play-button-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-size: contain;
        pointer-events: none;
    }

    /* Responsive */
    @media (max-width: 1150px) {
        .scroll-container-wrapper {
            width: 100%;
            padding: 0 20px;
        }

        .video-card {
            width: 280px;
        }

        .scroll-btn {
            display: none;
        }

        .video-scroll-wrapper {
            scroll-snap-type: x mandatory;
        }

        .video-card {
            scroll-snap-align: start;
        }
    }

    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        font-family: Arial, sans-serif;
    }

    .modal-content {
        background: #fff;
        margin: 8% auto;
        padding: 0px 0px;
        border-radius: 10px;
        width: 350px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        text-align: center;
        position: relative;
        animation: fadeIn 0.5s ease-in-out;
    }

    .popup-image {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .close {
        position: absolute;
        top: 3px;
        right: 15px;
        font-size: 35px;
        font-weight: bold;
        color: red;
        cursor: pointer;
        transition: color 0.3s;
    }

    .close:hover {
        color: #f50b0b;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .mzn_crow {
        padding: 50px 0;
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    }

    .mzn_crow .magazine-item {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        margin: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        /*box-shadow: 0 15px 40px rgba(0,0,0,0.3);*/
    }

    .mzn_crow .magazine-item:hover {
        transform: translateY(-10px);
        /*box-shadow: 0 15px 40px rgba(0,0,0,0.3);*/
    }

    .mzn_crow .magazine-image {
        max-width: 250px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .mzn_crow .magazine-content {
        padding: 20px;
    }

    .mzn_crow .magazine-title {
        font-size: 1rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .mzn_crow .magazine-date {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .mzn_crow .magazine-date::before {
        content: "📅";
        margin-right: 5px;
    }

    .mzn_crow .btn-magazine {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 4px 10px;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .mzn_crow .btn-magazine:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }

    .mzn_crow .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9) !important;
        width: 50px;
        height: 50px;
        border-radius: 50% !important;
        font-size: 30px !important;
        color: #667eea !important;
        transition: all 0.3s ease;
    }

    .mzn_crow .owl-nav button:hover {
        background: white !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .mzn_crow .owl-nav .owl-prev {
        left: -7rem;
    }

    .mzn_crow .owl-nav .owl-next {
        right: -7rem;
    }

    .mzn_crow .owl-dots {
        margin-top: 30px;
    }

    .mzn_crow .owl-dot span {
        background: rgba(255, 255, 255, 0.5) !important;
        width: 12px;
        height: 12px;
    }

    .mzn_crow .owl-dot.active span {
        background: white !important;
    }

    .mzn_crow .section-title {
        text-align: center;
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 40px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .loading-spinner {
        text-align: center;
        padding: 50px;
        color: white;
        font-size: 1.5rem;
    }

    /* Mobile Responsive Styles */
    @media (max-width: 767px) {
        .mzn_crow {
            padding: 30px 0;
        }

        .mzn_crow .container {
            padding: 0 10px;
        }

        .mzn_crow .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding: 0 15px;
        }

        .mzn_crow .magazine-item {
            margin: 10px 5px;
        }

        .mzn_crow .magazine-image {
            max-width: 500px;
        }

        .mzn_crow .magazine-content {
            padding: 15px;
        }

        .mzn_crow .magazine-title {
            font-size: 1.25rem;
        }

        .mzn_crow .magazine-date {
            font-size: 0.85rem;
        }

        .mzn_crow .btn-magazine {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        .mzn_crow .owl-nav button {
            width: 40px;
            height: 40px;
            font-size: 24px !important;
        }

        .mzn_crow .owl-nav .owl-prev {
            left: -15px;
        }

        .mzn_crow .owl-nav .owl-next {
            right: -15px;
        }

        .mzn_crow .owl-dots {
            margin-top: 20px;
        }

        .loading-spinner {
            padding: 30px;
            font-size: 1.2rem;
        }

        .hero-slider,
        .owl-carousel .owl-item,
        .hero-slide {
            height: 600px;
            max-height: 600px;
        }

        .owl-carousel .owl-stage-outer {
            position: relative;
            overflow: hidden;
            -webkit-transform: translate3d(0, 0, 0);
            height: 45rem;
        }


    }

    /* Small Mobile Devices */
    @media (max-width: 480px) {
        .mzn_crow .section-title {
            font-size: 1.5rem;
        }


        .mzn_crow .magazine-image {
            max-width: 500px;
        }

        .mzn_crow .magazine-title {
            font-size: 1.1rem;
        }

        .mzn_crow .owl-nav button {
            width: 35px;
            height: 35px;
            font-size: 20px !important;
        }

        .mzn_crow .owl-nav .owl-prev {
            left: -10px;
        }

        .mzn_crow .owl-nav .owl-next {
            right: -10px;
        }
    }

    /* Tablet Landscape */
    @media (min-width: 768px) and (max-width: 991px) {
        .mzn_crow .magazine-image {
            max-width: 230px;
        }
    }

    /* Touch Device Optimization */
    @media (hover: none) and (pointer: coarse) {
        .mzn_crow .magazine-item:hover {
            transform: none;
        }

        .mzn_crow .magazine-item:active {
            transform: translateY(-5px);
        }

        .mzn_crow .btn-magazine:hover {
            transform: none;
        }

        .mzn_crow .btn-magazine:active {
            transform: scale(0.98);
        }
    }

    .lock-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
    }

    .lock-modal {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 40px;
        border-radius: 15px;
        text-align: center;
        max-width: 500px;
        margin: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        animation: slideIn 0.5s ease-out;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .lock-modal h2 {
        margin-top: 0;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .lock-modal p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .register-btn {
        background: #e53e3e;
        color: white;
        padding: 15px 35px;
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1.1rem;
        display: inline-block;
        margin-top: 20px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .register-btn:hover {
        background: #c53030;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
        text-decoration: none;
        color: white;
    }

    .preview-info {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        margin: 20px 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .close-preview {
        position: relative;
        top: -1rem;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.3s;
    }

    .close-preview:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .magazine-item .badge {
        position: absolute;
        top: 6px;
        z-index: 9;
    }

    .theme-btn {
        background-color: #3498db;
    }

    .status-bar {
        max-width: 50px !important;
    }

    /* Wrapper */
    .ipo-heading-wrapper {

        padding: 25px 15px;
        background: #ffffff;

    }


    /* Tag */
    .ipo-tag {

        display: inline-block;
        background: #e7f0ff;
        color: #2b67c3;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;

    }


    /* Main Title */

    .ipo-main-title {

        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;

    }

    .ipo-main-title span {

        color: #2b67c3;

    }


    /* Legend */

    .ipo-legend {

        max-width: 320px;
        margin-left: auto;

    }


    .legend-item {

        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        font-size: 15px;
        color: #555;
        font-weight: 600;

    }


    .legend-color {

        width: 50px;
        height: 25px;
        border-radius: 2px;

    }


    .open {

        background: #64e572;

    }

    .closed {

        background: #e4e669;

    }

    .listing {

        background: #ef5b6c;

    }


    /* Mobile */

    @media(max-width:767px) {

        .ipo-legend {

            margin-top: 20px;
            margin-left: 3rem;

        }

        .ipo-main-title {

            font-size: 24px;

        }

    }