/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== BODY ===== */
body{
    background: linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
}
/* HERO */
.hero{
    min-height:calc(100vh - 200px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* CARD (GLASS EFFECT) */
.card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius:20px;
    padding:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.6);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* HERO CARD */
.hero-card{
    max-width:500px;
    width:100%;
    text-align:center;
}

/* HEADING */
.hero h1{
    font-size:18px;
    margin-bottom:10px;
}

/* LOGO CENTER */
.logo{
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

/* Logo link ke liye */
.logo a{
    text-decoration: none;
}

/* TAGLINE */
.tagline{
    font-size:15px;
    opacity:0.8;
    margin-bottom:20px;
}

/* BUTTON WRAPPER */
.hero-btns{
    display:flex;
    justify-content:center;
    gap:12px;
}

/* BUTTON LIGHT */
.btn-light{
    background:#fff;
    color:#000;
    padding:12px 25px;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-light:hover{
    transform:scale(1.05);
}

/* BUTTON OUTLINE */
.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:12px 25px;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#000;
}
/* ===== LOGO CENTER ===== */
.logo{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* ===== CONTAINER ===== */
.container{
    width:95%;
    max-width:1200px;
    margin:auto;
}

/* ===== NAVBAR ===== */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
    font-weight:500;
    transition:0.3s;
}

.navbar a:hover{
    color:#00cec9;
}

/* ===== CARD (GLASS EFFECT) ===== */
.card{
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border-radius:20px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.5);
    margin-bottom:20px;
    transition:0.3s;
}

.card:hover{
    transform: translateY(-5px);
}

/* ===== BUTTON ===== */
.btn{
    padding:12px 18px;
    border-radius:10px;
    border:none;
    background: linear-gradient(90deg,#6C5CE7,#00CEC9);
    color:#fff;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    transform:scale(1.05);
}

/* ===== INPUT ===== */
.input{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    margin-bottom:12px;
    background:rgba(255,255,255,0.08);
    color:#fff;
}

/* ===== GRID ===== */
.grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

/* ===== STAT CARDS ===== */
.stat{
    padding:25px;
    border-radius:15px;
    background: linear-gradient(135deg,#6C5CE7,#00CEC9);
    text-align:center;
    font-weight:bold;
    font-size:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

/* ===== SIDEBAR ===== */


.sidebar h2{
    margin-bottom:20px;
}

.sidebar a{
    display:block;
    color:#fff;
    padding:12px;
    margin:6px 0;
    border-radius:10px;
    text-decoration:none;
    transition:0.3s;
}

.sidebar a:hover{
    background:#6C5CE7;
}

/* ===== CONTENT ===== */


/* ===== HEADER (TOP BAR) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #020617;
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    justify-content: space-between;
        padding: 0 5px;
}

/* ===== BRAND ===== */
.brand{
    display:flex;
    align-items:center;
    gap:4px;
    font-size:20px;
    font-weight:700;
}
a.logo-link {
    text-decoration: none;
}
.brand span{
    color:#fff;
}

/* ===== GOLD PYRAMID ===== */
.pyramid{
    color:#d4af37;
}

/* ===== LOGO 3D BOX ===== */
.logo3d{
    width:60px;
    height:30px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  

    .content{
        margin-left:0;
    }

    .navbar{
        flex-direction:column;
        gap:10px;
    }
}