/* ===========================
   HEADER
=========================== */

.site-header{
    background:#ffffff;
    border-bottom:1px solid #e8e8e8;
    position:sticky;
    top:0;
    z-index:1000;
}

.header-container{
    max-width:1200px;
    margin:auto;
    padding:15px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}
 .logo {
      height: 70px;
      width: auto;
      display: block;
    }

    .brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
/* Search */

.header-search{
    display:flex;
    align-items:center;
    gap:10px;
}

.header-search input{

    width:320px;

    padding:12px 15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;
}

.header-search button{

    padding:12px 22px;

    border:none;

    background:#0056d2;

    color:white;

    border-radius:8px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;
}

.header-search button:hover{

    background:#0042a3;
}

@media (max-width:768px){

    .header-container{
        flex-direction:column;
        align-items:center;
    }

     

    .brand {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .logo {
        height: 50px;
    }

    .header-search{
        width:100%;
    }

    .header-search input{
        width:100%;
    }

}

/* ================= HERO ================= */

.hero{

    background:linear-gradient(135deg,#eef5ff,#ffffff);

    padding:90px 20px;

    text-align:center;

}

.hero-content{

    max-width:850px;

    margin:auto;

}

.hero-tag{

    display:inline-block;

    background:#e9f2ff;

    color:#0056d2;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    font-size:15px;

    margin-bottom:25px;

}

.hero h1{

    font-size:56px;

    line-height:1.2;

    margin-bottom:25px;

    color:#222;

}

.hero-description{

    font-size:21px;

    color:#555;

    line-height:1.8;

    max-width:760px;

    margin:auto;

    margin-bottom:40px;

}

.hero-search{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.hero-search input{

    width:600px;

    max-width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:17px;

}

.hero-search button{

    background:#0056d2;

    color:white;

    border:none;

    padding:18px 35px;

    border-radius:10px;

    font-size:16px;

    cursor:pointer;

    font-weight:bold;

}

.hero-search button:hover{

    background:#0041a3;

}

@media(max-width:768px){

.hero{

    padding:70px 20px;

}

.hero h1{

    font-size:34px;

}

.hero-description{

    font-size:18px;

}

.hero-search{

    flex-direction:column;

}

.hero-search input{

    width:100%;

}

.hero-search button{

    width:100%;

}

}

/*==============================
    CATEGORY SECTION
==============================*/

.categories{

    padding:90px 0;

    background:#f8f9fc;

}

.section-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto 60px;

}

.section-heading h2{

    font-size:42px;

    margin-bottom:15px;

    color:#222;

}

.section-heading p{

    font-size:20px;

    color:#666;

    line-height:1.8;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.category-card{

    background:#fff;

    border-radius:18px;

    padding:35px 30px;

    text-align:center;

    text-decoration:none;

    color:#222;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.category-card img{

    width:90px;

    height:90px;

    object-fit:contain;

    margin:0 auto 25px;

}

.category-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.category-card p{

    color:#666;

    line-height:1.7;

}
.featured-topics{
    padding:80px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:2.2rem;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.featured-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.featured-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.featured-card:hover{
    transform:translateY(-8px);
}

.featured-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.featured-content{
    padding:25px;
}

.category-tag{
    display:inline-block;
    background:#eef5ff;
    color:#2563eb;
    padding:6px 14px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:15px;
}

.featured-content h3{
    margin-bottom:15px;
    font-size:1.4rem;
}

.featured-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.read-more{
    color:#2563eb;
    text-decoration:none;
    font-weight:700;
}

.read-more:hover{
    text-decoration:underline;
}

@media (max-width:992px){
    .featured-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){

    .featured-topics{
        padding:60px 0;
    }

    .featured-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:1.8rem;
    }

}
.why-trust{
    padding:90px 0;
    background:#f8fafc;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}

.trust-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.trust-card:hover{
    transform:translateY(-8px);
}

.trust-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
}

.trust-card h3{
    margin-bottom:15px;
    font-size:1.25rem;
}

.trust-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:992px){

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-trust{
        padding:70px 0;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

}
.newsletter-home{
    padding:90px 0;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.newsletter-box{
    max-width:760px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.newsletter-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.18);
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.newsletter-box h2{
    font-size:2.2rem;
    margin-bottom:20px;
}

.newsletter-box p{
    line-height:1.8;
    margin-bottom:35px;
    opacity:.95;
}

.newsletter-form{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-bottom:18px;
}

.newsletter-form input{

    flex:1;
    max-width:450px;

    padding:16px 20px;

    border:none;

    border-radius:12px;

    font-size:1rem;
}

.newsletter-form button{

    padding:16px 28px;

    border:none;

    border-radius:12px;

    background:#0f172a;

    color:#fff;

    font-weight:700;

    cursor:pointer;

}

.newsletter-form button:hover{

    background:#020617;

}

.newsletter-box small{

    opacity:.85;

}

@media(max-width:768px){

.newsletter-form{

flex-direction:column;

}

.newsletter-form input{

max-width:100%;

}

.newsletter-form button{

width:100%;

}

}
.site-footer{

background:#0f172a;

color:#cbd5e1;

padding:70px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:50px;

margin-bottom:50px;

}

.footer-logo{

height:60px;

margin-bottom:20px;

}

.site-footer h3{

color:#fff;

margin-bottom:20px;

}

.site-footer ul{

list-style:none;

padding:0;

margin:0;

}

.site-footer li{

margin-bottom:12px;

}

.site-footer a{

color:#cbd5e1;

text-decoration:none;

}

.site-footer a:hover{

color:#fff;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.12);

padding-top:30px;

text-align:center;

font-size:.95rem;

line-height:1.8;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto auto 20px;

}

}