*,::after,::before{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior: smooth;
}

:root{
    --transparent: transparent;
    --Assistant: 'Assistant', sans-serif;
    --color-white:#fff;
    --full-dark:#111827;
    --dark-color:#1f2937;
    --color-cyan: #06b6d4;
    --text-color: #f9fafb;
    --para-color:#9ca3af;
}

.wrapper{
    overflow: hidden;
}


 body {
     font-family: 'Assistant', sans-serif;
     background-color: #fff;
    direction: rtl;
}

.dark-mode {
     background-color: #111827;
     color: #f9fafb;
}
 .dark-mode .bg-white {
     background-color: #1f2937;
}
 .dark-mode .bg-gray-100 {
     background-color: #374151;
}
 .dark-mode .text-gray-800 {
     color: #f9fafb;
}

.dark-mode .font-bold{
    font-weight: 700;
}

.dark-mode .text-3xl {
    font-size: 1.5rem;
    line-height: 2.25rem;
}

 .dark-mode .text-gray-600 {
     color: #d1d5db;
}
 .dark-mode .text-gray-500 {
     color: #9ca3af;
}
 .dark-mode .border-gray-200 {
     border-color: #4b5563;
}
 .dark-mode nav {
     background-color: #1f2937;
}

.dark-mode .rounded-lg {
    border-radius: 0.5rem;
}

.dark-mode .p-4 {
    padding: 1rem;
}

.dark-mode .shadow{
  /*  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);*/

    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;

}

.news-ticker {
     width: 100%;
     overflow: hidden;
     background-color: #1f2937;
     color: white;
     padding: 8px 0;
}
 .news-ticker-content {
     display: inline-block;
     white-space: nowrap;
     animation: ticker 40s linear infinite;
     padding-right: 100%;
}




/* Light Mode */
.light-mode {
    background-color: #f3f4f6;
    color: #1f2937;
}

.light-mode .bg-white {
   background-color: #f3f4f6;
}

.light-mode .bg-gray-100 {
    background-color: #fff;
}

.light-mode .text-gray-800 {
    color: #1f2937;
}

.light-mode .font-bold {
    font-weight: 700;
}

.light-mode .text-3xl {
    font-size: 1.5rem; /* Tailwind's default */
    line-height: 2.25rem;
}

.light-mode .text-gray-600 {
    color: #4b5563;
}

.light-mode .text-gray-500 {
    color: #6b7280;
}

.light-mode .border-gray-200 {
    border-color: #e5e7eb;
}

.light-mode nav {
   background-color: #f3f4f6;
}

.light-mode .rounded-lg {
    border-radius: 0.5rem;
}

.light-mode .p-4 {
    padding: 1rem;
}

.light-mode .shadow {
  /*  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), 
                var(--tw-ring-shadow, 0 0 #0000), 
                var(--tw-shadow);*/

    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;

}

.light-mode .news-ticker {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    color: #111827;
    padding: 8px 0;
}

.light-mode .news-ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    padding-right: 100%;
}





/* .dark-mode a:hover {
     background-color: #374151;
}*/
 /*.dark-mode .current-menu-item a {
     background-color: var(--color-cyan);
     color: white;
}*/
 /*.active-nav {
     background-color: var(--color-cyan);
     color: white;
     font-weight: 700;
}*/

/*.content-section {
     display: none;
}
 .content-section.active {
     display: block;
}*/

/* @keyframes ticker {
     0% {
         transform: translateX(0%);
    }
     100% {
         transform: translateX(-100%);
    }
}*/
/* .news-item {
     display: inline-block;
     margin: 0 2rem;
}
*/


ul,ol{
    list-style:none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    height:auto;
    object-fit: contain;
    object-position: center;
}

p,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

.desktop{
    display: inline-block;
}

.mobile{
    display: none;
}


/*------------- GLOBAL CSS -----------------*/

.heading-title-main{
    padding-bottom: 30px;
    width: 100%;
    font-family: var(--Assistant);
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid var(--color-cyan);
}


/*-------------- GLOBAL CSS -----------------*/



/* ---------- Header CSS -------------------- */

header{
    position: sticky;
    top: 0;
    z-index: 99 !important;
    width: 100%;
    background-color: var(--dark-color);
}

.light-mode header{
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

header .navigation{
    /*padding: 10px 0;*/
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

header .logo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

header .logo img{
    height: auto;
    width: 100px;
}


header .nav,
header .phone-global{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

header .nav li{
    --tw-space-x-reverse: 1;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

header .nav li.current-menu-item a{
   background-color: var(--color-cyan);
   color: var(--color-white);
}

.light-mode header .nav li.current-menu-item a{
   background-color: var(--color-cyan);
   color: var(--color-white) !important;
}

header .nav li a{
    padding: 0.5rem 0.75rem;
    font-family: var(--Assistant);
    color: var(--color-white);
    border-radius: 0.375rem;
    font-weight: 500;
    background-color: var(--transparent);
    /*font-size: 0.875rem;*/
    font-size: 1rem;
    line-height: 1.25rem;
    transition: all 0.5s ease;
}

.light-mode header .nav li a:hover{
    background-color: var(--color-cyan);
}

.light-mode header .nav li a{
    color: #1f2937;
}

header .nav li a:hover{
    background-color: #374151;
}

.light-mode header .nav li a:hover{
    color: #f3f4f6;
}

header .toggle-menu{
    display: none;
}

.light-mode header .toggle-menu{
    color: #1f2937;
}

/* ---------- Header CSS -------------------- */





/* ---------- Footer CSS -------------------- */

footer{
    position: relative;
    background-color: var(--dark-color);
    box-shadow: 0px -5px 14px -9px rgba(0,0,0,0.22);
    margin-top: 50px;
}

.light-mode footer{
    background-color: #fff;
}

footer .footer-nav{
    padding-top: 70px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: start;
    justify-content: space-between;
    margin: 0 auto !important;
}

footer .footer-img img{
    height: auto;
    width: 150px;
}

footer .footer-nav .footer-links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer-nav .footer-links h6{
    font-family: var(--Assistant);
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.light-mode footer .footer-nav .footer-links h6{
    color: #1f2937;
}

footer .footer-nav .footer-links ul li{
    margin: 10px 0;
}

footer .footer-nav .footer-links a{
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--Assistant);
    transition: all 0.5s ease;
}

.light-mode footer .footer-nav .footer-links a{
    color: #1f2937;
}


footer .footer-nav .footer-links a:hover{
    color: var(--color-cyan);
}


footer .social-icons{
    padding: 30px 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: transparent;
    box-shadow: 0px 0px 14px -9px rgba(0,0,0,0.22);
}

footer .social-icons i{
    font-size: 20px;
    color: var(--text-color);
    background-color: var(--color-cyan);
    border: 1px solid transparent;
    padding: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.light-mode footer .social-icons i{
    color: #1f2937;
    background-color: var(--color-white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

footer .social-icons i:hover{
    background-color: transparent;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);;
}


/* ---------- Footer CSS -------------------- */



/* ---------- Home Banner CSS -------------------- */

.home-banner{
    position: relative;
    margin: 30px auto;
}

.home .home-banner{
    margin-top: 0;
}

.home-banner .home-article-container{
    position: relative;
    display: inline-block;
    width: 100%;
}

.home-banner .home-article-container .home-article-content{
    display: flex;
    flex-direction: column;
    /*gap: 30px;*/
    gap: 20px;
    border-radius: 10px;
    padding-top: 0;
    height: 100%;
}

.home-banner .home-article-content .home-article-image a{
    height: 100%;
    width: 100%;
    display: inline-block;
}


.home-banner .home-article-content .home-article-image img{
    /*min-height: 400px;*/
    min-height: auto;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px 10px 0 0;
}

.home-banner .home-article-content .home-article-text{
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
    gap: 0;
    /*padding: 0 30px;*/
    padding: 0 20px;
    padding-bottom: 20px;
}  


.home-banner .home-article-content .home-article-text a{
    font-family: var(--Assistant);
    min-height: 70px;
}

.home-banner .home-article-content .home-article-text a:hover{
    background-color: transparent;
}

.home-banner .home-article-content .home-article-text a h2{
    line-height: 1.3;
     font-family: var(--Assistant);
     height: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-banner .home-article-content .home-article-text p{
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--Assistant);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-banner .home-article-content .home-article-text ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    direction: ltr;
}

.home-banner .home-article-content .home-article-text ul li {
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--Assistant);
    direction: ltr;
}

.light-mode .home-banner .home-article-content .home-article-text ul li{
    color: #1f2937;
}

.home-banner .home-article-content .home-article-text ul li:nth-child(n+3) {
  opacity: 0.6;
}


/* ---------- Home Banner CSS -------------------- */


/*----------- Market Crypto CSS -------------------*/

.light-mode .tradingview-widget-container{
    background-color: #fff;
}

.market-crypto{
    position: relative;
    margin: 30px auto;
}

.market-crypto .tradingview-widget-container{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
    background-color: #1f2937 !important;
}

.light-mode .market-crypto .tradingview-widget-container{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
    background-color: #fff !important;
}

.market-crypto .crypto-carousel {
    position: relative;
    margin-top: 60px;
}

.market-crypto .crypto-carousel .crypto-card {
    overflow: hidden;
    margin: 0px;
    padding: 20px 20px;
    background-color: #1f2937;
}

.light-mode .market-crypto .crypto-carousel .crypto-card{
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.page-template-capital-market .market-crypto .crypto-carousel .crypto-card{
   background-color: #06b6d4 !important;
}

.market-crypto .crypto-carousel .crypto-card h2{
   display: -webkit-box;
  -webkit-line-clamp: 2;    
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;  
  margin-bottom: 10px !important;
  font-weight: 600;
  font-size: 25px;
}

.light-mode .market-crypto .crypto-carousel .crypto-card h2{
    color: #fff !important;
}

.market-crypto .crypto-carousel .crypto-card p{
   display: -webkit-box;
  -webkit-line-clamp: 4;    
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;  
  color: #ffff;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.market-crypto .crypto-carousel .crypto-img {
    height: 280px;
}

.market-crypto .crypto-carousel .crypto-img img{
    height: 100%;
    object-fit: cover;
}


.market-crypto .crypto-carousel .owl-stage-outer{
    padding-bottom: 50px !important;
    padding-top: 50px !important;
}

.crypto-market-slider .crypto-carousel .owl-stage-outer{
    padding-bottom: 0px !important;
}

.crypto-market-slider{
    margin-top: 0;
}

.crypto-market-slider .crypto-carousel{
    margin-top: 30px;
}

.market-crypto .crypto-carousel .owl-nav {
    text-align: center;
    position: absolute;
    right: 0;
    top: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-crypto .crypto-carousel .owl-nav button {
    background: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 5px;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-mode .market-crypto .crypto-carousel .owl-nav button{
    background-color: #f3f4f6 !important;
    color: #1f2937 !important;
}

.market-crypto .crypto-carousel .owl-nav button i{
    font-size: 12px;
}

.market-crypto .crypto-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.market-crypto .crypto-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background: #1f2937 !important;
}

.market-crypto .crypto-carousel .owl-dots button.owl-dot.active {
     background: var(--color-cyan) !important;
}



/* RTL Adjustments for Crypto Carousel */
[dir="rtl"] .market-crypto .crypto-carousel .owl-nav {
    direction: ltr; /* Keep nav buttons direction normal */
}

[dir="rtl"] .market-crypto .crypto-carousel .owl-stage-outer {
    direction: ltr; /* This helps with the sliding animation */
}

[dir="rtl"] .market-crypto .crypto-carousel {
    direction: rtl; /* Main content direction */
}

[dir="rtl"] .market-crypto .crypto-carousel .crypto-content {
    text-align: right; /* Align text to right for RTL */
}

[dir="rtl"] .market-crypto .crypto-carousel .crypto-meta {
    flex-direction: row-reverse; /* Reverse meta items */
}

/*----------- Market Crypto CSS -------------------*/



/*---------------- CRYPTO CSS ----------------*/


.crypto-section {
    position: relative;
    margin: 30px auto;
}

.crypto-section .crypto-grid{
   position: relative;
   margin-top: 60px;
}


.crypto-section .crypto-grid .crypto-card {
    width: 100%;
    overflow: hidden;
    background-color: #1f2937 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-mode .crypto-section .crypto-grid .crypto-card{
    background-color: #fff !important;
}

.crypto-section .crypto-grid .crypto-card .tradingview-widget-container,
.market-crypto .crypto-card .tradingview-widget-container{
    border: none !important;
    outline: none !important;
    width: 100% !important;
    padding-top: 20px;
    transform: scale(1);
    transition: all 0.5s ease;
}

.crypto-section .crypto-grid .crypto-card .tradingview-widget-container iframe,
.market-crypto .crypto-card .tradingview-widget-container iframe{
    transition: all 0.5s ease;
    overflow: hidden;
}

.crypto-section .crypto-grid .crypto-card .tradingview-widget-container:hover iframe,
.market-crypto .crypto-card .tradingview-widget-container:hover iframe{
    transform: scale(1.03);
}


.graph-grid .tradingview-widget-container{
    transform: scale(1);
    transition: all 0.5s ease;
}

.graph-grid .tradingview-widget-container:hover{
    transform: scale(1.03);
}

.market-crypto .crypto-carousel .crypto-card > h4,
.crypto-section .crypto-grid .crypto-card > h4{
    font-size: 24px;
    font-family: var(--Assistant);
    padding: 0px 15px 20px 0;
    font-weight: 700;
    border-bottom: 1px solid var(--color-cyan);
}

.crypto-section .crypto-grid .crypto-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.crypto-section .crypto-grid .crypto-img {
    height: 180px;
    overflow: hidden;
    background: var(--transparent);
}

.crypto-section .crypto-grid .crypto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/*---------------- CRYPTO CSS ------------------*/




/*-------------- REAL ESTATE PAGE ------------------*/


.real-estate-section{
    position: relative;
    margin: 30px auto;
    margin-top: 0;
}


.real-estate-section .real-estate-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.real-estate-section .top-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row-reverse;
}

.real-estate-section .top-section .top-box {
    max-width: 25%;
    flex: 0 0 25%;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.real-estate-section .top-section .top-box.half-box{
    max-width: 45%;
    flex: 0 0 45%;
}

.real-estate-section .top-section .top-box h2{
    margin-bottom: 10px;
    font-size: 30px;
    font-family: var(--Assistant);
}

.real-estate-section .top-section .top-box p{
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
}


/*--------------- Calcuator CSS ------------------*/

.calculator-section{
   position: relative;
   margin: 30px auto;
}

.calculator-section .mortgage-calculator{
    /*box-shadow: 0 0 30px #00000026;*/
    border-top-right-radius: 0;
    max-width: 891px;
    padding: 30px 48px 50px 48px;
    margin: 60px auto 20px auto;
    text-align: right;
}

.calculator-section .mortgage-calculator .calculator-title{
    text-align: right;
    font-weight: 700;
    display: block; 
    padding-top: 7px;
    font-size: 24px;
    font-family: var(--Assistant);
}

.calculator-section .mortgage-calculator .input-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px auto 35px auto;
}

.calculator-section .mortgage-calculator .input-fields .input-group{
    padding: 10px;
    border: 1px solid var(--color-cyan);
    border-radius: 10px;
    font-family: var(--Assistant);
}

.calculator-section .mortgage-calculator .input-fields .input-group label{
    padding-top: 8px;
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    font-family: var(--Assistant);
    flex: 1;
}

.light-mode .calculator-section .mortgage-calculator .input-fields .input-group label{
    color: #1f2937;
}

.calculator-section .mortgage-calculator .input-fields .input-group input[type=text]{
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    padding: .3em .35em;
    line-height: 1.618em;
    width: 100%;
    color: var(--text-color);
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    max-height: 40px;
    font-family: var(--Assistant);
}

.light-mode .calculator-section .mortgage-calculator .input-fields .input-group input[type=text]{
    color: #1f2937;
}

.calculator-section .mortgage-calculator .input-fields .input-group input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: transparent;
  border: 2px solid var(--color-cyan);
  border-radius: 10px;
  outline: none;
  margin: 10px 0;
  position: relative;
  direction: ltr !important;
  text-align: left;
  cursor: pointer;
}

/* Chrome, Safari, Edge - Track */
.calculator-section .mortgage-calculator .input-fields .input-group input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  background: transparent;
  border-radius: 10px;
}

/* Chrome, Safari, Edge - Thumb */
.calculator-section .mortgage-calculator .input-fields .input-group input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -6px;
  border-radius: 50%;
  background: var(--color-cyan);
  border: 3px solid var(--text-color);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.calculator-section .mortgage-calculator .input-fields .input-group input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Firefox - Track */
.calculator-section .mortgage-calculator .input-fields .input-group input[type=range]::-moz-range-track {
  height: 10px;
  background: transparent;
  border-radius: 10px;
  border: none;
}

/* Firefox - Thumb */
.calculator-section .mortgage-calculator .input-fields .input-group input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-cyan);
  border: 3px solid var(--text-color);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.calculator-section .mortgage-calculator .input-fields .input-group input[type=range]::-moz-range-thumb:hover {
  transform: scale(1.15);
}

/* Range fill styling */
.calculator-section .mortgage-calculator .input-fields .input-group .range-container {
  position: relative;
  width: 100%;
}

.calculator-section .mortgage-calculator .input-fields .input-group .range-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  background: var(--color-cyan);
  border-radius: 10px 0 0 10px;
  pointer-events: none;
  margin-top: 10px;
  z-index: 0;
}



.calculator-section .mortgage-calculator .calculate-button{
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.calculator-section .mortgage-calculator .calculate-button button {
    cursor: pointer;
    background: url('https://skyisblue.dazzlebirds.com/wp-content/uploads/2025/06/down-filled-triangular-arrow-2.png') center left 11px no-repeat,
                var(--color-cyan);
    color: var(--color-white);
    border-radius: 8px;
    box-shadow: none;
    width: 100%;
    max-width: 350px;
    display: inline-block;
    transition: .3s all;
    padding: 10px 10px 10px 40px;
    line-height: 1.618em;
    font-size: 20px;
    border: none;
}


/*.calculator-section .mortgage-calculator .mortgage-plans{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.calculator-section .mortgage-calculator .mortgage-plans .plan{
    background: var(--full-dark);
    padding: 10px;
    border-radius: 8px;
    position: relative;
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-number{
    margin-bottom: -33px;
    margin-right: 23px;
    margin-top: 3px;
    color: var(--text-color);
    max-width: 100%;
    flex: 1;
    font-weight: 600;
    font-family: var(--Assistant);
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .remove-plan {
    display: flex;
    justify-content: left;
    margin-bottom: -17px;
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .remove-plan img{
    margin-left: 10px;
    margin-top: 10px;
    width: 17px;
    z-index: 9;
    cursor: pointer;
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields{
    display: grid;
    grid-template-columns: 10% 20% 20% 10% 10% 25%;
    gap: 9px;
    align-items: end;
    padding: 0 17px 17px;
    font-family: var(--Assistant);
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields div{
    text-align: center;
    font-family: var(--Assistant);
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields label{
    margin: 0;
    padding: 0;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    font-family: var(--Assistant);
    padding-bottom: 5px;

}

.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields input,
.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields select{
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    font-family: var(--Assistant);
    width: 100%;
    background: var(--color-cyan);
    color: var(--text-color);
    border: 2px solid transparent;
    border-radius: 8px;
    height: 50px;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    -webkit-appearance: none;
    padding: .3em .35em;
    line-height: 1.618em;
    transition: all 0.5s ease;
}



.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields input:focus,
.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields select:focus{
    background: none;
    color: var(--text-color);
    border: 2px solid var(--color-cyan);
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields select option{
    color: var(--dark-color);
}

.calculator-section .mortgage-calculator .mortgage-plans .plan .plan-fields input.monthly-payment{
    background: var(--dark-color);
    color: var(--text-color);
    border: 3px solid var(--color-cyan);
    font-weight: 700;
}

.calculator-section .mortgage-calculator .add-plan{
    font-size: 19px;
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
    font-family: var(--Assistant);
}

.calculator-section .mortgage-calculator .add-plan span{
    font-size: 28px;
    color: var(--color-cyan);
    font-weight: 700;
}*/

/*.calculator-section .mortgage-calculator .results {
    max-width: 570px;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(95, 30, 0, .15);
    border-radius: 8px;
    border: 2px solid var(--color-cyan);
}

.calculator-section .mortgage-calculator .results .results-grid{
    padding: 15px 0;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 8px;
    background-color: var(--full-dark);
}


.calculator-section .mortgage-calculator .results .results-grid .result-row{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.calculator-section .mortgage-calculator .results .results-grid .result-label{
   color: var(--para-color);
   font-family: var(--Assistant);
   line-height: 1.618em;
   font-weight: 400;
   font-size: 16px;
}

.calculator-section .mortgage-calculator .results .results-grid .result-value {
    text-align: center;
    font-size: 17px;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--Assistant);
}*/

.real-estate-price-section .real-estate-price-container .real-price-estate-box {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
    padding: 0 30px;
    padding-bottom: 30px;
}

.real-estate-price-section .real-estate-price-container .real-price-estate-box .home-article-text{
    width: calc(100% / 3 - 10px);
    gap: 5px;
    padding: 10px;
}

.real-estate-price-section .real-estate-price-container .home-article-text {
    gap: 10px;
}

.real-estate-price-section .real-estate-price-container .home-article-text .rate-increase{
    font-weight: 600;
}

.real-estate-price-section .real-estate-price-container .home-article-content{
    height: 100%;
    justify-content: space-between;
}



/*---------- NEW CSS FOR CALC--------------*/



.calculator-section .mortgage-calculator #plans {
  font-family: var(--Assistant);
  flex-direction: column;
  gap: 24px;
  margin: 40px auto 0 auto;
  padding: 20px 0;
  border-radius: 16px;
  color: white;
  display: none;
}

.calculator-section .mortgage-calculator #plans .plan {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  margin-bottom: 30px;
}

.light-mode .calculator-section .mortgage-calculator #plans .plan{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
    background-color: #fff;

}

.calculator-section .mortgage-calculator #plans .plan-fields {
  gap: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 30px;
}

.calculator-section .mortgage-calculator #plans .plan-fields div {
  display: flex;
  flex-direction: column;
  width: calc(100% / 7 - 14px);
}

.calculator-section .mortgage-calculator #plans label {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-white);
  font-weight: 600;
}

.light-mode .calculator-section .mortgage-calculator #plans label {
    color: #1f2937;
}

.calculator-section .mortgage-calculator #plans input,
.calculator-section .mortgage-calculator #plans select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #374151;
  color: white;
  font-size: 15px;
  outline: none;
  transition: border 0.3s, background 0.3s;
  width: 100%;
}

.light-mode .calculator-section .mortgage-calculator #plans input,
.light-mode .calculator-section .mortgage-calculator #plans select{
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.calculator-section .mortgage-calculator #plans input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

.calculator-section .mortgage-calculator #plans input[type=number]::-webkit-inner-spin-button,
.calculator-section .mortgage-calculator #plans input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none; /* Chrome, Safari, Edge */
  margin: 0;
}


/*.calculator-section .mortgage-calculator #plans select{
    padding: 10px 12px !important;
}
*/
.calculator-section .mortgage-calculator #plans select option{
    background-color:#fff;
    color:#000;
}

.calculator-section .mortgage-calculator #plans input:disabled {
  background-color: #374151;
  color: #fff;
  opacity: 0.4;
}

.light-mode .calculator-section .mortgage-calculator #plans input:disabled{
    background-color: #d3d3d3;
    color: #1f2937;
}

.calculator-section .mortgage-calculator #plans input:focus,
.calculator-section .mortgage-calculator #plans select:focus {
  border-color: var(--color-cyan);
  background-color: transparent;
}

.calculator-section .mortgage-calculator #plans select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23ccc" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
}



.calculator-section .mortgage-calculator #summary {
  font-family: var(--Assistant);
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 0px;
  color: white;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: none;
}

.light-mode .calculator-section .mortgage-calculator #summary{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
    background-color: #fff;

}

.calculator-section .mortgage-calculator #summary p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.light-mode .calculator-section .mortgage-calculator #summary p{
    color: #1f2937;
}

.calculator-section .mortgage-calculator #summary strong {
  color: var(--color-cyan);
  font-weight: 600;
  font-size: 17px;
}




/*---------- NEW CSS FOR CALC--------------*/


/*-------------- REAL ESTATE PAGE ------------------*/



/*------------- NEW CSS ----------------*/


.dashboard-section {
    margin: 30px auto;
    position: relative;
}
 
/* Sections spacing */
.stock-news-slider,
.crypto-section,
.private-companies-section {
    margin-bottom: 40px;
}
 
/* Company Grid - 4 columns on desktop */
.company-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}
 
.company-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}
 
.company-card:hover {
    transform: translateY(-5px);
}
 
.company-card h3 {
    background: #2c3e50;
    color: white;
    margin: 0;
    padding: 12px 15px;
    font-size: 16px;
}
 
.company-metrics {
    height: 300px;
    padding: 10px;
}
 
/* Graph Grid - 4 columns on desktop */
.graph-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 50px;
}
 
.graph-container {
    /*height: 300px;*/
    /*background: #f5f5f5;*/
    background: var(--dark-color);
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
}

.light-mode .graph-container{
    background-color: #fff;
}

.graph-container h4{
    margin-bottom: 20px;
    font-size: 24px;
    font-family: var(--Assistant);
    padding: 0px 15px 20px 0;
    font-weight: 700;
    border-bottom: 1px solid var(--color-cyan);
}
 

/*---------------- New CSS -----------------*/

/** * REAL ESTATE PAGE CSS * **/
.top-box p {
  font-size: 20px !important;           
  font-weight: 800;            
  color: var(--color-cyan);          
  margin-top: 0.5rem;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.5px;
}



/*------------------ Pension Page -----------------*/

.pension-section{
    margin-top: 0;
}

.pension-section .pension-article-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pension-article-container .home-article-content .home-article-text{
    padding-top: 20px;
}

.pension-article-container .home-article-content .home-article-text a{
    min-height: 40px;
}


/*------------------ Pension Page -----------------*/





/*-------- Added new -----------*/

.plan {
    display: flex;
}
 
.plan-fields {
    display: flex;
    gap: 10px;
    margin: 20px 0 px;
    padding: 20px 0px;
    align-items: center;
}
 
.plan-fields select, .plan-fields input {
    width: 100px;
    padding: 10px;
}

input.range-slider {
 display: none;
}
 

/*-------- Added new -----------*/


.page-template-pension .home-article-text a {
    display: flex;
    align-items: center;
}


/*--------------------- Guide Page CSS ---------------*/

.guide-page-section {
  margin: 30px auto;
  margin-top: 0;
  position: relative;
  direction: rtl;
}

.guide-page-section > h2{
    margin-bottom: 30px !important;
}

.guide-page-section .frame-container-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 26px;
  width: 100%;
  margin: 0 auto;
}

.guide-page-section > h2 {
  font-family: var(--Assistant);
  text-transform: capitalize;
  color: var(--color-white);
}

.guide-page-section .frame-box {
  width: calc(100% / 3 - 20px);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  background-color: #1f2937;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}

.guide-page-section .frame-box h2 {
  font-size: 24px;
  padding:25px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--Assistant);
}

.guide-page-section .frame-box ul {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  padding-left: 0;
  margin-top: 10px;
}


.guide-page-section .frame-box ul li {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.guide-page-section .frame-box .options li:hover {
   /*border-bottom: 1px solid var(--color-white);*/
  background-color: var(--color-cyan);
  transform: translateY(-2px);
}


.guide-page-section .frame-box .options li:hover a{
   color : var(--color-white);
}


.guide-page-section .frame-box ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-cyan);
  font-family: var(--Assistant);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;

}

.guide-page-section .frame-box ul li a:hover {
  color: var(--color-cyan);
}


.guide-page-section .frame-box:hover {
  transform: scale(1.05);
}

.guide-page-section .frame-box .options {
     max-height: 0;
     opacity: 0;
     overflow: hidden;
     padding-left: 0;
     margin: 0;
     transition: max-height 0.4s ease, opacity 0.4s ease;
}
/* .guide-page-section .frame-box:hover .options {
     max-height: 500px;
     opacity: 1;
     margin-top: 10px;
}*/
 .guide-page-section .frame-box .options {
     max-height: 500px;
     opacity: 1;
     margin-top: 10px;
}

.light-mode .guide-page-section .frame-box{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

.light-mode .guide-page-section .frame-box h2{
    color: #1f2937;
}



/*--------------------- Guide Page CSS ---------------*/


/*----------------- Single Post page ------------------*/


.single-post-container {
  font-family: var(--Assistant);
  color: white;
    margin:30px auto;
    margin-top: 10px;
}

.single-post-container .post-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color-cyan);
  padding-bottom: 20px;
}

.light-mode .single-post-container .post-title{
    color: #1f2937;
}

.single-post-container .post-content p,
.single-post-container .post-content pre,
.single-post-container .post-content h1,
.single-post-container .post-content h2,
.single-post-container .post-content h3,
.single-post-container .post-content h4,
.single-post-container .post-content h5,
.single-post-container .post-content h6,
.single-post-container .post-content ul li,
.single-post-container .post-content ol li,
.single-post-container .post-content blockquote{
    font-family: var(--Assistant);
}

.single-post-container .post-content p,
.single-post-container .post-content pre,
.single-post-container .post-content ul li,
.single-post-container .post-content ol li,
.single-post-container .post-content blockquote{
    font-size: 1rem !important;
}


.light-mode .single-post-container .post-content p,
.light-mode .single-post-container .post-content pre,
.light-mode .single-post-container .post-content h1,
.light-mode .single-post-container .post-content h2,
.light-mode .single-post-container .post-content h3,
.light-mode .single-post-container .post-content h4,
.light-mode .single-post-container .post-content h5,
.light-mode .single-post-container .post-content h6,
.light-mode .single-post-container .post-content ul li,
.light-mode .single-post-container .post-content ol li,
.light-mode .single-post-container .post-content blockquote{
    color: #1f2937;
}

.single-post-container .post-content p {
  margin-bottom: 16px;
  font-size: 17px;
  color: white;
}

.light-mode .single-post-container .post-content p{
    color: #1f2937;
}

.single-post-container .post-content strong {
  color: var(--color-cyan);
  font-weight: 600;
}

.single-post-container .post-thumbnail {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
}

.single-post-container .post-categories,
.single-post-container .post-tags {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}

.single-post-container .post-categories strong,
.single-post-container .post-tags strong {
  color: var(--color-cyan);
}

.single-post-container .post-categories a,
.single-post-container .post-tags a {
  color: var(--color-cyan);
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.3s ease;
}

.single-post-container .post-categories a:hover,
.single-post-container .post-tags a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
  .single-post-container {
    padding: 20px;
  }

  .single-post-container .post-title {
    font-size: 28px;
  }

  .single-post-container .post-content p {
    font-size: 16px;
  }
}


/*----------------- Single Post page ------------------*/


/* DIM BACKGROUND when popup is active */
.pop-preview-bg::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter:blur(2px);
  z-index: 999;
  pointer-events: none;
}

/* POPUP WRAPPER */
#popup-banner {
  font-family: var(--Assistant);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 600px;
  background-color: var(--dark-color);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow: hidden;
  overflow-y: scroll;
  max-height: 90vh;
  animation: fadeIn 0.3s ease-in-out;
}


.light-mode #popup-banner{
    background-color: #fff;
    color: #1f2937;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    scrollbar-color: var(--color-cyan) var(--color-white);
}

.light-mode #popup-banner .close-btn-pop{
    background-color: var(--color-cyan);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.light-mode #popup-banner .close-btn-pop:hover{
    border: none;
    background-color: var(--color-cyan);
}

.light-mode #popup-banner label{
    color: #1f2937;
}

.light-mode #popup-banner input, 
.light-mode #popup-banner select,
.light-mode #popup-banner textarea{
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}


/* Scrollbar Styling for WebKit browsers */
#popup-banner::-webkit-scrollbar {
  width: 10px;
}

#popup-banner::-webkit-scrollbar-track {
  background: var(--dark-color);
  border-radius: 10px;
}

#popup-banner::-webkit-scrollbar-thumb {
  background-color: var(--color-cyan);
  border-radius: 10px;
  border: 2px solid var(--dark-color); /* Creates a cyan border effect */
}

/* Optional: scrollbar on hover */
#popup-banner::-webkit-scrollbar-thumb:hover {
  background-color: #0891b2; /* slightly brighter cyan on hover */
}

/* Firefox Scrollbar (limited support) */
#popup-banner {
  scrollbar-width: thin;
  scrollbar-color: var(--color-cyan) var(--dark-color);
}




/* Headline */
#popup-banner h3 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  color: var(--color-cyan);
  text-align: center;
  font-family: var(--Assistant);
}

/* Labels & Inputs */
#popup-banner label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-align: right;
  font-family: var(--Assistant);
}

#popup-banner input,
#popup-banner select,
#popup-banner textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #374151;
  background: var(--full-dark);
  color: var(--color-white);
  font-size: 0.95rem;
  outline: none;
  text-align: right;
  font-family: var(--Assistant);
}


#popup-banner select{
direction: rtl;
  padding-left: 2.5rem;
  padding-right: 0.5rem;
  appearance: none;
  color: var(--color-white);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23ffffff' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.75rem center;
  background-size: 1rem;
}

.light-mode #popup-banner select {
  color: #1f2937;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%231f2937' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

#popup-banner input:focus,
#popup-banner select:focus,
#popup-banner textarea:focus {
    border: 1px solid var(--color-cyan);
}

/* Submit Button */
#popup-banner input[type="submit"] {
  outline: none;
  text-align: center;
  background-color: var(--color-cyan);
  color: var(--color-white);
  font-weight: 600;
  border: none;
  padding: 10px 30px;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 6px;
  width: max-content;
  margin-left:auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  font-family: var(--Assistant);
  justify-content: center;
  transition: background 0.3s ease;
}

#popup-banner input[type="submit"]:focus{
    border: none;
}

#popup-banner input[type="submit"]:hover {
  color: var(--color-white);
  background-color: #374151;
}


#popup-banner .close-btn-pop{
    outline: none;
    background-color: var(--full-dark);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    border-radius: 100px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--transparent);
}

#popup-banner .close-btn-pop:hover{
    background-color: transparent;
    border: 1px solid var(--full-dark);
}


#popup-banner .wpcf7-response-output{
    text-align: center;
    border: 1px solid var(--color-cyan);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--Assistant);
    font-size: 15px;
    padding: 10px 0;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive */
@media (max-width: 500px) {
  #popup-banner {
    padding: 1.5rem;
  }

  #popup-banner h3 {
    font-size: 1.2rem;
  }
}



/*------------------- POP BOX -------------------*/


/*------------------- Form Page Slider -------------------*/

.company-logos{
    margin-top: 70px;
    margin-bottom: 55px;
}

.company-logo-slider{
    position: relative;
}

.company-logo-slider .owl-nav{
    text-align: center;
    position: absolute;
    right: 0;
    top: -65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-slider .owl-nav button{
    background: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 5px;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-mode .company-logo-slider .owl-nav button{
    background-color: #fff !important;
    color: #1f2937 !important;
}

.company-logo-slider .owl-nav button i{
    font-size: 12px;
}

.company-logo-slider .logo-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 100%;
    border-radius: 10px;
}

.company-logo-slider .logo-item img {
    width: 100%;
    height: 100%;
    max-width: 100%;
   object-fit: cover;
   border-radius: 10px;
   aspect-ratio: 1;
   object-position: center;
}


.company-logo-slider .owl-dots {
    text-align: center;
    margin-top: 45px;
}

.company-logo-slider .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background: #1f2937 !important;
}

.company-logo-slider .owl-dots button.owl-dot.active {
     background: var(--color-cyan) !important;
}

/**-----Accessibility ---*/
.onetap-site-info .onetap-desc {
    display: none !important;
}

button.onetap-languages {
    opacity: 0;
    visibility: hidden;
}
nav.onetap-accessibility.onetap-plugin-onetap.onetap-toggle-open {
    overflow-x: hidden !important;
}

/* Disclaimer CSS */

.disclaimer-btn {
    border:none;
    outline:none;
    padding: 0.5rem 0.75rem;
    font-family: var(--Assistant);
    border-radius: 0.375rem;
    font-weight: 500;
    background-color: var(--color-cyan);
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.25rem;
    transition: all 0.5s ease;
}
.disclaimer-btn:hover{
    background-color: #374151;
}
    
 
/* Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100dvh;
    transform:translate(-50% , -50%);
    margin:auto;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
 
.disclaimer-modal-content {
    background-color: #1f2937;
    margin: auto;
    padding: 30px 20px;
    max-width: 700px;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.light-mode .disclaimer-modal-content{
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
 
.disclaimer-modal-content .disclaimer-text{
    font-size:15px;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    padding-top:20px;
    font-family: var(--Assistant);
    color: #fff;
}

.light-mode .disclaimer-modal-content .disclaimer-text{
    color: #1f2937;
}
 
.close-disclaimer {
    background-color: var(--color-cyan);
    color: var(--color-white);
    position:absolute;
    right:20px;
    top:15px;
    border-radius:50%;
    height:30px;
    width:30px;
    display:flex;
    align-item:center;
    justify-content: center;
    font-size: 22px;
    line-height:1.4;
    font-weight: bold;
    cursor: pointer;
}

/* Disclaimer CSS */


h4.widget-heading.text-gray-800.english-heading {
    direction: ltr;
    text-align: left;
}

.entry-content.wp-block-post-content.has-global-padding.is-layout-constrained.wp-block-post-content-is-layout-constrained .heading-title-main {
    margin-top: 22px;
}


/**------Home page stock slider ---*/
.crypto-carousel-home .owl-item {
    background: #1f2937;
}

.crypto-carousel-home .owl-nav {
    text-align: center;
    position: absolute;
    right: 0;
    top: -65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-carousel-home button.owl-prev, .crypto-carousel-home button.owl-next {
    background: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 5px;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}



.crypto-carousel-home i.fas.fa-chevron-left, .crypto-carousel-home .fas.fa-chevron-right {
    font-size: 12px;
}

/*----------- Toggle CSS ------------*/


#theme-toggle-icon .theme-toggle {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 26px;
}
 
#theme-toggle-icon .theme-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
 
#theme-toggle-icon .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #374151;
  border-radius: 20px;
  padding: 4px;
  position: absolute;
  top: 0;
}

.light-mode #theme-toggle-icon .icons{
    background-color: var(--color-cyan);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
 
#theme-toggle-icon .icons svg {
  width: 18px;
  height: 18px;
  color: yellow;
  transition: transform 0.3s, opacity 0.3s;
}
 
#theme-toggle-icon .moon {
  opacity: 0;
  transform: scale(0);
}
 
#theme-toggle-icon input:checked + .icons .sun {
  opacity: 0;
  transform: scale(0);
}
 
#theme-toggle-icon input:checked + .icons .moon {
  opacity: 1;
  transform: scale(1);
  color: #f9f9f9;
}


/*---------- Toggle CSS ------------*/




/*------------ Investment form css --------------*/

.investment-form-page .investment-form-container form{
    margin-top: 50px;
}
.investment-form-page .investment-form-container form p br{
    display: none;
}
   
.investment-form-page {
    color: #fff;
    font-family: 'Assistant', sans-serif;
    margin: 50px auto;
    margin-top: 0;
}

.investment-form-page .investment-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #1f2937;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.investment-form-page .investment-form-container h1 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    font-family: 'Assistant', sans-serif;
}

.investment-form-page .investment-form-container .wpcf7-form label {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
    text-align: right;
    font-family: 'Assistant', sans-serif;
}


.investment-form-page .investment-form-container input,
.investment-form-page .investment-form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    text-align: right;
    color: #fff;
    background-color: #111827;
    font-weight: 400;
    border: 1px solid;
    border-color: #111827;
    margin-top: 10px;
    font-family: 'Assistant', sans-serif;
    transition: all 0.5s ease;
}


.investment-form-page .investment-form-container select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  direction: rtl;
  text-align: right;
  width: 100%;
  padding: 10px 15px 10px 40px; /* space on left for arrow */
  margin-bottom: 20px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #111827;
  outline: none;
  font-size: 16px;
  color: #fff;
  background-color: #111827;
  font-weight: 400;
  font-family: 'Assistant', sans-serif;
  transition: all 0.5s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 12px;
}


.light-mode .investment-form-page .investment-form-container select{
    color: #1f2937;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%231f2937' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}



.investment-form-page .investment-form-container select option{
    color: #000;
}


.investment-form-page .investment-form-container input::placeholder,
.investment-form-page .investment-form-container textarea::placeholder,
.investment-form-page .investment-form-container select{
    font-family: 'Assistant', sans-serif;
    font-size: 14px;
    color: #9ca3af;
    text-align: right;
}


.investment-form-page .investment-form-container input:focus,
.investment-form-page .investment-form-container textarea:focus,
.investment-form-page .investment-form-container select:focus{
    border-color: #06b6d4;
    background-color: transparent;
}

.investment-form-page .investment-form-container input[type="submit"] {
    background-color: var(--color-cyan) !important;
    border: none !important;
    outline: none !important;
    color: #fff !important;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.25rem;
    padding: 10px 40px;
    border-radius: 0.375rem;
    transition: 0.5s;
    width: max-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-form-page .investment-form-container input[type="submit"]:hover {
    background-color: rgb(55, 65, 81) !important;
}

.investment-form-page .investment-form-container .wpcf7-response-output{
    border: 1px solid #06b6d4;
    text-align: center;
    font-family: 'Assistant', sans-serif;
    font-weight: 500;
    padding: 10px;
    font-size: 14px;
    background-color: #111827;
    border-radius: 8px;
}

.light-mode .investment-form-page .investment-form-container{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

.light-mode .investment-form-page .investment-form-container .wpcf7-form label{
    color: #1f2937;
}

.light-mode .investment-form-page .investment-form-container input, 
.light-mode .investment-form-page .investment-form-container textarea,
.light-mode .investment-form-page .investment-form-container select{
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    color: #1f2937;
    border-color: #1f2937;
}

.light-mode .investment-form-page .investment-form-container h1{
    color: #1f2937;
}


.qlwapp__container{
    position: fixed !important;
    right: 100px !important;
    bottom: 17px !important;
    width: max-content !important;
}


.qlwapp__container a{
    margin: 0 0 0 auto !important;
    width: 65px !important;
    height: 65px !important;
}
    


@media(max-width: 767px){
    .investment-form-page .investment-form-container{
        max-width: 100%;
        padding: 20px;
    }
}



/*------------ Investment form css ---------------*/

/* -- Graph Chart Section -- */
.graph-box {
  background-color: #1f2937;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.light-mode .graph-box{
    background-color: #fff !important;
}

.graph-box iframe {
  width: 100%;
  height: 300px;
  border: none;
}


/* -------------------- Table Design -------------------- */

.gemel-table-wrapper .table-responsive {
  overflow-x: auto; 
  -ms-overflow-style: none;  
  scrollbar-width: none;     
}

.gemel-table-wrapper .table-responsive::-webkit-scrollbar {
  display: none;  
}

.gemel-table-wrapper{
  background-color: #101b2a;
  padding: 25px 15px;
  border-radius: 8px;
  position:relative;
  margin-top: 80px;
  padding-bottom: 50px !important;
  overflow: visible;
}

.gemel-table-wrapper .owl-nav{
    text-align: center;
    position: absolute;
    right: 0;
    top: -85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gemel-table-wrapper .owl-nav button{
    background: #1f2937 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-white) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin: 0 5px;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important
}

.gemel-table-wrapper .owl-nav button i{
  font-size: 12px;
}

.gemel-table-wrapper .table-section h2{
    font-family: var(--Assistant);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0;
    color: #fff;
    line-height: 1.2;
    position: relative;
    padding:20px 30px 20px 0;
}

.gemel-table-wrapper .table-section h2::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  height:10px;
  width:10px;
  border-radius:100px;
  transform: translateY(-50%);
  background-color: var(--color-cyan);
}

.gemel-table-wrapper .table-section table{
  border: 1px solid #111827;
}


.gemel-table-wrapper .table-section table th,
.gemel-table-wrapper .table-section table td{
  border: none;
  line-height: 1.2;
  padding: .7rem;
  font-size: 12px;
  font-family: var(--Assistant);
  color: #fff;
  font-weight: 500;
  text-align:right;
}

.gemel-table-wrapper .table-section table th{
  font-size:14px;
  font-weight:600;
}

.gemel-table-wrapper .table-section table td.positive{
  color: green !important;
}

.gemel-table-wrapper .table-section table td.negative{
  color:red !important;
}
.gemel-table-wrapper tr > td:not(:first-child) {
  direction: ltr !important;   /* numbers stay LTR */
}

.gemel-table-wrapper .table-section table tbody tr:nth-child(even){
  background-color: #111827;
}

.gemel-table-wrapper .table-section table tbody tr:nth-child(odd){
  
  background-color: #141f31;
}

.gemel-table-wrapper .table-section table tr:first-child th{
  background-color: #141f31;
}


.light-mode .gemel-table-wrapper{
  background-color: #fff;
}

.light-mode .gemel-table-wrapper .owl-nav button{
    background-color: #f3f4f6 !important;
    color: #1f2937 !important;
}

.light-mode .gemel-table-wrapper .table-section h2{
  color: #1f2937;
}


.light-mode .gemel-table-wrapper .table-section table{
  border: 1px solid #d9d9d9;
}


.light-mode .gemel-table-wrapper .table-section table th,
.light-mode .gemel-table-wrapper .table-section table td{
  color: #1f2937;

}


.light-mode .gemel-table-wrapper .table-section table tbody tr:nth-child(even){
  background-color: #fff;
}

.light-mode .gemel-table-wrapper .table-section table tbody tr:nth-child(odd){
  
  background-color: #f0f0f0;
}

.light-mode .gemel-table-wrapper .table-section table tr:first-child th{
  background-color: #f0f0f0;
}



@media (max-width:767px) {
  .gemel-table-wrapper{
    padding-bottom: 0 !important;
  }
}

/* --------------- Table Design CSS --------------------- */