* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ff8c42;
    color: #f1f1f1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    background:#000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    color: #ff8c42;
}

.navbar nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #f1f1f1;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #ff8c42;
}

/* Hero Background Section */
.hero-bg {
    height: 100vh;
    background: url("../images/Office\ and\ laptop.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 60px;
}

.hero-image {
    margin-left: auto;  /* pushes the image to the right */
}

.hero-text h2 {
    font-size: 42px;
}

.hero-text span {
    color: #ff8c42;
}

.hero-text p {
    margin: 15px 0;
    font-size: 18px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff8c42;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255,140,66,0.4);
}

/* Profile Circle */
.profile-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    animation: pulse 2.5s infinite;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 8px solid #2b2b2b;
}

/* About */
.about {
    padding: 80px 60px;
    text-align: center;
}

.about h2 {
    color: #1f1f1f;
    margin-bottom: 15px;
}

/* Skills */
.skills {
    padding: 60px;
    text-align: center;
}

.skills h2 {
    color: #1f1f1f;
    margin-bottom: 25px;
}

.skill-box {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.skill-box div {
    background: #1f1f1f;
    padding: 15px 35px;
    border-radius: 30px;
    border: 1px solid #ff8c42;
    transition: 0.3s;
}

.skill-box div:hover {
    background: #ff8c42;
    color: #000;
    transform: translateY(-5px);
}

/* Projects */
.projects {
    padding: 60px;
    text-align: center;
}

.projects h2 {
    color: #1f1f1f;
    margin-bottom: 25px;
}

.project-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #1f1f1f;
    padding: 30px;
    width: 240px;
    border-radius: 15px;
    border-top: 4px solid #ff8c42;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Contact */
.contact {
    /* padding: 60px; */
    text-align: center;
    margin-top: 100px;
}

.contact h2 {
    color: #1f1f1f;
    margin-bottom: 15px;
}
/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.social-links a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1f1f1f;
    border: 2px solid #ff8c42;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: #ff8c42;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: #ff8c42;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 20px rgba(255,140,66,0.4);
}

.social-links a:hover svg {
    fill: #000;
}

/* Footer */
footer {
    background: #1f1f1f;
    padding: 20px;
    text-align: center;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,140,66,0.7); }
    70% { box-shadow: 0 0 0 30px rgba(255,140,66,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,140,66,0); }
}

.fade-left {
    animation: fadeLeft 1.2s ease forwards;
}

.fade-right {
    animation: fadeRight 1.2s ease forwards;
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        justify-content: center;
    }

    .profile-circle {
        width: 260px;
        height: 260px;
        margin-top: 30px;
    }

    .navbar {
        flex-direction: column;
    }
}
