*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:Poppins,sans-serif;

background:#F8FAFC;

color:#333;

}

.container{

width:90%;

max-width:1300px;

margin:auto;

}

header{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 0;

background:#fff;

box-shadow:0 5px 20px rgba(0,0,0,.08);

z-index:999;

}

.nav{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:30px;

font-weight:700;

}

.logo span{

color:#dc2626;

}

nav ul{

display:flex;

gap:35px;

list-style:none;

}

nav a{

text-decoration:none;

color:#333;

font-weight:500;

}

.header-buttons{

display:flex;

gap:15px;

}

.register{

background:#dc2626;

padding:10px 22px;

border-radius:8px;

color:#fff;

text-decoration:none;

}

.hero{

padding-top:150px;

padding-bottom:80px;

}

.hero-container{

display:flex;

align-items:center;

justify-content:space-between;

gap:80px;

}

.hero-left{

flex:1;

}

.hero-tag{

display:inline-block;

padding:8px 18px;

background:#FEE2E2;

border-radius:40px;

color:#dc2626;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:58px;

line-height:1.1;

margin-bottom:25px;

}

.hero h1 span{

color:#dc2626;

}

.hero p{

font-size:18px;

line-height:1.8;

margin-bottom:40px;

color:#666;

}

.hero-buttons{

display:flex;

gap:20px;

}

.btn-primary{

background:#dc2626;

padding:16px 35px;

border-radius:10px;

color:#fff;

text-decoration:none;

font-weight:600;

}

.btn-secondary{

padding:16px 35px;

border-radius:10px;

border:2px solid #dc2626;

text-decoration:none;

color:#dc2626;

font-weight:600;

}

.hero-right{

flex:1;

}
.dashboard-row{

display:flex;

justify-content:space-between;

padding:18px 0;

border-bottom:1px solid #eee;

transition:.4s;

}

.dashboard{

transition:.5s;

}

.dashboard:hover{

transform:translateY(-8px);

box-shadow:0 30px 70px rgba(0,0,0,.12);

}
.dashboard{

background:#fff;

border-radius:20px;

padding:35px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.dashboard-header{

display:flex;

justify-content:space-between;

margin-bottom:30px;

}

.dashboard-title{

font-weight:700;

font-size:22px;

}

.status{

color:#22C55E;

font-weight:700;

}

.row{

display:flex;

justify-content:space-between;

padding:16px 0;

border-bottom:1px solid #eee;

}

.green{

color:#22C55E;

}

footer{

padding:50px 0;

text-align:center;

margin-top:100px;

border-top:1px solid #ddd;

}

/* ==========================
   PREMIUM HERO BACKGROUND
========================== */

.hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#ffffff 0%,#f9fbff 50%,#fff5f5 100%);
}

/* Grid Pattern */

.hero::before{

content:"";

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(220,38,38,.05) 1px, transparent 1px),

linear-gradient(90deg, rgba(220,38,38,.05) 1px, transparent 1px);

background-size:40px 40px;

z-index:0;

}

/* Gradient Blur */

.hero::after{

content:"";

position:absolute;

width:650px;

height:650px;

background:#dc2626;

opacity:.08;

filter:blur(130px);

top:-180px;

right:-120px;

border-radius:50%;

animation:heroGlow 10s infinite alternate;

z-index:0;

}

@keyframes heroGlow{

0%{

transform:translateY(0) scale(1);

}

100%{

transform:translateY(40px) scale(1.15);

}

}

.hero-container{

position:relative;

z-index:2;

}

.hero-right{

position:relative;

}

.floating-card{

position:absolute;

display:flex;

align-items:center;

gap:12px;

padding:15px 18px;

background:rgba(255,255,255,.9);

backdrop-filter:blur(12px);

border-radius:16px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

animation:floatCard 4s ease-in-out infinite;

min-width:180px;

}

.floating-card strong{

display:block;

font-size:15px;

}

.floating-card span{

font-size:13px;

color:#666;

}

.card1{

top:20px;

left:-70px;

}

.card2{

top:180px;

right:-70px;

animation-delay:1s;

}

.card3{

bottom:80px;

left:-60px;

animation-delay:2s;

}

.card4{

bottom:-20px;

right:-30px;

animation-delay:3s;

}

@keyframes floatCard{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}