/*
Theme Name: Yonna Global
Theme URI: https://example.com
Author: Ajay Kumar
Author URI: https://example.com
Description: Modern Money Transfer WordPress Theme
Version: 1.0
License: GNU GPL v2 or later
Text Domain: yonna-global
*/

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

/*==========================
HERO TRUST
==========================*/

.hero-trust{
    margin-top:40px;
}

.trust-text{
    color:#666;
    font-size:16px;
    margin-bottom:20px;
}

.trust-logos{
    display:flex;
    align-items:center;
    gap:20px !important;
    flex-wrap:wrap;
}

.store-btn img{
    height:44px;
    display:block;
}

.trustpilot{
    display:flex;
    align-items:center;
    gap:10px;
}

.trustpilot img{
    height:28px;
}

.trustpilot span{
    font-size:14px;
    font-weight:600;
    color:#333;
}

@media(max-width:768px){

    .trust-logos{
        justify-content:center;
    }

    .hero-trust{
        text-align:center;
    }

}
/*=============================
        ROOT
==============================*/
:root{
    --primary:#6C4DFF;
    --secondary:#8D66FF;
    --dark:#0B1020;
    --text:#555;
    --white:#fff;
    --light:#F7F8FC;
    --border:#E9ECF5;
    --radius:18px;
    --transition:.35s ease;
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --header-height:85px;
    --container-pad:24px;
    --section-space:clamp(70px, 8vw, 100px);
}

/*=============================
      RESET
==============================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    cursor:pointer;
    border:none;
    outline:none;
    font-family:inherit;
}

input,
select{
    font-family:inherit;
}

/*=============================
      CONTAINER
==============================*/
.container{
    width:90%;
    max-width:100%;
    margin:auto;
}

section,
.page-section,
.single-post-section{
    padding:var(--section-space) 0;
}

.page-section,
.single-post-section,
.site-main{
    padding-top:calc(var(--header-height) + 70px);
}

.page-body,
.single-content{
    padding:clamp(24px, 3vw, 40px);
}

.page-thumbnail img,
.single-thumbnail img{
    border-radius:20px;
    margin-bottom:30px;
}

/*=============================
      TYPOGRAPHY
==============================*/

h1{
    font-size:58px;
    font-weight:800;
    color:var(--dark);
    line-height:1.15;
}

h2{
    font-size:42px;
    font-weight:700;
    color:var(--dark);
    margin-bottom:20px;
}

h3{
    font-size:24px;
    font-weight:700;
}

p{
    color:var(--text);
    font-size:17px;
}

/*=============================
        BUTTONS
==============================*/

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    border-radius:50px;
    transition:var(--transition);
    font-weight:600;
}

.btn-primary{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    box-shadow:0 12px 30px rgba(108,77,255,.35);
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
    background:#fff;
}

.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

/*=============================
        HEADER
==============================*/

.site-header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--primary);
}

.main-menu{
    display:flex;
    gap:35px;
}

.main-menu a{
    font-weight:600;
    transition:.3s;
}

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

/*=============================
        HERO
==============================*/

.hero{
    padding-top:140px;
    padding-bottom:80px;
    background:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 0.6fr 0.9fr;
    gap:40px;
    align-items:center;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    background:#ECE8FF;
    color:var(--primary);
    border-radius:50px;
    margin-bottom:30px;
    font-weight:700;
    font-size:15px;
}

.hero-content h1{
    font-size:62px;
    line-height:1.05;
    margin-bottom:25px;
    max-width:670px;
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    margin-bottom:35px;
    font-size:18px;
    max-width:620px;
    color:var(--text);
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    min-width:180px;
    padding:18px 28px;
    font-size:16px;
}

.hero-buttons .btn-outline{
    border-color:var(--primary);
    color:var(--primary);
    background:#fff;
}

.hero-buttons .btn-outline:hover{
    background:rgba(108,77,255,.08);
}

.hero-stats{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.stat{
    min-width:140px;
}

.stat h3{
    font-size:32px;
    margin-bottom:8px;
}

.stat span{
    color:#6D7791;
    font-weight:600;
}

.phone{
    display:flex;
    justify-content:center;
    align-items:center;
}

.phone img{
    width:100%;
    max-width:322px;
}

/*==========================
EXCHANGE CARD
==========================*/

.exchange-card{
    width:100%;
    max-width:100% !important;
    background:#fff;
    border-radius:24px;
    padding:28px;
    border:1px solid #eef1f6;
    box-shadow:0 20px 50px rgba(16,24,40,.08);
}

.exchange-rate{
    margin-bottom:25px;
    text-align: center;
}


.exchange-rate span {
    color: #000;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
}

.exchange-rate h3{
    margin-top:8px;
    font-size:38px;
    font-weight:800;
    line-height:1.2;
}

.currency-box{
    border:1px solid #e8ebf2;
    border-radius:18px;
    margin-bottom:18px;
    background:#fff;
}

.currency-box label{
    display:block;
    color:#6b7280;
    font-size:14px;
    font-weight:600;
    margin-bottom:14px;
}
/*=============================
      SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

/*=============================
      FEATURES
==============================*/

.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    border:1px solid var(--border);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

.icon-box{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#F3F0FF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:30px;
    margin-bottom:20px;
}

.sender-row{
    display:grid;
    grid-template-columns:1fr 180px;
    gap:14px;
}

.sender-row input,
.sender-row select{
    width:100%;
    height:58px;
    border:1px solid #d8dce6;
    border-radius:14px;
    background:#fff;
    padding:0 16px;
    font-size:17px;
    transition:.3s;
}

.sender-row input:focus,
.sender-row select:focus{
    outline:none;
    border-color:#6C4DFF;
    box-shadow:0 0 0 4px rgba(108,77,255,.12);
}

.currency-box:last-of-type{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.exchange-result{
    margin:0;
    font-size:42px;
    font-weight:800;
    color:#111827;
}

.currency-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.currency-right img{
    width:34px;
    height:24px;
    border-radius:4px;
}

.currency-right span{
    font-size:20px;
    font-weight:700;
}

.exchange-info{
    display:flex;
    justify-content:space-between;
    margin:30px 0;
}

.exchange-info span{
    display:block;
    color:#6b7280;
    margin-bottom:6px;
}

.exchange-info strong{
    font-size:24px;
    font-weight:800;
}

.exchange-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    height:60px;
    border-radius:16px;
    background:linear-gradient(135deg,#6C4DFF,#8A63FF);
    color:#fff;
    font-size:18px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 15px 30px rgba(108,77,255,.25);
}

.exchange-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 40px rgba(108,77,255,.35);
}

@media(max-width:768px){

.exchange-card{
    max-width:100%;
    padding:20px;
}

.sender-row{
    grid-template-columns:1fr;
}

.sender-row select{
    width:100%;
}

.exchange-rate h3{
    font-size:30px;
}

.exchange-result{
    font-size:34px;
}

.exchange-info{
    gap:20px;
}

}

.send-box{
    display:flex;
    align-items:center;
    overflow:hidden !important;
    border:2px solid #efd5ff;
    border-radius:22px;
    background:#fff;
    box-shadow:0 10px 30px rgba(80,40,120,.08);
    transition:.25s ease;
}



.send-right.exchange {
    min-width: 140px;
    overflow: visible;
}

.send-box {
    overflow: visible;
}

.send-box:hover{
    box-shadow:0 18px 40px rgba(80,40,120,.12);
}

.send-box:focus-within{
    border-color:#8b5cf6;
    box-shadow:0 0 0 5px rgba(139,92,246,.12);
}

.send-left{
    flex:1;
    padding:15px 12px;
}

.currency-select{
    position:relative;
    width:140px;
}



.exchange-country-select:hover{
    background:#ede8ff;
}

.exchange-country-select:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(120,92,255,.15);
}

.currency-select::after{
    content:"⌄";
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    font-size:18px;
    color:#666;
    pointer-events:none;
}

/*=============================
      DELIVERY METHOD
==============================*/
.exchange-country-select option{
    background:#fff;
    color:#222;
    font-size:20px;
    padding:12px;
}

/* Selected option */
.exchange-country-select option:checked{
    background:#6b4eff;
    color:#fff;
}
.send-label{
    display:block;
    font-size:15px;
    color:#8a8a8a;
    margin-bottom:12px;
    font-weight:500;
}

.send-left input{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    font-size:40px;
    font-weight:800;
    color:#111827;
    line-height:1;
    padding:0;
}

.send-left input::-webkit-inner-spin-button,
.send-left input::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.send-right {
    background: linear-gradient(135deg,#f3e8ff,#e9d5ff);
    display: flex;
    min-width: 150px;
    align-items: center;
    gap: 10px;
    justify-content: center;
    gap: 12px;
    padding: 0px 160px;
    border-left: 1px solid rgba(0,0,0,.05);
}

.send-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 150px;
    width: 160px;
    padding: 20px 16px ;
}

.currency-flag{
    width:40px;
    height:40px;
    flex-shrink: 0;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #fff;
    box-shadow:0 4px 10px rgba(0,0,0,.12);
}

.send-right{
    position:relative;
}
/* 
.send-right select{
    width:100%;
    border:none;
    background:transparent;
    appearance:none;
    outline:none;
    cursor:pointer;

    font-size:18px;
    font-weight:800;
    color:#111827;

    padding-right:28px;
} */


.send-right.exchange{
    display:flex;
    align-items:center;
    justify-content: left;
    gap:10px;
    min-width:140px;
    flex-shrink:0;
    padding:20px 15px;
}

.exchange-country-select{
    width:auto;
    min-width:60px;
    height:auto;
    border:none;
    background:transparent;
    color:#111827;
    line-height: 1;
    padding: 0;
    margin: 0;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    outline:none;
    appearance:auto;
    -webkit-appearance:auto;
    -moz-appearance:auto;
}


.send-right select{
    width:auto;
    min-width:80px;
}

.send-right span{
    width:100%;
    border:none;
    background:transparent;
    appearance:none;
    outline:none;
    cursor:pointer;

    font-size:18px;
    font-weight:700;
    color:#111827;

    padding-right:28px;
    line-height: 1;
    padding: 0;
    margin: 0;
    
}

.send-right span {
    display: flex;
    align-items: center;
    height: 40px;
}


/* .exchange::after{
    content:"";
    position:absolute;
    right:20px;
    width:10px;
    height:10px;
    border-right:2px solid #555;
    border-bottom:2px solid #555;
    transform:rotate(45deg);
    pointer-events:none;
} */


@media(max-width:767px){

.send-box{
    flex-direction:row;
}

.send-right{
    width:48%;
    min-height:72px;
    border-left:none;
    border-top:1px solid rgba(0,0,0,.05);
}
.exchange-fee {
    font-size: 16px !important;
}



.send-right span {
    text-align: left;
    margin-left: 12px;
}
    .send-left input{
        font-size: 25px
    };
}

@media (min-width: 1024px) {
  .send-left input { 
    font-size: 22px;
}
}

.exchange-result{
    width:100%;
    border:none;
    background:transparent;
    font-size:46px;
    font-weight:800;
    color:#1b1b1b;
    outline:none;
    padding:0;
    margin:0;
    line-height:1;
}

.exchange-result:focus{
    outline:none;
    box-shadow:none;
}

.exchange-result[readonly]{
    cursor:default;
}

/* DELIVERY METHOD */

/* .delivery-method-box{
    margin-top:20px;
} */

.delivery-method-box label{
    display:block;
    margin-bottom:8px;
    font-size:16px;
    /* font-weight:600; */
    color:#666;
}

.delivery-method-select{
    width:100%;
    /* height:56px; */
    border:1px solid #E5E7EB;
    border-radius:14px;
    padding:2px 12px;
    font-size:16px;
    font-weight:600;
    background:#fff;
    cursor:pointer;
    outline:none;
}

.delivery-method-select:focus{
    border-color:#6C4DFF;
}

/*=============================
      COUNTRY CARD
==============================*/

.country-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.country-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    text-align:center;
    padding:25px;
    transition:.3s;
}

.country-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}



@media(max-width: 1270px){
    .country-card{
        padding: 19px !important;
    }

    .country-card h3 {
    font-size: 15px !important;
    }
}

/*=============================
      TESTIMONIAL
==============================*/

.testimonial{
    background:#fafbff;
}

.testimonial-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:var(--shadow);
}

/*=============================
        NEWSLETTER
==============================*/

.newsletter{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    border-radius:22px;
    padding:60px;
}

.newsletter input{
    width:100%;
    padding:15px;
    border:none;
    border-radius:50px;
}

/*=============================
        FOOTER
==============================*/
/*==========================
FOOTER
==========================*/

.site-footer{

    background:linear-gradient(180deg,#131B37,#0C1226);

    color:#fff;

    padding:70px 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 2fr;

    gap:50px;

}

.footer-logo img{

    height:48px;

    margin-bottom:15px;

}

.footer-tagline{

    color:#B7BDD2;

    font-size:15px;

    margin-bottom:35px;

}

.copyright{

    color:#A9B0C8;

    font-size:14px;

    margin-bottom:25px;

}

.social-icons{

    display:flex;

    gap:18px;

}

.social-icons a{

    width:36px;

    height:36px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

    text-decoration:none;

}

.social-icons a:hover{

    background:#6C4DFF;

}

.footer-column h4{

    color:#fff;

    font-size:20px;

    margin-bottom:22px;

    font-weight:600;

}

.footer-column ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    color:#B7BDD2;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#fff;

}

.newsletter-text{

    color:#B7BDD2;

    margin-bottom:20px;

}

.newsletter-form{

    display:flex;

    overflow:hidden;

    border-radius:10px;

    background:#fff;

}

.newsletter-form input{

    flex:1;

    border:none;

    padding:16px;

    outline:none;

    font-size:15px;

}

.newsletter-form button{

    border:none;

    padding:0 28px;

    background:#6C4DFF;

    color:#fff;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.newsletter-form button:hover{

    background:#5637F0;

}

@media(max-width:991px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

}

/*=============================
        UTILITIES
==============================*/

.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mb-40{
    margin-bottom:40px;
}

/*=============================
      RESPONSIVE
==============================*/

@media(max-width:1100px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.phone img{
width:280px;
}

.country-grid{
grid-template-columns:repeat(3,1fr);
}

.grid-4{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

h1{
font-size:38px;
}

h2{
font-size:30px;
}

.grid-4,
.country-grid,
.footer-grid{
grid-template-columns:1fr;
}

.main-menu{
display:none;
}

section{
padding:70px 0;
}

.header-inner{
height:70px;
}

}


.blog-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-image img{
    width:100%;
    display:block;
}

.blog-content{
    padding:30px;
}

.post-date{
    color:#777;
    font-size:14px;
}

.entry-title{
    margin:15px 0;
    font-size:28px;
}

.entry-title a{
    color:#111;
}

.entry-title a:hover{
    color:var(--primary);
}

.entry-excerpt{
    margin-bottom:25px;
}

.pagination{
    margin-top:60px;
    text-align:center;
}

.pagination .page-numbers{
    display:inline-block;
    padding:12px 18px;
    margin:0 5px;
    border-radius:8px;
    background:#f5f5f5;
}

.pagination .current{
    background:var(--primary);
    color:#fff;
}

.no-posts{
    text-align:center;
    padding:100px 0;
}

.main-navigation{
    display:flex;
}

.mobile-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.mobile-toggle span{
    width:28px;
    height:3px;
    background:#222;
    margin:4px 0;
}

@media(max-width:768px){

.main-navigation{
display:none;
}

.header-btn{
display:none !important;
}

.mobile-toggle{
display:flex;
}

}


.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
height:90px;
}

.logo img{
max-height:60px;
}

.main-menu{
display:flex;
gap:35px;
list-style:none;
margin:0;
padding:0;
}

.main-menu li{
position:relative;
}

.main-menu li a{
font-weight:600;
padding:10px 0;
display:block;
transition:.3s;
}

.main-menu li a:hover{
color:var(--primary);
}

.site-footer{
background:#111827;
padding:80px 0 20px;
color:#fff;
}

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr 1fr 1.5fr 1fr;
gap:40px;
}

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:12px;
}

.footer-links li a{
color:#cfd4dc;
transition:.3s;
}

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

.footer-bottom{
margin-top:60px;
padding-top:25px;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
}

@media(max-width:768px){

.footer-grid{
grid-template-columns:1fr;
}

.header-btn{
display:none;
}

}


.brands-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:30px;
}

.brands-wrapper img{
height:35px;
opacity:.8;
}

.statistics{
padding:80px 0;
background:#fff;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.stats-box{
background:#fff;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stats-box h2{
color:#6C4DFF;
margin-bottom:10px;
}

@media(max-width:991px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-grid {
    gap: 0;
}

.hero-buttons,
.hero-stats{
justify-content:center;
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero-content h1{
font-size:42px;
}

.stats-grid{
grid-template-columns:1fr;
}

.brands-wrapper{
justify-content:center;
}

}


/*==========================
BACK TO TOP
==========================*/

.back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#6C4DFF;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
    box-shadow:0 10px 30px rgba(108,77,255,.35);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .3s ease;
    z-index:9999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:#5938f5;
    transform:translateY(-5px);
    color:#fff;
}

.back-to-top i{
    pointer-events:none;
}


.sender-row{
    display:flex;
    gap:12px;
    align-items:center;
}

.sender-row input{
    flex:1;
    height:50px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 15px;
}

.sender-row select{
    width:220px;
    height:50px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 12px;
}

.currency-box label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    color:#666;
}



.currency-dropdown{
    position:relative;
    width:170px;
}

.currency-selected{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#FFD600;
    height:78px;
    cursor:pointer;
    font-weight:700;
}

.selected-flag{
    width:30px;
    height:30px;
    border-radius:50%;
    object-fit:cover;
}

.dropdown-arrow{
    margin-left:auto;
    padding-right:15px;
}

.currency-popup{

    position:absolute;
    right:0;
    top:90px;

    width:360px;

    background:#fff;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    display:none;

    z-index:9999;

}

.popup-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}

.popup-header h3{

    margin:0;

    font-size:28px;

    color:#2d0d0d;

}

.popup-close{

    font-size:34px;

    cursor:pointer;

}

.popup-search{

    padding:15px;

}

.currency-search{

    width:100%;

    height:46px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    font-size:16px;

}

.currency-list{

    max-height:360px;

    overflow-y:auto;

}

.currency-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    cursor:pointer;

    border-bottom:1px solid #eee;

}

.currency-item:hover{

    background:#f5f5f5;

}

.currency-item img{

    width:34px;

    height:34px;

    border-radius:50%;

    object-fit:cover;

}

.country-name{

    flex:1;

    font-size:20px;

}

.currency-code{

    font-weight:700;

}



/* 
=======================================================
        BLOG PAGE STYLING
======================================================== */

.blog-hero{
    padding:100px 0 60px;
    text-align:center;
    background:#F7F8FF;
}

.blog-tag{
    display:inline-block;
    background:#EEE9FF;
    color:#6C4DFF;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.blog-hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.blog-hero p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.blog-listing{
    padding:80px 0;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card a{
    text-decoration:none;
    color:inherit;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.blog-content{
    padding:25px;
}

.blog-date{
    color:#6C4DFF;
    font-size:14px;
    font-weight:600;
}

.blog-content h3{
    margin:15px 0;
    font-size:24px;
    line-height:1.4;
}

.blog-content p{
    color:#666;
    line-height:1.7;
}

.read-more{
    display:inline-block;
    margin-top:15px;
    color:#6C4DFF;
    font-weight:700;
}

/* 
==============================
        responsive code 
===============================        
        */

@media(max-width:991px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-hero h1{
        font-size:40px;
    }

}


/*
================================== 
        Single Blog Page Css 
===================================
*/

.single-blog-hero{
    padding:80px 0 40px;
}

.single-blog-hero h1{
    max-width:900px;
    margin:20px auto;
    text-align:center;
    font-size:42px;
    line-height:1.2;
}

.blog-meta{
    display:flex;
    gap:15px;
    justify-content:center;
    color:#666;
}

.featured-image{
    margin-top:40px;
}

.featured-image img{
    width: 700px;
    height: 394px;
    border-radius:24px;
}


.single-blog-content{
    padding:60px 0;
}

.blog-layout{
    display:grid;
    grid-template-columns:2fr 350px;
    gap:50px;
}

.blog-article{
    font-size:18px;
    line-height:1.9;
}

.blog-article h2,
.blog-article h3{
    margin-top:40px;
}

.blog-sidebar{
    position:sticky;
    top:100px;
    height:fit-content;
}

.sidebar-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.sidebar-btn{
    display:block;
    text-align:center;
    padding:14px;
    background:#0d6efd;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    margin-top:15px;
}

.related-posts{
    padding:80px 0;
    background:#f8fafc;
}

.related-posts h2{
    font-size: 34px;
}

.related-posts h3{
    line-height: 1.5;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.related-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
}

.related-card img{
    width:100%;
    height: 300px;
}


.related-card h3{
    padding:20px;
}

@media(max-width:991px){

    .blog-layout{
        grid-template-columns:1fr;
    }

    .related-grid{
        grid-template-columns:1fr;
    }

    .single-blog-hero h1{
        font-size:34px;
    }

}


