 
* {  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;  
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
}  

:root {  
    --primary-color: rgb(252, 210, 24);  
    --secondary-color: black;  
    --accent-color: #e74c3c;  
    --light-color: #ecf0f1;  
    --dark-color: #212404;  
}  

body {  
    line-height: 1.6;  
    color: #333;  
    background-color: var(--light-color);  
}  

/* Header Styles */  
header {  
    background-color: var(--secondary-color);  
    color: white;  
    padding: 1rem 0;  
    position: fixed;  
    width: 100%;  
    top: 0;  
    z-index: 1000;  
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
}  

.container {  
    width: 90%;  
    max-width: 1200px;  
    margin: 0 auto;  
}  

.header-container {  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
}  

.logo {  
    font-size: 1.5rem;  
    font-weight: 700;  
    color: white;  
    text-decoration: none;  
} 
.logo img{
    width: 220px;
} 

.logo span {  
    color: var(--primary-color);  
}  

nav ul {  
    display: flex;  
    list-style: none;  
}  

nav ul li {  
    margin-left: 2rem;  
}  

nav ul li a {  
    color: white;  
    text-decoration: none;  
    font-weight: 500;  
    transition: color 0.3s;  
}  

nav ul li a:hover {  
    color: var(--primary-color);  
}  

.hamburger {  
    display: none;  
    cursor: pointer;  
}  

/* Hero Section */  
.hero {  
    height: 100vh;  
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));  
    color: white;  
    display: flex;  
    align-items: center;  
    text-align: center;  
    padding-top: 80px;  
}  

.hero-content h1 {  
    font-size: 3rem;  
    margin-bottom: 1rem;  
}  

.hero-content h1 span {  
    color: var(--primary-color);  
}  

.hero-content p {  
    font-size: 1.2rem;  
    max-width: 700px;  
    margin: 0 auto 2rem;  
}  

.btn {  
    display: inline-block;  
    background-color: var(--primary-color);  
    color: black;  
    padding: 0.8rem 2rem;  
    border-radius: 5px;  
    text-decoration: none;  
    font-weight: 700;  
    transition: all 0.3s;  
    border: none;  
    cursor: pointer;  
} 
.btn1 {  
    display: inline-block;  
    background-color: var(--primary-color);  
    color: black;  
    padding: 0.8rem 2rem;  
    border-radius: 5px;  
    text-decoration: none;  
    font-weight: 700;  
    transition: all 0.3s;  
    border: none;  
    cursor: pointer;  
}   

.btn:hover {  
    background-color:transparent;  
    transform: translateY(-3px); 
    border: 2px solid var(--primary-color);  

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);  
    /* color: white; */
}
.btn1:hover {  
    background-color:transparent;  
    transform: translateY(-3px); 
    border: 2px solid var(--primary-color);  

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);  
    color: white;
}    

.btn-outline {  
    background-color: transparent;  
    border: 2px solid var(--primary-color);  
    margin-left: 1rem;  
}  

.btn-outline:hover {  
    background-color: var(--primary-color);  
} 
.btn1-outline {  
    background-color: transparent;  
    border: 2px solid var(--primary-color);  
    margin-left: 1rem; 
    color: white; 
}  

.btn1-outline:hover {  
    background-color: var(--primary-color);
    color: black  
}  

/* About Section */  
.section {  
    padding: 5rem 0;  
}  

.section-title {  
    text-align: center;  
    margin-bottom: 3rem;  
    font-size: 2.5rem;  
    color: var(--secondary-color);  
}  

.section-title span {  
    color: var(--primary-color);  
}  

.about-container {  
    display: flex;  
    align-items: center;  
    gap: 3rem;  
}  

.about-img {  
    flex: 1;  
    border-radius: 10px;  
    overflow: hidden;  
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);  
}  

.about-img img {  
    width: 100%;  
    height: auto;  
    display: block;  
}  

.about-content {  
    flex: 1;  
}  

.about-content h3 {  
    font-size: 2rem;  
    margin-bottom: 1rem;  
    color: var(--secondary-color);  
}  

.about-content p {  
    margin-bottom: 1.5rem;  
    color: #555;
    font-weight:600; 
    font-size: 18px;
    text-align: justify; 
}  

.skills {  
    margin-top: 2rem;
    font-size: 1.5rem;
}  

.skills h4 {  
    margin-bottom: 1rem;  
    color: var(--secondary-color); 
    justify-content: center;
    text-align: center;
}  

.skill-tags {  
    display: flex;  
    flex-wrap: wrap;  
    gap: 0.5rem; 
    justify-content: center;
    align-items: center;
}  

.skill-tag {  
    background-color: var(--primary-color);  
    color: black;  
    padding: 0.5rem 1rem;  
    border-radius: 20px;  
    font-size: 1rem; 
    font-weight: 600; 
    justify-content: center;
    align-items: center;
}  

/* Projects Section */  
.projects {  
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));  
}  

.projects-grid {  
    display: grid;  
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));  
    gap: 2rem;  
}  

.project-card {  
    background-color: white;  
    border-radius: 10px;  
    overflow: hidden;  
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);  
    transition: transform 0.3s, box-shadow 0.3s;  
}  

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

.project-img {  
    height: 200px;  
    overflow: hidden;  
}  

.project-img img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
    transition: transform 0.5s;  
}  

.project-card:hover .project-img img {  
    transform: scale(1.1);  
}  

.project-info {  
    padding: 1.5rem;  
}  

.project-info h3 {  
    margin-bottom: 0.5rem;  
    color: var(--secondary-color);  
}  

.project-info p {  
    color: #666;  
    margin-bottom: 1rem;  
}  

.project-links {  
    display: flex;  
    gap: 1rem;  
}  

.project-links a {  
    font-size: 0.9rem;  
}  

/* Contact Section */  
.contact {  
    text-align: center;  
}  

.contact p {  
    max-width: 700px;  
    margin: 0 auto 2rem;  
    color: #555;  
}  

.contact-form {  
    max-width: 600px;  
    margin: 0 auto;  
    background-color: white;  
    padding: 2rem;  
    border-radius: 10px;  
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);  
}  

.form-group {  
    margin-bottom: 1.5rem;  
    text-align: left;  
}  

.form-group label {  
    display: block;  
    margin-bottom: 0.5rem;  
    color: var(--secondary-color);  
    font-weight: 500;  
}  

.form-group input,  
.form-group textarea {  
    width: 100%;  
    padding: 0.8rem;  
    border: 1px solid #ddd;  
    border-radius: 5px;  
    font-size: 1rem;  
}  

.form-group textarea {  
    height: 150px;  
    resize: vertical;  
}  

/* Footer */  
footer {  
    background-color: var(--secondary-color);  
    color: white;  
    text-align: center;  
    padding: 2rem 0;  
}  

.social-links {  
    display: flex;  
    justify-content: center;  
    gap: 1.5rem;  
    margin-bottom: 1.5rem;  
}  

.social-links a {  
    color: white;  
    font-size: 1.5rem;  
    transition: color 0.3s;  
}  

.social-links a:hover {  
    color: var(--primary-color);  
}  

.copyright {  
    font-size: 0.9rem;  
    opacity: 0.8;  
} 
.project-links2 {  
    display: flex;  
    gap: 1rem;
    justify-content: center;
    align-items: center;  
}  

/* Responsive Design */  
@media (max-width: 768px) {
    header{
        padding: 0;  
    }  
    .header-container {  
        padding: 0;  
    }  
    .logo img{
        width: 170px;
        margin-top: 10px;
    } 
    .btn1{
        margin-bottom: 20px;
    }
    .hamburger {  
        display: block;  
    } 
    .project-links2 {  
        display: block;  
        gap: 1rem; 
    } 
    #insta{
        margin-top: 20px;
    } 

    nav {  
        position: fixed;  
        top: 70px;  
        left: -100%;  
        width: 100%;  
        background-color: var(--secondary-color);  
        transition: left 0.3s;  
    }  

    nav.active {  
        left: 0;  
    }  

    nav ul {  
        flex-direction: column;  
        padding: 1rem;  
    }  

    nav ul li {  
        margin: 1rem 0;  
    }  

    .hero-content h1 {  
        font-size: 2.5rem;  
    }  

    .about-container {  
        flex-direction: column;  
    }  

    .projects-grid {  
        grid-template-columns: 1fr;  
    }  
}  

/* Animation */  
@keyframes fadeIn {  
    from {  
        opacity: 0;  
        transform: translateY(50px);  
    }  
    to {  
        opacity: 1;  
        transform: translateY(0);  
    }  
}  

.fade-in {  
    animation: fadeIn 5s ease-out forwards;  
}  