/*================================================
[  Table of contents  ]
================================================
==> Fonts
==> Import css
==> Moz Selection
==> General
==> Section
==> Container
==> Loading
==> Back to Top
==> Button Core
==> Breadcrumb
==> Header
==> Footer
==> Play Button
==> Icon-Box
================================================*/

/*=============================================
Fonts
==============================================*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

@import url("all.min.c34c0bb73005.css");
@import url("fontawesome.min.baedc9974cbf.css");



/*================================================
Moz Selection
================================================*/
:root {
    --primary-color: #e50916;
    --primarydark-color: #b81d24;
    --black-color: #221f1f;
    --copyright-color: #1d1d1d;
    --dark-color: #000000;
    --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;
}

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: 32px;
    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;
}

/*===== Definition Lists =====*/
dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0px;
}

/*===== Table =====*/
table {
    border: 2px solid #222d42;
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 2px solid #222d42;
    padding: 8px;
    text-align: center;
}

/*===== 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;
}

/*======= Library ========*/

.gen-library form input {
    margin-bottom: 30px;
}

.gen-library form label {
    display: block;
}

.gen-library form .form-button {
    margin-bottom: 30px;
}

/*============================================
Section
==============================================*/

section,
.gen-section-padding {
    padding: 130px 0px 130px 0px;
}

.gen-section-padding-2 {
    padding: 90px 0px 60px 0px;
}

.gen-section-padding-3 {
    padding: 90px 0px 90px 0px;
}

@media (max-width:767px) {

    section,
    .gen-section-padding {
        padding: 60px 0px 60px 0px;
    }
}

@media (max-width:767px) {
    .gen-section-padding-3 {
        padding: 60px 0px 60px 0px;
    }
}

/*=========================================
Container
===========================================*/

.container {
    max-width: 1710px;
}

@media (max-width: 1699px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 1023px) {
    .container {
        max-width: 100%;
    }
}

.container-2 {
    max-width: 1300px;
}


/*======Border=======*/

.gen-top-border {
    border-top: 1px solid #141B29;
}



/*================================================
Back to Top
================================================*/
#back-to-top .top {
    position: fixed;
    bottom: 75px;
    right: 30px;
    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);
}



/*================================================
Loader Indicator
================================================*/

/* 1. The Full-Screen Overlay */
#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000; /* Changed from #ffffff to Black */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* 2. The "Loaded" State */
#site-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* 3. The Track (Background) */
.rect-progress-track {
    width: 200px;
    height: 10px;
    background-color: #333333; /* Dark Grey track looks better on black */
    border-radius: 5px;
    overflow: hidden;
}

/* 4. The Moving Red Bar */
.rect-progress-bar {
    width: 40%;
    height: 100%;
    background-color: #ff0019; /* Red color */
    animation: rect-slide-animation 1.5s infinite ease-in-out;
}

/* 5. The Sliding Animation */
@keyframes rect-slide-animation {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/*================================================
Loader Indicator
================================================*/



/*================================================
Button Core
================================================*/
input[type="button"],
[type="reset"],
[type="submit"] {
    padding: 12px 30px;
    font-family: var(--title-fonts);
    font-size: 16px;
    background: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    color: var(--white-color) !important;
    display: inline-block;
    border: none;
    width: auto;
    height: auto;
    line-height: 2;
    text-transform: uppercase;
    -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;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    color: var(--white-color) !important;
}

.gen-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;
}

.gen-button-flat {
    padding: 5px 30px;
}

.gen-button span {
    z-index: 9;
    position: relative;
}

.gen-button i {
    margin-right: 10px;
}

.gen-button:hover,
.gen-button:focus {
    color: var(--white-color);
    background: var(--primarydark-color);
}

/*===== Button link =====*/
.gen-button.gen-button-link {
    padding: 0;
    background: transparent;
    color: var(--white-color);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.gen-button.gen-button-link:hover {
    color: var(--white-color);
}

.gen-button.gen-button-link i {
    margin-right: 10px;
    height: 56px;
    width: 56px;
    display: inline-block;
    line-height: 56px;
    background: var(--white-color);
    color: var(--primary-color);
    text-align: center;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
    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;
}

.gen-button.gen-button-link:hover i {
    background: var(--primary-color);
    color: var(--white-color);
}

/*===== Button outline =====*/
.gen-button.gen-button-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.gen-button.gen-button-outline:hover {
    color: var(--blue-color);
    border: 1px solid var(--blue-color)
}


/*================================================
Breadcrumb
================================================*/
.gen-breadcrumb {
    background: var(--black-color);
    color: var(--white-color);
    padding: 90px 0;
    text-align: center;
    position: relative;
    background-attachment: fixed !important;
    background-size: cover !important;
}

.gen-breadcrumb:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.9;
}

.gen-breadcrumb-container {
    display: inline-block;
}

.gen-breadcrumb .gen-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.gen-breadcrumb-container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.gen-breadcrumb-container .breadcrumb li {
    text-transform: capitalize;
    list-style-type: none;
    margin-right: 15px;
    padding-left: 0;
    align-items: center;
}

.gen-breadcrumb-container .breadcrumb li.active {
    color: var(--primary-color);
}

.gen-breadcrumb-container .breadcrumb li a {
    color: var(--white-color);
}

.gen-breadcrumb-container .breadcrumb li a:hover {
    color: var(--primary-color);
}

.gen-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f125";
    font-size: 12px;
    font-family: "Ionicons";
    padding-right: 15px;
}

.gen-yoest-breadcumbs #breadcrumbs {
    margin: 0;
    padding: 0;
}

.gen-yoest-breadcumbs #breadcrumbs span {
    color: var(--dark-color);
}

.gen-yoest-breadcumbs #breadcrumbs span a {
    padding: 0 5px;
}

.gen-yoest-breadcumbs #breadcrumbs span strong {
    font-weight: 400;
    padding-left: 5px;
}

@media(max-width:1023px) {
    .gen-breadcrumb {
        text-align: center;
    }

    .gen-breadcrumb .gen-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .gen-breadcrumb-container .breadcrumb {
        display: inline-flex;
    }

    .gen-breadcrumb-img.text-right {
        text-align: center !important;
    }
}

@media(max-width:767px) {
    .gen-breadcrumb .gen-breadcrumb-title h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .gen-breadcrumb-container .breadcrumb li,
    .gen-breadcrumb-container .breadcrumb li i {
        font-size: 14px;
    }

    .gen-breadcrumb-container .breadcrumb li {
        margin-right: 10px;
    }

    .gen-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 10px;
        font-size: 12px;
    }
}

/*================================================
Header
================================================*/
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

header#gen-header {
    position: relative;
    display: inline-block;
    width: 100%;
    clear: both;
    background: var(--dark-color);
    z-index: 99;
}

header#gen-header.gen-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*===== Header Top Bar =====*/
header#gen-header .gen-top-header {
    background: var(--dark-color);
    padding: 0;
    font-size: 14px;
}

header#gen-header .gen-top-header .gen-header-contact.text-right ul {
    float: right;
}

header#gen-header .gen-top-header .gen-header-contact ul {
    margin: 0;
    padding: 0;
}

header#gen-header .gen-top-header .gen-header-contact ul li {
    list-style: none;
    display: inline-block;
    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    float: left;
}

header#gen-header .gen-top-header .gen-header-contact ul li:last-child {
    margin-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#gen-header .gen-top-header .gen-header-contact ul li i {
    margin-right: 10px;
}

header#gen-header .gen-top-header .gen-header-contact ul li a {
    color: var(--white-color);
}

header#gen-header .gen-top-header .gen-header-contact ul li a:hover {
    color: var(--white-color);
    background: transparent;
}

header#gen-header .gen-top-header .text-right .gen-header-social ul,
header#gen-header .gen-top-header .gen-header-social.text-right ul {
    float: right;
}

header#gen-header .gen-top-header .gen-header-social ul {
    margin: 0;
    padding: 0;
}

header#gen-header .gen-top-header .gen-header-social ul li {
    list-style: none;
    display: inline-block;
    float: left;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#gen-header .gen-top-header .gen-header-social ul li a {
    color: var(--white-color);
    padding: 10px 20px;
    display: inline-block;
}

header#gen-header .gen-top-header ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color)
}

header#gen-header .gen-top-header .gen-header-social ul li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*===== Logo =====*/
header#gen-header .gen-bottom-header .navbar .navbar-brand {
    line-height: 80px;
}

header#gen-header .gen-bottom-header .navbar .navbar-brand img {
    height: 50px;
}

/*===== Header Navbar Bar =====*/
header#gen-header .gen-bottom-header {
    min-height: 90px;
}

header#gen-header .gen-bottom-header .navbar {
    padding: 0;
}

header#gen-header .gen-bottom-header .navbar .gen-menu-contain {
    display: inline-block;
    width: 100%;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav {
    float: right;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
    color: var(--white-color);
    line-height: 90px;
    font-weight: 400;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li a {
    color: var(--white-color);
    font-family: var(--title-fonts);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li a:focus,
header#gen-header .gen-bottom-header .navbar .navbar-nav li a:hover,
header#gen-header .gen-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#gen-header .gen-bottom-header .navbar .navbar-nav li.current_page_item a,
header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover a,
header#gen-header .gen-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
    color: var(--primary-color);
}

/*===== Sub Menu Bar =====*/
header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu {
    display: none;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    display: block;
    background: var(--dark-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    display: inline-block;
    width: 210px;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li {
    line-height: 2;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    color: var(--white-color);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li i {
    margin-left: 10px;
    font-size: 12px;
    color: var(--white-color);
    opacity: 0.3;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li a {
    line-height: 2;
    text-transform: capitalize;
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
    color: var(--white-color);
    font-size: 14px;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
    background: var(--primary-color);
    color: var(--white-color);
}

@media screen and (max-width:4000px) and (min-width:1023px) {
    header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover>.sub-menu {
        display: block !important;
    }
}

/*===== Navigation Sub Menu =====*/
header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
    display: none;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
    position: absolute;
    top: 0;
    right: 100%;
    left: inherit;
    display: block;
    background: var(--dark-color);
    padding-left: 0;
    display: inline-block;
    width: 200px;
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.gen-submenu-icon {
    opacity: 1;
    position: absolute;
    top: 12px;
    right: 15px;
    line-height: 2;
    font-size: 12px;
    color: var(--white-color);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.gen-submenu-icon {
    color: var(--white-color);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
    color: var(--white-color);
    transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    -webkit-transition: all 0s ease-in-out;
}

/*===== Navigation search =====*/
header#gen-header .gen-menu-search-block {
    position: relative;
    margin: 0 30px 0 0;
}

header#gen-header .gen-menu-search-block a {
    color: var(--white-color);
    font-size: 16px;
    width: 18px;
    display: inline-block;
}

header#gen-header .gen-search-form {
    position: absolute;
    top: 59px;
    right: -30px;
    width: 350px;
    padding: 15px;
    z-index: 999;
    display: none;
    background: var(--black-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

header#gen-header .gen-button:hover .gen-button-line-left {
    width: calc(15px - 1px);
}

header#gen-header .gen-search-form .search-field {
    border-color: var(--dark-color);
    background: var(--dark-color);
}

/*===== Header Default =====*/
header#gen-header.gen-header-default .gen-bottom-header.gen-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    background: var(--dark-color);
}

/*===== Header Style-1 =====*/
header#gen-header.gen-header-style-1.gen-has-sticky {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding: 0;
    box-shadow: none;
    background: rgba(34, 34, 34, 0.4);
}

header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
    position: fixed;
    padding: 0;
    -webkit-box-shadow: 0px 3px 30px 0px rgb(0 33 85 / 10%);
    -moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 3px 30px 0px rgb(0 33 85 / 10%);
    background: var(--black-color);
    z-index: 999;
}

header#gen-header.gen-header-style-1 .gen-bottom-header {
    min-height: 70px;
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-brand {
    line-height: 90px;
    background: transparent;
    padding: 0;
    position: relative;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li {
    line-height: 90px;
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
    color: var(--primary-color);
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li i {
    color: var(--white-color);
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 100%;
}

header#gen-header.gen-header-style-1 .gen-header-info-box {
    margin: 0 0 0 30px;
    display: flex;
    color: var(--white-color);
    align-items: center;
}

header#gen-header.gen-header-style-1 .gen-header-call {
    display: inline-block;
    float: left;
    margin-right: 30px;
    margin-top: 5px;
}

header#gen-header.gen-header-style-1 .gen-header-call a i {
    font-size: 48px;
    margin-right: 15px;
    line-height: 56px;
}

header#gen-header.gen-header-style-1 .gen-header-call a {
    display: flex;
    align-items: flex-start;
}

header#gen-header.gen-header-style-1 .gen-header-call a .gen-call-info {
    flex: 1;
    text-transform: capitalize;
    font-size: 14px;
    color: var(--dark-color);
}

header#gen-header.gen-header-style-1 .gen-header-call a .gen-call-info span {
    width: 100%;
    float: left;
    display: inline-block;
    color: var(--primary-color);
    line-height: normal;
    font-family: var(--title-fonts);
}

header#gen-header.gen-header-style-1 .gen-header-call a .gen-call-info h5 {
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-color);
}

header#gen-header.gen-header-style-1 .gen-button {
    background: var(--primary-color);
    padding: 5px 20px;
}

/*==========*/
header#gen-header.gen-header-default .gen-btn-container {
    margin: 0 0 0 30px;
}

header#gen-header.gen-header-default .gen-btn-container .gen-button {
    background: var(--blue-color);
}

header#gen-header.gen-header-default .gen-btn-container .gen-button:hover {
    background: var(--primary-color);
}

header#gen-header.gen-header-default .gen-toggle-btn {
    padding: 0;
    margin: 0 0 0 30px;
}

header#gen-header.gen-header-default .gen-toggle-btn a {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 38px;
    background: var(--primary-color);
    color: #fff;
    line-height: 52px;
    width: 52px;
    height: 52px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

header#gen-header.gen-header-default .gen-menu-search-block {
    margin: 0 0 0 30px;
}

.gen-account-holder {
    position: relative;
    margin-right: 30px;
    line-height: 90px;
}

.gen-account-holder a#gen-user-btn {
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 90px;
}

.gen-account-holder .gen-account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    display: none;
    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;
}

.gen-account-holder .gen-account-menu.gen-form-show {
    display: inline-block;
}

.gen-account-holder .gen-account-menu ul {
    margin: 0;
    padding: 0;
    background: var(--dark-color);
}

.gen-account-holder .gen-account-menu ul li {
    list-style: none;
}

.gen-account-holder .gen-account-menu ul li a {
    float: left;
    line-height: 2;
    text-transform: capitalize;
    padding: 10px 15px;
    display: inline-block;
    list-style: none;
    width: 100%;
    color: var(--white-color);
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.gen-account-holder .gen-account-menu ul li a i {
    margin-right: 8px;
}

.gen-account-holder .gen-account-menu ul li a:hover {
    background: var(--primary-color);
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li.active>a{
    color: var(--primary-color);
}

header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li.active ul li.active>a{
    background-color: var(--primary-color);
    color: var(--white-color);
}


/*===== Header Style-1 =====*/
.admin-bar header#gen-header.gen-header-sticky,
.admin-bar header#gen-header.gen-header-style-1 {
    top: 32px;
}

.admin-bar header#gen-header.gen-header-default .gen-bottom-header.gen-header-sticky {
    top: 32px;
}

@media(max-width:767px) {

    .admin-bar header#gen-header.gen-header-sticky,
    .admin-bar header#gen-header {
        top: 0;
    }

    .admin-bar header#gen-header.gen-header-style-1.gen-header-sticky {
        top: 0;
    }
}

@media only screen and (min-device-width:601px) and (max-device-width:768px) {

    .admin-bar header#gen-header.gen-header-sticky,
    .admin-bar header#gen-header.gen-header-style-1,
    .admin-bar header#gen-header.gen-header-default .gen-bottom-header.gen-header-sticky {
        top: 46px;
    }

    .admin-bar header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
        top: 46px !important;
    }
}

@media(max-width:1399px) {
    header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        left: inherit;
        right: 100%;
    }
}

@media(max-width:1365px) {
    header#gen-header .gen-bottom-header .navbar .navbar-nav li {
        margin-right: 15px;
    }

    header#gen-header .gen-top-header .gen-header-social ul li a {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#gen-header .gen-top-header .gen-header-contact ul li {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#gen-header.gen-header-default .gen-btn-container {
        margin: 0 0 0 15px;
    }

    header#gen-header.gen-header-default .gen-toggle-btn {
        margin: 0 0 0 15px;
    }

    /*===== Header Style-1 =====*/
    header#gen-header.gen-header-style-1 .gen-header-call {
        display: none;
    }

    header#gen-header .gen-menu-search-block {
        position: relative;
        margin: 0 15px 0 0;
    }

    header#gen-header.gen-header-style-1 .gen-header-info-box {
        margin: 0 0 0 15px;
    }

    .gen-account-holder {
        margin-right: 15px;
    }
}

@media(max-width:1023px) {

    /*===== Button Toggler =====*/
    header#gen-header .gen-bottom-header .navbar-toggler {
        font-size: 20px;
        padding: 12px 18px;
        line-height: normal;
        float: right;
        outline: none;
        margin: 0 0 0 15px;
        background: var(--primary-color);
        border: var(--primary-color);
        color: var(--white-color);
        border-radius: 0;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: var(--black-color);
        -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        max-height: 330px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-brand {
        line-height: 60px;
    }

    header#gen-header .gen-bottom-header {
        min-height: 60px;
    }

    header#gen-header .gen-search-form {
        top: 51px;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav {
        float: left;
        width: 100%;
        display: inline-block;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li {
        float: left;
        width: 100%;
        display: inline-block;
        line-height: normal;
        position: relative;
        font-size: 16px;
        position: relative;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li a {
        width: 100%;
        display: inline-block;
        padding: 15px;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li i {
        margin-left: 0;
        opacity: 1;
        font-size: 12px;
        position: absolute;
        right: 0;
        margin-top: 0;
        top: 0;
        padding: 18px 25px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        padding-left: 0;
        background: #f5f5f5;
        box-shadow: none;
        display: inline-block;
        width: 100%;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
        background: var(--primary-color);
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.gen-submenu-icon {
        opacity: 1;
        position: absolute;
        top: 0;
        right: 0;
        line-height: 2;
        font-size: 12px;
        padding: 12px 30px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li a {
        padding: 10px 30px;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li>a:hover,
    header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li.current-menu-ancestor>.gen-submenu-icon,
    header#gen-header .gen-bottom-header .navbar .navbar-nav li:hover>.gen-submenu-icon {
        color: var(--white-color);
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        display: inline-block;
        width: 100%;
        float: left;
    }

    header#gen-header .gen-bottom-header .navbar .navbar-nav li .sub-menu>li>a {
        background: var(--dark-color);
        color: var(--white-color);
    }

    header#gen-header .gen-top-header .gen-header-contact ul li {
        padding: 10px 10px;
    }

    header#gen-header.gen-header-default .gen-menu-search-block {
        margin-left: auto !important;
    }

    header#gen-header.gen-header-default .gen-toggle-btn {
        display: none;
    }

    /*===== Header Style-1 =====*/
    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-brand {
        line-height: 75px;
    }

    header#gen-header.gen-header-style-1.gen-has-sticky {
        top: 0;
        padding: 0;
        position: relative;
    }

    header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
        top: 0;
    }

    .admin-bar header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky {
        top: 32px;
    }

    header#gen-header.gen-header-style-1 .gen-header-call {
        margin-right: 30px;
        display: flex;
    }

    header#gen-header.gen-header-style-1 .gen-header-info-box {
        margin-left: auto;
    }

    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        color: var(--white-color);
    }

    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li>a,
    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li {
        color: var(--white-color);
    }

    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
    }

    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li>a:hover,
    header#gen-header.gen-header-style-1 .gen-bottom-header .navbar .navbar-nav li:hover>a {
        color: var(--white-color);
    }

    header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky .gen-bottom-header .navbar .navbar-collapse {
        top: 100%;
    }
}

@media(max-width:767px) {

    header#gen-header.gen-header-style-1 .gen-header-call,
    header#gen-header.gen-header-style-1 .gen-button {
        display: none;
    }

    header#gen-header.gen-header-default .gen-top-header,
    header#gen-header.gen-header-default .gen-btn-container {
        display: none !important;
    }

    .admin-bar header#gen-header.gen-header-style-1.gen-has-sticky.gen-header-sticky,
    .admin-bar header#gen-header.gen-header-default .gen-bottom-header.gen-header-sticky {
        top: 0;
    }

    .gen-account-holder {
        margin-right: 0;
    }
}

@media(max-width:479px) {

    .gen-menu-search-block,
    .gen-sidebar,
    .gen-toggle-btn,
    header#gen-header.gen-header-style-1 .gen-header-info-box {
        /*display: none !important;*/
    }
}

@media (max-width:479px){
    header#gen-header .gen-bottom-header .navbar .navbar-brand img{
        height: 45px;
    }
}




/* -------------------------------------------------
   1. FIX HEADER ICON ROW ALIGNMENT
------------------------------------------------- */

/* Force the container to align items vertically in the center */
.gen-header-info-box {
    display: flex;
    align-items: center; /* This puts it on the same row height as other items */
    height: 100%;
}

.gen-menu-search-block {
    position: relative;
    display: flex;
    align-items: center;
}

/* The Icon Button */
#gen-seacrh-btn {
    width: 40px;
    height: 40px;
    display: inline-flex; /* Keeps icon inside centered */
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-top: 5px;
}

#gen-seacrh-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* -------------------------------------------------
   2. FIX INPUT ICON ALIGNMENT (The Magnifying Glass)
------------------------------------------------- */

.gen-search-form {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    width: 300px;
    z-index: 1000;
    display: none;
}

.gen-search-form::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 17px;
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border-left: 1px solid #333;
    border-top: 1px solid #333;
    transform: rotate(45deg);
}

/* The Form Wrapper */
.gen-search-form form {
    position: relative;
}

/* The Input Field */
.gen-search-form .search-field {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #444;
    padding: 12px;
    padding-right: 45px; /* Space for the icon */
    color: #fff;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
    height: 45px; /* Fixed height helps alignment */
    line-height: 21px; /* Centers text vertically */
}

.gen-search-form .search-field:focus {
    border-color: #dc3545;
}

/* The Search Icon Button inside input */
.gen-search-form .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 45px; /* Match input height */
    width: 45px;
    display: flex;
    align-items: center; /* Vertical Center */
    justify-content: center; /* Horizontal Center */
    background: transparent;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

/* -------------------------------------------------
   3. FIX MOBILE VIEW
------------------------------------------------- */
@media (max-width: 768px) {
    .gen-search-form {
        position: fixed !important;
        top: 70px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        margin-top: 0;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .gen-search-form::before {
        display: none;
    }
}











/*================================================
Footer
================================================*/

footer#gen-footer {
    background: var(--black-color);
    display: inline-block;
    width: 100%;
    float: left;
}

footer#gen-footer .gen-footer-top {
    padding: 60px 0 0;
}

footer#gen-footer .gen-copyright-footer {
    padding: 15px 0;
    background: var(--black-color);
}

footer#gen-footer .gen-copyright-footer .gen-copyright {
    text-align: center;
    display: inline-block;
    width: 100%;
}

footer#gen-footer .gen-copyright-footer .gen-copyright a {
    color: var(--white-color);
}

footer#gen-footer .gen-copyright-footer .gen-copyright a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/*===== Footer Widget =====*/
footer#gen-footer .widget {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 45px;
}

footer#gen-footer .widget .footer-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 26px;
    position: relative;
    line-height: 34px;
}

footer#gen-footer .widget ul {
    padding: 0;
    margin: 0;
}

footer#gen-footer .widget ul li a {
    padding: 0;
}

footer#gen-footer .widget ul li a:hover {
    color: var(--primary-color);
}

footer#gen-footer table td,
footer#gen-footer table th {
    border: 1px solid #222d42;
}

footer#gen-footer .calendar_wrap table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

footer#gen-footer .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
}

footer#gen-footer .calendar_wrap td#today a {
    color: var(--white-color);
}

footer#gen-footer ul li a.rsswidget {
    padding-left: 0;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    font-family: var(--title-fonts);
}

footer#gen-footer ul li .rss-date {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1;
    float: left;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

footer#gen-footer ul li cite {
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

footer#gen-footer .search-form {
    position: relative;
}

footer#gen-footer .search-form .search-submit {
    background: var(--primary-color);
    border: none;
    position: absolute;
    text-align: center;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 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;
}

footer#gen-footer .search-form .search-submit:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #ffffff;
}

footer#gen-footer .search-form .search-submit:hover {
    background: var(--dark-color);
}

footer#gen-footer .search-form input {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--secondary-color);
}

footer#gen-footer .tagcloud .tag-cloud-link {
    font-size: 14px !important;
    color: var(--white-color);
    background: var(--dark-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    padding: 2px 12px;
    border-radius: 0;
    border: 1px solid var(--dark-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

footer#gen-footer .tagcloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

footer#gen-footer .widget ul.menu li a,
footer#gen-footer .gen-widget-menu .gen-service li a {
    position: relative;
    border: none;
    padding: 5px 0 5px 15px;
    display: inline-block;
    width: 100%;
}

footer#gen-footer .widget ul.menu li a:hover,
footer#gen-footer .gen-widget-menu .gen-service li a:hover {
    color: var(--primary-color);
}

footer#gen-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);
    margin: auto 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

footer#gen-footer .wp-calendar-nav .wp-calendar-nav-prev,
footer#gen-footer .wp-calendar-nav .wp-calendar-nav-next {
    background: transparent;
}

footer#gen-footer .wp-caption p.wp-caption-text {
    color: var(--secondary-color);
}

footer#gen-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#gen-footer .widget #recentcomments--1 li.recentcomments span a {
    color: var(--primary-color);
}

/*=========*/
footer#gen-footer .gen-footer-style-1 .widget .footer-title,
footer#gen-footer .gen-footer-style-1 .widget ul.menu li a,
footer#gen-footer .gen-footer-style-1 .gen-widget-menu .gen-service li a,
footer#gen-footer .gen-footer-style-1 .widget ul li a {
    color: var(--white-color);
}

footer#gen-footer .gen-footer-style-1 .widget ul li a:hover {
    color: var(--primary-color);
}

footer#gen-footer .gen-footer-style-1 .gen-copyright-footer {
    background: var(--copyright-color);
}

#gen-footer .gen-footer-style-1 .widget:first-child {
    margin-bottom: 45px;
}

#gen-footer .gen-footer-style-1 .gen-footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

footer#gen-footer .gen-footer-style-1 .widget ul.menu li {
    margin-bottom: 0;
    width: calc(50% - 2px);
    display: inline-block;
}

#gen-footer .social-link {
    margin: 0;
    padding: 0;
}

#gen-footer .social-link li {
    list-style: none;
    float: left;
    margin-right: 30px;
}

#gen-footer .social-link li:last-child {
    margin-right: 0;
}

#gen-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;
}

#gen-footer .social-link li a:last-child {
    margin-right: 0px;
}

#gen-footer .social-link li a:hover {
    color: var(--primary-color);
}

.gen-playstore-logo {
    height: 45px;
    display: inline-block;
    float: left;
}

.gen-appstore-logo {
    height: 45px;
    display: inline-block;
    float: left;
    margin-left: 15px;
}











/*================================================
Play Button
================================================*/
.gen-front-image {
    position: relative;
    display: inline-block;
    width: 100%;
}

.gen-front-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--dark-color);
    opacity: 0.4;
}

.gen-front-image a {
    margin: auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.gen-front-image a svg {
    height: 90px;
    width: auto;
}

.gen-front-image a span {
    font-family: var(--title-fonts);
    color: var(--white-color);
    margin: 15px 0 0 0;
    padding: 0;
    font-size: 24px;
    line-height: normal;
    display: flex;
}

.circle {
    stroke: var(--white-color);
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    -webkit-transition: all 0.5s ease-in-out;
    opacity: 0.3;
}

.playBut {
    display: inline-block;
    -webkit-transition: all 0.5s ease;
}

.playBut .triangle {
    -webkit-transition: all 0.7s ease-in-out;
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: var(--white-color);
    transform: translateY(0);
}

.playBut:hover .triangle {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: var(--white-color);
    animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    70% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

.playBut:hover .circle {
    stroke-dashoffset: 0;
    opacity: 1;
}

.gen-front-image.no-image {
    margin: 0;
    text-align: center;
}

.gen-front-image.no-image:before {
    display: none;
}

.gen-front-image.no-image a {
    margin: 0;
    text-align: inherit;
    position: relative;
    top: inherit;
    left: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

@media(max-width:1399px) {
    .gen-movie-contain-style-2 .gen-movie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }
}

@media(max-width:1365px) {
    .gen-movie-contain-style-2 .gen-movie-info h3 {
        font-size: 62px;
        line-height: 70px;
    }

    .gen-front-image {
        margin-left: 0;
    }
}

@media(max-width:1200px) {
    .gen-front-image {
        margin-bottom: 45px;
    }

    .gen-banner-movies.banner-style-2 .item {
        height: auto;
        padding: 60px 0;
    }

    .gen-front-image.no-image {
        margin: 0 0 45px;
        text-align: left;
    }
}

@media(max-width:1023px) {
    .gen-movie-contain-style-2 .gen-movie-info h3 {
        font-size: 54px;
        line-height: 62px;
    }

    .gen-banner-movies .owl-carousel .owl-nav {
        display: none;
    }
}

@media(max-width:767px) {
    .gen-movie-contain-style-2 .gen-movie-info h3 {
        font-size: 40px;
        line-height: 48px;
    }

    .gen-movie-contain-style-2 .gen-tag-line {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 2px;
    }

    .gen-movie-contain-style-2 .gen-movie-meta-holder ul li img {
        height: 22px;
    }

    .gen-movie-contain-style-2 .gen-tag-img img {
        height: 45px;
    }

    .gen-movie-contain-style-2 .gen-movie-action .gen-btn-container {
        margin-right: 10px;
    }

    .gen-movie-contain-style-2 .gen-movie-action .gen-btn-container.button-1 .gen-button {
        padding: 12px 30px;
    }

    .gen-movie-contain-style-2 .gen-movie-meta-holder ul li {
        font-size: 14px;
        margin: 8px 0 0 10px;
        padding: 0 0 0 10px;
    }

    .gen-movie-contain-style-2 .gen-movie-meta-holder .gen-meta-info ul li {
        font-size: 16px;
    }

    .gen-movie-contain-style-2 .gen-movie-meta-holder p,
    .gen-movie-contain-style-2 .gen-movie-info p {
        font-size: 16px;
    }

    .gen-front-image {
        margin-bottom: 30px;
    }
}

@media(max-width:479px) {
    .gen-movie-contain-style-2 .gen-movie-action .gen-btn-container.button-2 {
        margin-top: 15px;
    }

    .gen-front-image a svg {
        height: 60px;
    }

    .gen-front-image a span {
        font-size: 18px;
    }

    .gen-banner-movies .gen-movie-contain .gen-movie-info h3,
    .gen-movie-contain-style-2 .gen-movie-info h3 {
        font-size: 30px;
        line-height: 38px;
    }
}


/*======================================================
Icon-Box
======================================================*/

.gen-icon-box-style-1 {
    padding: 45px 45px 45px 45px;
    background-color: var(--black-color);
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #E50916;
    text-align: center;
}

.gen-icon-box-style-1 .gen-icon-box-icon {
    margin-bottom: 25px;
}

.gen-icon-box-style-1 .gen-icon-box-icon .gen-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;
}

.gen-icon-box-style-1 .gen-icon-box-content .gen-icon-box-description {
    color: #FFFFFF;
    font-family: var(--body-fonts);
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width:767px){
    .gen-blog-spot-video iframe{
        height: auto;
    }
}












/* ===== Hero Slider ===== 

.my-hero-swiper,
.my-hero-swiper .swiper-slide {
    height: 100vh;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper {
    width: 100%;
}


.gen-video-swiper {
  width: 100%;
  padding: 10px 0 40px;
}

.gen-video-swiper .swiper-slide {
  height: auto;
}

.gen-video-swiper .swiper-button-prev,
.gen-video-swiper .swiper-button-next {
  color: #fff;
} */














/* ===============================
    BANNER BASE Css
================================ */
.banner-fixed {
  position: relative;
  max-width: 1250px;
  height: 425px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
}

.gen-banner-swiper,
.gen-banner-swiper .swiper-slide {
  height: 100%;
}

.gen-banner-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===============================
   RESPONSIVE HEIGHT
================================ */
@media (max-width: 1199px) {
  .banner-fixed {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .banner-fixed {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .banner-fixed {
    height: 240px;
  }
}

/* ===============================
   RED ACCENT LINE
================================ */
.banner-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #e50914;
  z-index: 5;
}

/* ===============================
   TEXT ANIMATION
================================ */
.banner-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.swiper-slide-active .banner-content {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   FADE EFFECT SUPPORT
================================ */
.gen-banner-swiper .swiper-slide {
  transition: opacity 0.8s ease;
}

/* ===============================
   RED DOTS
================================ */
.gen-banner-swiper .swiper-pagination {
  bottom: 20px !important;
}

.gen-banner-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.gen-banner-swiper .swiper-pagination-bullet-active {
  background-color: #e50914;
}





/* ===============================
   Tv Show Swiper Slide
   and Random Image Card/Section
================================ */

/* Ensure arrows position correctly */
.trading-tv-section .position-relative {
    position: relative;
}

/* Card size EXACTLY like Limandy */
.trading-tv-swiper .swiper-slide {
    width: 290px;
}

.trading-tv-swiper .gen-movie-img img {
    width: 100%;
    height: 264px;
    object-fit: cover;
}

/* Genre red badge */
.genre-badge {
    background: #e50914;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 3px;
}

/* Navigation arrows */
.swiper-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-prev { left: -22px; }
.swiper-next { right: -22px; }

@media (max-width: 768px) {
    .swiper-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
        display: none !important;
    }

    .swiper-prev { left: -12px; }
    .swiper-next { right: -12px; }
}


.swiper-nav-btn:hover {
    background: #e50914;
}

@media (max-width: 767px) {
    .swiper {
        cursor: grab;
    }

    .swiper:active {
        cursor: grabbing;
    }
}





/* ===============================
      Random Image Card/Section
================================ */

.image-only-section .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}


/* Poster hover animation */
.image-only-section .swiper-slide {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-only-section .swiper-slide:hover {
    transform: scale(1.06) translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Smooth image scaling */
.image-only-section img {
    transition: transform 0.6s ease;
}

.image-only-section .swiper-slide:hover img {
    transform: scale(1.08);
}


/* Image-only card sizing */
.image-only-swiper .swiper-slide {
    width: 290px;
}

.image-only-card img {
    width: 100%;
    height: 264px;
    object-fit: cover;
    border-radius: 6px;
}


.image-only-card {
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.image-only-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.image-only-card:hover img {
    transform: scale(1.08);
}









/* ===============================
   Upcoming Movies Code
   For All TMDB Movies & Shows
================================ */

/* UPCOMING MOVIES */

/* =========================
   TITLE
========================= */
.upcoming-title {
  font-size: 26px;
  font-weight: 600;
}

@media (max-width: 576px) {
  .upcoming-title {
    font-size: 18px;
  }
}

/* =========================
   SLIDER WRAPPER
========================= */
.upcoming-slider-wrapper {
  position: relative;
}

/* =========================
   ARROWS (OUTSIDE SLIDER)
========================= */
.swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.upcoming-prev {
  left: -36px;
}

.upcoming-next {
  right: -36px;
}


.swiper-nav-btn:hover {
  background: #e50914;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}


/* =========================
   SLIDES
========================= */

.upcoming-header {
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .upcoming-slide {
    width: auto; /* 🔥 FIX MOBILE OVERLAP */
  }
}


@media (max-width: 576px) {
  .upcoming-header {
    margin-bottom: 16px;
  }
}


/* =========================
   CARD
========================= */
.upcoming-card {
  width: 307px;
  height: 431px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .upcoming-card {
    width: 100%;
    height: auto;
    aspect-ratio: 307 / 431;
  }
}

.upcoming-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   SLIDE-UP CARD EFFECT
========================= */
.card-description {
  position: absolute;
  inset: 0;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.6),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.card-hover:hover .card-description {
  transform: translateY(0);
}

/* =========================
   CARD CONTENT
========================= */
.movie-genre {
  color: #e50914;
  font-size: 13px;
  margin-bottom: 6px;
}

.movie-title {
  font-size: 18px;
  margin-bottom: 6px;
}

.movie-rating {
  font-size: 14px;
  margin-bottom: 12px;
}

/* 🔥 FIXED BUTTON */
.watch-btn {
  display: block;
  background: #e50914;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.watch-btn:hover {
  background: #e50914;
  color: #fff;
}










/* ===============================
   recommended for you Card Start
================================ */



/* =========================
   TITLE
========================= */
.recommended-title {
  font-size: 26px;
  font-weight: 600;
}

@media (max-width: 576px) {
  .recommended-title {
    font-size: 18px;
  }
}

.recommended-header {
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .recommended-header {
    margin-bottom: 16px;
  }
}

/* =========================
   SLIDER WRAPPER
========================= */
.recommended-slider-wrapper {
  position: relative;
  padding: 0; /* ❗important */
}

/* =========================
   ARROWS (OUTSIDE)
========================= */
.recommended-prev {
  left: -36px;
}

.recommended-next {
  right: -36px;
}

@media (max-width: 576px) {
  .recommended-prev {
    left: -20px;
  }
  .recommended-next {
    right: -20px;
  }
}

/* =========================
   SLIDES
========================= */
.recommended-slide {
  width: 201px;
}

@media (max-width: 576px) {
  .recommended-slide {
    width: auto;
  }
}

/* =========================
   CARD (201 x 281)
========================= */
.recommended-card {
  width: 201px;
  height: 281px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .recommended-card {
    width: 100%;
    height: auto;
    aspect-ratio: 201 / 281;
  }
}

.recommended-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   SLIDE-UP EFFECT
========================= */
.card-description {
  position: absolute;
  inset: 0;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.6),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.card-hover:hover .card-description {
  transform: translateY(0);
}

/* =========================
   CARD CONTENT
========================= */
.movie-genre {
  color: #e50914;
  font-size: 12px;
  margin-bottom: 4px;
}

.movie-title {
  font-size: 16px;
  margin-bottom: 4px;
}

.movie-rating {
  font-size: 13px;
  margin-bottom: 10px;
}

.watch-btn {
  background: #e50914;
  color: #fff;
  padding: 8px;
  text-align: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.watch-btn:hover {
  background: #e50914;
  color: #fff;
}

/* =========================
   ARROW VERTICAL ALIGNMENT
========================= */
.recommended-slider-wrapper .swiper-nav-btn {
  top: 140px; /* half of 281 */
  transform: translateY(-50%);
}











/* ===============================
   Movie Reviews Card Start
================================ */


/* =========================
   HEADER
========================= */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reviews-title {
  font-size: 26px;
  font-weight: 600;
}

.reviews-view-more {
  color: #e50914;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 576px) {
  .reviews-title {
    font-size: 18px;
  }
}

/* =========================
   SLIDER WRAPPER
========================= */
.reviews-slider-wrapper {
  position: relative;
}

/* =========================
   ARROWS
========================= */
.reviews-prev { left: -36px; }
.reviews-next { right: -36px; }

@media (max-width: 576px) {
  .reviews-prev { left: -18px; }
  .reviews-next { right: -18px; }
}

/* =========================
   SLIDES
========================= */
.reviews-slide {
  display: flex;
  justify-content: center;
}

/* =========================
   CARD
========================= */
.review-card {
  width: 418px;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-card img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.review-card:hover img {
  transform: scale(1.08);
}

/* =========================
   TITLE
========================= */
.review-title {
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 576px) {
  .review-card {
    width: 100%;
  }

  .review-card img {
    height: auto;
    aspect-ratio: 418 / 288;
  }
}




/* ===============================
   Movie Reviews Card End
================================ */













/* ===============================
   Swiper Banner Start
================================ */


/* =========================
   HERO BANNER BASE
========================= */

.hero-banner {
  width: 100%;
  min-height: 700px;
  height: 700px;
  position: relative;
  overflow: hidden;
}


/* Swiper must fill hero */
.hero-swiper {
  width: 100%;
  height: 700px;
}

/* Swiper locked to banner height */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide,
.hero-slide {
  height: 700px !important;
  min-height: 700px !important;
}

/* REQUIRED Swiper height chain */
.hero-swiper .swiper-wrapper {
  height: 700px;
}

.hero-swiper .swiper-slide {
  height: 100% !important;
  min-height: 700px;
  display: flex;
}

/* Your visual slide */
.hero-slide {
  height: 700px !important;
  min-height: 700px !important;
  background-size: cover;
  background-position: center;
}

.hero-slide .col-xl-6,
.hero-slide .col-lg-7 {
  display: flex;
  align-items: center;
}



/* Bootstrap height fix */
.hero-slide .row {
  min-height: 100%;
}

/* Ken Burns */
.swiper-slide-active.hero-slide {
  animation: kenburns 12s ease forwards;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.3),
    transparent
  );
  z-index: 1;
}

/* =========================
   CONTENT
========================= */

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 520px;
}

.hero-tag {
  color: #e50914;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 14px;
}

.hero-desc {
  max-width: 500px;
  font-size: 15px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.btn-primary {
  background: #e50914;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* =========================
   STAGGERED TEXT
========================= */

.stagger {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.swiper-slide-active .stagger {
  opacity: 1;
  transform: translateX(0);
}

.swiper-slide-active .tag { transition-delay: .3s; }
.swiper-slide-active .title { transition-delay: .45s; }
.swiper-slide-active .meta { transition-delay: .6s; }
.swiper-slide-active .actions { transition-delay: .75s; }

/* =========================
   ARROWS
========================= */

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .hero-banner { height: 480px; }

  .hero-title { font-size: 32px; }

  .hero-slide {
    background-position: center top;
  }
}


@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    transform: translateX(0); /* IMPORTANT */
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }
}


/* ===============================
   Swiper Banner End
================================ */








/* ===============================
  Swiper Video Section Start
================================ */


/* ===============================
   MOST POPULAR SECTION
================================ */

.most-popular .gen-heading-title {
  font-size: 26px;
  font-weight: 600;
}

.most-popular-swiper {
  padding: 10px 0;
}

.gen-movie-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.gen-movie-img {
  position: relative;
  overflow: hidden;
}

.gen-movie-img img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

.gen-movie-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gen-movie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease;
}

.gen-movie-card:hover .gen-movie-overlay {
  opacity: 1;
}

.play-btn {
  width: 50px;
  height: 50px;
  background: #e50914;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info */
.gen-movie-info {
  padding: 12px;
}

.gen-movie-info h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.gen-movie-info ul {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #aaa;
}

/* Arrows */
.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.most-prev { left: -36px; }
.most-next { right: -36px; }

/* Mobile */
@media (max-width: 768px) {
  .most-prev,
  .most-next {
    display: none;
  }
}

/* ===============================
  Swiper Video Section End
================================ */











/* ===============================
  Popular People Slide Start
================================ */


/* ===============================
   TRENDING PEOPLE
================================ */

.trending-people .gen-heading-title {
  font-size: 22px;
  font-weight: 600;
}

/* Card */
.person-card {
  width: 105px;
  margin: auto;
  text-align: center;
}

.person-card img {
  width: 105px;
  height: 134px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .35s ease;
}

.person-card:hover img {
  transform: scale(1.08);
}

.person-card h6 {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Swiper spacing */
.trending-people-swiper {
  padding: 10px 0;
}

/* Arrows */
.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.people-prev { left: -36px; }
.people-next { right: -36px; }

/* Mobile */
@media (max-width: 768px) {
  .people-prev,
  .people-next {
    display: none;
  }
}

/* ===============================
  Popular People Slide End
================================ */





/* ===============================
  Movie Genres Card Start
================================ */

/* =========================
   SECTION
========================= */

.movie-genres .gen-heading-title {
  font-size: 22px;
  font-weight: 600;
}

/* =========================
   WRAPPER
========================= */

.movie-genres-wrapper {
  position: relative;
  padding-bottom: 24px; /* space for arrows */
}

/* =========================
   GENRE CARD
========================= */

.genre-card {
  width: 200px;
  height: 124px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  margin: auto;
  background: #000;
  transition: transform .3s ease, box-shadow .3s ease;
}

.genre-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform .3s ease;
}

.genre-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0,0,0,.45);
}

.genre-card:hover img {
  transform: scale(1.06);
}

/* =========================
   TEXT
========================= */

.genre-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  z-index: 2;
}

/* =========================
   RED LINE (PERFECT)
========================= */

.genre-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e50914;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 2;
}

/* =========================
   SWIPER
========================= */

.movie-genres-swiper {
  padding-bottom: 12px;
}

/* =========================
   ARROWS — OUTSIDE & VERTICALLY CENTERED
========================= */

.genres-prev,
.genres-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  z-index: 10;
  transition: background .25s ease, opacity .25s ease;
}

/* Push arrows OUTSIDE the banner */
.genres-prev { left: -36px; }
.genres-next { right: -36px; }

.genres-prev:hover,
.genres-next:hover {
  background: #e50914;
}

/* Disabled state */
.genres-disabled {
  opacity: 0;
  pointer-events: none;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .genre-card {
    width: 180px;
    height: 112px;
  }

  .genres-prev,
  .genres-next {
    display: none;
  }
}


/* ===============================
  Movie Genres Card End
================================ */









/* =========================
   Videos Slider Swiper Start
========================= */

.alt-banner-section {
  position: relative;
  overflow: hidden;
}

.alt-banner-swiper {
  width: 100%;
  height: 720px;
}

.alt-banner-slide {
  height: 720px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark overlay */
.alt-banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1;
}

.gen-movie-contain-style-3 {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Play button */
.playBut svg {
  stroke: #e50914;
}

.playBut span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: #fff;
}

/* Prev and Next */
.alt-banner-prev,
.alt-banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  user-select: none;
  opacity: .85;
  transition: opacity .25s ease, transform .25s ease;
}

.alt-banner-prev:hover,
.alt-banner-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.alt-banner-prev { left: 30px; }
.alt-banner-next { right: 30px; }


.alt-banner-pagination {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.alt-banner-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ff0000;
  opacity: 0.4;
  margin: 0 6px !important;
  transition: all .3s ease;
}

.alt-banner-pagination .swiper-pagination-bullet-active {
  
  opacity: 1;
  transform: scale(1.2);
}



/* Responsive */
@media (max-width: 768px) {
  .alt-banner-swiper,
  .alt-banner-slide {
    height: 520px;
  }
}

/* =========================
   Videos Slider Swiper End
========================= */







/* =========================
Contact Success Alert Page Start
========================= */
.gen-alert {
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 500;
}

.gen-alert-success {
    background-color: #e6f6ee;
    color: #1e7e4f;
}

.gen-alert-danger {
    background-color: #fdecea;
    color: #b02a37;
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
Contact Success Alert Page End
========================= */









/* =========================
Movies Page Start
========================= */


/* =======================
       HOME BANNER
    ======================= */
    .home-banner {
      position: relative;
      
    }

    .home-banner img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    .home-banner .banner-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0,0,0,0.6);
      padding: 30px 50px;
      border-radius: 10px;
      text-align: center;
    }


    /* =======================
   GLOBAL SPACING OVERRIDE
======================= */

/* Breadcrumb spacing */
.gen-breadcrumb {
  margin-bottom: 20px !important;
  padding-bottom: 20px !important;
}

/* Section spacing */
.limandy-home-section {
  margin-bottom: 70px !important;
  padding: 0 !important;
}

/* Kill Bootstrap container vertical padding */
.limandy-home-section .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Header spacing */
.limandy-home-section .section-header {
  margin-bottom: 20px !important;
}

/* Swiper vertical padding */
.limandy-home-section .swiper {
  padding: 0 40px !important;
}





    /* =======================
       SECTIONS
    ======================= */
    
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .section-header h4 {
      font-size: 1.6rem;
      font-weight: 600;
    }

    /* =======================
       SWIPER
    ======================= */
    .swiper {
      position: relative;
      padding: 10px 40px;
    }

    .swiper-slide {
      height: auto;
    }

    /* =======================
       MOVIE CARD
    ======================= */
    .movie-card {
      background: #111;
      border-radius: 10px;
      overflow: hidden;
      transition: transform .3s ease;
    }

    .movie-card:hover {
      transform: scale(1.04);
    }

    .movie-card img {
      width: 100%;
      display: block;
    }

    .movie-card .info {
      padding: 10px;
      text-align: center;
    }

    .movie-title {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 6px;

      /* Title clamp */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.4em;
    }

    .movie-rating {
      font-size: 13px;
      color: #f5c518;
      margin-bottom: 8px;
    }

    .watch-btn {
      display: inline-block;
      font-size: 12px;
      padding: 6px 12px;
      background: #e50914;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
    }

    /* =======================
       NAV BUTTONS
    ======================= */
    .swiper-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
    }

    .swiper-prev {
      left: 0;
    }

    .swiper-next {
      right: 0;
    }

    .swiper-wrapper {
      display: flex;
    }

    .swiper-nav:hover {
      background: rgba(0,0,0,0.9);
    }



/* =========================
Movies Page End
========================= */





.movie-hero {
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.4));
}

.hero-content {
  position: relative;
  display: flex;
  gap: 40px;
  padding-top: 120px;
}

.poster img {
  width: 280px;
  border-radius: 12px;
}

.actions a {
  margin-right: 12px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-watch { background: #e50914; color: #fff; }
.btn-trailer { background: rgba(255,255,255,.2); color: #fff; }





/* =========================
 Page Loader Start
========================= */

#page-loader {
    position: fixed;
    inset: 0;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-circle {
    width: 120px;
    height: 120px;
    border: 5px solid rgba(255,255,255,0.1);
    border-top: 5px solid #e50914;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-logo {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================
 Page Loader End
========================= */







/* =========================
 Tv Details Page Start
========================= */
.tv-hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.tv-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 40%, rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.poster-img {
    width: 100%;
    border-radius: 15px;
}

.tv-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.meta-line span {
    margin-right: 15px;
    font-size: 14px;
}

.genre-pill {
    display: inline-block;
    padding: 6px 12px;
    background: #e50914;
    border-radius: 20px;
    margin: 5px 5px 0 0;
    font-size: 12px;
}

.episode-card {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.episode-image img {
    width: 200px;
    border-radius: 10px;
}

.cast-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.cast-card img {
    width: 100px;
    border-radius: 50%;
}

/* =========================
 Tv Details Page End
========================= */

/*===========================================================================================================*/