/*=============================================
Fonts
==============================================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&amp;family=Roboto:wght@300;400;500;700&amp;display=swap');

/*==============================================
Import css
===============================================*/

@import url('all.min.css');
@import url('fontawesome.min.css');
@import url('ionicons.min.css');
@import url('slick.min.css');
@import url('owl.carousel.min.css');
@import url('magnific-popup.min.css');


/*================================================
Moz Selection
================================================*/
:root {
    --primary-color: #e50916;
    --primarydark-color: #b81d24;
    --black-color: #221f1f;
    --dark-color: #161616;
    --secondary-color: #cecfd1;
    --grey-color: #f5f5f1;
    --white-color: #ffffff;
    --body-fonts: 'Roboto', sans-serif;
    --title-fonts: 'Jost', sans-serif;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

/*================================================
General
================================================*/
body {
    background: var(--dark-color);
    font-family: var(--body-fonts);
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    line-height: 2;
    color: var(--secondary-color);
    overflow-x: hidden;
}

.container {
    width: 95% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
    color: var(--white-color);
    font-style: normal;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

    h1 a,
    h2 a,
    h3 a,
    h4 a,
    h5 a,
    h6 a {
        color: inherit;
    }

h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 48px;
}

h2 {
    font-size: 36px;
    font-style: normal;
    line-height: 44px;
}

h3 {
    font-size: 25px;
    font-style: normal;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    font-style: normal;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
}

h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
}

/*===============================================
HTML Tags
=================================================*/
a,
.button {
    color: var(--primary-color);
    outline: none !important;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

    a:focus,
    a:hover {
        color: var(--primary-color);
        outline: none;
        text-decoration: none !important;
    }

p {
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color);
}

hr {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 0px;
}

b,
strong {
    font-weight: 600;
}
/*===== Lists (Nested) =====*/
ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em;
}

    ol li {
        list-style: decimal;
    }

    ol ol {
        padding-left: 25px;
    }

    ul li {
        list-style: inherit;
    }

/*===== Input Textarea =====*/
input,
input.form-control {
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

    input:focus,
    input:hover,
    textarea:focus,
    textarea:hover,
    .form-control:focus {
        border-color: var(--primarydark-color);
        outline: none;
    }

    input[type="radio"],
    input[type="checkbox"] {
        width: auto;
        height: auto;
        float: none;
        margin-right: 5px;
    }

textarea {
    background: var(--black-color);
    border: 1px solid var(--black-color);
    color: var(--white-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

    input::placeholder,
    textarea::placeholder {
        color: var(--secondary-color);
    }

    input:-ms-input-placeholder,
    textarea:-ms-input-placeholder {
        color: var(--secondary-color);
    }

    input::-ms-input-placeholder,
    textarea::-ms-input-placeholder {
        color: var(--secondary-color);
    }

/*===== Select =====*/
select,
select.form-control {
    border: 1px solid var(--black-color);
    color: var(--white-color);
    background: var(--black-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 30px;
    height: 51px;
    line-height: 48px;
    outline: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
}
.contact{
    margin-bottom:30px;
}

/*===== Definition Lists =====*/
dl dd {
    margin-bottom: 15px;
}

    dl dd:last-child {
        margin-bottom: 0px;
    }

    
/*===== HERO =====*/

.hero-section-padding {
    margin-top: 70px;
    border-left: var(--primary-color);
}

.hero {
    width: 100%;
    max-width: 1200px;
   /* height: 220px;*/
    text-align: center;
    margin: 0 auto;
    background: #392f28;
    position: relative;
    color: #392f28;
    border-left: 3px solid var(--primary-color);
}


    .hero h1 {
        margin: auto;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .hero p {
        margin: auto;
        position: absolute;
        top: 130px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        color: #fff;
        font-size:16px;
    }

    .hero img {
        width: 100%;
/*        height: 200px;*/  

    }

.bar {
    width: 100%;
/*    height: 220px;*/   
background: -moz-linear-gradient(289deg, #c60a09 0%, #f23332 36%, #c60a09 100%);
    background: -webkit-linear-gradient(289deg, #c60a09 0%, #f23332 36%, #c60a09 100%);
    background: -ms-linear-gradient(289deg, #c60a09 0%, #f23332 36%, #c60a09 100%);
    background: linear-gradient(161deg, #c60a09 0%, #f23332 36%, #c60a09 100%);
    opacity: 0.3;
    position: absolute;
    z-index: 0;
    left: 0;
/*    top: 90px;*/ 
     top: 0px;
    -ms-transform-origin: 100% 0%;
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-animation: roll-out 1.2s ease-out;
    -moz-animation: roll-out 1.2s ease-out;
    animation: roll-out 1.2s ease-out;
}

.hero h1, .hero p {
    -webkit-animation: scale-in 1.3s ease-out;
    -moz-animation: scale-in 1.3s ease-out;
    animation: scale-in 1.3s ease-out;
}

@keyframes scale-in {
    0% {
        transform: scale(10, 10);
        opacity: 0;
    }

    100% {
        transform: scale(1, 1);
        opacity: 1;
    }
}

@keyframes roll-out {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.DevelopmentVedio{
    padding:45px 0 20px 0px;
}


.more-vedio-button {
    text-transform: uppercase;
    position: relative;
    width: auto;
    font-weight: 400;
    background: var(--primary-color);
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 16px;
    padding: 12px 30px;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.more-button-flat {
    padding: 5px 30px;
}

.more-vedio-button:hover,
.more-vedio-button:focus {
    color: var(--white-color);
    background: var(--primarydark-color);
}

/*sllder*/
.VedioSlider{
    padding:25px 0 25px 0;
}
.slider {
    display: flex;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

    .slider .card-link {
        width:200px;
        height: auto;
        flex-shrink: 0;
        margin-right: 20px;
    }

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    z-index: 10;
    transition: background-color 0.3s;
}

    .slider-btn:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .slider-btn.left {
        left: 10px;
    }

    .slider-btn.right {
        right: 10px;
    }


/* ExploreByMenuFirstVedioSection*/
.ExploreByMenuFirstVedioSection {
    padding: 60px 0px 0px 0px;
}
.ExploreByMenuFirstVedioDiv{
    padding-top:25px;
}
.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .uvl-img {
    position: relative;
    overflow: hidden;
}

    .ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .uvl-img:before {
        content: "";
        position: absolute;
        bottom: 0;
        z-index: 9;
        left: 0;
        width: 100%;
        height: 100%;
        display: inline-block;
        opacity: 0.4;
        background: rgb(12, 17, 27);
        transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
    }

.ExploreByMenuFirstVedio:hover .ExploreByMenuFirstVedio-contain .uvl-img:before {
    opacity: 0.9;
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .vedio-info-contain {
    padding: 15px 15px;
    opacity: 1;
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom:-18px;
    left: 0;
    z-index: 9;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.ExploreByMenuFirstVedio:hover .ExploreByMenuFirstVedio-contain .vedio-info-contain {
    opacity: 1;
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .uvl-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.ExploreByMenuFirstVedio:hover .ExploreByMenuFirstVedio-contain .uvl-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .uvl-action {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9;
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .vedio-add {
    bottom: inherit;
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .vedio-add:after {
    bottom: 100%;
    right: 0%;
    border: solid transparent;
    /*        content: "";
*/ height: 0;
    width: 0;
    top: inherit;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-right: 14px;
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .vedio-info h3 {
    font-size:13px;
    line-height: 28px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .uvl-action .gen-button {
    padding: 0;
    width: 60px;
    height: 60px;
    opacity: 0;
    display: inline-block;
    line-height: 60px;
    text-align: center;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

    .ExploreByMenuFirstVedio .ExploreByMenuFirstVedio-contain .uvl-action .gen-button i {
        margin: 0;
        padding: 0;
    }

.ExploreByMenuFirstVedio:hover .ExploreByMenuFirstVedio-contain .uvl-action .gen-button {
    opacity: 1;
    background-color: red;
    color: var(--white-color);
}

.vedio-grid .vedio-add {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    z-index: 99;
}

.vedio-grid .vedio-add .wpulike.wpulike-heart {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    padding: 0;
}

.vedio-grid .vedio-add .wpulike-heart .wp_ulike_put_image {
    font-size: 16px;
    color: var(--white-color);
    background: 0 0;
    padding: 0;
    line-height: normal;
    border-radius: 0;
    border: none;
    outline: none;
}

        .vedio-grid .vedio-add .wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active,
        .wpulike-heart .wp_ulike_btn:focus,
        .wpulike-heart .wp_ulike_btn:hover {
            color: var(--primary-color) !important;
        }

        .vedio-grid .vedio-add .wpulike-heart .count-box,
        .vedio-grid .vedio-add .wpulike-heart .wp_ulike_put_image:after {
            display: none !important;
        }

    .vedio-grid .vedio-add .wpulike-heart .wp_ulike_general_class {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .vedio-grid .vedio-add .wpulike-heart .wp_ulike_put_image:before {
        content: "\f004";
        font-family: 'Font Awesome 5 Free';
        font-weight: 400;
    }

    .vedio-grid .vedio-add .wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active:before {
        font-weight: 900;
    }


/*================================================
Footer
================================================*/
#footer {
    background: var(--black-color);
    display: inline-block;
    width: 100%;
    float: left;
}
#footer .footer-top {
        padding:20px 0 0;
    }
#footer .widget {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom:2px;
}

#footer .widget .footer-title {
        margin-bottom: 15px;
        padding: 0;
        font-size: 26px;
        position: relative;
        line-height: 34px;
    }

#footer .widget ul {
        padding: 0;
        margin: 0;
    }

#footer .widget ul li a {
            padding: 0;
            font-size:10px;
        }

#footer .widget ul li a:hover {
                color: var(--primary-color);
            }

footer#footer ul li cite {
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}


footer#footer .widget ul.menu li a,
footer#footer .gen-widget-menu .gen-service li a {
    position: relative;
    border: none;
/*    padding: 5px 0 2px 15px;
*/    padding: 1px 0 0px 15px;
    display: inline-block;
    width: 100%;
}

    footer#footer .widget ul.menu li a:hover,
    footer#footer .gen-widget-menu .gen-service li a:hover {
        color: var(--primary-color);
    }

    footer#footer .widget ul.menu li a:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 5px;
        height: 5px;
        display: inline-block;
        background: var(--primary-color);
        background: #01793f;
        margin: auto 0;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

footer#footer .wp-calendar-nav .wp-calendar-nav-prev,
footer#footer .wp-calendar-nav .wp-calendar-nav-next {
    background: transparent;
}

footer#footer .wp-caption p.wp-caption-text {
    color: var(--secondary-color);
}

footer#footer .gen-widget-menu .gen-service li a:before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--primary-color);
    margin: 0;
}

footer#footer .widget #recentcomments--1 li.recentcomments span a {
    color: var(--primary-color);
}

/*=========*/
footer#footer .footer-style-1 .widget .footer-title,
footer#footer .footer-style-1 .widget ul.menu li a,
footer#footer .footer-style-1 .gen-widget-menu .gen-service li a,
footer#footer .footer-style-1 .widget ul li a {
    color: var(--white-color);
}

    footer#footer .footer-style-1 .widget ul li a:hover {
        color: var(--primary-color);
    }

/*footer#footer .footer-style-1 .gen-copyright-footer {
    background: var(--primary-color);
}*/

#footer .footer-style-1 .widget:first-child {
    margin-bottom:5px;
}

#footer .footer-style-1 .footer-logo {
    height:100px;
/*    margin-bottom: 10px;
*/}

.footer-search {
    width: calc(90% - 2px) !important;
}
.footer-submit {
    top: 0px !important;
}


    footer#footer .footer-style-1 .widget ul.menu li {
        margin-bottom: 0;
        width: calc(50% - 2px);
        display: inline-block;
    }

#footer .social-link {
    margin: 0;
    padding: 0;
}

    #footer .social-link li {
        list-style: none;
        float: left;
        margin-right: 30px;
    }

        #footer .social-link li:last-child {
            margin-right: 0;
        }

        #footer .social-link li a {
            color: var(--white-color);
            font-size: 18px;
            line-height: normal;
            text-align: center;
            display: inline-block;
            margin-right: 0 !important;
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0;
        }

            #footer .social-link li a:last-child {
                margin-right: 0px;
            }

            #footer .social-link li a:hover {
                color: var(--primary-color);
            }

/*================================================
Breadcrum
================================================*/
.breadcrumb-top {
    background: var(--black-color);
    color: var(--white-color);
    padding:80px 0;
    text-align: center;
    position: relative;
    background-attachment: fixed !important;
    background-size: cover !important;
}

    .breadcrumb-top:before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--black-color);
        opacity: 0.9;
    }
    .breadcrumb-top .breadcrumb-title h1 {
        font-size: 40px;
        line-height: 50px;
        color: var(--white-color);
        padding-top: 20px;
    }

.breadcrumb-top-container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

    
   
@media(max-width:1023px) {
    .breadcrumb-top {
        text-align: center;
    }

        .breadcrumb-top .breadcrumb-title h1 {
            font-size: 42px;
            line-height: 50px;
        }

    .breadcrumb-top-img.text-right {
        text-align: center !important;
    }
}

@media(max-width:767px) {
    .breadcrumb-top .breadcrumb-top-title h1 {
        font-size: 34px;
        line-height: 42px;
    }
}



/*angular*/
.Common-Section-Padding {
    padding:25px 0px 20px 0px;
}

.CommonVedioDiv .video-card {
    border: none !important;
    border-radius: 4px;
    background-color: transparent !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

    .CommonVedioDiv .video-card img.card-img-top {
        aspect-ratio: 16 / 9;
        width: 100%;
        object-fit: cover;
        border-radius: 4px;

        height: 180px; /* Fixed height for uniform layout */
 
        display: block;
    }

    .CommonVedioDiv .video-card:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
        z-index: 10;
        position: relative;
    }

.CommonVedioDiv.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.CommonVedioDiv .video-card .card-body {
    padding: 8px 4px !important;
    line-height: 1.2;
}

.CommonVedioDiv .video-card .card-title {
    font-size: 0.9em;
    font-weight: bold;
    color: var(--white-color);
}

.CommonVedioDiv .video-card .card-text {
    font-size: 0.75em;
    color: var(--white-color);
    margin-top: 0;
}

/* Modal Background Overlay */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.custom-modal-content {
    width: 70%;
    max-width: 900px;
    background: #111;
    padding: 15px;
    border-radius: 12px;
    position: relative;
    animation: fadeUp 0.3s ease-out;
    box-shadow: 0px 0px 25px rgba(255,255,255,0.1);
}

/* Animation */
@keyframes fadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* Close Button (X) */
.custom-close {
    position: absolute;
    top: 8px;
    right:23px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .custom-close:hover {
        color: #ff4444;
    }

/* Iframe */
#videoIframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* Footer Buttons */
.custom-footer {
    display: flex;
    justify-content:center;
    margin-top: 12px;
}

.btn-close-custom {
    background: #444;
    border: none;
    padding: 8px 16px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    transition: 0.3s;
}

    .btn-close-custom:hover {
        background: #ff4444;
    }

.btn-watch {
    background: #2196F3;
    padding: 8px 16px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-watch:hover {
        background: #0d6efd;
    }


.common-div {
    margin-bottom: 30px;
}

.playlist-card {
    border-right: 5px solid #333; /* Gives a stacked appearance */
    box-shadow: 5px 5px 0px #111;
}

.thumbnail-container {
    overflow: hidden;
}

.video-card {
    transition: transform 0.2s;
    cursor: pointer;
    background: #1a1a1a;
    color: white;
    border: none;
}

    .video-card:hover {
        transform: scale(1.03);
    }

.playlist-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    border-left: 2px solid #333;
}



/* Expanded Row Styling */
.playlist-details-row {
    background: #111;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    width: 100%;
    clear: both; /* Ensures it takes a full new line */
}

.playlist-inner-container h6 {
    color: #00acee;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.sub-video-item {
    cursor: pointer;
    transition: 0.3s;
}
    .sub-video-item img {
        aspect-ratio: 16 / 9;
        width: 100%;
        object-fit: cover;
        border-radius: 4px;
        /*height: 180px;*/
        display: block;
    }
    .sub-video-item:hover img {
        opacity: 0.7;
        transform: translateY(-3px);
    }

    .sub-video-item p {
        color: #ccc;
        line-height: 1.2;
    }

/* Playlist Card effect */
.is-playlist {
    border-bottom: 4px solid #00acee !important;
}

.playlist-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
/*================================================
About Us
================================================*/
.about-us-section {
    padding: 60px 0px 60px 0px;
}
@media (max-width:767px) {
    .about-us-section {
        padding: 30px 0px 30px 0px;
    }
}
.about-us-background {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
}

    .about-us-background img {
        width: 100%;
    }

    .about-us-background:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 100%;
        background: rgba(34, 31, 31, 0.9);
        background: -moz-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(34, 31, 31, 0.9)), color-stop(100%, rgba(34, 31, 31, 1)));
        background: -webkit-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
        background: -o-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
        background: -ms-linear-gradient(top, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
        background: linear-gradient(to bottom, rgba(34, 31, 31, 0.9) 0%, rgba(34, 31, 31, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c111b', endColorstr='#0c111b', GradientType=0);
    }


.about-us-info p {
    display: inline-block;
    width: 100%;
    font-size:14px;
    margin-bottom:10px;
    text-align:justify;
}

.about-us-info .about-title {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.about-us-wrapper .col-lg-6 .about-us-share {
    border-bottom: none;
    padding: 0;
}



.about-us-share {
    margin: 0;
    display: flex;
    border-bottom: 3px solid var(--primary-color);
    padding: 0 0 60px 0;
}

    .about-us-share h4 {
        font-size: 18px;
        line-height: normal;
        font-weight: 600;
        color: var(--white-color);
    }

    .about-us-share .social-inner {
        margin: 0 0 0 15px;
        padding: 0;
        display: flex;
    }

        .about-us-share .social-inner li {
            list-style: none;
            margin: 0 15px 0 0;
        }

            .about-us-share .social-inner li:last-child {
                margin-right: 0;
            }

            .about-us-share .social-inner li a {
                display: inline-block;
                font-size: 18px;
                width: 50px;
                height: 50px;
                line-height: 50px;
                text-align: center;
                background: var(--black-color);
                color: var(--white-color);
                -webkit-border-radius: 0;
                -moz-border-radius: 0;
                border-radius: 0;
            }

                .about-us-share .social-inner li a:hover {
                    background: var(--primary-color);
                }


.about-us-img-holder img{
    height:350px;
    width:450px;
}
@media(max-width:1023px) {
    .about-us-img-holder {
        margin: 0 0 30px;
    }

    .about-us-top {
        margin: 0 !important;
    }
}



@media(max-width:767px) {
    .about-us-share {
        margin-top: 30px;
        display: inline-block;
        width: 100%;
    }

        .about-us-share .social-inner {
            margin: 15px 0 0;
        }
}

.mission-item{
    font-size:14px;
}

/*================================================
Back to Top
================================================*/
#back-to-top .top {
    position: fixed;
    bottom:39px;
    right:150px;
    margin: 0px;
    color: var(--white-color);
    background: var(--primary-color);
    z-index: 999;
    border: 1px solid var(--primary-color);
    font-size: 26px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: 00px;
    -moz-border-radius: 00px;
    border-radius: 00px;
}

    #back-to-top .top:hover {
        background: var(--primarydark-color);
        color: var(--white-color);
        border: 1px solid var(--primarydark-color);
    }


/*================================================
Contact Us
================================================*/
.contact-us-padding-3 {
    padding: 60px 0px 60px 0px;
}

@media (max-width:767px) {
    .contact-us-padding-3 {
        padding: 40px 0px 40px 0px;
    }
}
/*======================================================
Icon-Box
======================================================*/

.contact-icon-box-style-1 {
    padding: 30px 30px 30px 30px;
    background-color: var(--black-color);
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #E50916;
    text-align: center;
}

    .contact-icon-box-style-1 .contact-icon-box-icon {
        margin-bottom: 25px;
    }

    .contact-icon-box-style-1 .contact-icon-box-icon .contact-icon-animation {
        display: inline-block;
        background-color: #E50916;
        color: #ffffff;
        text-align: center;
        border: 3px solid #ffffff;
        border-radius: 50%;
        height: 100px;
        width: 100px;
        line-height: 100px;
        font-size: 50px;
    }

    .contact-icon-box-style-1 .contact-icon-box-content .contact-icon-box-description {
        color: #FFFFFF;
        font-family: var(--body-fonts);
        font-weight: 400;
        margin-bottom: 0;
    }

@media (max-width:767px) {
    .contact-blog-spot-video iframe {
        height: auto;
    }
}

/*===========================================================================================================*/
/*======Border=======*/

.contact-top-border {
    border-top: 1px solid #141B29;
}

.pagination{
    display:flex;
    justify-content:center;
}

/*.pagination-top-border {
    margin-top:20px;
    padding: 10px 0 5px 0;
    border-top: 1px solid #141B29;
}*/

/*blog*/
.blog-section-padding-3 {
    padding: 50px 0px 50px 0px;
}
@media (max-width:767px) {
    .blog-section-padding-3 {
        padding: 40px 0px 40px 0px;
    }
}
/*================================================
Blog
================================================*/
.blog-contain .wp-block-group.has-background {
    color: var(--black-color);
    padding: 30px;
}

.blog-contain .wp-block-media-text.has-background {
    color: var(--black-color);
}

/*.single-post .blog-post {
    margin-bottom: 0;
}*/

.blog-post {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    background: var(--black-color);
}

    .blog-post .post-media {
        overflow: hidden;
        margin-bottom: 0;
        position: relative;
    }

        .blog-post .post-media img {
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: 0.5s ease-in-out;
            transition: 0.5s ease-in-out;
        }

    .blog-post:hover .post-media img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .blog-post .blog-contain {
        padding:10px;
        display: inline-block;
        position: relative;
        width: 100%;
    }

/*.gen-blog-col-3 .blog-post .blog-contain .blog-title {
    font-size: 22px;
    line-height: 30px;
}*/

.blog-post .blog-contain .blog-title {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 5px;
}

.blog-post .post-meta ul {
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
    display: -ms-flexbox !important;
    display: flex !important;
}

    .blog-post .post-meta ul li {
        list-style: none;
        float: left;
        display: inline-block;
        margin-right: 20px;
        align-self: center !important;
        font-family: var(--title-fonts);
        font-size: 10px;
        line-height: 22px;
        text-transform: uppercase;
    }

        .blog-post .post-meta ul li:last-child {
            margin-right: 0;
        }

        .blog-post .post-meta ul li a {
            color: var(--white-color);
        }

            .blog-post .post-meta ul li a:hover {
                color: var(--primary-color);
            }

        .blog-post .post-meta ul li .post-icon {
            margin-right: 10px;
            color: var(--primary-color);
        }


@media(max-width:479px) {

    .blog-post .blog-contain {
        padding: 15px;
    }

    .blog-post .post-meta ul {
        display: inline-block !important;
        margin-bottom: 5px;
    }

        .blog-post .post-meta ul li {
            font-size: 14px;
            margin-bottom: 5px;
        }
}
/*================================================
Pagination
================================================*/
.pagination .page-numbers {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pagination .page-numbers li:first-child .page-numbers {
        margin-left: 0;
    }

    .pagination .page-numbers li .page-numbers {
        position: relative;
        display: block;
        padding: 0px 15px;
        height: 50px;
        width: 50px;
        text-align: center;
        line-height: 46px;
        margin: 0 5px;
        color: var(--white-color);
        background-color: var(--black-color);
        border: 2px solid var(--black-color);
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

        .pagination .page-numbers li .page-numbers:hover {
            color: var(--white-color);
            text-decoration: none;
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            z-index: 2;
        }

        .pagination .page-numbers li .page-numbers:focus {
            box-shadow: none;
            outline: 0;
            z-index: 2;
        }

        .pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
            cursor: pointer
        }

        .pagination .page-numbers li .page-numbers.current {
            color: var(--white-color);
            background: var(--primary-color);
            border-color: var(--primary-color);
            z-index: 1;
            -webkit-transition: all 0.5s ease-out 0s;
            -moz-transition: all 0.5s ease-out 0s;
            -ms-transition: all 0.5s ease-out 0s;
            -o-transition: all 0.5s ease-out 0s;
            transition: all 0.5s ease-out 0s;
        }

    .pagination .page-numbers li .next.page-numbers,
    .pagination .page-numbers li .prev.page-numbers {
        width: auto;
    }

@media(max-width:767px) {

    .pagination .page-numbers li .next.page-numbers,
    .pagination .page-numbers li .prev.page-numbers {
        width: auto;
        display: none;
    }
}

@media(max-width:767px) {
    .pagination .page-numbers li .page-numbers {
        padding: 0px 10px;
        height: 45px;
        width: 45px;
        line-height: 42px;
    }
}

/*================================================
Blog Sidebar
================================================*/
.doc-search{
    padding:5px !important;
}
.DocumentName{
    height:40px !important;
}
.DocumentSearch {
    height: 40px !important;
    width: 41px !important;
    top: 0px !important;
    right: -25px !important;
    line-height: 40px !important;
    background: var(--primarydark-color);
}
.widget {
    margin-bottom:5px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding:10px;
    background: var(--black-color);
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .widget:last-child {
        margin-bottom: 0;
    }

.blog-search{
    margin-top:20px !important; 
}
/*+++++ Widget Title +++++*/
.widget .widget-title {
    margin-bottom: 5px;
    padding: 0;
    font-size: 20px;
    position: relative;
    line-height: 32px;
    color: var(--primary-color);
}

    /*+++++ SideBar - Search +++++*/
    .widget.widget_search .widget-title {
        color: var(--white-color);
    }

        .widget.widget_search .widget-title:before {
            background: var(--white-color);
        }

    .widget.widget_search input {
        border: 1px solid transparent;
        color: var(--dark-color);
        background: var(--white-color);
    }

        .widget.widget_search input:focus,
        .widget.widget_search input:hover {
            border: 1px solid transparent;
            color: var(--primary-color);
        }

        .widget.widget_search input::placeholder {
            color: var(--dark-color);
        }

        .widget.widget_search input:-ms-input-placeholder {
            color: var(--dark-color);
        }

        .widget.widget_search input::-ms-input-placeholder {
            color: var(--dark-color);
        }

.search-form {
    position: relative;
}

    .search-form label {
        width: 100%;
        margin-bottom: 0;
        float: left;
        width: 100%;
    }

.search-submit {
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--white-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 10px;
    right: 12px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    background: #01793f;
}

    .search-submit:before {
        content: "\f002";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
    }

    .search-submit:hover {
        color: var(--white-color) !important;
        background: var(--primarydark-color);
        outline: none;
    }
    .title a{
        color:#fff;
    }
.blog-label{
    margin-bottom: 0px!important;
}
/*+++++ widget-menu +++++*/
.widget ul {
    padding: 0;
    margin: 0;
}

    .widget ul li {
        list-style: none;
        margin: 0 0 2px 0;
    }

        .widget ul li:last-child {
            margin-bottom: 0;
        }

    .widget ul ul.children {
        padding-left: 25px;
        margin-top: 15px;
    }

    .widget ul li a {
        padding: 0 0 0 20px;
        color: var(--white-color);
        position: relative;
        -ms-word-wrap: break-word;
        word-wrap: break-word;
        position: relative;
        font-size:10px;
    }

        .widget ul li a:hover {
            color: var(--primary-color);
            text-decoration: none;
        }

.widget.widget_archive ul li > a:before,
.widget.widget_categories ul li > a:before,
.widget.widget_meta ul li a:before,
.widget.widget_recent_comments ul li:before,
.widget.widget_recent_entries ul li > a:before,
.widget.widget_nav_menu ul li > a:before,
.widget.widget_pages ul li a:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-size: 12px;
    top: 3px;
    color: inherit;
    font-family: "Font Awesome 5 Free";
    line-height: normal;
    font-weight: 900;
}

/*+++++ SideBar - Recent Comments +++++*/
.widget.widget_recent_comments #recentcomments li,
.widget.widget_recent_comments ul li {
    padding-left: 20px;
    position: relative;
}

    .widget.widget_recent_comments #recentcomments li.recentcomments span a,
    .widget.widget_recent_comments ul li.recentcomments span a {
        color: var(--white-color);
    }

    .widget.widget_recent_comments #recentcomments li.recentcomments a:before,
    .widget.widget_recent_comments ul li.recentcomments a:before {
        display: none;
    }

    .widget.widget_recent_comments #recentcomments li.recentcomments a,
    .widget.widget_recent_comments ul li.recentcomments a {
        color: var(--primary-color);
    }

        .widget.widget_recent_comments #recentcomments li.recentcomments a:hover,
        .widget.widget_recent_comments ul li.recentcomments a:hover {
            color: var(--primary-color);
            text-decoration: underline !important;
        }

    .widget.widget_recent_comments ul li:before,
    .widget.widget_recent_comments ul li:before {
        content: '\f27a';
        font-size: 12px;
        top: 10px;
        font-weight: 600;
    }

.widget.widget_archive ul > li a:before {
    left: 0;
    top: 5px;
    font-size: 10px;
}

.widget.widget_archive ul li {
    font-weight: 400;
    color: var(--primary-color);
}

/*+++++  widget_categories  +++++*/
.widget.widget_categories ul li > a {
    padding-left: 30px;
}

.widget.widget_categories ul > li a:before {
    left: 0;
    top: 4px;
    content: '\f07c';
    font-weight: 400;
    font-size: 14px;
}

.widget_categories ul > li:last-child {
    margin-bottom: 0;
}

/*+++++  Meta - widget RSS +++++*/
.widget.widget_rss ul li {
    margin-bottom: 30px;
}

    .widget.widget_rss ul li:last-child {
        margin-bottom: 0;
    }

    .widget.widget_rss ul li a {
        padding-left: 0;
        font-size: 16px;
        color: var(--white-color);
        font-weight: 600;
        font-family: var(--title-fonts);
    }

        .widget.widget_rss ul li a:hover {
            color: var(--primary-color);
        }

        .widget.widget_rss ul li a:before {
            display: none;
        }

    .widget.widget_rss ul li cite {
        font-weight: 600;
        margin-top: 5px;
        display: inline-block;
        width: 100%;
    }

    .widget.widget_rss ul li .rss-date {
        font-size: 14px;
        color: var(--primary-color);
        line-height: 1;
        float: left;
        display: inline-block;
        width: 100%;
        margin: 5px 0;
    }

/*+++++  SideBar - widget Recent Entries +++++*/
.widget_recent_entries ul li .post-date {
    font-weight: 600;
    color: var(--dark-color);
}


/*+++++ widget Dropdown +++++*/
.widget select,
.widget select.form-control {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

/*Document*/
.DocumentSection, .VedioSection {
    border: 0;
    width: 100%;
    margin-inline: auto;
}

.DocumentSectionCard {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(71deg, #080509, #1a171c, #080509);
    background-clip: padding-box;
    border-radius: 45px;
    padding:35px;
    margin-bottom: 32px;
}

.DocumentIcon {
    margin-bottom: 5px;
}


.bg-green-box {
    position: relative;
}

    .bg-green-box::after
   {
        position: absolute;
        top: -1px;
        bottom: -1px;
        left: -1px;
        right: -1px;
        content: "";
        z-index: -1;
        border-radius: 45px;
    }

    .bg-green-box::after {
        background: linear-gradient(71deg, #0d1212, #3da077, #0d1212);
    }



.VedioRecord {
    font-size: 15px;
    border-radius: 10px;
    padding: 10px 0 5px 0;
    margin-bottom: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-right: 16px;
    margin-left: 16px;
}
    /* Card Wrapper */
    .doc-page-card {
        text-align: center;
        transition: all 0.3s ease;
    }

/* A4 Page Style */
.doc-page {
    width: 180px;
    height: 240px;
    background: #fff;
    margin: 0 auto;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Hover lift */
.doc-page-card:hover .doc-page {
    transform: translateY(-6px);
}

/* File type badge */
.doc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #c40000;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
}

/* Red top corner */
.doc-top-design {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d40000, #ff4d4d);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Red bottom design */
.doc-bottom-design {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 70px;
    background: linear-gradient(135deg, #b30000, #ff6b6b);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* Fake text lines */
.doc-lines {
    position: absolute;
    top: 90px;
    left: 20px;
    right: 20px;
}

    .doc-lines span {
        display: block;
        height: 6px;
        background: #e0e0e0;
        margin-bottom: 10px;
        border-radius: 3px;
    }

/* Document title */
.doc-title {
    margin-top: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.playlist{
height:150px;
}
.circle-img {
    width:60px;
    height:60px;
    border-radius: 50%;
    object-fit: cover;
}

