* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
header {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    color: #e0f2f1;
}

header nav {
    margin-top: 2rem;
}

header nav a {
    color: white;
    font-weight: 600;
    margin: 0 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

header nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* PROJECTS */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project {
    background: #e8f5e9;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.project h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

/* BUTTONS */
.button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
    background: #4CAF50;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

.button:hover {
    background: #2E7D32;
    transform: scale(1.05);
}

/* CONTACT */
#contact a {
    color: #4CAF50;
    font-weight: 500;
}

#contact a:hover {
    color: #2E7D32;
    text-decoration: underline;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: white;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    header nav a {
        margin: 0 0.8rem;
    }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skill-card {
    background: #e8f5e9;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #2E7D32;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.experience-card {
    background: #f1f8e9;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

#education ul {
    margin-top: 1rem;
    list-style-type: disc;
    padding-left: 2rem;
}

#education li {
    margin-bottom: 0.8rem;
}

header {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header nav a {
    color: white;
    font-weight: 600;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s, transform 0.3s;
}

header nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* MAIN SECTION */
main.section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    line-height: 1.7;
}

main h2 {
    color: #2E7D32;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* FEATURES LIST */
.features-list {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.8rem;
}

/* PROJECT IMAGES */
.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-images img:hover {
    transform: scale(1.05);
}

/* BUTTONS */
.button {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    margin-top: 1rem;
    background: #4CAF50;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}

.button:hover {
    background: #2E7D32;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: white;
    font-size: 0.9rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header nav a {
        margin: 0 0.6rem;
    }
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f6f8;
    color: #333;
}

header {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 1rem;
    transition: 0.3s;
}

nav a:hover {
    text-decoration: underline;
}

main.section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

h2 {
    color: #2E7D32;
    margin-top: 1.5rem;
}

.features-list li {
    margin: 0.5rem 0;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    background-color: #388E3C;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    margin-top: 2rem;
}


/* Section Styling */
.section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Headings */
.section h2 {
    color: #4CAF50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Features List */
.features-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.features-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Project Images Grid */
.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}
.project-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Button */
.button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}
.button:hover {
    background: linear-gradient(135deg, #66BB6A, #1B5E20);
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    margin-top: 2rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}