body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
    color: #222;
}

header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

nav {
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #764ba2;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    background: #ffd700;
    color: #764ba2;
    box-shadow: 0 2px 8px rgba(255,215,0,0.2);
}

.hero {
    text-align: center;
    margin-top: 60px;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    background-image: url('https://source.unsplash.com/1600x900/?nature,water');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(6px) brightness(0.7);
    opacity: 0.7;
}

.hero h1, .hero p, .hero button {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 12px #764ba2;
}

.hero p {
    font-size: 1.7rem;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 1px 1px 8px #764ba2;
}

.hero button {
    background: linear-gradient(90deg, #ffd700 0%, #fff 100%);
    color: #764ba2;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    font-weight: bold;
}

.hero button:hover {
    background: linear-gradient(90deg, #764ba2 0%, #ffd700 100%);
    color: #fff;
    transform: scale(1.05);
}

main {
    padding: 40px 10%;
}

.section-container {
    background: rgba(255,255,255,0.7);
    border-width: 800px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(118,75,162,0.10);
    padding: 40px 30px;
    margin-bottom: 50px;
    backdrop-filter: blur(2px);
    border: 1px solid #cfdef3;
    transition: box-shadow 0.2s, transform 0.2s;


}

.section-container:hover {
    box-shadow: 0 8px 32px rgba(118,75,162,0.18);
    transform: translateY(-4px) scale(1.01);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #764ba2;
    text-shadow: 1px 1px 8px #cfdef3;
}

.skill {
    display: inline-block;
    border: 2px solid #764ba2;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 24px;
    margin: 8px 8px 0 0;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(118,75,162,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.skill:hover {
    background: #ffd700;
    color: #764ba2;
    transform: scale(1.08);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.project-card {
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(118,75,162,0.10);
    padding: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #cfdef3;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #ffd700 100%);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.project-card h3, .project-card p {
    position: relative;
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(118,75,162,0.18);
}

.view-project-btn {
    background: linear-gradient(90deg, #ffd700 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 24px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(118,75,162,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.view-project-btn:hover {
    background: linear-gradient(90deg, #764ba2 0%, #ffd700 100%);
    color: #764ba2;
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(118,75,162,0.18);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

input, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #764ba2;
    font-size: 1rem;
    resize: none;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 2px 8px rgba(118,75,162,0.08);
    transition: border 0.2s;
}

input:focus, textarea:focus {
    border: 2px solid #ffd700;
    outline: none;
}

button[type="submit"] {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(118,75,162,0.10);
}

button[type="submit"]:hover {
    background: linear-gradient(90deg, #ffd700 0%, #764ba2 100%);
    color: #764ba2;
    transform: scale(1.05);
}

#formMessage {
    margin-top: 10px;
    color: #667eea;
    font-weight: bold;
}

footer {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 1rem;
    margin-top: 40px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 -2px 12px rgba(118,75,162,0.10);
}