@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #111827;
}

/*
=================================
Top Bar
=================================
*/

.top-bar{
    background: linear-gradient(90deg,#006bda,#0052a8);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar a{
    color: #fff;
    text-decoration: none;
    margin-right: 24px;
    font-weight: 500;
    transition: 0.3s;
}

.top-bar a:hover{
    opacity: 0.85;
}

.top-bar-right{
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
}

/*
=================================
Main Header
=================================
*/

.main-header{
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.navbar{
    min-height: 90px;
    padding: 12px 0;
}

/*
=================================
Logo
=================================
*/

.brand-logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-image{
    width: 180px;
    height: auto;
    object-fit: contain;
}

/*
=================================
Navbar
=================================
*/

.navbar-nav{
    gap: 8px;
}

.navbar-nav .nav-link{
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 14px !important;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color: #0d6efd;
}

.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 14px;
    bottom: 4px;
    width: 0%;
    height: 2px;
    background: #0d6efd;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width: calc(100% - 28px);
}

/*
=================================
Header Actions
=================================
*/

.header-actions{
    display: flex;
    align-items: center;
    gap: 15px;
}

/*
=================================
Creative Search
=================================
*/

.creative-search{
    width: 150px;
    height: 44px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #dbe7ff;
    display: flex;
    align-items: center;
    padding: 1px 10px;
    gap: 12px;
    cursor: pointer;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.creative-search::before{
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(13,110,253,0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.creative-search:hover{
    transform: translateY(-2px);
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 12px 25px rgba(13,110,253,0.10);
}

.search-icon-box{
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg,#0d6efd,#0056d6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.search-title{
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.search-text small{
    color: #94a3b8;
    font-size: 11px;
    margin-top: 2px;
}

/*
=================================
Buttons
=================================
*/

.header-btn{
    height: 44px;
    padding: 0px 15px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
}

.primary-btn{
    background: linear-gradient(135deg,#0d6efd,#0056d6);
    color: #fff;
    box-shadow: 0 10px 25px rgba(13,110,253,0.22);
}

.primary-btn:hover{
    transform: translateY(-2px);
    color: #fff;
}

.secondary-btn{
    background: #eef5ff;
    color: #0d6efd;
}

.secondary-btn:hover{
    background: #0d6efd;
    color: #fff;
}

/*
=================================
Search Popup
=================================
*/

.search-popup{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(5,10,20,0.96);
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.search-popup.active{
    display: flex;
}

.search-box{
    width: 100%;
    max-width: 900px;
}

.search-input-wrapper{
    position: relative;
}

.search-main-icon{
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #0d6efd;
}

.search-box input{
    width: 100%;
    height: 82px;
    border-radius: 24px;
    border: none;
    background: #fff;
    padding: 0 190px 0 75px;
    font-size: 20px;
    outline: none;
    font-weight: 500;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.search-submit{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    height: 58px;
    padding: 0 34px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#0056d6);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.close-search{
    position: absolute;
    top: 35px;
    right: 45px;
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.close-search:hover{
    background: #0d6efd;
}

/*
=================================
Navbar Toggler
=================================
*/

.navbar-toggler{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f3f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
=================================
Responsive
=================================
*/

@media(max-width:1199px){

    .navbar-collapse{
        padding-top: 25px;
    }

    .navbar-nav{
        gap: 2px;
    }

    .header-actions{
        margin-top: 25px;
        flex-direction: column;
        align-items: stretch;
    }

    .creative-search{
        width: 100%;
    }

    .header-btn{
        width: 100%;
    }
}

@media(max-width:991px){

    .brand-image{
        width: 150px;
    }

    .search-box input{
        height: 72px;
        font-size: 18px;
    }

    .navbar{
        min-height: 80px;
    }
}

@media(max-width:767px){

    .top-bar{
        text-align: center;
    }

    .top-bar .d-flex{
        flex-direction: row;
        gap: 6px;
    }

    .top-bar a{
        margin-right: 10px;
        font-size: 13px;
    }

    .top-bar-right{
        font-size: 11px;
    }

    .brand-image{
        width: 130px;
    }

    .creative-search{
        min-width: 100%;
        height: 56px;
    }

    .search-box input{
        height: 65px;
        padding: 0 20px 0 60px;
        font-size: 15px;
        border-radius: 18px;
    }

    .search-submit{
        display: none;
    }

    .close-search{
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .navbar{
        min-height: 75px;
    }
}

/*
=================================
Hero Section
=================================
*/

.hero-section{
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    /* Background Image */
    background: url('../images/Hero-background.jpeg');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    padding: 20px 0 12px;
}

/*
=================================
Grid Background
=================================
*/

.hero-grid{
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;

    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size: 60px 60px;
    z-index: 1;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at top left,
    rgba(13,110,253,0.18),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(255,140,0,0.12),
    transparent 35%);

    z-index: 1;
}

.hero-section .container-fluid{
    position: relative;
    z-index: 5;
}

/*
=================================
Hero Content
=================================
*/

.hero-content{
    max-width: 620px;
}

/*
=================================
Badge
=================================
*/

.hero-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff8c00;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(255,140,0,0.25);
}

.dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

/*
=================================
Title
=================================
*/

.hero-title{
    font-size: 50px;
    line-height: 0.95;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.hero-title span{
    color: #0d6efd;
    font-style: italic;
}

/*
=================================
Description
=================================
*/

.hero-description{
    font-size: 16px;
    line-height: 1.8;
     color: rgba(255,255,255,0.75);
    margin-bottom: 33px;
}

/*
=================================
Buttons
=================================
*/

.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-btn{
    height: 60px;
    padding: 0 32px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.primary-hero-btn{
    background: #ff8c00;
    color: #111827;
    box-shadow: 0 10px 25px rgba(255,140,0,0.25);
}

.primary-hero-btn:hover{
    transform: translateY(-3px);
    color: #111827;
}

.secondary-hero-btn{
    background: linear-gradient(135deg,#0d6efd,#0056d6);
    color: #fff;
}

.secondary-hero-btn:hover{
    transform: translateY(-3px);
    color: #fff;
}

/*
=================================
Tags
=================================
*/

.hero-tags{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-tags span{
     background: rgba(255,255,255,0.08);
     border: 1px solid rgba(255,255,255,0.10);
    padding: 10px 14px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
}

/*
=================================
Featured Deal
=================================
*/

.featured-deal{
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,140,0,0.25);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.deal-label{
    background: rgba(255,140,0,0.15);
    color: #ff8c00;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.deal-content{
    font-size: 14px;
    color: #5b6475;
}

.deal-content strong{
    color: #111827;
}

.deal-content p{
    margin-top: 10px;
    margin-bottom: 0;
}

/*
=================================
Terminal Card
=================================
*/

.terminal-card{
    background: rgba(10,15,30,0.60);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/*
=================================
Terminal Header
=================================
*/

.terminal-header{
    background: #ff8c00;
    padding: 14px 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-live{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111827;
}

.live-dot{
    width: 8px;
    height: 8px;
    background: #111827;
    border-radius: 50%;
}

.ipo-badge{
    background: #111827;
    color: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

/*
=================================
Terminal Item
=================================
*/

.terminal-item{
    display: flex;
    gap: 18px;
    padding: 16px;
    border-bottom: 1px solid rgba(13,110,253,0.08);
}

.terminal-icon{
   width: 35px;
    height: 35px;
    border-radius: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
}

.green{
    background: #10b981;
}

.orange{
    background: #ff8c00;
}

.yellow{
    background: #f59e0b;
}

.terminal-text h6{
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
   color: #ffffff;
    font-weight: 600;
}

.terminal-meta{
    display: flex;
    align-items: center;
    gap: 14px;
}

.terminal-meta span{
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
}

.terminal-meta small{
    color: rgba(255,255,255,0.50);
}

/*
=================================
Terminal Footer
=================================
*/

.terminal-footer{
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.70);
    font-size: 14px;
}

.growth-badge{
    background: rgba(16,185,129,0.15);
    color: #10b981;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
}

/*
=================================
Responsive
=================================
*/

@media(max-width:1400px){

    .hero-title{
        font-size: 50px;
    }
}

@media(max-width:1199px){

    .hero-section{
        padding: 40px 0;
    }

    .hero-title{
        font-size: 58px;
    }

    .terminal-card{
        margin-top: 60px;
    }
}

@media(max-width:767px){

    .hero-title{
        font-size: 42px;
    }

    .hero-description{
        font-size: 16px;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-btn{
        width: 100%;
    }

    .featured-deal{
        flex-direction: column;
    }

    .terminal-item{
        flex-direction: column;
    }

    .terminal-text h6{
        font-size: 15px;
    }

    .search-box input{
        font-size: 16px;
    }
}

/*
=================================
Trust Stats Section
=================================
*/

.trust-stats-section{
    padding: 10px 0 10px;
    position: relative;
    z-index: 10;
}

/*
=================================
Mini Stats Card
=================================
*/

.mini-stats-card{
    background: linear-gradient(135deg,#0d6efd,#0078ff);
    border-radius: 24px;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
    min-height: 115px;
    box-shadow: 0 15px 35px rgba(13,110,253,0.16);
}

.mini-stats-card::before{
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -70px;
    right: -40px;
}

.mini-stats-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(13,110,253,0.22);
}

/*
=================================
Icon
=================================
*/

.mini-icon{
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    backdrop-filter: blur(10px);
}

/*
=================================
Content
=================================
*/

.mini-content h4{
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1;
}

.mini-content p{
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 500;
}

/*
=================================
Responsive
=================================
*/

@media(max-width:1199px){

    .trust-stats-section{
        padding-top: 50px;
    }
}

@media(max-width:767px){

    .mini-stats-card{
        padding: 20px;
        border-radius: 20px;
        min-height: auto;
    }

    .mini-icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
        border-radius: 14px;
    }

    .mini-content h4{
        font-size: 24px;
    }

    .mini-content p{
        font-size: 13px;
    }
}
/*
=================================
Market Section
=================================
*/

.market-section{
    padding: 90px 0;
    background:
    radial-gradient(circle at top left,
    rgba(0,102,204,0.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(255,153,0,0.08),
    transparent 35%),

    linear-gradient(to bottom,#f8fbff,#eef5fb);

    position: relative;
    overflow: hidden;
}

/*
=================================
Search Wrapper
=================================
*/

.market-search-wrapper{
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 26px;
    padding: 24px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(15,23,42,0.06);
}

/*
=================================
Search Box
=================================
*/

.market-search-box{
    height: 68px;
    background: #f8fbff;
    border: 1px solid #d7e4f2;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0 16px 0 22px;
    margin-bottom: 22px;
}

.market-search-box i{
    color: #0066cc;
    font-size: 18px;
    margin-right: 15px;
}

.market-search-box input{
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #1e293b;
    font-size: 15px;
}

.market-search-box input::placeholder{
    color: #64748b;
}

.market-search-box button{
    height: 46px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg,#ffb000,#ff8c00);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.market-search-box button:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,153,0,0.25);
}

/*
=================================
Filters
=================================
*/

.market-filters{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn{
    height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #d9e5f2;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.filter-btn:hover{
    background: rgba(0,102,204,0.08);
    border-color: #0066cc;
    color: #0066cc;
}

.filter-btn.active{
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

/*
=================================
Heading
=================================
*/

.market-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
    gap: 20px;
}

.market-heading h2{
    color: #0f172a;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.market-heading h2 span{
    color: #f08600;
}

.view-all-btn{
    height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #ffd699;
    color: #f08600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.view-all-btn:hover{
    background: #f08600;
    color: #fff;
}

/*
=================================
Market Card
=================================
*/

.market-card{
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    transition: 0.35s ease;
    height: 100%;
    box-shadow: 0 8px 30px rgba(15,23,42,0.05);
}

.market-card:hover{
    transform: translateY(-8px);
    border-color: rgba(0,102,204,0.25);
    box-shadow: 0 20px 45px rgba(15,23,42,0.10);
}

/*
=================================
Top
=================================
*/

/* =========================================
   Top Section
========================================= */

.market-top{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:14px;

    position:relative;
}



/* =========================================
   Logo Box
========================================= */

.market-logo{

    width:44px;

    height:44px;

    min-width:44px;

    border-radius:12px;

    background:#fff;

    border:1px solid #dce7f3;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    padding:4px;
}



/* =========================================
   Logo Image
========================================= */

.market-logo img{

    width:100%;

    height:100%;

    object-fit:contain;

    border-radius:8px;
}



/* =========================================
   Stock Info
========================================= */

.market-info{

    flex:1;

    min-width:0;
}



/* =========================================
   Company Name
========================================= */

.market-info h5{

    color:#0f172a;

    font-size:15px;

    margin-bottom:2px;

    font-weight:700;

    line-height:1.2;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;
}



/* =========================================
   Sector
========================================= */

.market-info p{

    color:#64748b;

    font-size:11px;

    margin:0;

    line-height:1.2;
}



/* =========================================
   Hot Badge
========================================= */

.hot-badge{

    position:absolute;

    right:0;

    top:0;

    background:rgba(255,153,0,0.12);

    color:#f08600;

    font-size:9px;

    font-weight:700;

    padding:4px 8px;

    border-radius:6px;
}

/*
=================================
Price
=================================
*/

.market-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.market-price h3{
    color: #0f172a;
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.growth{
    color: #10b981;
    font-size: 13px;
    font-weight: 700;
}

.loss{
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
}

/*
=================================
Progress
=================================
*/

.market-progress{
    height: 5px;
    background: #e5edf6;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 22px;
}

.market-progress-bar{
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg,#f08600,#0066cc);
}

/*
=================================
Details
=================================
*/

.market-details{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
    margin-bottom: 22px;
}

.detail-box{
       background: #f8fbff;
    border: 1px solid #e2ebf5;
    border-radius: 14px;
    padding: 6px 12px;
}

.detail-box span{
    display: block;
    color: #64748b;
    font-size: 11px;
}

.detail-box strong{
    color: #0f172a;
    font-size: 13px;
}

/*
=================================
Buttons
=================================
*/

.market-actions{
    display: flex;
    gap: 12px;
}

.buy-btn,
.sell-btn{
    flex: 1;
    height: 48px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
}

.buy-btn{
   background: #10b981;
    color: #fff;
}


.sell-btn{
  background: #ef4444;
    color: #fff;
}


/*
=================================
Responsive
=================================
*/

@media(max-width:1199px){

    .market-heading h2{
        font-size: 38px;
    }
}

@media(max-width:991px){

    .market-heading{
        flex-direction: column;
        align-items: flex-start;
    }

    .market-heading h2{
        font-size: 34px;
    }
}

@media(max-width:767px){

    .market-section{
        padding: 65px 0;
    }

    .market-search-wrapper{
        padding: 18px;
        border-radius: 20px;
    }

    .market-search-box{
        height: 58px;
    }

    .market-search-box button{
        display: none;
    }

    .market-heading h2{
        font-size: 28px;
    }

    .market-price h3{
        font-size: 28px;
    }

    .market-details{
        grid-template-columns: 1fr;
    }

    .market-actions{
        flex-direction: column;
    }
}


.compact-why-section{
    padding: 45px 0!important;
    background:
    linear-gradient(135deg,#fffdfd,#fff7f8);
}

/*
=================================
Compact Card
=================================
*/

.compact-why-card{
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,192,203,0.18);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(255,182,193,0.08);
}

.compact-why-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(255,182,193,0.14);
}

/*
=================================
Icons
=================================
*/

.compact-icon{
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/*
=================================
Icon Colors
=================================
*/

.orange{
    background: rgba(255,140,0,0.12);
    color: #ff8c00;
}

.green{
    background: rgba(16,185,129,0.12);
    color: #10b981;
}

.blue{
    background: rgba(13,110,253,0.12);
    color: #0d6efd;
}

.purple{
    background: rgba(139,92,246,0.12);
    color: #8b5cf6;
}

/*
=================================
Content
=================================
*/

.compact-content h5{
    font-size: 20px;
    font-weight: 500;
    color: #071437;
    margin-bottom: 8px;
    line-height: 1.4;
}

.compact-content p{
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/*
=================================
Responsive
=================================
*/

@media(max-width:991px){

    .compact-why-section{
        padding: 40px 0;
    }

    .compact-content h5{
        font-size: 18px;
    }
}

@media(max-width:767px){

    .compact-why-card{
        padding: 18px;
        border-radius: 18px;
        gap: 14px;
    }

    .compact-icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
        border-radius: 14px;
    }

    .compact-content h5{
        font-size: 17px;
    }

    .compact-content p{
        font-size: 13px;
    }
}

/*
=================================
MERITS SECTION
=================================
*/

.merits-section{
    position: relative;
    padding: 90px 0;
    background:
    radial-gradient(circle at top left,
    rgba(0,102,204,0.08),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(255,153,0,0.08),
    transparent 35%),

    linear-gradient(to bottom,#f8fbff,#eef5fb);

    overflow: hidden;
}

/*
=================================
LEFT SIDE
=================================
*/

.merits-heading{
    margin-bottom: 38px;
}

.merits-heading h2{
    color: #0f172a;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.merits-heading h2 span{
    color: #f08600;
}

.merits-heading p{
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
    max-width: 520px;
}

/*
=================================
FEATURE ITEM
=================================
*/

.merit-item{
    position: relative;
    display: flex;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 20px;
    transition: 0.35s ease;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15,23,42,0.05);
}

.merit-item:hover{
    transform: translateY(-6px);
    border-color: rgba(0,102,204,0.20);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

/*
=================================
ICON
=================================
*/

.merit-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.orange{
    background: rgba(255,153,0,0.12);
    color: #f08600;
}

.gold{
    background: rgba(255,176,0,0.12);
    color: #ffb000;
}

.blue{
    background: rgba(0,102,204,0.10);
    color: #0066cc;
}

/*
=================================
CONTENT
=================================
*/

.merit-content h5{
    color: #0f172a;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.merit-content p{
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/*
=================================
TRUST SCORE CARD
=================================
*/

.trust-score-card{
    position: relative;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 34px;
    padding: 45px;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 15px 50px rgba(15,23,42,0.08);
}

/*
=================================
TOP BORDER
=================================
*/

.score-border{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:
    linear-gradient(90deg,
    #f08600,
    #0066cc,
    #00b894);
}

/*
=================================
LABEL
=================================
*/

.score-label{
    display: inline-block;
    color: #64748b;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

/*
=================================
MAIN SCORE
=================================
*/

.main-score{
    font-size: 110px;
    line-height: 1;
    font-weight: 800;
    color: #f08600;
    margin-bottom: 14px;
    font-family: serif;
}

/*
=================================
TEXT
=================================
*/

.score-text{
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/*
=================================
PROGRESS
=================================
*/

.score-progress{
    width: 100%;
    height: 6px;
    border-radius: 50px;
    background: #e5edf6;
    overflow: hidden;
    margin-bottom: 45px;
}

.score-fill{
    width: 82%;
    height: 100%;
    background:
    linear-gradient(90deg,
    #f08600,
    #0066cc,
    #00b894);
}

/*
=================================
STATS GRID
=================================
*/

.score-stats{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.score-box{
    background: #f8fbff;
    border: 1px solid #e2ebf5;
    border-radius: 18px;
    padding: 22px;
}

.score-box h4{
    color: #0f172a;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.score-box span{
    color: #64748b;
    font-size: 14px;
}

/*
=================================
RESPONSIVE
=================================
*/

@media(max-width:1399px){

    .merits-heading h2{
        font-size: 42px;
    }

    .main-score{
        font-size: 70px;
    }
}

@media(max-width:1199px){

    .merits-section{
        padding: 75px 0;
    }

    .trust-score-card{
        padding: 35px;
    }

    .main-score{
        font-size: 82px;
    }
}

@media(max-width:767px){

    .merits-section{
        padding: 60px 0;
    }

    .merits-heading{
        margin-bottom: 28px;
    }

    .merits-heading h2{
        font-size: 36px;
    }

    .merit-item{
        padding: 18px;
        gap: 14px;
        border-radius: 18px;
    }

    .merit-icon{
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 18px;
        border-radius: 14px;
    }

    .merit-content h5{
        font-size: 17px;
    }

    .merit-content p{
        font-size: 13px;
    }

    .trust-score-card{
        padding: 28px 22px;
        border-radius: 24px;
        margin-top: 20px;
    }

    .main-score{
        font-size: 62px;
    }

    .score-stats{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .score-box{
        padding: 18px;
    }

    .score-box h4{
        font-size: 28px;
    }
}
/*
=================================
WHATSAPP SECTION
=================================
*/

.whatsapp-section{
    position: relative;
    padding: 30px 0;
    background:
    linear-gradient(135deg,#ffffff,#f8fbff);
    overflow: hidden;
}

/*
=================================
BACKGROUND GLOW
=================================
*/

.wa-bg-glow{
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(37,211,102,0.08);
    border-radius: 50%;
    top: -200px;
    right: -180px;
    filter: blur(90px);
}

/*
=================================
WRAPPER
=================================
*/

.whatsapp-wrapper{
    position: relative;
    max-width: 980px;
    margin: auto;
    padding: 70px 60px;
    background:
    linear-gradient(rgba(255,255,255,0.92),
    rgba(255,255,255,0.92));

    border: 1px solid rgba(13,110,253,0.08);
    border-radius: 40px;
    text-align: center;
    overflow: hidden;

    box-shadow:
    0 20px 60px rgba(13,110,253,0.06);
}

/*
=================================
GRID EFFECT
=================================
*/

.whatsapp-wrapper::before{
    content: "";
    position: absolute;
    inset: 0;

    background-image:
    linear-gradient(rgba(13,110,253,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,253,0.05) 1px, transparent 1px);

    background-size: 46px 46px;
    z-index: 1;
}

/*
=================================
ALL CONTENT
=================================
*/

.whatsapp-wrapper > *{
    position: relative;
    z-index: 5;
}

/*
=================================
ICON
=================================
*/

.wa-icon{
    width: 65px;
    height: 65px;
    margin: auto auto 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #25d366, #11b954);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.22);
}

/*
=================================
HEADING
=================================
*/

.whatsapp-wrapper h2{
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
    color: #071437;
    margin-bottom: 20px;
}

.whatsapp-wrapper h2 span{
    color: #25d366;
}

/*
=================================
DESCRIPTION
=================================
*/

.wa-description{
    max-width: 780px;
    margin: auto auto 35px;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

/*
=================================
FEATURES
=================================
*/

.wa-features{
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.wa-feature{
    height: 54px;
    padding: 0 22px;
    border-radius: 50px;

    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(13,110,253,0.10);

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 600;
    color: #526277;

    backdrop-filter: blur(12px);

    transition: 0.3s ease;
}

.wa-feature:hover{
    transform: translateY(-3px);
    border-color: rgba(37,211,102,0.25);
    color: #25d366;
}

.wa-feature i{
    color: #25d366;
}

/*
=================================
BUTTON
=================================
*/

.wa-btn-wrapper{
    margin-bottom: 25px;
}

.wa-btn{
    height: 59px;
    padding: 0 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #25d366, #11b954);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    transition: 0.35s ease;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
}

.wa-btn:hover{
    transform: translateY(-5px);
    color: #fff;

    box-shadow:
    0 24px 50px rgba(37,211,102,0.30);
}

/*
=================================
BOTTOM NOTE
=================================
*/

.wa-note{
    color: #94a3b8;
    font-size: 15px;
}

/*
=================================
RESPONSIVE
=================================
*/

@media(max-width:1399px){

    .whatsapp-wrapper h2{
        font-size: 50px;
    }
}

@media(max-width:1199px){

    .whatsapp-section{
        padding: 70px 0;
    }

    .whatsapp-wrapper{
        padding: 55px 40px;
    }

    .whatsapp-wrapper h2{
        font-size: 42px;
    }

    .wa-description{
        font-size: 17px;
    }
}

@media(max-width:767px){

    .whatsapp-section{
        padding: 55px 0;
    }

    .whatsapp-wrapper{
        padding: 40px 22px;
        border-radius: 28px;
    }

    .wa-icon{
        width: 72px;
        height: 72px;
        border-radius: 22px;
        font-size: 34px;
        margin-bottom: 22px;
    }

    .whatsapp-wrapper h2{
        font-size: 30px;
    }

    .wa-description{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .wa-features{
        gap: 10px;
        margin-bottom: 30px;
    }

    .wa-feature{
        width: 100%;
        justify-content: center;
        font-size: 13px;
        height: 48px;
        padding: 0 16px;
    }

    .wa-btn{
        width: 100%;
        height: 62px;
        border-radius: 18px;
        font-size: 17px;
        padding: 0 20px;
    }

    .wa-note{
        font-size: 13px;
    }
}
/*
=================================
FOOTER
=================================
*/

.main-footer{
    position: relative;
    background:
    radial-gradient(circle at top right,
    rgba(13,110,253,0.10),
    transparent 28%),

    radial-gradient(circle at bottom left,
    rgba(255,176,0,0.08),
    transparent 28%),

   #0e3e80;

    overflow: hidden;
}

/*
=================================
TOP
=================================
*/

.footer-top{
    padding: 85px 0 55px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/*
=================================
LOGO
=================================
*/

.footer-logo{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 26px;
}

.footer-logo-icon{
    width: 52px;
    height: 52px;
    border-radius: 16px;

    background:
    linear-gradient(135deg,#0d6efd,#1f8fff);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 20px;

    box-shadow:
    0 12px 30px rgba(13,110,253,0.22);
}

.footer-logo-text{
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.footer-logo-text span{
    color: #0d6efd;
}

/*
=================================
ABOUT
=================================
*/

.footer-about{
    max-width: 360px;
    color: #ffffff;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 28px;
}

/*
=================================
CONTACT
=================================
*/

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.footer-contact a{
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;

    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-contact a:hover{
    color: #0d6efd;
}

.footer-contact i{
    color: #0d6efd;
}

/*
=================================
SOCIAL
=================================
*/

.footer-socials{
    display: flex;
    gap: 14px;
}

.footer-socials a{
    width: 48px;
    height: 48px;
    border-radius: 14px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #cbd5e1;
    text-decoration: none;
    font-size: 18px;

    transition: 0.35s ease;
}

.footer-socials a:hover{
    background: #0d6efd;
    color: #fff;
    transform: translateY(-4px);
}

/*
=================================
LINKS
=================================
*/

.footer-links h5{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
}

.footer-links ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li{
    margin-bottom: 16px;
}

.footer-links ul li a{
   color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    position: relative;
}

.footer-links ul li a:hover{
    color: #0d6efd;
    padding-left: 6px;
}

/*
=================================
DISCLAIMER
=================================
*/

.footer-disclaimer{
    padding: 40px 0;
}

.disclaimer-box{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px 32px;

    color: #ffffff;
    font-size: 15px;
    line-height: 2;

    backdrop-filter: blur(12px);
}

.disclaimer-box strong{
    color: #fff;
}

/*
=================================
BOTTOM
=================================
*/

.footer-bottom{
    padding: 22px 0 35px;
}

.footer-bottom-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p{
    margin: 0;
    color: #ffffff;
    font-size: 15px;
}

/*
=================================
RESPONSIVE
=================================
*/

@media(max-width:1199px){

    .footer-top{
        padding: 70px 0 50px;
    }

    .footer-logo-text{
        font-size: 28px;
    }

    .footer-about{
        max-width: 100%;
    }
}

@media(max-width:991px){

    .footer-links{
        margin-top: 10px;
    }

    .footer-links h5{
        margin-bottom: 20px;
    }
}

@media(max-width:767px){

    .footer-top{
        padding: 55px 0 35px;
    }

    .footer-logo{
        margin-bottom: 22px;
    }

    .footer-logo-icon{
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 18px;
    }

    .footer-logo-text{
        font-size: 24px;
    }

    .footer-about{
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 24px;
    }

    .footer-contact a{
        font-size: 14px;
    }

    .footer-socials a{
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 16px;
    }

    .footer-links h5{
        font-size: 18px;
    }

    .footer-links ul li{
        margin-bottom: 12px;
    }

    .footer-links ul li a{
        font-size: 14px;
    }

    .footer-disclaimer{
        padding: 30px 0;
    }

    .disclaimer-box{
        padding: 22px 20px;
        border-radius: 18px;
        font-size: 13px;
        line-height: 1.9;
    }

    .footer-bottom{
        padding: 16px 0 28px;
    }

    .footer-bottom-flex{
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p{
        font-size: 13px;
    }
}

.breadcrumb-section{

    background:
    linear-gradient(
        135deg,
        #00112d,
        #002c6b
    );

    padding:70px 0;

    position:relative;

    overflow:hidden;
}

.breadcrumb-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,0.05);

    border-radius:50%;

    top:-120px;

    right:-120px;
}

.breadcrumb-section::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,0.04);

    border-radius:50%;

    bottom:-100px;

    left:-100px;
}

.breadcrumb-content{

    position:relative;

    z-index:2;
}

.breadcrumb-content h1{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:15px;
}

.breadcrumb-nav{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;
}

.breadcrumb-nav a{

    color:#cbd5e1;

    text-decoration:none;

    font-size:15px;

    transition:0.3s;
}

.breadcrumb-nav a:hover{

    color:#fff;
}

.breadcrumb-nav span{

    color:#14b8a6;

    font-size:15px;

    font-weight:500;
}

.breadcrumb-nav i{

    color:#94a3b8;

    font-size:12px;
}



/* =========================================
   Mobile
========================================= */

@media(max-width:768px){

    .breadcrumb-section{

        padding:50px 0;
    }

    .breadcrumb-content h1{

        font-size:34px;
    }

}

/*
=================================
PROCESS SECTION
=================================
*/

.process-section{
    position: relative;
    padding: 90px 0;
    overflow: hidden;

    background:
    radial-gradient(circle at top left,
    rgba(0,102,204,0.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(255,153,0,0.08),
    transparent 35%),

    linear-gradient(to bottom,#f8fbff,#eef5fb);
}

/*
=================================
HEADING
=================================
*/

.process-heading{
    margin-bottom: 70px;
}

.process-badge{
    display: inline-block;
    background: rgba(255,153,0,0.12);
    color: #ff9900;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-heading h2{
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.process-heading h2 span{
    color: #ff9900;
}

.process-heading p{
    color: #64748b;
    font-size: 16px;
    max-width: 620px;
    margin: auto;
    line-height: 1.8;
}

/*
=================================
PROCESS ROW
=================================
*/

.process-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/*
=================================
PROCESS STEP
=================================
*/

.process-step{
    flex: 1;
    min-width: 0;
}

/*
=================================
PROCESS CARD
=================================
*/

.process-card{
    position: relative;
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 28px;
    padding: 45px 30px;
    text-align: center;
    transition: 0.35s ease;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15,23,42,0.05);
}

.process-card:hover{
    transform: translateY(-8px);
    border-color: rgba(0,102,204,0.20);
    box-shadow: 0 25px 50px rgba(15,23,42,0.10);
}

/*
=================================
STEP NUMBER
=================================
*/

.step-number{
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff9900,#ffb000);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255,153,0,0.25);
}

/*
=================================
ICON
=================================
*/

.process-icon{
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: rgba(255,153,0,0.12);
    color: #ff9900;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.blue-icon{
    background: rgba(0,102,204,0.10);
    color: #0066cc;
}

.gold-icon{
    background: rgba(255,176,0,0.12);
    color: #ffb000;
}

/*
=================================
CONTENT
=================================
*/

.process-card h4{
    color: #0f172a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-card p{
    color: #64748b;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/*
=================================
ARROW
=================================
*/

.process-arrow{
    width: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-arrow i{
    font-size: 42px;
    color: #0066cc;
}

/*
=================================
RESPONSIVE
=================================
*/

@media(max-width:1199px){

    .process-heading h2{
        font-size: 46px;
    }

    .process-card{
        padding: 40px 25px;
    }

    .process-card h4{
        font-size: 24px;
    }
}

@media(max-width:991px){

    .process-section{
        padding: 70px 0;
    }

    .process-row{
        flex-direction: column;
    }

    .process-arrow{
        display: none;
    }

    .process-heading{
        margin-bottom: 50px;
    }

    .process-heading h2{
        font-size: 40px;
    }

    .process-step{
        width: 100%;
    }
}

@media(max-width:767px){

    .process-section{
        padding: 60px 0;
    }

    .process-heading h2{
        font-size: 32px;
    }

    .process-heading p{
        font-size: 14px;
    }

    .process-card{
        border-radius: 22px;
        padding: 35px 22px;
    }

    .process-icon{
        width: 72px;
        height: 72px;
        font-size: 28px;
        border-radius: 20px;
    }

    .process-card h4{
        font-size: 22px;
    }

    .process-card p{
        font-size: 14px;
    }
}
.market-logo{

    width:80px;

    height:80px;

    border-radius:18px;

    overflow:hidden;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid #e2e8f0;

    padding:10px;
}



.market-logo img{

    width:100%;

    height:100%;

    object-fit:contain;
}

/*
=================================
Advisor Modal Design
=================================
*/

.advisor-modal{
    background: linear-gradient(135deg,#071437,#0b1d4d);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/*
=================================
Modal Body
=================================
*/

.advisor-modal .modal-body{
    padding: 50px 35px;
}

/*
=================================
Close Button
=================================
*/

.custom-close{
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: #ffffff !important;
    opacity: 1;
    border-radius: 50%;
    padding: 10px;
    z-index: 10;
}

/*
=================================
Top Icon
=================================
*/

.advisor-icon{
    width: 95px;
    height: 95px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff8c00,#ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #111827;
    box-shadow: 0 15px 40px rgba(255,140,0,0.35);
}

/*
=================================
Title
=================================
*/

.advisor-title{
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

/*
=================================
Description
=================================
*/

.advisor-desc{
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 35px;
}

/*
=================================
Advisor Card
=================================
*/

.advisor-card{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(12px);
}

/*
=================================
Profile
=================================
*/

.advisor-profile{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    justify-content: center;
}

/*
=================================
Avatar
=================================
*/

.advisor-avatar{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff8c00,#ffb347);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255,140,0,0.30);
}

/*
=================================
Advisor Info
=================================
*/

.advisor-info h5{
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.advisor-info span{
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

/*
=================================
Call Button
=================================
*/

.advisor-call-btn{
    width: 100%;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg,#ff8c00,#ffb347);
    color: #111827;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s ease;
    box-shadow: 0 15px 35px rgba(255,140,0,0.28);
}

.advisor-call-btn:hover{
    transform: translateY(-3px);
    color: #111827;
}

/*
=================================
Responsive
=================================
*/

@media(max-width:767px){

    .advisor-modal .modal-body{
        padding: 45px 22px;
    }

    .advisor-title{
        font-size: 28px;
    }

    .advisor-desc{
        font-size: 15px;
    }

    .advisor-info h5{
        font-size: 20px;
    }

    .advisor-call-btn{
        font-size: 17px;
        height: 56px;
    }

    .advisor-profile{
        flex-direction: column;
        text-align: center;
    }
}
.view-more-stock{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:8px;

    font-size:12px;

    font-weight:700;

    color:#0f6ad9;

    text-decoration:none;

    transition:0.3s;
}

.view-more-stock i{

    font-size:11px;

    transition:0.3s;
}

.view-more-stock:hover{

    color:#ff8800;
}

.view-more-stock:hover i{

    transform:translateX(4px);
}
.terminal-icon.success{
    background:#0f5132;
    color:#00ff9d;
}

.terminal-icon.danger{
    background:#58151c;
    color:#ff4d6d;
}