/* ======================================================
   Indian Book of Records - Mobile App UI
====================================================== */

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

:root{

    --primary:#2563EB;
    --primary-light:#60A5FA;

    --purple:#7C3AED;
    --sky:#0EA5E9;
    --green:#10B981;

    --dark:#0F172A;

    --text:#1E293B;
    --text-light:#64748B;

    --bg:#F1F5F9;
    --white:#FFFFFF;

    --border:#E2E8F0;

    --shadow:0 10px 30px rgba(15,23,42,0.08);

    --radius:22px;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;

}

/* ======================================================
   APP CONTAINER
====================================================== */

.app-container{

    width:100%;
    max-width:480px;
    margin:auto;

    min-height:100vh;

    background:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 0 30px rgba(0,0,0,0.06);

}

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

.app-header{

    position:sticky;
    top:0;
    z-index:999;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(12px);

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 18px;

    border-bottom:1px solid var(--border);

}

.header-left{

    display:flex;
    align-items:center;
    gap:12px;

}

.menu-btn{

    width:42px;
    height:42px;

    border:none;
    background:#EFF6FF;

    border-radius:14px;

    font-size:22px;

    color:var(--primary);

}

.logo-area{

    display:flex;
    align-items:center;

    gap:10px;

    text-decoration:none;

}

.logo-img{

    width:42px;
    height:42px;

    object-fit:contain;

}

.logo-text-wrap h5{

    margin:0;

    font-size:14px;
    font-weight:700;

    color:var(--dark);

    line-height:1.1;

}

.logo-text-wrap span{

    font-size:11px;
    color:var(--text-light);

}

.header-right{

    display:flex;
    align-items:center;
    gap:10px;

}

.header-icon{

    width:42px;
    height:42px;

    border-radius:14px;

    background:#F8FAFC;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--dark);

    text-decoration:none;

    font-size:20px;

}

/* ======================================================
   SEARCH
====================================================== */

.search-wrapper{

    padding:15px 18px 5px;

    background:#fff;

    position:sticky;
    top:75px;
    z-index:998;

}

.search-box{

    height:54px;

    background:#F8FAFC;

    border-radius:18px;

    display:flex;
    align-items:center;

    padding:0 18px;

    border:1px solid var(--border);

}

.search-box i{

    color:var(--text-light);

    font-size:18px;

}

.search-box input{

    width:100%;

    border:none;
    outline:none;

    background:transparent;

    padding-left:12px;

    font-size:14px;

}

/* ======================================================
   MAIN CONTENT
====================================================== */

.main-content{

    padding:18px 18px 120px;

}

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

.hero-slider-section{

    margin-bottom:25px;

}

.hero-card{

    border-radius:30px;

    padding:28px;

    position:relative;

    overflow:hidden;

    min-height:240px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.hero-blue{

    background:linear-gradient(135deg,#2563EB,#60A5FA);

}

.hero-purple{

    background:linear-gradient(135deg,#7C3AED,#A78BFA);

}

.hero-sky{

    background:linear-gradient(135deg,#0EA5E9,#38BDF8);

}

.hero-content{

    width:58%;
    z-index:2;

}

.hero-tag{

    background:rgba(255,255,255,0.18);

    color:#fff;

    padding:8px 14px;

    border-radius:50px;

    font-size:11px;
    font-weight:600;

    display:inline-block;

    margin-bottom:15px;

}

.hero-content h2{

    font-size:28px;
    line-height:1.25;
    font-weight:700;

    color:#fff;

    margin-bottom:12px;

}

.hero-content p{

    color:rgba(255,255,255,0.9);

    font-size:13px;

    line-height:1.7;

    margin-bottom:18px;

}

.hero-btn{

    height:46px;

    padding:0 22px;

    background:#fff;

    color:var(--primary);

    border-radius:14px;

    text-decoration:none;

    font-size:14px;
    font-weight:600;

    display:inline-flex;
    align-items:center;
    justify-content:center;

}

.hero-image{

    width:40%;

    position:absolute;

    right:-15px;
    bottom:-10px;

}

.hero-image img{

    width:100%;

}

/* ======================================================
   SECTION TITLE
====================================================== */

.section-title-wrap{

    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:18px;

}

.section-title-wrap h4{

    font-size:20px;
    font-weight:700;

    color:var(--dark);

    margin:0;

}

.section-title-wrap a{

    text-decoration:none;

    color:var(--primary);

    font-size:13px;
    font-weight:600;

}

/* ======================================================
   QUICK ACTIONS
====================================================== */

.quick-actions-section{

    margin-bottom:28px;

}

.quick-actions-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:14px;

}

.quick-action-card{

    background:#fff;

    border-radius:22px;

    padding:18px 10px;

    text-align:center;

    text-decoration:none;

    box-shadow:var(--shadow);

}

.quick-icon{

    width:58px;
    height:58px;

    margin:auto;
    margin-bottom:12px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    color:#fff;

}

.quick-action-card span{

    font-size:12px;
    font-weight:600;

    color:var(--dark);

}

.blue-bg{
    background:linear-gradient(135deg,#2563EB,#60A5FA);
}

.purple-bg{
    background:linear-gradient(135deg,#7C3AED,#A78BFA);
}

.sky-bg{
    background:linear-gradient(135deg,#0EA5E9,#38BDF8);
}

.green-bg{
    background:linear-gradient(135deg,#10B981,#34D399);
}

/* ======================================================
   CATEGORIES
====================================================== */

.category-section{

    margin-bottom:30px;

}

.category-scroll{

    display:flex;

    overflow-x:auto;

    gap:14px;

    scrollbar-width:none;

}

.category-scroll::-webkit-scrollbar{
    display:none;
}

.category-item{

    min-width:90px;

    text-align:center;

}

.category-icon{

    width:80px;
    height:80px;

    background:#fff;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:10px;

    box-shadow:var(--shadow);

}

.category-icon img{

    width:42px;

}

.category-item p{

    font-size:13px;
    font-weight:600;

    color:var(--dark);

}

/* ======================================================
   RECORD CARD
====================================================== */

.records-section{

    margin-bottom:30px;

}

.record-card{

    background:#fff;

    border-radius:26px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:var(--shadow);

}

.record-image{

    width:100%;
    height:190px;

    object-fit:cover;

}

.record-content{

    padding:18px;

}

.record-category{

    display:inline-block;

    background:#DBEAFE;

    color:var(--primary);

    padding:7px 14px;

    border-radius:50px;

    font-size:11px;
    font-weight:600;

    margin-bottom:12px;

}

.record-content h5{

    font-size:18px;
    font-weight:700;

    line-height:1.5;

    margin-bottom:8px;

    color:var(--dark);

}

.record-content p{

    color:var(--text-light);

    font-size:13px;

    margin-bottom:15px;

}

.record-btn{

    height:42px;

    padding:0 18px;

    background:var(--primary);

    border-radius:12px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-size:13px;
    font-weight:600;

}

/* ======================================================
   AWARD BANNER
====================================================== */

.awards-section{

    margin-bottom:30px;

}

.award-banner{

    background:linear-gradient(135deg,#2563EB,#60A5FA);

    border-radius:30px;

    padding:28px;

    position:relative;

    overflow:hidden;

}

.award-content{

    width:62%;

}

.award-tag{

    background:rgba(255,255,255,0.2);

    color:#fff;

    padding:8px 14px;

    border-radius:50px;

    font-size:11px;
    font-weight:600;

    display:inline-block;

    margin-bottom:15px;

}

.award-content h3{

    font-size:26px;
    font-weight:700;

    line-height:1.4;

    color:#fff;

    margin-bottom:12px;

}

.award-content p{

    color:rgba(255,255,255,0.9);

    font-size:13px;

    line-height:1.7;

    margin-bottom:18px;

}

.award-btn{

    height:46px;

    padding:0 22px;

    background:#fff;

    border-radius:14px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:var(--primary);

    text-decoration:none;

    font-size:13px;
    font-weight:600;

}

.award-banner img{

    width:150px;

    position:absolute;

    right:-20px;
    bottom:-10px;

}

/* ======================================================
   ACHIEVERS
====================================================== */

.achievers-section{

    margin-bottom:30px;

}

.achievers-scroll{

    display:flex;

    gap:16px;

    overflow-x:auto;

    scrollbar-width:none;

}

.achievers-scroll::-webkit-scrollbar{
    display:none;
}

.achiever-card{

    min-width:160px;

    background:#fff;

    border-radius:24px;

    padding:20px;

    text-align:center;

    box-shadow:var(--shadow);

}

.achiever-img{

    width:82px;
    height:82px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:12px;

}

.achiever-card h5{

    font-size:16px;
    font-weight:700;

    margin-bottom:6px;

}

.achiever-card p{

    font-size:12px;

    color:var(--text-light);

}

/* ======================================================
   DOWNLOAD BANNER
====================================================== */

.download-banner-section{

    margin-bottom:20px;

}

.download-banner{

    background:#fff;

    border-radius:30px;

    padding:24px;

    box-shadow:var(--shadow);

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.download-left{

    width:60%;

}

.download-tag{

    color:var(--primary);

    font-size:12px;
    font-weight:700;

    margin-bottom:12px;

    display:block;

}

.download-left h3{

    font-size:24px;
    line-height:1.4;

    font-weight:700;

    margin-bottom:10px;

}

.download-left p{

    color:var(--text-light);

    font-size:13px;

    line-height:1.7;

    margin-bottom:18px;

}

.download-btn-main{

    height:48px;

    padding:0 20px;

    background:var(--primary);

    border-radius:14px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    color:#fff;

    text-decoration:none;

    font-size:13px;
    font-weight:600;

}

.download-right{

    width:36%;

}

.download-right img{

    width:100%;

}

/* ======================================================
   BOTTOM NAVIGATION
====================================================== */

.bottom-nav{

    position:fixed;

    bottom:0;

    width:100%;
    max-width:480px;

    height:82px;

    background:#fff;

    border-top:1px solid var(--border);

    display:flex;
    align-items:center;
    justify-content:space-around;

    z-index:999;

}

.nav-item{

    text-decoration:none;

    display:flex;
    flex-direction:column;

    align-items:center;

    gap:4px;

    color:var(--text-light);

    font-size:12px;
    font-weight:500;

}

.nav-item i{

    font-size:22px;

}

.nav-item.active{

    color:var(--primary);

}

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

@media(max-width:420px){

    .hero-content h2{
        font-size:24px;
    }

    .award-content h3{
        font-size:22px;
    }

    .download-left h3{
        font-size:20px;
    }

}