body {
margin: 0;
font-family: "Poppins", sans-serif;
background: #f4f7fb;
color: #1f2937;
}

/* HEADER */
header {
text-align: center;
padding: 60px 20px;
background: linear-gradient(135deg, #1e3a8a, #22c55e);
color: white;
}

header h1 {
margin: 0;
font-size: 46px;
}

header p {
margin-top: 10px;
opacity: 0.9;
}

/* NAV */
nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
padding: 15px;
background: white;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

nav a {
text-decoration: none;
padding: 10px 14px;
border-radius: 999px;
background: #f1f5f9;
color: #111827;
font-weight: 500;
transition: 0.2s;
}

nav a:hover {
background: #1e3a8a;
color: white;
}

/* DASHBOARD GRID (THIS IS THE BIG CHANGE) */
section {
display: flex;
justify-content: center;
padding: 40px 20px;
}

/* CARD GRID LOOK */
.card {
background: white;
padding: 25px;
border-radius: 16px;
width: 100%;
max-width: 900px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ADD DASHBOARD “BLOCK STYLE” INSIDE CARD */
.card h2 {
color: #1e3a8a;
}

/* OPTIONAL GRID STYLE (if you add more cards later) */
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-top: 20px;
}

.block {
background: #f8fafc;
padding: 15px;
border-radius: 12px;
border: 1px solid #e5e7eb;
transition: 0.2s;
}

.block:hover {
transform: translateY(-3px);
background: white;
box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* FOOTER */
footer {
text-align: center;
padding: 40px;
background: #0f172a;
color: white;
}

.portfolio-link {
display: inline-block;
margin-top: 10px;
padding: 10px 16px;
background: #22c55e;
color: white;
border-radius: 999px;
text-decoration: none;

/* ABOUT PAGE DESIGN */

.about-page {
background: #f7faf7;
min-height: 100vh;
font-family: Arial, sans-serif;
}

.about-hero {
background-image: url('https://images.unsplash.com/photo-1516979187457-637abb4f9353');
background-size: cover;
background-position: center;
height: 320px;
border-radius: 0 0 40px 40px;
overflow: hidden;
}

.hero-overlay {
background: rgba(75, 102, 70, 0.55);
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
padding: 20px;
}

.hero-overlay h1 {
font-size: 3rem;
}

.hero-overlay p {
font-size: 1.1rem;
max-width: 600px;
}

.about-container {
max-width: 1000px;
margin: auto;
padding: 50px 20px;
}

.about-text {
background: white;
padding: 40px;
border-radius: 30px;
box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.about-text h2 {
color: #4b6646;
text-align: center;
margin-bottom: 20px;
}

.about-text p {
color: #555;
line-height: 1.8;
}
body{backgrond: lightgreen !important;
