*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#f4f8ff;

}

/* NAVIGATION */

nav{

background:#0056d2;

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 8%;

color:white;

}

.logo{

font-size:30px;

font-weight:bold;

}

.logo span{

color:#87cefa;

}

nav ul{

display:flex;

list-style:none;

gap:30px;

}

nav ul li a{

color:white;

text-decoration:none;

font-weight:500;

}

nav ul li a:hover{

color:#cce5ff;

}

/* HERO */

.hero{

display:flex;

justify-content:space-between;

align-items:center;

padding:80px 8%;

flex-wrap:wrap;

}

.left{

flex:1;

min-width:300px;

}

.left h1{

font-size:55px;

color:#0056d2;

line-height:65px;

margin-bottom:20px;

}

.left h1 span{

color:#1e90ff;

}

.left p{

font-size:18px;

color:#555;

line-height:30px;

margin-bottom:30px;

}

button{

padding:16px 35px;

background:#0056d2;

color:white;

border:none;

border-radius:30px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

button:hover{

background:#003d99;

transform:translateY(-3px);

}

.right{

flex:1;

text-align:center;

min-width:300px;

}

.right img{

max-width:450px;

width:100%;

}

/* FEATURES */

.features{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

padding:60px 8%;

}

.card{

background:white;

padding:30px;

border-radius:15px;

text-align:center;

box-shadow:0 8px 20px rgba(0,0,0,.1);

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

.card h2{

color:#0056d2;

margin-bottom:15px;

}

/* FOOTER */

footer{

margin-top:40px;

padding:20px;

text-align:center;

background:#0056d2;

color:white;

}

/* MOBILE */

@media(max-width:768px){

nav{

flex-direction:column;

gap:20px;

}

.hero{

text-align:center;

}

.left h1{

font-size:40px;

line-height:50px;

}

}/* PAYMENT PAGE */

.payment-container{

display:flex;

justify-content:center;

align-items:center;

padding:60px 20px;

}

.payment-card{

background:white;

width:420px;

padding:35px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.1);

}

.payment-card h2{

text-align:center;

color:#0056d2;

margin-bottom:10px;

}

.payment-card p{

text-align:center;

margin-bottom:25px;

color:#666;

}

.payment-card label{

display:block;

margin-top:15px;

margin-bottom:8px;

font-weight:600;

}

.payment-card input,
.payment-card select{

width:100%;

padding:14px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

outline:none;

}

.payment-card input:focus,
.payment-card select:focus{

border-color:#0056d2;

}

.amount-box{

margin:25px 0;

background:#eef5ff;

border-radius:10px;

padding:20px;

text-align:center;

}

.amount-box h1{

color:#0056d2;

margin-top:10px;

}.payment-wrapper{

display:flex;

justify-content:center;

padding:50px 20px;

}

.payment-card{

background:white;

padding:35px;

border-radius:20px;

width:700px;

box-shadow:0 15px 35px rgba(0,0,0,.1);

}

.payment-card h2{

color:#0056d2;

margin-bottom:10px;

text-align:center;

}

.payment-card p{

text-align:center;

margin-bottom:20px;

}

.payment-card label{

display:block;

margin-top:15px;

margin-bottom:6px;

font-weight:600;

}

.payment-card input{

width:100%;

padding:14px;

border:1px solid #ccc;

border-radius:8px;

font-size:16px;

}

.packages{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:15px;

margin-top:20px;

margin-bottom:20px;

}

.package{

background:#f4f8ff;

border:2px solid #d9e8ff;

border-radius:12px;

padding:20px;

text-align:center;

cursor:pointer;

transition:.3s;

}

.package:hover{

background:#0056d2;

color:white;

transform:translateY(-5px);

}

.package.active{

background:#0056d2;

color:white;

border-color:#0056d2;

}

.summary{

background:#eef5ff;

padding:20px;

border-radius:12px;

margin-bottom:20px;

}

.summary h3{

margin-bottom:10px;

color:#0056d2;

}

.summary p{

display:flex;

justify-content:space-between;

margin:8px 0;

}

@media(max-width:700px){

.packages{

grid-template-columns:1fr;

}

.payment-card{

width:100%;

}

}/* DASHBOARD */

.dashboard{

padding:40px;

}

.cards{

display:flex;

gap:20px;

margin:30px 0;

flex-wrap:wrap;

}

.dash-card{

background:#0056d2;

color:white;

padding:30px;

border-radius:15px;

flex:1;

min-width:250px;

box-shadow:0 10px 20px rgba(0,0,0,.15);

}

.dash-card h3{

margin-bottom:10px;

font-weight:500;

}

table{

width:100%;

border-collapse:collapse;

background:white;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

table th{

background:#0056d2;

color:white;

padding:15px;

}

table td{

padding:15px;

border-bottom:1px solid #ddd;

}

table tr:hover{

background:#f5f9ff;

}