/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: linear-gradient(135deg, #333, #222); /* Dark gradient */
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff; /* White text */
}

.navbar .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .menu li {
    margin: 0 15px;
}

.navbar .menu a {
    color: #fff; /* White text */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .menu a:hover {
    color: #ff6f61; /* Accent color on hover */
}

.hamburger {
    display: none;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 0;
}

.hero-text h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    padding: 10px 20px;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.btn:hover {
    background-color: #ff4a3d;
}

.ghost-btn {
    background-color: transparent;
    border: 2px solid #fff;
}

.ghost-btn:hover {
    background-color: #fff;
    color: #333;
}

.hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff6f61;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 50px;
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.about-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff6f61;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Skills Section */
.skills {
    padding: 100px 50px;
    text-align: center;
    background: #fff;
}

.skills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill {
    text-align: center;
    transition: transform 0.3s ease;
}

.skill img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6f61;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill p {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 500;
}

.skill:hover {
    transform: translateY(-10px);
}

.skill:hover img {
    box-shadow: 0 0 20px rgba(255, 111, 97, 0.5);
}

/* Projects Section */
.projects {
    padding: 100px 50px;
    text-align: center;
    background: #f9f9f9;
}

.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project {
    width: 45%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-10px);
}

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

.project h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

.project p {
    font-size: 1rem;
    padding: 0 20px 20px;
    color: #555;
}

.project .btn {
    margin: 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

footer .social-links {
    margin-top: 20px;
}

footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #ff6f61;
}