/**********************************/
/********** General CSS ***********/
/**********************************/
/*
.container {
    max-width: 1140px;
}
*/
@import url('https://fonts.googleapis.com/css?family=Changa:300,400,700&display=swap');

body {
  font-family: 'Changa', sans-serif;
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

.table-success {
    --bs-table-bg: #359d5c;
    color: #ffffff;
}

tbody {
    border-color: #359d5c;
}

a {
    text-decoration: none;
    transition: 0.5s;
}

/*
tbody, td, tfoot, th, thead, tr {
    border-color: #359d5c;
}
*/
.gold-calculator {
    background: #025899 !important;
    color: #fff;
    padding: 30px
}


/* تنسيقات عامة للرسم البياني */
.chart-container {
    position: relative;
    margin: auto;
    width: 100%;
    /*    max-width: 1000px;*/
    padding: 40px;
    background-color: #2b3347;
    /*    border-radius: 15px;*/
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#goldChart {
    width: 100%;
    height: 100%;
    max-width: 910px;
    /* أقصى عرض */
    max-height: 400px;
    /* أقصى ارتفاع */
    margin: auto;
    /* توسيط الرسم */
}

canvas {
    display: inline-block !important;
    /* تفعيل العرض */
    box-sizing: content-box !important;
    /* تجاهل الحدود */
    height: auto !important;
    /* اجعل الارتفاع متجاوبًا */
    width: 100% !important;
    /* تمديد العرض ليملأ الحاوية */
    max-width: 100%;
    /* حدود العرض القصوى */
    box-sizing: content-box;
}

/* تنسيقات العنوان */
.chart-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

/* تنسيقات المحورين */
.chart-axis {
    font-family: 'Arial', sans-serif;
    color: #555;
}

/* تنسيقات النقاط */
.chart-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* تنسيقات التلميحات */
.chart-tooltip {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
}

/* تنسيقات الأسطورة */
.chart-legend {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.chart-legend-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
    color: #fff;
}

.chart-legend-color {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 50%;
}

/*Start search-model*/
.search-moblie svg {
    fill: #f00
}

/* تنسيق البحث */
.search-model-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    /* مخفي افتراضيًا */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.search-model-box.active {
    display: flex;
    /* تظهر عند إضافة الـ class "active" */
}

.b-search {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
}

.b-search input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    margin-right: 10px;
    width: 250px;
}

.b-search button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
}

.search-close-btn {
    position: absolute;
    top: 35%;
    right: 50%;
    cursor: pointer;
    color: #fff;
}

.search-close-btn svg {
    width: 24px;
    height: 24px;
}

/* نهاية تنسيقات عامة للرسم البياني */
/*//////////////////////////////////////*/
.back-to-top {
    position: fixed;
    display: none;
    background: #FF6F61;
    color: #ffffff;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    border-radius: 4px;
    z-index: 11;
}

.back-to-top:hover {
    background: #000000;
}

.back-to-top i {
    padding-top: 9px;
    color: #ffffff;
}


/**********************************/
/********* Form Input CSS *********/
/**********************************/
.form-control,
.custom-select {
    margin-bottom: 15px
}

input,
select {
    text-align: right;
}

.form-control:focus,
.custom-select:focus {
    box-shadow: none;
    border-color: #FFFFFF;
}

.custom-radio,
.custom-checkbox {
    margin-bottom: 15px;
}

.custom-radio .custom-control-label::before,
.custom-checkbox .custom-control-label::before {
    border-color: #cccccc;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    color: #ffffff;
    background: #FF6F61;
}

button.btn {
    color: #ffffff;
    background: #000000;
    border: 1px solid #000000;
}

button.btn:hover {
    color: #ffffff;
    background: #FF6F61;
    border-color: #FFFFFF;
}


/**********************************/
/*********** Top Bar CSS **********/
/**********************************/
.top-bar {
    background: #353d50;
    height: 32px;
    line-height: 32px;
    overflow: hidden
}

.top-bar .tb-contact p {
    display: inline-block;
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
}

.top-bar .tb-contact p i {
    margin-right: 6px;
}

.top-bar .tb-contact p:first-child {
    margin-left: 15px;
}

.top-bar .tb-menu {
    font-size: 0;
    text-align: left;
}

.top-bar .tb-menu ul li {
    display: inline-block
}

.top-bar .tb-menu a {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0 8px;
    text-decoration: none;
}

.top-bar .tb-menu li a:hover {
    color: #ffffff;
}

.top-bar .tb-menu li:last-child {
    margin-right: 0;
}

.top-bar .tb-menu li::after {
    position: absolute;
    content: "/";
    margin: 1px 0 0 6px;
    color: #FFFFFF;
    font-size: 14px;
}

.top-bar .tb-menu li:last-child::after {
    display: none;
}

@media (max-width: 768px) {

    .top-bar .tb-contact,
    .top-bar .tb-menu {
        text-align: center;
    }

    .top-bar .tb-menu li::after {
        display: none;
    }

}


/**********************************/
/*********** Brand CSS ************/
/**********************************/
.brand {
    padding: 15px 0;
    background: #2b3347;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    overflow: hidden;
    width: 100%;
}

.brand .b-logo {
    overflow: hidden;
}

.brand .b-logo a img {
    max-width: 100%;
    height: auto;
}

.b-LiveNow {
    display: flex;
    align-items: center;
    justify-content: end;
}

.LiveNow {
    border-radius: 3px;
    background: #f00;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    gap: 6px;
    padding: 0 5px;
    width: 90px;
    height: 28px;
    font-family: 'Changa';
}

.LiveNow:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 50px;
    animation: 0.7s ease-in-out infinite blinker;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.brand .b-search {
    width: 100%;
}

.brand .b-search input[type=text] {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    color: #666666;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.brand .b-search input[type=text]:focus {
    border-color: #FFFFFF;
}

.brand .b-search button {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: 15px;
    border: none;
    background: none;
    color: #FF6F61;
    border-radius: 0 4px 4px 0;
}

.brand .b-search button:hover {
    background: #FF6F61;
    color: #ffffff;
}

.b-LiveNow .social {
    display: flex;
    align-items: center;
    justify-content: end;
}

.b-LiveNow a {
    display: inline-block;
    margin: 0 5px 0 0;
    width: 35px;
    height: 35px;
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
    background: #ffffff;
    border-radius: 4px;
}

.b-LiveNow a i {
    color: #111111;
}

.b-LiveNow a:hover {
    background: #FF6F61;
}

.b-LiveNow a:hover i {
    color: #ffffff;
}

@media (max-width: 767.98px) {

    .brand .b-logo,
    .brand .b-ads,
    .brand .b-search {
        text-align: center;
        margin-bottom: 0;
    }

    .brand .b-search {
        margin-bottom: 0;
    }

    .brand .b-logo a img {
        width: 140px;
    }
}

.program-text a {
    color: inherit;
}

/* الحاوية الرئيسية للقائمة */
.menu-container {
    overflow-y: auto;
    background: #2c294a;
    display: none;
}

/* القائمة */
.mobile-menu {
    display: flex;
    /* ترتيب أفقي للعناصر */
    flex-wrap: nowrap;
    /* منع انتقال العناصر إلى الأسطر الجديدة */
    list-style: none;
    /* إخفاء النقاط الافتراضية */
    margin: 0;
    padding: 0;
}

.sticky-menu {
    position: relative;
    z-index: 9999;
}

.sticky-menu.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* تأثير ظل لتحسين التصميم */
    transition: all 0.3s ease-in-out;
}

/* عناصر القائمة */
.mobile-menu li {
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    padding: 0 1rem 0 1rem;
}

.mobile-menu li a {
    color: #ffffff;
    padding: 15px 0;
    display: block;
    letter-spacing: 0;
}

.mobile-menu li.current-menu-item a,
.mobile-menu li:hover a {
    border-bottom: 3px solid #ddd;
}

.nav-link:focus,
.nav-link:hover {
    color: #ddd;
}

/*
.mobile-menu li.tie-current-menu a{
    border-bottom: 2px solid #ddd;
}
*/
@media (max-width: 768px) {
    .menu-container {
        display: block;
    }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    min-height: 50px;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
    overflow: hidden;
    height: 60px !important;
}

.nav-bar .navbar {
    height: 100%;
    padding-bottom: 1px;
}

.navbar-nav li {
    margin-left: 1rem;
    padding-left: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding: 10px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
/*    border-bottom: 2px solid #dad4d4;*/
    transition: none;
    color: #aaadb5;
}

.nav-bar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    font-weight: 400;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: .5s;
    opacity: 0;
    margin-top: 0;
    border-radius: 0;
    background: #2b3347;
    border-color: hsla(0, 0%, 100%, 0.1);
    border-right-color: #aaadb5 !important;
    border-style: solid;
    border-width: 1px 2px 1px 1px;
}

.nav-bar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.dropdown-item {
    color: #ffffff;
}

.dropdown-item.active,
.dropdown-item:active {
    background: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #aaadb5;
    background: none;
}

span.main-header_link.btn.live {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 2.8rem;
    color: #fff;
    background: #e91818;
    border: 1px solid #e91818;
    padding: .8rem 1.1rem .8rem 1.6rem;
    font: 300 2rem/2.25rem alarabiya, Helvetica Neue, sans-serif;
    letter-spacing: 0;
}

span.main-header_link.btn.live svg {
    width: 32px
}

@media (min-width: 768px) {

    .nav-bar,
    .nav-bar .navbar {
        background: #2b3347 !important;
        border-style: solid;
        border-width: .1rem 0;
        border-color: hsl(0deg 13.24% 98.18% / 10%);
    }

    .nav-bar .navbar-brand {
        display: none;
    }

    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 19px;
        text-transform: uppercase;
    }
}

@media (max-width: 768px) {

    .nav-bar,
    .nav-bar .navbar {
        height: 60px !important;
        /*
        padding: 1px 0;
    background: #3f3f3f !important;
*/
    }

    .nav-bar .dropdown-menu {
        box-shadow: none;
    }

    .nav-bar .social {
        display: none;
    }
}

.nav-bar .social {
    font-size: 0;
    overflow: hidden;
}

.nav-bar .social a {
    display: inline-block;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    padding: 3px 0;
    text-align: center;
    font-size: 14px;
    background: #FF6F61;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

.nav-bar .social a:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
}

.nav-bar .social a i {
    color: #ffffff;
}

.nav-bar .social a:hover i {
    color: #FFFFFF;
}

/**********************************/
/********** Tab News CSS **********/
/**********************************/
.tab-news {
    position: relative;
    padding: 30px 0 0 0;
}

.tab-news .col-md-6 {
    margin-bottom: 60px;
}

.tab-news .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #000000;
    border-radius: 0;
}

.tab-news .nav.nav-pills .nav-link:hover,
.tab-news .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #FF6F61;
}

.tab-news .tab-content {
    padding: 30px 15px 15px 15px;
    background: rgba(0, 0, 0, .05);
}

.tab-news .tn-news {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #ffffff;
}

.tab-news .tn-img {
    width: 150px;
}

.tab-news .tn-img img {
    width: 150px;
}

.tab-news .tn-title {
    padding: 10px 15px;
}

.tab-news .tn-title a {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    transition: all .3s;
}

.tab-news .tn-title a:hover {
    color: #FFFFFF;
}



/**********************************/
/********** Main News CSS *********/
/**********************************/
.main-news {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.main-news .col-md-4 {
    margin-bottom: 30px;
}

.main-news .mn-img {
    position: relative;
    overflow: hidden;
}

.main-news .mn-img img {
    width: 100%;
}

.main-news .mn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.main-news .mn-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.main-news .mn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.main-news .mn-title a:hover {
    color: #FFFFFF;
}

.main-news .mn-list {
    margin-bottom: 30px;
}

.main-news .mn-list h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.main-news .mn-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-news .mn-list ul li {
    margin: 0 0 12px 22px;
    position: relative
}

.main-news .mn-list ul li:last-child {
    margin-bottom: 0;
}

.main-news .mn-list ul li a {
    color: #000000;
    display: block;
    line-height: 23px;
}

.main-news .mn-list ul li::before {
    position: absolute;
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    left: 1px;
}

.main-news .mn-list ul li a:hover {
    color: #2151ed;
}


/**********************************/
/********* Breadcrumb CSS *********/
/**********************************/
.breadcrumb-wrap {
    position: relative;
    width: 100%;
    background: #ffffff;
}

.breadcrumb-wrap .breadcrumb {
    margin: 25px 0 0 0;
    padding: 0;
    background: none;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #353535;
}

.breadcrumb-wrap .breadcrumb .breadcrumb-item.active {
    color: #353535;
}


/**********************************/
/********* Single News CSS ********/
/**********************************/
.single-news {
    position: relative;
    width: 100%;
    padding: 25px 0 0 0;
    margin-bottom: 15px;
}

.single-news .sn-img {
    position: relative;
    overflow: hidden;
}

.single-news .sn-img img {
    width: 100%;
}

.single-news .sn-content {
    position: relative;
    width: 100%;
    padding: 30px 15px;
    font-size: 21px;
}

.single-news .sn-content h1.sn-title {
    display: block;
    width: 100%;
    color: #000000;
}

.single-news .sn-related {
    margin-bottom: 45px;
}

.single-news .sn-related h2 {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.single-news .sn-slider .sn-img {
    position: relative;
    overflow: hidden;
}

.single-news .sn-slider .sn-img img {
    width: 100%;
}

.single-news .sn-slider .sn-img:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
}

.single-news .sn-slider .sn-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 10px 15px 20px;
    background-image: linear-gradient(rgba(0, 0, 0, .0), rgba(0, 0, 0, .3), rgba(0, 0, 0, .9));
    display: flex;
    align-items: flex-end;
}

.single-news .sn-slider .sn-title a {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.single-news .sn-slider .sn-title a:hover {
    color: #FFFFFF;
}

.single-news .sn-slider .slick-prev,
.single-news .sn-slider .slick-next {
    top: -62px;
    width: 28px;
    height: 28px;
    z-index: 1;
    transition: .5s;
    color: #ffffff;
    background: #000000;
    border-radius: 4px;
}

.single-news .sn-slider .slick-prev {
    left: calc(100% - 85px);
}

.single-news .sn-slider .slick-next {
    right: 14px;
}

.single-news .sn-slider .slick-prev:hover,
.single-news .sn-slider .slick-prev:focus,
.single-news .sn-slider .slick-next:hover,
.single-news .sn-slider .slick-next:focus {
    color: #ffffff;
    background: #FF6F61;
}

.single-news .sn-slider .slick-prev::before,
.single-news .sn-slider .slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.single-news .sn-slider .slick-prev::before {
    content: "\f104";
}

.single-news .sn-slider .slick-next::before {
    content: "\f105";
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

.sidebar .sidebar-widget {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget h2.sw-title {
    color: #000000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #000000;
}

.sidebar .sidebar-widget .news-list {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .news-list .nl-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar .news-list .nl-item .nl-img {
    width: 100px;
}

.sidebar .news-list .nl-item .nl-img img {
    width: 100px;
}

.sidebar .news-list .nl-item .nl-title {
    padding-right: 15px;
}

.sidebar .news-list .nl-item .nl-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s;
}

.sidebar .news-list .nl-item .nl-title a:hover {
    color: #0d6efd;
}

.sidebar .sidebar-widget .tab-news {
    position: relative;
    margin-bottom: 30px;
}

.sidebar .tab-news .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #000000;
    border-radius: 0;
}

.sidebar .tab-news .nav.nav-pills .nav-link:hover,
.sidebar .tab-news .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #FF6F61;
}

.sidebar .tab-news .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-news .tab-content .container {
    padding: 0;
}

.sidebar .tab-news .tn-news {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sidebar .tab-news .tn-img {
    width: 100px;
}

.sidebar .tab-news .tn-img img {
    width: 100px;
}

.sidebar .tab-news .tn-title {
    padding: 0 0 0 15px;
}

.sidebar .tab-news .tn-title a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s;
}

.sidebar .tab-news .tn-title a:hover {
    color: #FFFFFF;
}

.sidebar .sidebar-widget .category {
    position: relative;
}

.sidebar .category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category ul li a {
    display: inline-block;
    color: #000000;
    line-height: 23px;
}

.sidebar .category ul li a:hover {
    color: #FFFFFF;
}

.sidebar .category ul li::before {
    position: absolute;
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000000;
    left: 1px;
}

.sidebar .category ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tags {
    position: relative;
}

.sidebar .sidebar-widget .tags a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 10px;
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
}

.sidebar .sidebar-widget .tags a:hover {
    color: #ffffff;
    background: #FF6F61;
    border: 1px solid #FF6F61;
}

.sidebar .sidebar-widget .image a {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .sidebar-widget .image img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .sidebar-widget .image img:hover {
    transform: scale(1.1);
    filter: blur(3px);
    -webkit-filter: blur(3px);
}


/**********************************/
/********** Contact CSS ***********/
/**********************************/
.contact {
    position: relative;
    padding: 25px 0 15px 0;
}

.contact .contact-form,
.contact .contact-info {
    margin-bottom: 45px;
}

.contact .contact-info h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.contact .contact-info h4 i {
    color: #000000;
    margin-right: 5px;
}

.contact .social {
    position: relative;
    width: 100%;
}

.contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    font-size: 18px;
    border: 1px solid #000000;
    border-radius: 4px;
}

.contact .social a i {
    color: #000000;
}

.contact .social a:hover {
    background: #FF6F61;
    border-color: #FFFFFF;
}

.contact .social a:hover i {
    color: #ffffff;
}


/**********************************/
/********** Footer CSS ************/
/**********************************/
.footer {
    position: relative;
    padding: 60px 0 0 0;
    background: #111111;
}

.footer .footer-widget {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.footer .footer-widget .title {
    color: #ffffff;
    font-size: 25px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 3px double #ffffff;
}

.footer .footer-widget p {
    color: #ffffff;
}

.footer .footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer .footer-widget ul li {
    margin-bottom: 12px;
}

.footer .footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-widget ul li a {
    color: #ffffff;
    white-space: nowrap;
    display: block;
    line-height: 23px;
    transition: 0.5s;
}

.footer .footer-widget ul li a::before {
    content: '\f060';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-left: 5px;
}

.footer .footer-widget ul li a:hover {
    padding-right: 10px;
    color: #FF6F61;
}

.footer .contact-info p {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 16px;
}

.footer .contact-info p i {
    color: #ffffff;
    margin-right: 5px;
}

.footer .social {
    position: relative;
    width: 100%;
}

.footer .social a {
    display: inline-block;
    margin: 0 5px 0 0;
    width: 35px;
    height: 35px;
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
    background: #ffffff;
    border-radius: 4px;
}

.footer .social a i {
    color: #111111;
}

.footer .social a:hover {
    background: #FF6F61;
}

.footer .social a:hover i {
    color: #ffffff;
}

.footer .newsletter {
    position: relative;
    width: 100%;
}

.footer .newsletter form {
    position: relative;
    width: 100%;
}

.footer .newsletter input {
    width: 100%;
    height: 35px;
    padding: 0 15px;
    border: 1px solid #ffffff;
    border-radius: 4px;
}

.footer .newsletter .btn {
    position: absolute;
    width: 80px;
    height: 35px;
    top: 0;
    right: 0;
    padding: 0 15px;
    border: none;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    border: 1px solid #ffffff;
    border-radius: 0 4px 4px 0;
}

.footer .newsletter .btn:hover {
    background: #FF6F61;
}

.footer .newsletter input:focus,
.footer .newsletter .btn:focus {
    box-shadow: none;
}


/**********************************/
/******** Footer Menu CSS *********/
/**********************************/
.footer-menu {
    position: relative;
    background: #111111;
}

.footer-menu .container {
    padding: 15px 0;
    border-top: 1px solid #000000;
}

.footer-menu .f-menu {
    font-size: 0;
    text-align: center;
    margin: 0;
    padding: 0
}

.footer-menu .f-menu li {
    display: inline-block;
}

.footer-menu .f-menu li {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #ffffff;
}

.footer-menu .f-menu li a {
    color: #ffffff;
    font-size: 14px;
}

.footer-menu .f-menu li a:hover {
    color: #FF6F61;
}

.footer-menu .f-menu li:last-child {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
}


#store-popup {
    position: fixed;
    bottom: -120px;
    right: 20px;
    left: 20px;
    background-color: #131722;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s ease-in-out;
    z-index: 9999;
    font-family: 'Tajawal', sans-serif;
}

#store-popup.show {
    bottom: 20px;
}

.store-popup-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 15px;
}

.popup-app-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
}

.popup-text-content {
    flex-grow: 1;
    text-align: right;
}

.popup-title {
    font-weight: bold;
    font-size: 16px;
    color: #00f0ff;
}

.popup-subtitle {
    font-size: 13px;
    color: #ccc;
    margin-top: 4px;
}

.popup-btn {
    background-color: #ffffff;
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

/* إخفاء الإعلان على الشاشات الأكبر من الجوال */
.mobile-ad {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 65%;
    height: 250px;
    background: #f1f1f1;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 10px 0;
    z-index: 9999;
    border-radius: 10px;
}

.mobile-ad .ad-content {
    width: 100%;
    height: 100%
}

.mobile-ad .close-btn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

@media (min-width: 769px) {
    .mobile-ad {
        display: none !important;
    }
}



/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/
.footer-bottom {
    position: relative;
    padding: 25px 0;
    background: #000000;
    text-align: center;
}

.footer-bottom .copyright p,
.footer-bottom .template-by p {
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.footer-bottom .copyright p a,
.footer-bottom .template-by p a {
    font-weight: 600;
}

.footer-bottom .copyright p a:hover,
.footer-bottom .template-by p a:hover {
    color: #ffffff;
}
.footer-item ul {
    margin: 0;
    padding: 0;
}
.footer-item ul li {
    list-style: none;
    margin-bottom: 10px;
}
.footer-item ul li a{
    
}
.footer-item-line{
    border-radius: 50% 20% / 10% 40%;
}
@media (max-width: 768.98px) {

    .footer-bottom .copyright,
    .footer-bottom .template-by {
        text-align: center;
    }
}