<style>
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 50%, #38ef7d 100%);
    min-height: 100vh;
}

/* Header */
header
{
    background: rgba(red, green, blue, alpha);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0%;
    z-index: 1000;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content
{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo
{
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37
}

/* Navigation*/
nav ul 
{
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a 
{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover
{
    color: #d4af37;
}

nav a:active
{
    color: #d4af37;
}

nav a::after
{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after
{
    width: 100%;
}

main
{
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

.hero 
{
    text-align: center;
    padding: 4rem 2rem;
    color: white;
}

.profile-image 
{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, #8b5a3c, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float 
{
    0%, 100% {transform: translate(0px); }
    50% {transform : translateY(-10px); }
}

.heroh1 
{
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle
{
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .description 
{
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons 
{
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn 
{
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3 ease;
    cursor: pointer;
    display: inline-block;
}

.btn primary 
{
    background: white;
    color: #d4af37;
}

.btn-primary:hover
{
    background: f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary
{
    background: transparent;
    color: white;
    border: 2px solid white ;
}

.btn-secondary:hover
{
    background: white;
    color: #667eea;
    transform: translateY(-2px);

}

skills-preview 
{
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
    margin: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skills-preview h2 
{
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.skills-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-card 
{
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.skill-card:hover 
{
    transform: translateY(-5px);
}

.skill-icon 
{
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-card h3 
{
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

footer 
{
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content 
{
    max-width: 1200px;
    margin: 0 auto;
}

.social-links 
{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a 
{
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover 
{
    color: #667eea;
}

.contact-section 
{
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
    margin: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form 
{
    max-width: 600px;
    margin: 0 auto;
}

.contact-form h2 
{
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
}

.form-group 
{
    margin-bottom: 1.5rem;
}

.form-group label 
{
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea 
{
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus 
{
    outline: none;
    border-color: #667eea;
}

.form-group textarea 
{
    resize: vertical;
    min-height: 120px;
}

.page-content 
{
    background: rgba(255, 255, 255, 0.95);
    margin: 2rem;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-content h1 
{
    color: #333;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 
{
    color: #667eea;
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
}

.page-content p 
{
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.experience-item,
.education-item,
.project-item 
{
    background: #f8f9ff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.experience-item h3,
.education-item h3,
.project-item h3 
{
    color: #333;
    margin-bottom: 0.5rem;
}

.date 
{
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

 @media (max-width: 768px) 
 {
.header-content 
{
    flex-direction: column;
    gap: 1rem;
}

nav ul 
{
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero h1 
{
    font-size: 2.5rem;
}

.hero .subtitle 
{
    font-size: 1.2rem;
}

.cta-buttons 
{
    flex-direction: column;
    align-items: center;
}

.skills-grid 
{
    grid-template-columns: 1fr;
}

.social-links 
{
    flex-wrap: wrap;
    gap: 1rem;
}

main 
{
    margin-top: 120px;
}
 }

.hidden 
{
    display: none;
}
    </style>
