* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b00;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ff6b00;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    min-height: 80vh;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-text .bio {
    margin-bottom: 30px;
    max-width: 500px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.hire-me {
    background: #ff6b00;
    color: #fff;
    margin-right: 15px;
}

.view-github {
    border: 2px solid #333;
    color: #333;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: floatEffect 4s ease-in-out infinite;
}

@keyframes floatEffect {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.orange-circle-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #ff6b00;
    border-radius: 50%;
    opacity: 0.1;
}

.work-section {
    padding: 100px 8%;
    background: #fff;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #eee;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.project-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-info {
    padding: 25px;
}

.project-tags span {
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.project-link {
    text-decoration: none;
    color: #ff6b00;
    font-weight: 700;
}

.skills-section {
    padding: 100px 8%;
    background: #f1f3f5;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.skill-category h3 {
    color: #ff6b00;
    margin-bottom: 1.5rem;
}

.skill-list { list-style: none; }
.skill-list li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.contact-section { padding: 100px 8%; }

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info { flex: 1; }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.contact-item:hover {
    background: #ff6b00;
    color: #fff;
    transform: translateX(10px);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.btn-primary {
    background: #ff6b00;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.site-footer {
    text-align: center;
    padding: 40px;
    background: #333;
    color: #fff;
}

.menu-toggle { display: none; }

@media (max-width: 768px) {
    .hero-section { flex-direction: column; text-align: center; }
    .contact-content { flex-direction: column; }
    .nav-links { display: none; }
}