/*
Author: Abdul Latif Erfan
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

   TABLE OF CONTENT
    1  - General 
    2  - Scrollbar
    3  - Button
    4  - Alignments
    5  - Post meta
    6  - Top Header & Nav bar
    7  - Search Popup  
    8  - social links
    9  - Slider Section
    10  - Author Section
    11  - Section Title 
    12  - Biography Section
    13  - Construction Section
    14  - Single Post style / common style
    15  - page not found 
    16  - Footer Section
    17  - Signin and Signup
    18  - Video (Youtube Playlist)
--------------------------------------------------------------*/


/*------------------------------
    # General Section - Import Font
--------------------------------*/
@charset "UTF-8";
/* @font-face {
    font-family: "WYekan";
    src:url('../fonts/latif_favorite_font/WebYekan.eot');
    src:url('../fonts/latif_favorite_font/WebYekan.woff');
    src:url('../fonts/latif_favorite_font/WebYekan.svg');
    src:url('../fonts/latif_favorite_font/WebYekan_162a16fe.eot#iefix')
    format('embedded-opentype'), url('../fonts/latif_favorite_font/WebYekan.woff') 
    format('woff'), url('../fonts/latif_favorite_font/WebYekan.ttf') 
    format('truetype'), url('../fonts/latif_favorite_font/WebYekan.svg#WebYekan') 
    format('svg');
    font-weight: normal;
    font-style: normal;
    unicode-range: U+0600Ã¢â‚¬â€œ06FF;
} */
/* @font-face {
    font-family: "WYekan"; */
    /* src:url('../fonts/latif_favorite_font/majalla.ttf'); */
    /* src:url('../fonts/latif_favorite_font/WebYekan.eot'); */
    /* src:url('../fonts/latif_favorite_font/DroidKufi-Bold.ttf'); */
    /* src:url('../fonts/latif_favorite_font/bahij_helvetica_neue_roman.ttf'); */
    /* src:url('../fonts/latif_favorite_font/seguisym.ttf'); */

    /* font-weight: normal;
    font-style: normal;
    unicode-range: U+0600Ã¢â‚¬â€œ06FF;
} */

@font-face {
    font-family: "WYekan";
    src:url('../fonts/latif_favorite_font/for_eng/seguisym.ttf');
    src:url('../fonts/latif_favorite_font/for_eng/SegoeUISymbol.woff');
    src:url('../fonts/latif_favorite_font/for_eng/SegoeUISymbol.woff2');
    src:url('../fonts/latif_favorite_font/for_eng/SegoeUISymbol.eot')
    format('embedded-opentype'), url('../fonts/latif_favorite_font/for_eng/SegoeUISymbol.woff') 
    format('woff'), url('../fonts/latif_favorite_font/for_eng/seguisym.ttf') 
    format('svg');
    font-weight: normal;
    font-style: normal;
    unicode-range: U+0600Ã¢â‚¬â€œ06FF;
}

/***Colors***/

:root {
    --main-color: hsl(42 88% 37% / 1);
    --primary-color: hsl(42.29deg 87.35% 31.35%);
    --border: #ddd;
    --heading-color: hsl(17.18deg 2.19% 20.89%);
    --dark-read-color: hsl(35.36deg 88.37% 31.75%);
    --paragraph-color: hsl(0deg 3.47% 46.86%);
    --paragraph-color-dark: #565872;
    /* --heading-font: "WYekan", sans-serif, times;
    --body-font: "WYekan", sans-serif, times; */
    /* --paragraph-font: "WYekan", sans-serif, times; */
    --heading-font: "WYekan";
    --body-font: "WYekan";
    --paragraph-font: "WYekan";
    --body-font-size: 14px;
    --line-height30: 1.7;
    --white-color: hsl(0deg 0% 100%);
    --light-gray: hsl(0deg 0% 94.91%);
    --dark-gray: hsl(0deg 3.77% 62.21%);
    --menu-bg-color: hsl(212.08deg 43.72% 45.29%);
    --search-bg-color: var(--menu-bg-color);
    --orange-color: hsl(24deg 100% 49.02%);
    --secondary-color: hsl(23.87deg 77.88% 49.91%);
    --light-secondary-color: rgb(41, 116, 202);
    --menu-active-hover-color: hsl(212.08deg 51.48% 53.12%);
    --paragraph-color: hsl(0deg 3.66% 32.16%);
    /**
     * typography
     */
    --fs-45: 4.5rem;
    --fs-38: 3.8rem;
    --fs-32: 3.2rem;
    --fs-27: 2.7rem;
    --fs-26: 2.6rem;
    --fs-22: 2.2rem;
    --fs-20: 2rem;
    --fs-18: 1.8rem;
    --fs-17: 1.7rem;
    --fs-16: 1.6rem;
    --fs-14: 1.4rem;
    --fs-12: 1.2rem;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    /**
     * spacing
     */
    --section-padding: 30px;
    /**
     * shadow
     */
    --shadow: 0 2px 2px hsla(0, 0%, 22%, 0.08);
    --dark-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    --light-shadow: 0px 5px 6px 1px #ddd;
    /**
     * border radius
     */
    --radius-50: 50px;
    --radius-pill: 100px;
    --radius-circle: 50%;
    /**
     * transition
     */
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --transition-3: all 0.6s ease-in-out;
    --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth !important;
    font-family: "WYekan";
}

body {
    margin: 0;
    font-family: var(--body-font);
    line-height: var(--line-height30);
    font-size: var(--body-font-size);
    /* background: #f5f5f5; */
}

h1 {
    font-size: 60px;
    line-height: 1.3333333333;
}

h2 {
    font-size: 40px;
    line-height: 1.3380952381;
}

h3 {
    font-size: 36px;
    line-height: 1.3833333333;
}

h4 {
    font-size: 30px;
    line-height: 1.3380952381;
}

h5 {
    font-size: 24px;
    line-height: 1.3380952381;
}


/* moved in responsive.css */


/* h6 {
    font-size: 0.7rem;
    line-height: 1.3380952381;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 500;
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
    font-family: var(--paragraph-font);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

a:hover {
    color: var(--main-color);
}

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    /* max-width: 100%; */
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

ol li {
    list-style: none;
    margin-bottom: 1rem;
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px;
}

button:hover,
button:active,
button:focus {
    outline: 0;
}


/*------------------------------
    #  Input Buttons
--------------------------------*/

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.no-gutter>[class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.no-gutter[class^=col-] {
    padding-left: 0;
    padding-right: 0;
}

.h-100vh {
    height: 100vh;
}

code {
    color: #faa603;
}

.m-t--5 {
    margin-top: -5px;
}

.float-right {
    float: right;
}

.bg-white {
    background-color: var(--white-color);
}

.padding-20 {
    padding: 20px;
}


/*------------------------------
    #  Scrollbar
--------------------------------*/

:focus-visible {
    outline-offset: 4px
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: rgb(219, 218, 218);
}

::-webkit-scrollbar-thumb {
    background-color: #a5a5a5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--light-secondary-color);
}


/*------------------------------
    #  Button
--------------------------------*/

.btn {
    padding: 5px 12px;
    overflow: hidden;
    position: relative;
    border: 0;
    transition: all 0.5s ease;
    font-size: 16px;
    display: inline-block;
    transform: perspective(1px) translateZ(0);
    border-radius: 5px;
}

.btn:focus,
.btn:active {
    outline: 0;
    box-shadow: none;
}

.btn-small {
    padding: 3px 12px;
    overflow: hidden;
    position: relative;
    border: 0;
    transition: all 0.5s ease;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transform: perspective(1px) translateZ(0);
    border-radius: 5px;
}

.btn-small:focus,
.btn-small:hover,
.btn-small:active {
    outline: 0;
    box-shadow: none;
    color: #fff;
}

.btn-blue {
    background: #283f62;
    color: #fff;
    border: 0;
}

.btn-blue:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #097bed;
    color: #fff;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-duration: 0.4s;
}

.btn-blue:hover,
.btn-blue:focus {
    color: var(--white-color);
}

.btn-blue:hover:before,
.btn-blue:focus:before {
    transform: scaleX(1);
}

.btn-secondary {
    background: var(--white-color);
    color: #0a0a0a;
    border: 1px solid hsl(0deg 0% 71.99%);
    min-width: 85px;
    font-size: 13px;
}

.btn-secondary:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    color: var(--white-color);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-duration: 0.4s;
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: var(--white-color);
}

.btn-secondary:hover:before,
.btn-secondary:focus:before {
    transform: scaleX(1);
}

.btn-details {
    border: 1px solid var(--search-bg-color);
    background: #fff;
}

.btn-bg-black {
    background: #464d4b;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.btn-bg-black:hover {
    background: #333;   /* Or your preferred hover shade */
    color: #f1f1f1;     /* Optional: lighter text color on hover */
  }
  

.tag-base {
    height: 28px;
    line-height: 28px;
    padding: 0 14px;
    display: inline-block;
    border-radius: 3px;
    font-size: 15px;
}

.tag-base .notice {
    height: 28px;
    width: 28px;
    line-height: 28px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    position: absolute;
    right: -9px;
    top: -10px;
}

.tag-orange {
    background: #fa6400;
    color: #fff;
}

.tag-orange:hover {
    background: #fa2000;
    /* color: #fff; */
}

.tag-orange .notice {
    background: #fa2000;
}

.tag-green {
    background: #00bff3;
    color: #fff;
}


/*------------------------------
    # Alignments
--------------------------------*/

.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}

dl,
ol,
ul {
    padding-left: 15px;
}


/*---------------------------------
    ## Post meta
-----------------------------------*/

.single-post p {
    font-size: 14px;
}

.single-post p i {
    margin-right: 5px;
}

.single-post ul {
    margin: 0;
    padding: 0;
}

.single-post ul li {
    display: inline-block;
    margin: 0 6px;
    color: var(--heading-color);
    font-size: 14px;
}

.single-post ul li i {
    margin-right: 5px;
}

.single-post ul li:first-child {
    margin-left: 0;
}

.single-post ul li:last-child {
    margin-right: 0;
}


/*----------------------------------------------
    # Top Header & Nav bar 
----------------------------------------------*/

.skew {
    position: absolute !important;
    width: 27%;
    height: 100%;
    background-color: #93e5f830;
    webkit-transform: skew(-40deg) translateX(14px);
    -ms-transform: skew(-40deg) translateX(14px);
    transform: skew(-40deg) translateX(14px);
    position: absolute;
    z-index: 0;
    left: -80px;
}

.logo-wrapper .right-size-contact {
    display: flex;
    justify-content: space-between;
    margin-right: 15px;
}

.logo-wrapper .map-link-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}


.map-link-item i.fa-shopping-bag{
    font-size: 25px;
    color: var(--main-color);
}
.top-contact-wrapper .map-link-item .item_counter{
    height: 25px;
    width: 25px;
    border: 1px solid var(--main-color);
    font-size: 16px;
    color: #000;
    line-height: 23px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -21px;
}

.top-contact-wrapper {
    text-align: right;
}

.top-contact-wrapper img {
    width: 35% !important;
}

.logo-wrapper .contact-title {
    display: flex;
    flex-flow: column;
    text-align: left;
}

.header__top__left {
    padding-top: 6px;
    display: flex;
}

.header__top__left ul li {
    font-size: 14px;
    color: #444;
    display: inline-block;
    margin-right: 45px;
    position: relative;
    cursor: pointer;
}

.header__top__left ul li i {
    color: #000;
    margin-right: 5px;
}

.header__top__right {
    text-align: right;
    padding: 6px 0 10px;
}

.header__top__right__social {
    position: relative;
    display: inline-block;
    margin-right: 35px;
}

.header__top__right__social a {
    font-size: 14px;
    display: inline-block;
    color: #000;
    margin-right: 20px;
}
.height-40px {
    height: 40px !important;
}

.top-header-wrapper {
    padding: 0;
    top: 0;
    z-index: 98;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    transition: all 0.4s;
    background-color: var(--white-color);
    position: relative;
}

.top-header-wrapper .top-menu {
    padding: 6px;
}

.top-header-wrapper .navbar {
    /* background: var(--main-color); */
    background: linear-gradient(92deg, #dea210 10%, #b07c00 50%);
    /* border-bottom: 4px solid var(--secondary-color); */
}

.top-header-wrapper .nav-container {
    background-color: transparent;
    transition: all 0.4s;
    min-height: 45px;
}

.top-header-wrapper .nav-container .logo a {
    display: inline-block;
}

.top-header-wrapper .nav-container .logo a img {
    height: auto;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar>.container,
.navbar>.container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    cursor: pointer;
}

.navbar-nav li.menu-item.active {
    background: var(--primary-color);
    position: relative;
}

.navbar-nav li.menu-item.active::after {
    content: "";
    width: 20px;
    height: 2px;
    position: absolute;
    margin-top: 17px;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: #fff;
    transition: 0.3s;
}

/* Mega Menu */

/* .megaToggler:hover ~ .mega-menu-wrapper {
    height: 260px;
    background-color: green;
} */

/* .mega-menu-wrapper:hover  {
    height: 260px;
    background-color: red;
} */
.mega-menu-wrapper.show {
    /* transition: 1s; */
    /* animation: reveal 2s forwards; */
    /* height: 260px; */
    display: block;
    /* background-color: red; */
    /* animation: expand 1s forwards; */
    
}
.mega-menu-wrapper.hide {
    /* transition: 1s; */
    /* animation: decrease 1s forwards; */
    display: none;
}
@keyframes reveal {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


.mega-menu-wrapper .mega-right-menu {
 background-color: #f4f4f4;
 padding: 30px 20px;
}
.mega-menu-wrapper .mega-right-menu ul {
    list-style-type: none;
}
.mega-menu-wrapper .mega-right-menu ul li {
    border-bottom: 1px solid #ddd;
    padding: 4px 10px;
    transition: all 0.5s ease-in;
}
.mega-menu-wrapper .mega-right-menu ul li:hover{
    cursor: pointer;
    background-color: #e7e7e7;
}
.mega-single-post{
    transition: 0.4s;
    margin-bottom: 20px;
}

.mega-post-wrapper {
    padding: 40px 20px 20px 20px;
}
.megaToggler {
    position: relative;
    padding-left: 30px !important;
}
.megaToggler i {
    margin-right: 5px;
    position: absolute;
    top: 40%;
    left: 7px;
}
.navbar-nav li:hover {
    background: var(--primary-color);
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none
}

.navbar-text {
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-nav {
    display: block;
    width: 100%;
    text-align: right;
    direction: rtl;
}

.navbar-nav li {
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.5s ease-in;
    /* padding: 12px 18px; */
}

.navbar-nav li:last-child {
    /* border: 0;
    padding-right: 0; */
}

.navbar-nav li a {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    font-family: var(--body-font);
    text-transform: uppercase;
    /* line-height: 52px; */
    padding: 10px 20px;
}

.navbar-nav li:hover a {
    color: var(--menu-bg-color);
}



@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100px, 0);
        transform: translate3d(0, -100px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

.sticky-active {
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 10px 50px 0 rgba(46, 56, 220, 0.2);
}

.logo-wrapper {
    padding: 15px 0;
    background: var(--white-color);
}

.logo-wrapper .main-logo img {
    width: 80px;
}
.

/********** navbar right part search **********/
.search-wrapper {
    width: 95%;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu-search-inner {
    direction: ltr;
    border-radius: 5px;
    /* border: 1px solid #ddd; */
}

.menu-search-inner input {
    height: 40px;
    width: 100%;
    padding: 0 0 0 20px;
    border: 1px solid #ddd !important;
    background: #981e1e08;
    /* color: rgba(255, 255, 255, 0.7); */
    border-radius: 3px;
}

/* .menu-search-inner input::placeholder {
    color: rgba(255, 255, 255, 0.7);
} */

.menu-search-inner button {
    height: 40px;
    line-height: 40px;
    border: 0 !important;
    background: transparent;
    padding: 0 18px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    background: var(--main-color);
    
}
.menu-search-inner button.small-search {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}


.menu-search-inner button.search-loading {
    padding: 0px 5px;
}

.menu-open {
    opacity: 1;
    margin-right: 0;
    visibility: visible;
}

.bar1 {
    width: 32px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 10px;
    right: -5px;
}

.bar2 {
    width: 24px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 17px;
    right: -5px;
}

.bar3 {
    width: 18px;
    height: 2px;
    margin-bottom: 5px;
    position: absolute;
    background: #fff;
    z-index: 9999;
    top: 24px;
    right: -5px;
}

.responsive-mobile-menu button:focus {
    outline: none;
    border: none;
}

.toggle-btn {
    left: auto;
    right: -10px;
    position: absolute;
    width: 40px;
    height: 40px;
    transition-duration: 0.5s;
    border: 0;
    background: transparent;
    top: 2px;
    z-index: 10;
}

.toggle-btn .icon-left {
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 11px;
    top: 18px;
    background-color: #ffffff;
    left: 7px;
}

.toggle-btn .icon-left:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #ffffff;
    content: "";
    top: -7px;
    left: 0;
}

.toggle-btn .icon-left:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #ffffff;
    content: "";
    top: 7px;
    left: 0;
}

.toggle-btn .icon-left:hover {
    cursor: pointer;
}

.toggle-btn .icon-right {
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 11px;
    top: 18px;
    background-color: #ffffff;
    left: 18px;
}

.toggle-btn .icon-right:before {
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #ffffff;
    content: "";
    top: -7px;
    left: 0;
}

.toggle-btn .icon-right:after {
    transition-duration: 0.5s;
    position: absolute;
    width: 11px;
    height: 2px;
    background-color: #ffffff;
    content: "";
    top: 7px;
    left: 0;
}

.toggle-btn .icon-right:hover {
    cursor: pointer;
}

.toggle-btn.open .icon-left {
    transition-duration: 0.5s;
    background: transparent;
}

.toggle-btn.open .icon-left:before {
    transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
}

.toggle-btn.open .icon-left:after {
    transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
}

.toggle-btn.open .icon-right {
    transition-duration: 0.5s;
    background: transparent;
}

.toggle-btn.open .icon-right:before {
    transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
}

.toggle-btn.open .icon-right:after {
    transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
}

.toggle-btn:hover {
    cursor: pointer;
}

.nav-right-part-desktop {
    /* margin-left: 20px; */
    width: 100%;
    position: absolute;
    z-index: 5;
}

.nav-right-part-mobile {
    display: none;
}

.open {
    display: block !important;
}

@media all and (max-width: 991px) {
    .navbar-area .nav-container {
        padding: 15px;
    }
    .top-header-wrapper .nav-container {
        padding: 15px;
    }
    .nav-right-part {
        margin-right: 50px;
    }
    .nav-right-part-desktop {
        display: none;
    }
    .nav-right-part-mobile {
        display: block;
        color: var(--white-color);
    }
    .nav-right-part-mobile:hover {
        color: var(--white-color);
    }
    .nav-right-part .btn .right {
        padding-left: 5px;
        font-size: 13px;
    }
    .top-header-wrapper .nav-container {
        position: relative;
        z-index: 0;
        display: flex;
        justify-content: flex-start;
    }
    .top-header-wrapper .nav-container .navbar-toggler {
        padding: 0px;
    }
    .top-header-wrapper .nav-container .navbar-collapse {
        margin-top: 13px;
        padding-right: 25px;
    }
    .navbar-nav {
        display: block;
        margin-top: 20px;
        padding: 0px;
    }
    .navbar-nav li {
        display: block;
        line-height: 30px;
        transition: all 1s ease;
        
    }
    .navbar-nav li a {
        display: block;
        padding: 1px 0px;
        border-radius: 14px;
        margin-left: 20px;
        line-height: 40px;
        font-size: 12px;
    }
   
    .navbar-nav li:hover {
        background: var(--menu-active-hover-color);
    }
    .navbar-nav li:last-child {
        border-bottom: none;
    }
    .navbar-nav li+li {
        margin-left: 0;
    }
    .navbar-nav li {
        border-left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-right: 15px;
    }
    .navbar-nav li+li {
        margin-left: 0;
        padding-left: 0;
    }
    .top-header-wrapper .nav-container .navbar-collapse {
        padding-right: 0;
    }
}

.banner-inner .banner-details p {
    margin-top: 27px;
}

.banner-inner .banner-details .btn {
    margin-top: 32px;
}


/*----------------------------------------
  ## Search Popup
----------------------------------------*/

.search-popup-form-wrapper.active .search-form {
    visibility: visible;
    opacity: 1;
}

.search-popup-form-wrapper .search-form {
    /* min-width: 600px; */
    min-width: fit-content;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    /* IE 9 */
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
    z-index: 999;
}

.search-popup-form-wrapper .search-form .form-group .form-control {
    border: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    height: 54px;
    line-height: 54px;
    padding: 0 100px 0 30px;
    font-size: 18px;
}

.search-popup-form-wrapper .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 54px;
    border: 0;
    border-radius: 0 5px 5px 0;
    background: var(--secondary-color);
    color: #fff;
    transition: 0.4s;
    padding: 0;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}

.search-popup-form-wrapper .search-form .submit-btn:hover:before {
    opacity: 0.5;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: #1c3459;
    z-index: 991;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 0.9;
}


/*------------------------------------------------
    ## social links
------------------------------------------------*/

.social-area {
    padding: 0;
    margin: 0;
}

.social-area li {
    list-style: none;
    display: inline-block;
    margin: 0 7px;
}

.social-area li a {
    color: rgba(255, 255, 255, 0.8);
}

.social-area li a:hover {
    color: var(--main-color);
}

.social-area li:first-child {
    margin-left: 0;
}

.social-area li:last-child {
    margin-right: 0;
}

.social-area-top-header li {
    margin: 0 6px;
}

.social-area-top-header li a {
    color: #ffffff;
    width: 26px;
    height: 26px;
    display: inline-block;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.social-area-top-header li a:hover {
    color: var(--light-gray);
}

.social-area-top-header li a.facebook-icon {
    background: #3b5998;
}

.social-area-top-header li a.twitter-icon {
    background: #55acee;
}

.social-area-top-header li a.youtube-icon {
    background: #d42428;
}

.social-area-top-header li a.google-icon {
    background: #dc4e41;
}

.social-area-3 li {
    margin: 0 6px;
}


/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/

/* .slider {
    margin-top: 2rem;
} */

.m-t-20 {
    margin-top: 20px;
}

.slider .slider-cover {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: row;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

/* .slider .slider-and-skeleton-wrapper {
    height: 415px;
} */

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

.slider .slider-title {
    position: absolute;
    background: #696969a1;
    bottom: 0;
    z-index: 3;
    color: #fff;
    text-align: left;
    direction: ltr;
}

.post .slick-slider {
    margin-right: -12px;
    margin-left: -12px;
}


/* --- right side of slider --- */

.date-content {
    color: var(--dark-gray);
}

.date-content i {
    margin-left: 12px;
}

.hero__categories__all {
    /* background: #69a809; */
    /* font-family: "WYekan"; */
    border: 1px solid #ebebeb;
    position: relative;
    padding: 10px 20px 10px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__categories__all .category-list li i {
    border: 2px solid #b17e05;
    padding: 7px 9px;
    border-radius: 50%;
    color: #c08d14;
}


/* margin-right: 8px;
font-size: 15px; */
.category-list li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;     /* force fixed width */
    height: 30px;    /* force fixed height */
    border: 1px solid #b17e05;
    border-radius: 50%;
    color: #c08d14;
    font-size: 15px; /* adjust as needed */
    margin-right: 10px;
}

.hero__categories ul {
    border: 1px solid #ebebeb;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 12px;
    border-top: none;
}

.hero__categories ul li {
    list-style: none;
    border-bottom: 1px solid #edeaea;
}

.hero__categories ul li a {
    font-size: 14px;
    color: #1c1c1c;
    line-height: 39px;
    display: block;
    font-family: "WYekan";
}

/*--------------------------------------------------------------
# Author Section
--------------------------------------------------------------*/

.post .post-image {
    height: 170px;
    overflow: hidden;
    z-index: -1;
   
}

.post .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: 0.8s;
    transform: scale(1.01);
}
.post .post-image:hover img {
    transform: scale(1.08);
    cursor: pointer;
}

.post .post-name-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    margin-top: 12px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.post .post-name-wrapper-with-6items {
    display: flex;
    flex-direction: column;
    height: 30px !important;
    justify-content: space-between;
    gap: 5px;
    margin-top: 12px;
    margin-bottom: 5px;
    color: var(--orange-color);
}
 .post-name-wrapper .post-name {
    color: var(--secondary-color);
}

.post .post-name-wrapper .date i {
    margin-left: 6px;
}


/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/

.section-title {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    direction: ltr;
    text-align: left;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 130px;
    border: 2px solid var(--orange-color);
}

.section-title .next_prev_btn .fa-angle-left,
.next_prev_btn .fa-angle-right {
    background: #dfdfdf;
    margin-right: 10px;
    font-size: 16px;
    color: var(--orange-color);
    cursor: pointer;
    margin-top: 2px;
}

.section-title .next_prev_btn {
    text-align: right;
}
.m-t-20 {
    margin-top: 20px;
}

.m-t-10 {
    margin-top: 20px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.filter-by-dates,
.filter-by-sources,
.filter-by-categories {
    position: relative;
}

.section-title .filter-options {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.section-title .filter-options .filter-item {
    padding: 2px 10px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.section-title .filter-options .filter-item.active {
    background: #fff1f1;
    border-radius: 4px;
}


/*---------------------------------------
    # Biography Section
---------------------------------------*/

.biography-wrapper {
    text-align: justify;
    direction: rtl;
    border: 1px solid #ddd;
    padding: 18px;
}

.biography-wrapper .map-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.biography-wrapper .map-title-wrapper {
    position: absolute;
    width: 75%;
    bottom: 0px;
    background: #fff;
    padding: 5px;
    text-align: center;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.biography-wrapper .bio-description {
    margin-top: 18px;
}


/*---------------------------------------
    # Construction Section
---------------------------------------*/

.construction-skeleton .has-height .thumb {
    height: 265px;
}


/*---------------------------------------
    # gallery-wrapper Section
---------------------------------------*/

.gallery-wrapper {
    margin-top: 20px;
}

.image-gallery-wrapper {
    height: 100%;
    padding: 5px;
}

.responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
    transform: scale(1.01);
    cursor: pointer;
}
.responsive-image:hover  {
    transform: scale(1.08);
}
/*---------------------------------------
    # Sport Section
---------------------------------------*/

.sport {
    /* background-color: #f8f8f8; */
    padding: 2.5rem 0 1rem;
    /* margin: 3rem 0rem; */
}

.sport .sport-item {
    background: var(--white-color);
    padding: 12px;
    /* box-shadow: 0px 0px 10px #ddd; */
}

.sport .sport-item .post-footer {
    margin-top: 6px;

}
.sport .sport-item .post-footer .date{
    margin-left: 10px;
    color: var(--dark-gray);
}
.sport .sport-item .post-footer .date i {
    margin-left: 10px;
    /* color: var(--dark-gray); */
}
.btn-details {
    /* background: linear-gradient(90deg, #ffb400 10%, #c88f08 50%); */
    background: var(--main-color);
    border: none;
    color: #fff;
}

 .post-image {
    height: 140px;
}
.w-100 {
    width: 100%;
}
 .post-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

 .post-image-wrapper {
    transition: 0.8s;
    transform: scale(1.01);
    cursor: pointer;
    border: 1px solid var(--border);
    padding: 10px;
    text-align: left;
    /* box-shadow: 0px 2px 4px 1px #ddd; */
    border-radius: 3px;
    margin-top: 2px;
    position: relative;
}
.post-image-wrapper .discount-badge {
    width: 40px;
    height: 40px;
    background: hsl(7.81deg 99.88% 54.81%);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    line-height: 40px;
    text-align: left;
    direction: ltr;
    padding-left: 4px;
    font-size: 11px;
    font-family: cursive;
}

  .post-image-wrapper:hover { 
    transform: scale(1.08);
}

.item-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
}

/*---------------------------------------------
    # Beryani Section
----------------------------------------------*/
/* .cta {
    background-image: url(../images/slider/bg.jpg);
    background-color: var(--mint-cream);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 50px 20px;
} */
.cta-section {
    background: url('../images/breadcumb-bg.jpg') no-repeat center center/cover;
    position: relative;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* dark overlay */
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-title .sub-title {
    color: #fafafa !important;
}
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    color: #fff;
    background-color: #ff6600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #fff;
}

/*---------------------------------------------
        # Beryani Section
----------------------------------------------*/
#beryani {
    background-color: #f1eeee;
    /* padding: 3rem; */
    /* margin: 3rem 0rem; */
    /* margin-top: 3rem; */

}
.beryani {
    background-color: #fff;
    padding: 15px;
} 
/*---------------------------------------
    # Single Post style / common style
---------------------------------------*/

.add-area img {
    width: 100%;
}

.single-post-wrap {
    position: relative;
    margin-bottom: 30px;
    transition: 0.4s;
    direction: ltr;
    text-align: left;
}

.single-post-wrap.gallery {
    position: relative;
    margin-bottom: 20px;
    transition: 0.4s;
}

.single-post-wrap .image-wrapper {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 5px;
}

.single-post-wrap .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
    transform: scale(1.01); 
}

.single-post-wrap .image-wrapper:hover img {
    transform: scale(1.08);
    cursor: pointer;
}

.single-post-wrap .image-wrapper .tag-base {
    position: absolute;
    left: 17px;
    top: 19px;
    z-index: 3;
}

.single-post-wrap .image-wrapper .btn-date {
    position: absolute;
    left: 17px;
    bottom: 19px;
    z-index: 3;
    height: 40px;
    line-height: 41px;
    padding: 0 22px;
    display: inline-block;
    border-radius: 40px;
    background: #fff;
    color: var(--heading-color);
    margin-bottom: 0;
}

.single-post-wrap .image-wrapper .btn-date i {
    margin-right: 5px;
}

.single-post-wrap .post-details .title, .paragraph {
    margin-top: 5px;
    line-height: 24px;
    font-weight: normal;
    color: var(--paragraph-color); 
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.font-13 {
    font-size: 13px !important;
}
.single-post-wrap .post-details p {
    margin-bottom: 0;
    margin-top: 16px;
    color: var(--heading-color);
}

.single-post-wrap .post-details .btn {
    padding: 0 17px;
    height: 44px;
    line-height: 44px;
    font-weight: 400;
}


.single-post-wrap.style-overlay .thumb {
    margin-bottom: 0;
}

.single-post-wrap .has-height {
    height: 172px;
}

.single-post-wrap.style-overlay .thumb img {
    min-height: 119px;
}

.single-post-wrap.style-overlay .thumb:after {
    content: "";
    background: linear-gradient(to top, rgba(32, 22, 84, 0.6) 52%, rgba(0, 0, 100, 0));
    height: 70%;
    left: 0;
    position: absolute;
    bottom: 0;
    border-radius: 5px;
    width: 100%;
    z-index: 3;
    transition: 0.4s;
}

.single-post-wrap.style-overlay .thumb:before {
    content: "";
    background: linear-gradient(to top, rgba(32, 22, 84, 0.38) 52%, rgba(0, 0, 100, 0));
    height: 75%;
    left: 0;
    position: absolute;
    bottom: 0;
    border-radius: 5px;
    width: 100%;
    z-index: 4;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
}

.single-post-wrap.style-overlay .post-details {
    position: absolute;
    bottom: 0;
    padding: 18px 20px;
    z-index: 4;
}

.single-post-wrap.style-overlay .post-details .title {
    color: #fff;
}

.single-post-wrap.style-overlay .post-details .title:hover a {
    color: #ffbe00;
}

.single-post-wrap.style-overlay .post-details p {
    color: #fff;
}

.single-post-wrap.style-overlay:hover .thumb:before {
    visibility: visible;
    opacity: 1;
}

.single-post-wrap.style-overlay-bg .thumb {
    margin-bottom: 0;
}

.single-post-wrap.style-overlay-bg .thumb:after {
    content: "";
    background: linear-gradient(to top, rgba(32, 22, 84, 0.3) 52%, rgba(0, 0, 100, 0));
    height: 70%;
    left: 0;
    position: absolute;
    bottom: 0;
    border-radius: 5px;
    width: 100%;
    z-index: 3;
    transition: 0.4s;
}

.single-post-wrap.style-overlay-bg .thumb:before {
    content: "";
    background: linear-gradient(to top, rgba(32, 22, 84, 0.38) 52%, rgba(0, 0, 100, 0));
    height: 75%;
    left: 0;
    position: absolute;
    bottom: 0;
    border-radius: 5px;
    width: 100%;
    z-index: 4;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
}

.single-post-wrap.style-overlay-bg .post-details {
    position: absolute;
    bottom: 0;
    padding: 18px 18px;
    z-index: 4;
    margin: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.single-post-wrap.style-overlay-bg:hover .thumb:before {
    visibility: visible;
    opacity: 1;
}

.single-post-wrap.style-box {
    border-radius: 5px;
    overflow: hidden;
    background: #fafafa;
}

.single-post-wrap.style-box .thumb {
    margin-bottom: 0;
    border-radius: 0;
}

.single-post-wrap.style-box .post-details {
    padding: 25px;
}

.single-post-wrap.style-box:hover {
    box-shadow: 0px 2px 5px 0px #e3e0e0
}

.single-post-wrap.has-shadow {
    border: 1px solid #ddd;
    box-shadow: 1px 2px 5px 0px #ddd;
    border-radius: 8px;
}

.single-post-wrap.has-shadow .details {
    padding: 0px 20px 20px;
    min-height: 95px;
}
.single-post-wrap.has-shadow .details a{
    color: var(--paragraph-color);
}
.single-post-wrap.has-shadow .details a{
    color: var(--paragraph-color);
}
.single-post-wrap.has-shadow .details .title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #565353;
}

/* ----------- medial ----- */

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    justify-content: center;
}

.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}


/*****single-post-list-wrap*****/

.single-post-list-wrap {
    padding-bottom: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #d0cfcf;
}

.single-post-list-wrap:last-child {
    border-bottom: none;
}

.single-post-list-wrap .media-left {
    position: relative;
}

.single-post-list-wrap .play-btn-small {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    z-index: 5;
}

.single-post-list-wrap .media .media-left {
    margin-right: 13px;
    margin-right: 13px;
    height: 75px;
    width: 95px;
    overflow: hidden;
}

.single-post-list-wrap .media img {
    border-radius: 5px;
}

.single-post-list-wrap .media .media-body .single-post ul li {
    font-size: 14px;
    color: var(--heading-color);
}

.single-post-list-wrap .media .media-body h6 {
    margin-bottom: 0;
}

.single-post-list-wrap .media .media-body p {
    margin-bottom: 0;
}


/*------------------------------------------------
    # Page Not Found 
------------------------------------------------*/

.page-not-found-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.text-danger {
    color: var(--secondary-color);
}


/*------------------------------------------------
    # Footer Section
------------------------------------------------*/

.footer-area {
    /* background: hsl(42deg 100% 18.23%); */
    /* background: var(--menu-bg-color); */
    background: hsl(0deg 0% 0% / 90%);
    padding: 50px 0px 0px 0px;
    margin-top: 25px;
    text-align: right;
    direction: rtl;
    border-top: 6px solid #e8a503;
}

.footer-area .container {
    background: url(../images/footer_bg.png);
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-blend-mode: darken;
    background-clip: content-box;
    background-size: cover;
}

.footer-area .widget {
    margin-bottom: 35px;
    text-align:left;
    direction: ltr;
}

.footer-area .widget-title {
    color: #fff;
    margin-bottom: 27px;
    font-weight: 500;
    text-align:left;
    direction: ltr;
}

.footer-area .widget-title.has-bottom-line::after {
    content: "";
    position: absolute;
    top: 32px;
    width: 112px;
    border-bottom: 1px solid #b6b6b6;
    left: 16px;
}

.footer-area .widget_about {
    margin-top: -7px;
}

.footer-area .widget_about p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-area .contact_info_list {
    margin: 0;
    padding: 0;
}

.footer-area .contact_info_list li {
    list-style: none;
    color: #fff;
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
}

.footer-area .contact_info_list li a:hover { color: #fff; }

.footer-area .contact_info_list li i {
    position: absolute;
    left: 0;
    top: 7px;
}

.footer-area .contact_info_list li:last-child {
    margin-bottom: 0;
}

.footer-top {
    padding-bottom: 80px;
}

.footer-top .social-area {
    margin-top: 42px;
}

.footer-top .widget_nav_menu {
    margin-top: 33px;
}

.footer-top .widget_nav_menu li:after {
    display: none;
}

.footer-bottom {
    padding: 15px 0;
    background: hsl(42deg 5.99% 20.89%);
    /* background: var(--secondary-color); */
}

.footer-bottom p {
    color: rgb(255 255 255 / 78%);
    margin-bottom: 0;
    margin-top: 5px;
}

.widget_nav_menu {
    margin: 0;
    padding: 0;
}

.widget_nav_menu li {
    display: inline-block;
    position: relative;
    padding: 0 15px 0 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.widget_nav_menu li:after {
    content: "|";
    position: absolute;
    right: 0;
    top: 0px;
}

.widget_nav_menu li:before {
    display: none;
}

.widget_nav_menu li:first-child {
    padding-left: 0;
}

.widget_nav_menu li:last-child {
    padding-right: 0;
}

.widget_nav_menu li:last-child:after {
    display: none;
}

@keyframes move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
    }
}

.back-to-top-wrapper {
    width: 100%;
    text-align: left;
    direction: ltr;
}

.back-to-top {
    padding: 10px;
    background: #c05006;
    margin-bottom: 15px;
    color: #fff;
    cursor: pointer;
    animation: move 2s ease-in-out infinite alternate;
    width: 45px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* === Error Message === */

.errorMessage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    color: red;
    padding: 10px;
}


/*------------------------------------------------
    # Searched Page 
------------------------------------------------*/

.searchedpage-wrapper .mesagebox {
    border-bottom: 1px solid #DDD;
    padding: 10px;
    margin: 10px 0px 20px 0px;
    font-size: 1.1rem;
    direction: ltr;
    text-align: left;
}

.searchedpage-wrapper .container {
    text-align: left;
    direction: ltr;
}

.searchedpage-wrapper .single-post-wrap.style-overlay .details {
    position: absolute;
    bottom: 0;
    padding: 18px 20px;
    z-index: 4;
}

.searchedpage-wrapper .single-post-wrap.style-overlay .details .title,
.single-post-wrap.style-overlay .details p {
    color: var(--white-color);
    inline-size: 190px;
    overflow-wrap: break-word;
}

.searchedpage-wrapper .single-post-wrap .details .title {
    margin-bottom: 0;
}

.searchedpage-wrapper .media-body .title a {
    color: #11119d !important;
    font-size: 1.1rem;
}

.searchedpage-wrapper .single-post-wrap .details .title a:hover {
    color: var(--secondary-color) !important;
}

.searchedpage-wrapper .post-meta-single i {
    margin-right: 10px;
}

.searchedpage-wrapper .media-body .date-content {
    line-height: 40px;
}

.searchedpage-wrapper .searchpage-search-wrapper {
    width: 100%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding-right: 0px
}

.searchedpage-wrapper .searchpage-search-wrapper input
{
    width: 100%;
    border: none;
    padding: 10px;
}
.searchedpage-wrapper .searchpage-search-wrapper button
{
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    z-index: -1;
}
.searchedpage-wrapper .searchpage-search-wrapper button.small-search
{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.searchedpage-wrapper .searchpage-search-wrapper .search-loading 
{
    padding: 5px 20px;
}


.searchedpage-wrapper .searchpage-search-wrapper .icon {
    top: 9px;
}
.search-post-wrapper .search-image-wrapper {
    height: 173px;
    padding: 0px; 
}
.search-post-wrapper .search-image-wrapper img {
    height: 100%; width:100%; object-fit: cover;
   
}
.search-post-wrapper .search-image-wrapper.used-skeleton {
    height: 173px;
    padding: 0px; 
    margin-top: -6px;
}

.search-post-wrapper {
    box-shadow: 0px 0px 4px 0px #999;
    display: flex;
    margin-bottom: 20px;
    transition: 0.5s ease-in-out;
    transform: scale(1);
    overflow: hidden;
}

.search-post-wrapper:hover {
    transform: scale(1.05);
}

.next-prev-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.next-prev-btn .pageNumber {
    padding: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 50px;
    margin-top: -20px;
}

.next-prev-btn .btn {
    border-radius: 3px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    padding: 7px 14px;
    margin-bottom: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 13px;
}

.next-prev-btn .prev:hover,
.next-prev-btn .next:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

button[disabled=disabled],
button:disabled,
.next-prev-btn:disabled {
    cursor: not-allowed;
    border: 1px solid #ddd;
}


/*------------------------------------------------
    # Signin and Signup
------------------------------------------------*/

.signin-wrapper,
.singup-wrapper {
    background: #f6f5f7;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.signin-container,
.signup-container {
    width: 380px;
    margin-top: 6%;
    transition: all 0.6s ease-in-out;
    padding: 30px;
    background-color: var(--white-color);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.signin-btn,
.signup-btn {
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}

.signin-btn:active,
.signup-btn:active {
    transform: scale(0.95);
}

.signin-btn:focus,
.signup-btn:focus {
    outline: none;
}

.signin-btn.ghost,
.signup-btn.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.signin-form,
.signup-form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 20px;
    height: 100%;
    text-align: center;
    min-width: 300px;
}

.signin-form input,
.signup-form input {
    background-color: #eee;
    border: none;
    padding: 8px 15px;
    margin: 8px 0;
    width: 100%;
}

.signin-form .error,
.signup-form .error {
    color: red;
    font-size: 16px;
}

.fa-2px {
    font-size: 40px;
    float: right;
    margin-left: 10px;
    color: var(--main-color);
}
.date {
    display: flex;
    align-items: center;
}


/*------------------------------------------------
    # Details Section
------------------------------------------------*/
.details-section .container {
    direction: rtl;
    text-align: right;
    margin-bottom: 100px;
}
.related-posts {
    margin-top: 40px;
}
.m-t-20{
    margin-top: 20px;
}
.details-section .image-wrapper {
    position: relative;
    /* height: 197px; */
}
.details-section .image-wrapper img{
    border-radius: 5px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.details-section .image-wrapper .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    opacity: 0;
    transform: scale(1.2);
    transition: 0.4s;
}

.details-section .image-wrapper .image-overlay:hover {
       opacity: 1;
       -webkit-transform: scale(1);
       -ms-transform: scale(1);
       transform: scale(1);
}


/*----------------------------------------------------
  Video ( Youtube Playlist )
------------------------------------------------------ */
.youtube {
    margin-bottom: 50px;
}
.playlist-wrapper  {
    background-color: #f2f2f2;
}
.playlist-wrapper .video-wrapper {
    padding: 30px;
    min-height: 300px;
    /* background-color: #f2f2f2; */
}
.playlist-wrapper .video-wrapper .no-video {
    height: 340px;
    /* background-color: #f2f2f2; */
}


.playlist-wrapper .video-list {
    padding: 30px 20px 30px 1px;
    /* background-color: #f2f2f2; */
}
.playlist-wrapper .video-list ul {
    list-style-type: none;
    text-align: right;
    height: 342px;
    overflow-y: scroll;
    padding: 0px;
}
.playlist-wrapper .video-list li {
    padding: 8px 10px 8px 0px;
    margin-right: 20px;
    border-bottom: 1px solid #d8d5d5;
    cursor: pointer;
    transition: .6s;
  }

.playlist-wrapper   .video-list li:hover {
    background-color: #fafafa;
  }
  .p0 {
      padding: 0px !important;
  }
  iframe {
      width: 100% !important;
  }
  .ltr {
    text-align: left;
    direction: ltr;
  }
  .container {
      text-align: left !important;
      direction: ltr !important;
  }

  /* ------------- Details Page ------------------- */

  .product-page {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 12px auto;
    padding: 0  20px;
  }
  
  .sidebar {
    flex: 1 1 250px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
  }
  
  .sidebar h3 {
    margin-bottom: 15px;
  }
  
  .sidebar input[type="range"] {
    width: 100%;
    margin: 10px 0;
  }
  
  .sidebar .price-range-value {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .product-details {
    flex: 2 1 700px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .product-image {
    flex: 0 0 350px;
  }
  
  .product-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  .product-info {
    flex: 1 1 300px;
  }
  
  .product-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .product-info .price {
    font-size: 1.5rem;
    color: #007BFF;
    margin-bottom: 20px;
  }
  
  .product-info .description {
    margin-bottom: 20px;
    color: #555;
  }
  
  .add-to-cart {
    padding: 12px 30px;
    background: var(--main-color);
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .add-to-cart:hover {
    background: var(--secondary-color);
  }
  
  .quantity-selector {
    display: flex;
    align-items: center;
    margin: 20px 0;
  }
  
  .quantity-selector input {
    width: 50px;
    text-align: center;
    font-size: 1rem;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 0;
  }
  
  .qty-btn {
    color: var(--main-color);
    border: none;
    padding: 5px 14px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .qty-btn:hover {
    /* background: #0056b3; */
  }

  .specification ul{
      list-style-type: none;
      border-top: 1px solid #ebebeb;
      padding-top: 10px;
      margin-top: 20px;
  }
  .specification ul li {
    font-size: 16px;
    color: #1c1c1c;
    list-style: none;
    line-height: 36px;
  }

  .specification ul li b{
    margin-right: 20px;
  }

  @media (max-width: 768px) {
    .product-page {
      flex-direction: column;
    }
    .product-details {
      flex-direction: column;
    }
  }
  .line-break {
    display: block;
    height: 6px; /* control height */
  }
  .title {
      color: var(--main-color);
  }
  .item_title {
      color: var(--secondary-color);
      font-size:bold;
  }