/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f7f8fc;

    color:#222;
}

a{

    text-decoration:none;
}

/* ==========================
HEADER
========================== */

.site-header{

    background:#fff;

    border-bottom:1px solid #ececec;

    position:sticky;

    top:0;

    z-index:999;

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:90px;

}

.logo{

    font-size:40px;

    font-weight:800;

    color:#1f4fff;

}

.logo span{

    color:#111;

}

.logo small{

    color:#ffb400;

    font-size:22px;

    position:relative;

    top:-18px;

    left:3px;

}

.main-nav{

    display:flex;

    gap:40px;

}

.main-nav a{

    color:#222;

    font-weight:600;

    transition:.3s;

}

.main-nav a:hover{

    color:#2458ff;

}

.main-nav .active{

    color:#2458ff;

    position:relative;

}

.main-nav .active::after{

    content:"";

    position:absolute;

    bottom:-32px;

    left:0;

    width:100%;

    height:3px;

    background:#2458ff;

    border-radius:20px;

}

.submit-btn{

    background:#2458ff;

    color:#fff;

    padding:14px 24px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.submit-btn:hover{

    background:#123dd3;

    color:#fff;

}

/*================================
HERO
================================*/

.hero{

    background:#07133d;

    padding:90px 0;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:55% 45%;

    align-items:center;

    gap:60px;

}

.hero-left h1{

    color:#fff;

    font-size:72px;

    line-height:1.1;

    font-weight:800;

    margin:25px 0;

}

.hero-left h1 span{

    color:#2f73ff;

}

.hero-left p{

    color:#cfd5e4;

    font-size:22px;

    line-height:1.7;

    margin-bottom:35px;

}

.hero-badge{

    display:inline-block;

    background:#2458ff;

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    font-size:14px;

}

.hero-search{

    display:flex;

    background:#fff;

    border-radius:15px;

    padding:10px;

    gap:10px;

    margin-top:35px;

}

.hero-search input,
.hero-search select{

    border:none;

    outline:none;

    padding:15px;

    flex:1;

    font-size:15px;

}

.hero-search button{

    background:#2458ff;

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:10px;

    font-weight:bold;

}

/* RIGHT */

.hero-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.hero-right .img{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.hero-right .img img:first-child{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

}

.one{

    height:300px;

}

.two{

    height:220px;

    margin-top:40px;

}

.three{

    height:220px;

}

.four{

    height:320px;

    margin-top:-60px;

}

.icon{

    width:42px;

    position:absolute;

    z-index:5;

}

.instagram{

    top:15px;

    left:15px;

}

.youtube{

    bottom:15px;

    left:15px;

}

.tiktok{

    top:15px;

    right:15px;

}

.facebook{

    top:15px;

    right:15px;

}

/*==============================
CATEGORIES
==============================*/

.categories{

    padding:90px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-weight:800;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(9,1fr);

    gap:20px;

}

.category-card{

    background:#fafafa;

    border-radius:22px;

    padding:30px 10px;

    text-align:center;

    transition:.35s;

    cursor:pointer;

    border:1px solid #eee;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.category-card{

    font-size:40px;

}

.category-card span{

    display:block;

    margin-top:18px;

    font-size:15px;

    font-weight:700;

}

/*==========================
FEATURED
==========================*/

.featured-section{

    padding:100px 0;

    background:#fff;

}

.featured-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:50px;

}

.featured-badge{

    background:#2355ff;

    color:#fff;

    padding:6px 12px;

    border-radius:30px;

    font-size:12px;

    font-weight:bold;

}

.featured-header h2{

    margin-top:12px;

    font-size:42px;

    font-weight:800;

}

.view-all{

    color:#2355ff;

    font-weight:bold;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.influencer-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #eee;

    transition:.35s;

}

.influencer-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.profile-image{

    width:100%;

    height:280px;

    object-fit:cover;

}

.card-body{

    padding:20px;

}

.card-body h4{

    font-size:20px;

    font-weight:700;

}

.card-body p{

    color:#777;

    margin:10px 0;

}

.card-body strong{

    display:block;

    margin-bottom:10px;

}

.verified{

    color:#2355ff;

}

.view-button{

    display:inline-block;

    background:#2355ff;

    color:#fff;

    padding:16px 34px;

    border-radius:12px;

    font-weight:700;

}

/*================================
STATS
================================*/

.stats-section{

    padding:90px 0;

    background:#f6f8ff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:#fff;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#eef3ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:20px;

}

.stat-box h3{

    font-size:38px;

    color:#2458ff;

    margin-bottom:10px;

}

.stat-box p{

    color:#666;

    font-size:17px;

}

/*==========================
FOOTER
==========================*/

.footer{

    background:#fff;

    padding:80px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-logo{

    font-size:36px;

    font-weight:800;

    color:#2458ff;

}

.footer-logo span{

    color:#111;

}

.footer-text{

    color:#666;

    line-height:1.8;

    margin:25px 0;

}

.footer h4{

    margin-bottom:20px;

    font-size:20px;

    font-weight:700;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:14px;

}

.footer a{

    color:#666;

}

.footer a:hover{

    color:#2458ff;

}

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#eef3ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.footer-bottom{

    margin-top:70px;

    background:#081334;

    color:#fff;

    text-align:center;

    padding:20px;

}

/* ==========================
LATEST BLOGS
========================== */

.latest-blogs{
    padding:90px 0;
    background:#f8f9fb;
}

.latest-blogs .card{
    transition:.3s;
    border-radius:18px;
    overflow:hidden;
}

.latest-blogs .card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.latest-blogs img{
    width:100%;
}