/* =========================
   RAJ STUDY HUB SUPPORT
========================= */

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

body{

    font-family:'Poppins',sans-serif;
    background:#0d1117;
    color:#fff;
    line-height:1.6;

}

/* HEADER */

header{

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

    padding:20px 8%;

    background:#090d14;

    border-bottom:1px solid #d6a400;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:65px;

    height:65px;

    object-fit:contain;

    border-radius:50%;

    border:2px solid #ffc107;

}

.logo h2{

    color:#ffc107;

    font-size:32px;

    margin:0;

}

.logo span{

    color:#ccc;

    font-size:14px;

}

.logo h2{

    color:#ffc107;

    font-size:30px;

}

.logo span{

    color:#ccc;

    font-size:14px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:30px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:#ffc107;

}
/* Announcement */

.announcement{

background:#ffc107;

color:#000;

text-align:center;

padding:12px;

font-weight:600;

font-size:15px;

}

/* HERO */

.hero{

    text-align:center;

    padding:90px 20px;

}

.hero h1{

    font-size:50px;

    color:#ffc107;

    margin-bottom:15px;

}

.hero p{

    color:#cfcfcf;

    margin-bottom:35px;

}

/* SEARCH */

.search-box{

    display:flex;

    justify-content:center;

}

.search-box input{

    width:500px;

    max-width:80%;

    padding:18px;

    border:none;

    border-radius:50px 0 0 50px;

    font-size:16px;

    outline:none;

}

.search-box button{

    width:70px;

    border:none;

    background:#ffc107;

    border-radius:0 50px 50px 0;

    cursor:pointer;

    font-size:20px;

}

/* CARDS */

.cards{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:40px;

}

.card{

    display:block;

    background:#151d2d;

    border:1px solid #ffc107;

    border-radius:15px;

    padding:35px;

    text-align:center;

    text-decoration:none;

    color:white;

    transition:.35s;

}

.card:visited{

    color:white;

}

.card:hover{

    color:white;

}

.card:active{

    color:white;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 0 20px rgba(255,193,7,.25);

}

.card i{

    font-size:40px;

    color:#ffc107;

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

}

/* POPULAR */

.popular{

    width:90%;

    margin:80px auto;

}

.popular h2{

    color:#ffc107;

    margin-bottom:25px;

}

.popular ul{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:18px;

    list-style:none;

}

.popular li{

    background:#151d2d;

    padding:18px;

    border-radius:10px;

}

/* CONTACT */

.contact-box{

    width:90%;

    margin:80px auto;

    text-align:center;

}

.contact-box h2{

    color:#ffc107;

    margin-bottom:30px;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    background:#ffc107;

    color:black;

    text-decoration:none;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    transform:scale(1.05);

}

/* ================= FOOTER ================= */

footer{

background:#090d14;

padding:60px 8% 30px;

border-top:1px solid #ffc107;

}

.footer-container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

}

.footer-about img{

width:80px;

margin-bottom:15px;

}

.footer-about h3,

.footer-links h3,

.footer-support h3,

.footer-contact h3{

color:#ffc107;

margin-bottom:20px;

}

.footer-about p,

.footer-contact p{

color:#cccccc;

line-height:1.8;

}

.footer-links ul,

.footer-support ul{

list-style:none;

padding:0;

}

.footer-links li,

.footer-support li{

margin-bottom:12px;

}

.footer-links a{

color:white;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#ffc107;

padding-left:8px;

}

.footer-support li{

color:#cccccc;

}

hr{

margin:40px 0 20px;

border:none;

height:1px;

background:#333;

}

.copyright{

text-align:center;

color:#999;

font-size:15px;

}