/* ==========================================================
   ShareMarketGyan v1.0
   Main Stylesheet
========================================================== */

/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

/* =========================
   CSS VARIABLES
========================= */

:root{

    --primary:#0F4C81;
    --secondary:#14B8A6;
    --orange:#F59E0B;

    --background:#F8FAFC;

    --white:#FFFFFF;

    --heading:#111827;

    --text:#6B7280;

    --border:#E5E7EB;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.30s ease;

}

/* =========================
   RESET
========================= */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    overflow-x:hidden;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--background);

    color:var(--heading);

    line-height:1.7;

    overflow-x:hidden;

    width:100%;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button,input{

    font-family:inherit;

}

/* =========================
   CONTAINER
========================= */

.container{

    width:min(1320px,92%);

    margin:auto;

}

/* ==========================================================
   TOP BAR
========================================================== */

.topbar{
    background:var(--primary);
    color:#fff;
    padding:9px 0;
    font-size:13px;
    text-align:center;
}

.topbar strong{
    color:#fff;
}


/* =========================
   SECTION
========================= */

section{

    padding:70px 0;

}

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3,h4{

    font-family:'Poppins',sans-serif;

    color:var(--heading);

}

h1{

    font-size:64px;

    line-height:1.1;

    font-weight:800;

}

h2{

    font-size:42px;

    margin-bottom:15px;

}

h3{

    font-size:24px;

}

p{

    color:var(--text);

    font-size:17px;

}

/* =========================
   BUTTONS
========================= */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:100px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:100px;

    border:2px solid var(--primary);

    color:var(--primary);

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/* =====================================================
   HEADER
===================================================== */

.site-header{

    background:var(--white);

    position:sticky;

    top:0;

    z-index:1100;

    box-shadow:0 4px 20px rgba(0,0,0,.05);

}

.header-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    min-height:90px;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo-icon{

    width:60px;

    height:60px;

    border-radius:16px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

}

.logo-text h2{

    margin:0;

    font-size:28px;

    line-height:1.1;

}

.logo-text span{

    color:var(--text);

    font-size:14px;

}

/* ==========================================================
   NAVIGATION
========================================================== */

.main-nav{

    background:var(--white);

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}

.nav-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

}

.nav-menu{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:40px;

    margin:0;

    padding:0;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    display:block;

    padding:18px 0;

    color:var(--heading);

    font-weight:600;

    transition:var(--transition);

    position:relative;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-menu a.active{

    color:var(--primary);

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:3px;

    background:var(--secondary);

    transition:.3s;

}

.nav-menu a:hover::after,

.nav-menu a.active::after{

    width:100%;

}
/* =====================================================
   SEARCH
===================================================== */

.header-search{

    width:420px;

    display:flex;

    overflow:hidden;

    background:#EEF3F8;

    border-radius:100px;

}

.header-search input{

    flex:1;

    border:none;

    background:transparent;

    padding:16px 22px;

    font-size:15px;

}

.header-search input:focus{

    outline:none;

}

.header-search button{

    width:60px;

    border:none;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    transition:var(--transition);

}

.header-search button:hover{

    background:var(--secondary);

}


/* ==========================================================
   GLOBAL SEARCH RESULTS
========================================================== */

.global-search-results{
    position:absolute;

    top:calc(100% + 10px);
    right:0;

    width:420px;
    max-height:430px;

    overflow-y:auto;

    display:none;

    background:#ffffff;

    border:1px solid var(--border);
    border-radius:16px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    z-index:2000;
}

.global-search-results.show{
    display:block;
}

.search-result-item{
    display:flex;
    align-items:flex-start;

    gap:14px;

    padding:15px 18px;

    border-bottom:1px solid var(--border);

    background:#fff;

    transition:.2s ease;
}

.search-result-item:last-child{
    border-bottom:none;
}

.search-result-item:hover{
    background:#F8FAFC;
}

.search-result-type{
    flex:0 0 auto;

    padding:5px 9px;

    border-radius:20px;

    background:rgba(15,76,129,.08);

    color:var(--primary);

    font-size:11px;
    font-weight:700;

    text-transform:uppercase;
}

.search-result-content{
    min-width:0;

    display:flex;
    flex-direction:column;

    gap:3px;
}

.search-result-content strong{
    color:var(--heading);

    font-size:14px;

    line-height:1.4;
}

.search-result-content small{
    color:var(--text);

    font-size:12px;

    line-height:1.5;
}

.search-loading,
.search-no-results{
    padding:20px;

    color:var(--text);

    font-size:14px;

    text-align:center;
}
/* ==========================================================
   HERO SECTION
========================================================== */

.hero{

    padding:90px 0;

    background:#ffffff;

}

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-label{

    display:inline-block;

    background:#E0F2FE;

    color:#0369A1;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    max-width:620px;

    margin-bottom:35px;

}

.hero-search{

    display:flex;

    background:#EEF3F8;

    border-radius:60px;

    overflow:hidden;

    max-width:620px;

    margin-bottom:35px;

}

.hero-search input{

    flex:1;

    border:none;

    background:none;

    padding:18px 24px;

    font-size:16px;

}

.hero-search input:focus{

    outline:none;

}

.hero-search button{

    width:70px;

    border:none;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.hero-search button:hover{

    background:var(--secondary);

}

.hero-tags{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    align-items:center;

}

.hero-tags span{

    font-weight:700;

}

.hero-tags a{
    background:#F3F4F6;
    color:var(--heading);

    padding:8px 16px;
    border-radius:50px;

    transition:.3s;
}

.hero-tags a:hover{
    background:var(--primary);
    color:#fff;
}

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-circle{

    width:360px;

    height:360px;

    border-radius:50%;

    background:linear-gradient(135deg,#0F4C81,#14B8A6);

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 30px 60px rgba(15,76,129,.20);

}

.hero-circle i{

    font-size:140px;

    color:#fff;

}

/* ==========================================================
   EDITOR'S PICK
========================================================== */

.editor-pick{

    background:#F8FAFC;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-tag{

    display:inline-block;

    background:#FFF3CD;

    color:#A16207;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.featured-post{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.featured-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.featured-content{

    padding:50px;

}

.post-category{

    display:inline-block;

    background:#E0F2FE;

    color:#0369A1;

    padding:8px 16px;

    border-radius:30px;

    margin-bottom:20px;

    font-weight:600;

}

.featured-content h3{

    font-size:34px;

    margin-bottom:20px;

}

.featured-content p{

    margin-bottom:30px;

}

.post-meta{

    display:flex;

    gap:30px;

    margin-bottom:30px;

    color:var(--text);

    font-size:14px;

}

/* ==========================================================
   COMMON SECTION HEADER
========================================================== */

.section-header{
    max-width:820px;
    margin:0 auto 55px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 16px;
    margin-bottom:16px;

    border:1px solid rgba(15,76,129,.15);
    border-radius:999px;

    background:rgba(15,76,129,.06);
    color:var(--primary);

    font-size:.78rem;
    font-weight:700;
    line-height:1;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.section-title{
    margin-bottom:14px;
    font-size:42px;
    line-height:1.2;
    color:var(--heading);
}

.section-description{
    max-width:720px;
    margin:0 auto;
    color:var(--text);
    font-size:17px;
    line-height:1.8;
}

/* ==========================================================
   ARTICLE CARDS
========================================================== */

.latest-articles{

    background:#fff;

}

.article-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.article-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.article-card:hover{

    transform:translateY(-8px);

}

.article-card img{

    height:230px;

    object-fit:cover;

}

.article-content{

    padding:25px;

}

.article-content h3{

    margin:18px 0;

    font-size:24px;

}

.article-content p{

    margin-bottom:20px;

}

.article-content a{

    color:var(--primary);

    font-weight:600;

}

/* ==========================================================
   CATEGORY CARDS
========================================================== */

.learn-categories{

    background:#F8FAFC;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.category-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.category-card:hover{

    transform:translateY(-8px);

}

.category-card i{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#E0F2FE;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin:auto;

    margin-bottom:25px;

}

.category-card h3{

    margin-bottom:12px;

}

/* ==========================================================
   MARKET ANALYSIS
========================================================== */

.market-analysis{

    background:#ffffff;

}

.analysis-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.analysis-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

    border-top:5px solid var(--primary);

}

.analysis-card:hover{

    transform:translateY(-8px);

}

.analysis-badge{

    display:inline-block;

    padding:8px 16px;

    border-radius:30px;

    background:#EEF7FF;

    color:var(--primary);

    font-weight:600;

    margin-bottom:20px;

}

.analysis-card h3{

    margin-bottom:15px;

}

.analysis-card p{

    margin-bottom:25px;

}

.analysis-card a{

    color:var(--primary);

    font-weight:600;

}

/* ==========================================================
   RESOURCES
========================================================== */

.resources{

    background:#F8FAFC;

}

.resource-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.resource-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.resource-card:hover{

    transform:translateY(-8px);

}

.resource-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:25px;

}

.resource-card h3{

    margin-bottom:15px;

}

.resource-card p{

    margin-bottom:20px;

}

.resource-card a{

    color:var(--primary);

    font-weight:600;

}

/* ==========================================================
   ABOUT
========================================================== */

.about-home{

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.about-icon{

    width:320px;

    height:320px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:120px;

    box-shadow:var(--shadow);

}

.about-content p{

    margin:20px 0;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.about-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.about-features i{

    color:var(--secondary);

}

/* ==========================================================
   NEWSLETTER
========================================================== */

.newsletter{

    background:#F8FAFC;

}

.newsletter-box{

    background:linear-gradient(135deg,var(--primary),#1565C0);

    border-radius:28px;

    padding:70px;

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.newsletter-content{

    flex:1;

}

.newsletter-content .section-tag{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.newsletter-content h2{

    color:#fff;

    margin:20px 0;

}

.newsletter-content p{

    color:rgba(255,255,255,.85);

}

.newsletter-form{

    display:flex;

    width:450px;

    background:#fff;

    border-radius:60px;

    overflow:hidden;

}

.newsletter-form input{

    flex:1;

    border:none;

    padding:18px 24px;

    font-size:16px;

}

.newsletter-form input:focus{

    outline:none;

}

.newsletter-form .btn{

    border:none;

    border-radius:0;

    cursor:pointer;

}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer{

    background:#111827;

    color:#D1D5DB;

    padding-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-column h3{

    color:#fff;

    margin-bottom:20px;

}

.footer-logo{

    color:#fff;

    margin-bottom:20px;

}

.footer-logo i{

    color:var(--secondary);

    margin-right:10px;

}

.footer-column p{

    color:#9CA3AF;

    line-height:1.8;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-column a{

    color:#D1D5DB;

    transition:.3s;

}

.footer-column a:hover{

    color:#ffffff;

}

/* ==========================================================
   SOCIAL MEDIA LINKS
========================================================== */

.social-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:24px;
}

/* ==========================================================
   COMMON CIRCLE
========================================================== */

.social-links a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 21px;

    box-shadow:
        0 5px 14px
        rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


/* ==========================================================
   FACEBOOK
========================================================== */

.social-facebook {

    background:
        #4267B2;

}


/* ==========================================================
   X
========================================================== */

.social-x {

    background:
        #1DA1F2;

}


/* ==========================================================
   INSTAGRAM
========================================================== */

.social-instagram {

    background:
        linear-gradient(
            135deg,
            #feda75 0%,
            #fa7e1e 25%,
            #d62976 55%,
            #962fbf 78%,
            #4f5bd5 100%
        );

}


/* ==========================================================
   PINTEREST
========================================================== */

.social-pinterest {

    background:
        #E60023;

}


/* ==========================================================
   YOUTUBE
========================================================== */

.social-youtube {

    background:
        #FF0000;

}


/* ==========================================================
   ICON
========================================================== */

.social-links a i {

    color:
        #ffffff;

    line-height:
        1;

}


/* ==========================================================
   HOVER
========================================================== */

.social-links a:hover {

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 9px 22px
        rgba(0, 0, 0, 0.30);

}


/* ==========================================================
   CLICK
========================================================== */

.social-links a:active {

    transform:
        scale(0.95);

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .social-links {

        gap: 12px;

    }


    .social-links a {

        width: 44px;

        height: 44px;

        font-size: 18px;

    }

}

/* ==========================================================
   JAVASCRIPT HELPERS
========================================================== */

.hidden{

    opacity:0;

    transform:translateY(40px);

    transition:all .7s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.site-header.sticky{

    box-shadow:0 10px 30px rgba(0,0,0,.10);

}

.scroll-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

}

.scroll-top:hover{

    background:var(--secondary);

}

/* ==========================================================
   PAGE HERO
========================================================== */

.page-hero{

    padding:80px 0;

    background:linear-gradient(135deg,#0F4C81,#1565C0);

    color:#fff;

    text-align:center;

}

.page-hero h1{

    color:#fff;

    margin:25px 0;

}

.page-hero h1 span{

    color:#14B8A6;

}

.page-hero p{

    color:rgba(255,255,255,.9);

    max-width:700px;

    margin:0 auto 35px;

}

/* ==========================================================
   PAGE HERO SEARCH + TAGS
========================================================== */

.page-hero .hero-search{
    margin:0 auto 30px;
    max-width:650px;
}

.page-hero .hero-tags{
    justify-content:center;
}
/* ==========================================================
   LEARNING ROADMAP
========================================================== */

.learning-roadmap {
    padding: 80px 0;
    background: #ffffff;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 45px;
}

.roadmap-card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 28px;

    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;

    color: inherit;
    text-decoration: none;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.roadmap-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: var(--primary);

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform var(--transition);
}

.roadmap-card:hover {
    transform: translateY(-5px);

    border-color: var(--primary);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}

.roadmap-card:hover::before {
    transform: scaleY(1);
}


/* ----------------------------------------------------------
   ROADMAP NUMBER
---------------------------------------------------------- */

.roadmap-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #e2e8f0;

    font-size: 42px;
    font-weight: 800;

    line-height: 1;

    pointer-events: none;
}


/* ----------------------------------------------------------
   ROADMAP ICON
---------------------------------------------------------- */

.roadmap-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    border-radius: 16px;

    background: rgba(37, 99, 235, 0.10);
    color: var(--primary);

    font-size: 23px;

    transition:
        background var(--transition),
        color var(--transition);
}

.roadmap-card:hover .roadmap-icon {
    background: var(--primary);
    color: #ffffff;
}


/* ----------------------------------------------------------
   ROADMAP CONTENT
---------------------------------------------------------- */

.roadmap-content {
    position: relative;
    z-index: 1;

    padding-right: 35px;
}

.roadmap-level {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.roadmap-content h3 {
    margin: 0 0 10px;

    color: var(--heading);

    font-size: 21px;
    font-weight: 800;

    line-height: 1.3;
}

.roadmap-content p {
    margin: 0 0 17px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   ROADMAP LINK
---------------------------------------------------------- */

.roadmap-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}

.roadmap-link i {
    transition: transform 0.2s ease;
}

.roadmap-card:hover .roadmap-link i {
    transform: translateX(4px);
}

/* ==========================================================
   LEARNING LEVEL SECTION
========================================================== */

.learning-level-section {
    padding: 90px 0;
    background: #F8FAFC;
}


/* ----------------------------------------------------------
   LEVEL OVERVIEW
---------------------------------------------------------- */

.level-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    max-width: 850px;

    margin: 40px auto 50px;
}

.level-overview-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    border-radius: 16px;

    box-shadow: var(--shadow);
}

.level-overview-item > i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 12px;

    background: rgba(37, 99, 235, 0.10);

    color: var(--primary);

    font-size: 18px;
}

.level-overview-item strong {
    display: block;

    margin-bottom: 3px;

    color: var(--heading);

    font-size: 16px;
    font-weight: 800;
}

.level-overview-item span {
    display: block;

    color: var(--text);

    font-size: 12px;
}


/* ----------------------------------------------------------
   LESSON LIST
---------------------------------------------------------- */

.lesson-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* ----------------------------------------------------------
   LESSON CARD
---------------------------------------------------------- */

.lesson-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 25px;

    background: #FFFFFF;

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.lesson-card:hover {
    transform: translateY(-4px);

    border-color: var(--primary);

    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.10);
}


/* ----------------------------------------------------------
   LESSON NUMBER
---------------------------------------------------------- */

.lesson-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    border-radius: 12px;

    background: var(--primary);

    color: #FFFFFF;

    font-size: 13px;
    font-weight: 800;
}


/* ----------------------------------------------------------
   LESSON ICON
---------------------------------------------------------- */

.lesson-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    margin-left: -8px;

    border-radius: 12px;

    background: rgba(20, 184, 166, 0.10);

    color: var(--secondary);

    font-size: 18px;
}


/* ==========================================================
   LESSON CONTENT
   Clean continuous reading layout
========================================================== */

.lesson-content{
    background:#ffffff;
    padding:0;
}

.lesson-article{
    max-width:900px;
    margin:0 auto;
    padding:0;
}

.lesson-article section{
    margin-bottom:60px;
    padding:0;
}

.lesson-article h2{
    margin-bottom:20px;
    padding:0;
    font-size:1.35rem;
    line-height:1.35;
}

.lesson-article p{
    margin-bottom:20px;
    padding:0;
    font-size:1rem;
    line-height:1.9;
}

.lesson-article section:last-child{
    margin-bottom:0;
}

.lesson-article img{
    display:block;
    width:100%;
    max-width:100%;
    height:auto;
    margin:30px 0;
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* ----------------------------------------------------------
   LESSON STATUS
---------------------------------------------------------- */

.lesson-status {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 20px;

    background: #F1F5F9;

    color: #64748B;

    font-size: 11px;
    font-weight: 700;
}


/* ----------------------------------------------------------
   FUTURE LESSON LINK
---------------------------------------------------------- */

.lesson-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.lesson-link i {
    transition: transform 0.2s ease;
}

.lesson-link:hover i {
    transform: translateX(4px);
}

.lesson-card-link {
    color: inherit;
    text-decoration: none;
}

.lesson-card-link:hover {
    color: inherit;
}

/* ==========================================================
   LEARNING CATEGORIES
========================================================== */

.learning-categories{

    background:#F8FAFC;

}

.learning-level{

    margin-top:70px;

}

.learning-level h3{

    margin-bottom:30px;

    color:var(--primary);

}

/* ==========================================================
   FEATURED LEARNING
========================================================== */

.featured-learning{

    background:#ffffff;

}

.learning-banner{

    display:grid;

    grid-template-columns:1.3fr .7fr;

    gap:60px;

    align-items:center;

    background:#fff;

    border-radius:25px;

    padding:60px;

    box-shadow:var(--shadow);

}

.learning-content p{

    margin:25px 0;

}

.learning-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin:40px 0;

}

.learning-stat{

    background:#F8FAFC;

    padding:25px;

    border-radius:18px;

    text-align:center;

}

.learning-stat h3{

    color:var(--primary);

    font-size:30px;

    margin-bottom:8px;

}

.learning-circle{

    width:320px;

    height:320px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    color:#fff;

    font-size:120px;

    box-shadow:var(--shadow);

}


/* ==========================================================
   LEARNING ARTICLES
========================================================== */

.learning-articles{

    background:#F8FAFC;

}

.learning-group{

    margin-top:60px;

}

.learning-group h3{

    margin-bottom:30px;

    color:var(--primary);

    border-left:5px solid var(--primary);

    padding-left:15px;

}



/* ==========================================================
   FAQ
========================================================== */

.faq-section{

    background:#ffffff;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border-radius:16px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:25px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s ease;

}

.faq-answer p{

    padding:0 30px 30px;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active i{

    transform:rotate(45deg);

}

/* ==========================================================
   LEARN CTA
========================================================== */

.learn-cta{

    background:#F8FAFC;

}

.cta-box{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    padding:70px 50px;

    border-radius:25px;

    text-align:center;

    color:#fff;

}

.cta-box h2{

    color:#fff;

    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.9);

    max-width:700px;

    margin:0 auto 35px;

}


/* ==========================================================
   ARTICLE META
========================================================== */

.article-meta{

    display:flex;

    gap:25px;

    margin:25px 0;

    color:#64748B;

    font-size:15px;

}

.article-meta span{

    display:flex;

    align-items:center;

    gap:8px;

}

.article-meta i{

    color:var(--primary);

}


/* ==========================================================
   PAGINATION
========================================================== */

.pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin:60px 0;

    flex-wrap:wrap;

}

.pagination a{

    padding:12px 18px;

    border-radius:10px;

    background:#F8FAFC;

    color:var(--heading);

    transition:.3s;

    font-weight:600;

}

.pagination a:hover,

.pagination a.active{

    background:var(--primary);

    color:#fff;

}


/* ==========================================================
   BREADCRUMB
========================================================== */

.breadcrumb-section{

    background:#F8FAFC;

    padding:18px 0;

}

.breadcrumb{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    font-size:14px;

}

.breadcrumb a{

    color:var(--primary);

}

.breadcrumb span{

    color:#64748B;

}


/* ==========================================================
   LESSON HEADER
========================================================== */

.lesson-header{

    padding:70px 0;

    background:#fff;

}

.lesson-top{

    display:flex;

    gap:15px;

    margin-bottom:25px;

}

.category-badge,

.difficulty{

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.category-badge{

    background:#DBEAFE;

    color:#1D4ED8;

}

.difficulty.beginner{

    background:#DCFCE7;

    color:#15803D;

}

.lesson-meta{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

    margin-top:35px;

    color:#64748B;

}


/* ==========================================================
   LEARNING PROGRESS
========================================================== */

.progress-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.progress-bar{

    height:14px;

    background:#E5E7EB;

    border-radius:20px;

    margin:25px 0;

    overflow:hidden;

}

.progress-fill{

    width:12%;

    height:100%;

    background:linear-gradient(90deg,var(--primary),var(--secondary));

    color:#fff;

    text-align:center;

    font-size:12px;

    line-height:14px;

}

.progress-info{

    display:flex;

    justify-content:space-between;

}


/* ==========================================================
   FEATURED IMAGE
========================================================== */

.lesson-image{

    background:#fff;

    padding:0 0 70px;

}

.lesson-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:var(--shadow);

}


/* ==========================================================
   WHAT YOU'LL LEARN
========================================================== */

.summary-box{

    background:#EFF6FF;

    border-left:6px solid var(--primary);

    padding:40px;

    border-radius:18px;

}

.summary-box h2{

    margin-bottom:25px;

}

.summary-box ul{

    display:grid;

    gap:18px;

}

.summary-box li{

    list-style:none;

    position:relative;

    padding-left:35px;

}

.summary-box li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--secondary);

    font-weight:bold;

}


/* ==========================================================
   TABLE OF CONTENTS
========================================================== */

.toc-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.toc-box h2{

    margin-bottom:25px;

}

.toc-box ol{

    padding-left:20px;

}

.toc-box li{

    margin-bottom:15px;

}

.toc-box a{

    color:var(--heading);

    transition:.3s;

}

.toc-box a:hover{

    color:var(--primary);

}


.info-box{

    background:#EFF6FF;

    border-left:5px solid #2563EB;

    padding:25px;

    border-radius:15px;

    margin:35px 0;

}

.warning-box{

    background:#FEF3C7;

    border-left:5px solid #F59E0B;

    padding:25px;

    border-radius:15px;

    margin:35px 0;

}

.success-box{

    background:#DCFCE7;

    border-left:5px solid #16A34A;

    padding:25px;

    border-radius:15px;

    margin:35px 0;

}


/* ==========================================================
   LESSON NAVIGATION
========================================================== */

.lesson-nav{

    display:flex;

    justify-content:space-between;

    gap:30px;

}

.lesson-link{

    flex:1;

    background:#F8FAFC;

    padding:30px;

    border-radius:20px;

    transition:.3s;

}

.lesson-link strong{

    display:block;

    margin-top:10px;

}

.lesson-link:hover{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================
   SHARE ARTICLE
========================================================== */

.share-box{

    text-align:center;

    background:#F8FAFC;

    padding:60px;

    border-radius:24px;

}

.share-box h2{

    margin-bottom:15px;

}

.share-box p{

    margin-bottom:30px;

}

/* ==========================================================
   AUTHOR
========================================================== */

.author-card{

    display:flex;

    gap:30px;

    align-items:center;

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.author-image img{

    width:110px;

    height:110px;

    border-radius:50%;

    object-fit:cover;

}

/* ==========================================================
   MARKET SNAPSHOT
========================================================== */

.snapshot-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.snapshot-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

}

.snapshot-card h3{

    margin-bottom:15px;

}

.snapshot-card p{

    font-size:34px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:10px;

}

.snapshot-card span{

    color:var(--secondary);

    font-weight:600;

}

/* ==========================================================
   MARKET OUTLOOK
========================================================== */

.market-outlook{

    background:#ffffff;

}

.outlook-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.outlook-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.outlook-card h3{

    margin-bottom:15px;

}

.outlook-card h1{

    color:var(--primary);

    margin-bottom:20px;

}

.outlook-card p{

    line-height:1.7;

}

.outlook-card.bullish{

    border-top:5px solid #16A34A;

}

/* ==========================================================
   ANALYSIS CARD
========================================================== */

@media(max-width:1024px){

    .analysis-card{

        grid-template-columns:1fr;

    }

}

/* ==========================================================
   STOCK WATCHLIST
========================================================== */

.watchlist{

    background:#ffffff;

}

.watchlist-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.watch-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.watch-card:hover{

    transform:translateY(-6px);

}

.stock-sector{

    display:inline-block;

    background:#DBEAFE;

    color:#2563EB;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:20px;

}

.stock-meta{

    display:flex;

    justify-content:space-between;

    margin-top:25px;

    font-size:14px;

    color:#64748B;

}

/* ==========================================================
   SECTOR PERFORMANCE
========================================================== */

.sector-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.sector-card{

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.sector-card.positive{

    border-top:4px solid #16A34A;

}

/* ==========================================================
   RESOURCE HERO
========================================================== */

.resource-hero{

    background:linear-gradient(135deg,#0F4C81,#1E40AF);

}


/* ==========================================================
   TOOLKIT DASHBOARD
========================================================== */

.toolkit-dashboard {
    padding: 100px 0;
    background: #F8FAFC;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.dashboard-card {
    position: relative;
    overflow: hidden;

    background: #fff;
    border-radius: 24px;
    padding: 40px;

    text-align: center;

    transition: .35s;
    box-shadow: var(--shadow);

    border: 1px solid #E2E8F0;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

.dashboard-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #2563EB,
        #14B8A6
    );

    transition: .4s;
}

.dashboard-card:hover::before {
    left: 0;
}

.dashboard-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #2563EB,
        #0F766E
    );

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
}
/* ==========================================================
   INVESTOR STARTER KIT
========================================================== */

.starter-kit{

    background:#fff;
    padding:100px 0;

}

.starter-roadmap{

    max-width:1000px;
    margin:70px auto 0;
    display:flex;
    flex-direction:column;
    gap:35px;

}

.starter-step{

    display:grid;
    grid-template-columns:90px 1fr;
    gap:30px;
    align-items:flex-start;

}

.starter-number{

    width:70px;
    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#14B8A6);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    box-shadow:0 12px 30px rgba(37,99,235,.25);

}

.starter-content{

    background:#fff;

    padding:35px;

    border-radius:22px;

    border:1px solid #E5E7EB;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.starter-content:hover{

    transform:translateY(-6px);

}

.starter-content h3{

    margin-bottom:15px;

}

.starter-content p{

    margin:15px 0 25px;

    color:#64748B;

    line-height:1.8;

}



/* ==========================================================
   BOOK LIBRARY
========================================================== */

.book-library{

    padding:100px 0;

    background:#F8FAFC;

}

.book-category{

    margin-top:70px;

}

.category-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.category-header a{

    font-weight:600;

}

.book-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.book-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.book-card:hover{

    transform:translateY(-8px);

}

.book-cover{

    width:90px;

    height:120px;

    margin:auto;

    margin-bottom:25px;

    border-radius:12px;

    background:linear-gradient(135deg,#2563EB,#0F766E);

    color:#fff;

    font-size:42px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.book-card h4{

    margin-bottom:12px;

}

.book-card p{

    color:#64748B;

    margin-bottom:20px;

}

.book-card span{

    background:#DBEAFE;

    color:#2563EB;

    padding:8px 16px;

    border-radius:40px;

    font-size:13px;

}

/* ==========================================================
   FREE COURSES
========================================================== */

.courses-section{

    padding:100px 0;

    background:#ffffff;

}

.course-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.course-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    border:1px solid #E5E7EB;

    transition:.35s;

    box-shadow:var(--shadow);

}

.course-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.course-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:linear-gradient(135deg,#2563EB,#14B8A6);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.course-card h3{

    margin-bottom:15px;

}

.course-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.course-level{

    display:inline-block;

    background:#EFF6FF;

    color:#2563EB;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:25px;

}

/* ==========================================================
   TODAY'S LEARNING PICKS
========================================================== */

.learning-picks{

    padding:100px 0;

    background:#F8FAFC;

}

.pick-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.pick-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:var(--shadow);

    border:1px solid #E5E7EB;

    transition:.35s;

}

.pick-card:hover{

    transform:translateY(-8px);

}

.pick-badge{

    display:inline-block;

    background:#DBEAFE;

    color:#2563EB;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:20px;

}

.pick-card h3{

    margin-bottom:15px;

}

.pick-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.calculator-hub{

padding:100px 0;

background:#fff;

}

.calculator-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.calculator-card{

padding:35px;

background:#F8FAFC;

border-radius:20px;

transition:.3s;

text-align:center;

}

.calculator-card i{

font-size:36px;

margin-bottom:25px;

color:var(--primary);

}

.calculator-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.08);

}
/* ==========================================================
   FINAL QA ADDITIONS
========================================================== */

.book-card a{
    display:inline-block;
    margin-top:8px;
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
}

.book-card a:hover{
    text-decoration:underline;
}

.footer-legal-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-size:14px;
}

.footer-legal-links a{
    color:#CBD5E1;
    text-decoration:none;
}

.footer-legal-links a:hover{
    color:#fff;
    text-decoration:underline;
}


/* ==========================================================
   SHAREMARKETGYAN
   TRADING & INVESTING PLATFORMS — ADVANCED UI
========================================================== */

.platforms-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 60px 20px 30px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(37, 99, 235, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(14, 165, 233, 0.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 50%,
            #f8fafc 100%
        );
}

/* Decorative background elements */

.platforms-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    left: -180px;

    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    filter: blur(70px);

    z-index: -1;
}

.platforms-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -180px;
    bottom: -200px;

    background: rgba(16, 185, 129, 0.07);
    border-radius: 50%;
    filter: blur(70px);

    z-index: -1;
}


/* ==========================================================
   CONTAINER
========================================================== */

.platforms-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.platforms-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.platforms-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;
    padding: 7px 14px;

    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);

    color: #2563eb;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.platforms-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.12);
}

.platforms-heading h2 {
    margin: 0;

    color: #0f172a;

    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.platforms-heading h2::after {
    content: "";
    display: block;

    width: 58px;
    height: 4px;

    margin: 18px auto 18px;

    border-radius: 99px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #06b6d4
    );
}

.platforms-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #64748b;

    font-size: 1rem;
    line-height: 1.75;
}


/* ==========================================================
   GRID
========================================================== */

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* ==========================================================
   PLATFORM CARD
========================================================== */

.platform-card {
    --accent: #2563eb;

    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(248, 250, 252, 0.88)
        );

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(14px);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Top accent */

.platform-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background: linear-gradient(
        90deg,
        var(--accent),
        color-mix(
            in srgb,
            var(--accent) 45%,
            #ffffff
        )
    );
}


/* Glow */

.platform-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: var(--accent);

    opacity: 0.06;

    filter: blur(20px);

    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.platform-card:hover {
    transform: translateY(-9px);

    border-color: color-mix(
        in srgb,
        var(--accent) 25%,
        #e2e8f0
    );

    box-shadow:
        0 25px 55px rgba(15, 23, 42, 0.12),
        0 5px 15px rgba(15, 23, 42, 0.04);
}

.platform-card:hover::after {
    transform: scale(1.6);
    opacity: 0.1;
}


/* Brand accents */

.kotak-card {
    --accent: #2563eb;
}

.ind-card {
    --accent: #059669;
}

.angel-card {
    --accent: #dc2626;
}


/* ==========================================================
   CARD TOP
========================================================== */

.platform-card > .platform-icon {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.9),
            rgba(241,245,249,0.9)
        );

    border: 1px solid rgba(226,232,240,0.9);

    color: var(--accent);

    font-size: 0.95rem;
    font-weight: 900;

    letter-spacing: -0.04em;

    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.07) rotate(-2deg);

    box-shadow:
        0 12px 28px rgba(15, 23, 42, 0.12);
}


/* Individual icon backgrounds */

.kotak-card .platform-icon {
    background:
        linear-gradient(
            145deg,
            #eff6ff,
            #dbeafe
        );
}

.ind-card .platform-icon {
    background:
        linear-gradient(
            145deg,
            #ecfdf5,
            #d1fae5
        );
}

.angel-card .platform-icon {
    background:
        linear-gradient(
            145deg,
            #fff1f2,
            #fee2e2
        );
}


/* ==========================================================
   CONTENT
========================================================== */

.platform-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.platform-label {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--accent);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.platform-content h3 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 1.45rem;
    font-weight: 800;

    line-height: 1.2;
    letter-spacing: -0.025em;
}

.platform-content p {
    margin: 0 0 25px;

    color: #64748b;

    font-size: 0.91rem;
    line-height: 1.7;
}


/* ==========================================================
   BUTTON
========================================================== */

.platform-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: fit-content;

    margin-top: auto;

    padding: 11px 17px;

    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;

    background: #0f172a;
    color: #ffffff;

    font-size: 0.84rem;
    font-weight: 750;

    text-decoration: none;

    box-shadow:
        0 5px 15px rgba(15, 23, 42, 0.12);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.platform-button span {
    display: inline-block;

    font-size: 1rem;

    transition:
        transform 0.25s ease;
}

.platform-button:hover {
    transform: translateY(-2px);

    background: var(--accent);

    box-shadow:
        0 9px 22px color-mix(
            in srgb,
            var(--accent) 25%,
            transparent
        );
}

.platform-button:hover span {
    transform: translate(3px, -2px);
}


/* ==========================================================
   DISCLOSURE
========================================================== */

.platform-disclosure {
    max-width: 900px;

    margin: 32px auto 0;
    padding: 16px 22px;

    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;

    background: rgba(248, 250, 252, 0.75);

    color: #64748b;

    font-size: 0.76rem;
    line-height: 1.7;

    text-align: center;

    backdrop-filter: blur(10px);
}

.platform-disclosure strong {
    color: #334155;
}


/* ==========================================================
   RESPONSIVE — TABLET
========================================================== */

@media (max-width: 950px) {

    .platforms-section {
        padding: 80px 20px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        width: 100%;
        margin: 0 auto;
    }
}


/* ==========================================================
   RESPONSIVE — MOBILE
========================================================== */

@media (max-width: 650px) {

    .platforms-section {
        padding: 65px 16px;
    }

    .platforms-heading {
        margin-bottom: 36px;
    }

    .platforms-heading h2 {
        font-size: 2rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .platform-card,
    .platform-card:last-child {
        max-width: none;
        min-height: auto;
        margin: 0;
    }

    .platform-card {
        padding: 25px;
    }

    .platform-card > .platform-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 21px;
    }

    .platform-content h3 {
        font-size: 1.3rem;
    }

    .platform-button {
        width: 100%;
    }

    .platform-disclosure {
        padding: 14px 16px;
        font-size: 0.73rem;
    }
}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .platform-card,
    .platform-card::after,
    .platform-icon,
    .platform-button,
    .platform-button span {
        transition: none;
    }

    .platform-card:hover {
        transform: none;
    }
}


/* ==========================================================
   SHAREMARKETGYAN
   MARKET GLOSSARY
   UNIQUE / ISOLATED STYLES
========================================================== */

.smg-glossary {
    padding: 100px 0;
    background: #f8fafc;
}

.smg-glossary-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.smg-glossary-tag {
    display: inline-block;

    padding: 7px 14px;

    border-radius: 50px;

    background: #e0f2fe;
    color: #0369a1;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.smg-glossary-heading h2 {
    margin: 15px 0 10px;

    font-size: 36px;
    line-height: 1.2;

    color: #0f172a;
}

.smg-glossary-heading p {
    margin: 0;

    color: #64748b;

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================================
   GRID
========================================================== */

.smg-glossary-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* ==========================================================
   CARD
========================================================== */

.smg-glossary-card {

    position: relative;

    padding: 25px;

    min-height: 190px;

    border-radius: 18px;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* ODD */

.smg-glossary-card:nth-child(odd) {

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eff6ff
        );
}


/* EVEN */

.smg-glossary-card:nth-child(even) {

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #ecfdf5
        );
}


/* ==========================================================
   HOVER
========================================================== */

.smg-glossary-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(15, 23, 42, 0.10);
}


/* ==========================================================
   CARD TOP
========================================================== */

.smg-glossary-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 18px;
}


/* ==========================================================
   LETTER
========================================================== */

.smg-glossary-letter {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    font-size: 16px;
    font-weight: 800;
}


/* Odd */

.smg-glossary-card:nth-child(odd)
.smg-glossary-letter {

    background: #dbeafe;
    color: #1d4ed8;
}


/* Even */

.smg-glossary-card:nth-child(even)
.smg-glossary-letter {

    background: #d1fae5;
    color: #047857;
}


/* ==========================================================
   CATEGORY
========================================================== */

.smg-glossary-category {

    padding: 5px 10px;

    border-radius: 50px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


/* Odd */

.smg-glossary-card:nth-child(odd)
.smg-glossary-category {

    background: #eff6ff;
    color: #2563eb;
}


/* Even */

.smg-glossary-card:nth-child(even)
.smg-glossary-category {

    background: #ecfdf5;
    color: #047857;
}


/* ==========================================================
   TITLE
========================================================== */

.smg-glossary-card h3 {

    margin: 0 0 10px;

    color: #0f172a;

    font-size: 20px;
    line-height: 1.3;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.smg-glossary-card p {

    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.65;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1024px) {

    .smg-glossary-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .smg-glossary {

        padding: 70px 0;

    }

    .smg-glossary-grid {

        grid-template-columns: 1fr;

        gap: 16px;

    }

    .smg-glossary-heading h2 {

        font-size: 30px;

    }

    .smg-glossary-card {

        min-height: auto;

        padding: 22px;

    }

}

/* ==========================================================
   MARKET GLOSSARY
   SEARCH + FILTER CONTROLS
========================================================== */

.smg-glossary-controls {
    margin: 0 auto 38px;
    max-width: 1100px;
}


/* ==========================================================
   SEARCH ROW
========================================================== */

.smg-glossary-search-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}


.smg-glossary-search {
    position: relative;
    flex: 1;
}


.smg-glossary-search input {
    width: 100%;
    height: 54px;

    padding: 0 52px 0 48px;

    border: 1px solid #dbe3ef;
    border-radius: 14px;

    background: #ffffff;

    color: #0f172a;

    font-size: 15px;

    outline: none;

    box-shadow:
        0 5px 18px rgba(15, 23, 42, 0.045);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.smg-glossary-search input:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.10);
}


.smg-glossary-search-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #64748b;

    font-size: 25px;

    line-height: 1;

    pointer-events: none;
}


.smg-glossary-clear {
    position: absolute;

    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;

    background: #f1f5f9;

    color: #475569;

    font-size: 22px;

    line-height: 1;

    cursor: pointer;

    opacity: 0;

    pointer-events: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}


.smg-glossary-clear.visible {
    opacity: 1;
    pointer-events: auto;
}


.smg-glossary-clear:hover {
    background: #e2e8f0;
    color: #0f172a;
}


/* ==========================================================
   RESULT COUNT
========================================================== */

.smg-glossary-count {
    flex-shrink: 0;

    padding: 10px 15px;

    border-radius: 10px;

    background: #f1f5f9;

    color: #475569;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}


/* ==========================================================
   FILTER SECTION
========================================================== */

.smg-glossary-filter-section {
    margin-bottom: 20px;
}


.smg-glossary-filter-label {
    display: block;

    margin-bottom: 10px;

    color: #475569;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}


/* ==========================================================
   CATEGORY BUTTONS
========================================================== */

.smg-glossary-category-filters {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.smg-glossary-filter {
    padding: 8px 15px;

    border: 1px solid #dbe3ef;

    border-radius: 999px;

    background: #ffffff;

    color: #475569;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.smg-glossary-filter:hover {
    border-color: #93c5fd;

    color: #1d4ed8;

    transform: translateY(-1px);
}


.smg-glossary-filter.active {
    border-color: #2563eb;

    background: #2563eb;

    color: #ffffff;
}


/* ==========================================================
   A-Z
========================================================== */

.smg-glossary-alphabet {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;
}


.smg-glossary-letter-filter {
    width: 34px;
    height: 34px;

    padding: 0;

    border: 1px solid #dbe3ef;

    border-radius: 9px;

    background: #ffffff;

    color: #475569;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.smg-glossary-letter-filter:hover {
    border-color: #93c5fd;

    color: #1d4ed8;

    transform: translateY(-1px);
}


.smg-glossary-letter-filter.active {
    border-color: #0f172a;

    background: #0f172a;

    color: #ffffff;
}


/* ==========================================================
   HIDDEN CARD
========================================================== */

.smg-glossary-card.smg-glossary-hidden {
    display: none;
}


/* ==========================================================
   NO RESULTS
========================================================== */

.smg-glossary-no-results {
    display: none;

    grid-column: 1 / -1;

    padding: 55px 25px;

    border: 1px dashed #cbd5e1;

    border-radius: 18px;

    background: #f8fafc;

    text-align: center;
}


.smg-glossary-no-results.visible {
    display: block;
}


.smg-glossary-no-results-icon {
    display: block;

    margin-bottom: 10px;

    font-size: 32px;
}


.smg-glossary-no-results h3 {
    margin: 0 0 7px;

    color: #0f172a;

    font-size: 20px;
}


.smg-glossary-no-results p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .smg-glossary-search-row {
        display: block;
    }


    .smg-glossary-count {
        display: inline-block;

        margin-top: 12px;
    }


    .smg-glossary-category-filters {
        gap: 7px;
    }


    .smg-glossary-filter {
        padding: 7px 12px;
    }


    .smg-glossary-alphabet {
        gap: 5px;
    }


    .smg-glossary-letter-filter {
        width: 32px;
        height: 32px;
    }

}



/* ==========================================================
   FACEBOOK MESSENGER FLOATING CHAT
========================================================== */

.facebook-messenger-button {
  position: fixed;

  left: 24px;
  bottom: 24px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #0084ff;
  color: #ffffff;

  font-size: 1.55rem;

  text-decoration: none;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.18);

  z-index: 9999;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.facebook-messenger-button:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.24);
}


/* Tooltip */

.facebook-messenger-tooltip {
  position: absolute;

  left: 70px;
  top: 50%;

  transform: translateY(-50%);

  white-space: nowrap;

  padding: 9px 14px;

  border-radius: 8px;

  background: #111827;
  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 600;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.facebook-messenger-button:hover
.facebook-messenger-tooltip {
  opacity: 1;
  visibility: visible;
}


/* Mobile */

@media (max-width: 640px) {

  .facebook-messenger-button {
    left: 16px;
    bottom: 16px;

    width: 52px;
    height: 52px;

    font-size: 1.4rem;
  }

  .facebook-messenger-tooltip {
    display: none;
  }

}


/* ==========================================================
   INVESTOR STARTER KIT — ENHANCED ELEMENTS
========================================================== */


/* ==========================================================
   STEP LABEL
========================================================== */

.starter-step-label {
  display: inline-block;

  margin-bottom: 10px;

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--primary);
}


/* ==========================================================
   BROKER ACCOUNT BOX
========================================================== */

.starter-broker-box {
  margin-top: 20px;
  padding: 18px;

  border: 1px solid #e2e8f0;
  border-radius: 16px;

  background: #f8fafc;
}


/* Broker heading */

.starter-broker-box h4 {
  margin: 0 0 14px;

  font-size: 0.9rem;
  font-weight: 800;

  color: var(--heading);
}


/* ==========================================================
   BROKER LINKS
========================================================== */

.starter-broker-links {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}


/* Individual broker */

.starter-broker-link {
  display: inline-flex;

  align-items: center;
  justify-content: space-between;

  gap: 14px;

  padding: 11px 14px;

  border: 1px solid #e2e8f0;
  border-radius: 11px;

  background: #ffffff;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}


.starter-broker-link:hover {
  transform: translateY(-2px);

  border-color: var(--primary);

  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.08);
}


/* Broker name */

.broker-name {
  font-size: 0.9rem;
  font-weight: 750;

  color: var(--heading);
}


/* Open account */

.broker-action {
  display: inline-flex;

  align-items: center;

  gap: 5px;

  font-size: 0.75rem;
  font-weight: 700;

  color: var(--primary);

  white-space: nowrap;
}


/* ==========================================================
   BROKER DISCLOSURE
========================================================== */

.starter-broker-note {
  display: block;

  margin-top: 13px;

  font-size: 0.72rem;
  line-height: 1.55;

  color: var(--text-light);
}


/* ==========================================================
   FINAL STARTER KIT CTA
========================================================== */

.starter-final-cta {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 45px;
  padding: 28px 30px;

  border: 1px solid #dbeafe;
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #eff6ff 0%,
      #f8fafc 100%
    );
}


/* CTA content */

.starter-final-cta-content {
  flex: 1;
}


.starter-final-label {
  display: block;

  margin-bottom: 7px;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.12em;

  color: var(--primary);
}


.starter-final-cta h3 {
  margin: 0 0 8px;

  font-size: 1.25rem;
  line-height: 1.35;

  color: var(--heading);
}


.starter-final-cta p {
  margin: 0;

  max-width: 650px;

  font-size: 0.9rem;
  line-height: 1.65;

  color: var(--text-light);
}


/* ==========================================================
   FINAL CTA BUTTON
========================================================== */

.starter-final-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  flex-shrink: 0;

  padding: 13px 19px;

  border-radius: 11px;

  background: var(--primary);
  color: #ffffff;

  font-size: 0.88rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


.starter-final-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.14);
}


/* ==========================================================
   EXISTING STARTER LINK — IMPROVE ALIGNMENT
========================================================== */

.starter-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;

  color: #2563EB;
  font-size: inherit;
  font-weight: 700;
  text-decoration: none;

  transition: gap 0.25s ease;
}


.starter-link:hover {
  gap: 11px;
}


/* ==========================================================
   BLOG ARTICLE CARDS - FINAL
   ----------------------------------------------------------
   Keeps image, content and Read More link stable.
========================================================== */

.article-grid .article-card{
    display:flex;
    flex-direction:column;
    height:100%;
    min-width:0;
}

.article-grid .article-card img{
    display:block;
    width:100%;
    height:230px;
    flex:0 0 230px;
    object-fit:cover;
}

.article-grid .article-card .article-content{
    display:flex;
    flex-direction:column;
    flex:1 1 auto;
    min-width:0;
    padding:25px;
}

.article-grid .article-card .article-content h3{
    margin:18px 0;
}

.article-grid .article-card .article-content p{
    margin-bottom:20px;
}

.article-grid .article-card .article-content a,
.article-grid .article-card .read-more{
    display:inline-block !important;
    width:max-content;
    max-width:100%;
    margin-top:auto;
    visibility:visible !important;
    opacity:1 !important;
    position:relative;
    z-index:2;
    color:var(--primary);
    font-weight:600;
    cursor:pointer;
}

/* Do not let a missing image create a broken visual block */
.article-grid .article-card img[style*="display: none"]{
    height:0;
    flex-basis:0;
    margin:0;
}
