*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#FEF0E5;
color:#222;
}

/* HEADER */

.header{
background:#fff;
padding:15px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

.logo{
font-size:30px;
font-weight:700;
color:#4DB6C6;
}

.menu-btn{
font-size:30px;
}

/* HERO */

.hero{
padding:30px 20px;
text-align:center;
}

.hero img{
width:250px;
max-width:100%;
border-radius:20px;
margin-bottom:20px;
}

.hero h1{
font-size:38px;
line-height:1.2;
margin-bottom:15px;
}

.hero p{
font-size:17px;
line-height:1.7;
margin-bottom:25px;
}

.hero-buttons{
display:flex;
flex-direction:column;
gap:12px;
}

.btn-primary,
.btn-secondary{
padding:15px;
border-radius:12px;
text-decoration:none;
font-weight:600;
}

.btn-primary{
background:#4DB6C6;
color:white;
}

.btn-secondary{
background:#F6B27E;
color:white;
}

/* STATS */

.stats{
padding:20px;
}

.stat-card{
background:white;
padding:20px;
border-radius:15px;
margin-bottom:15px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.stat-card h2{
color:#4DB6C6;
}

/* PACKAGES */

.packages{
padding:20px;
}

.packages h2{
text-align:center;
margin-bottom:20px;
}

.package-card{
background:white;
padding:25px;
border-radius:20px;
margin-bottom:15px;
text-align:center;
box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.featured{
border:3px solid #F6B27E;
}

/* WHY US */

.why-us{
padding:20px;
}

.why-us h2{
text-align:center;
margin-bottom:20px;
}

.why-card{
background:white;
padding:20px;
border-radius:15px;
margin-bottom:15px;
text-align:center;
}

/* FOOTER */

footer{
background:#4DB6C6;
color:white;
text-align:center;
padding:40px 20px;
margin-top:30px;
}

/* DESKTOP */

@media(min-width:768px){

.hero-buttons{
flex-direction:row;
justify-content:center;
}

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
}

.packages{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

.why-us{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

}

.page-header{
padding:40px 20px;
text-align:center;
}

.page-header h1{
font-size:36px;
margin-bottom:10px;
}

.packages-page{
padding:20px;
}

.packages-page .package-card{
background:white;
padding:25px;
border-radius:20px;
margin-bottom:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
text-align:center;
}

.packages-page ul{
list-style:none;
padding:0;
margin:20px 0;
}

.packages-page li{
padding:8px 0;
border-bottom:1px solid #eee;
}

.featured{
border:3px solid #F6B27E;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.header{
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo a{
font-size:28px;
font-weight:700;
text-decoration:none;
color:#4DB6C6;
}

.navbar{
display:flex;
gap:20px;
}

.navbar a{
text-decoration:none;
color:#333;
font-weight:500;
}

.menu-btn{
display:none;
font-size:30px;
cursor:pointer;
}

@media(max-width:768px){

.menu-btn{
display:block;
}

.navbar{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
padding:20px;
}

.navbar.active{
display:flex;
}

}

.upload-section{
padding:25px;
max-width:700px;
margin:auto;
}

.upload-section h1{
text-align:center;
margin-bottom:20px;
}

form{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

label{
display:block;
margin-top:15px;
margin-bottom:6px;
font-weight:600;
}

input,
select,
textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:10px;
}

.upi-box{
background:#FEF0E5;
padding:15px;
border-radius:10px;
margin-top:20px;
text-align:center;
}

button{
width:100%;
background:#4DB6C6;
color:white;
border:none;
padding:15px;
border-radius:10px;
font-size:16px;
font-weight:600;
margin-top:20px;
cursor:pointer;
}

.success-page{
padding:60px 20px;
text-align:center;
}

.success-page h1{
margin-bottom:15px;
}

.success-page p{
margin-bottom:10px;
}

.login-box{
max-width:400px;
margin:80px auto;
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.login-box h2{
text-align:center;
margin-bottom:20px;
}

.login-box input{
width:100%;
padding:12px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:10px;
}

.login-box button{
width:100%;
padding:12px;
border:none;
background:#4DB6C6;
color:white;
border-radius:10px;
}

.dashboard{
padding:20px;
}

table{
width:100%;
border-collapse:collapse;
background:white;
}

th{
background:#4DB6C6;
color:white;
padding:12px;
}

td{
padding:10px;
border:1px solid #ddd;
}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,.2);
z-index:9999;
}

.pay-btn{
display:inline-block;
background:#28a745;
color:#fff !important;
padding:12px 30px;
border-radius:10px;
text-decoration:none;
font-weight:600;
font-size:16px;
margin-top:10px;
}

.pay-btn:hover{
background:#218838;
}