body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #070707, #0c0c0c);
    color: #f0f0f0;
    position: absolute;
    top: 200px;
    justify-content: center;
    align-items: center;
    height: 150vh;
  
}
.navbar {
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    top: -200px;
}

.navbar .logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
   
}

.nav-links a:hover {
    color: #ff6347; /* Tomato color on hover */
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        display: none;
        flex-direction: column;
    }

    .nav-links li {
        text-align: left;
        margin: 10px 0;
    }

    .navbar.active .nav-links {
        display: flex;
    }
}







.hero {
    text-align: center;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.8);
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(56, 189, 248, 1);
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    color: #94a3b8;
    margin: 10px 0 20px;
}

.hero .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero .buttons a {
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid #38bdf8;
    border-radius: 8px;
    color: #38bdf8;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero .buttons a:hover {
    background-color: #38bdf8;
    color: #0f172a;
}

.hero .buttons a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
}

.hero .buttons a:hover:before {
    left: 100%;
}

.hero .social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero .social-links a {
    color: #38bdf8;
    font-size: 1.8rem;
    transition: transform 0.3s, color 0.3s;
}

.hero .social-links a:hover {
    transform: scale(1.2);
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero img {
        width: 120px;
        height: 120px;
    }

    .hero .buttons a {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .hero .social-links a {
        font-size: 1.5rem;
    }
}
.about-section {
display: flex;
align-items: center;
justify-content: space-between;
padding: 50px 10%;
gap: 20px;
animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* About Content */
.about-content {
max-width: 50%;
}

.about-content h2 {
font-size: 3rem;
margin-bottom: 20px;
color: #12f3a8;
text-transform: uppercase;
}

.about-content p {
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 20px;
color: #cccccc;
}

.about-content .skills {
display: flex;
flex-wrap: wrap;
gap: 15px;
}

.skill {
background: #1e1e1e;
border: 1px solid #333;
border-radius: 5px;
padding: 10px 20px;
font-size: 1rem;
color: #ffc400;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}

.skill:hover {
background: #fffbf5;
color: #121212;
transform: scale(1.1);
box-shadow: 0 5px 15px rgba(243, 200, 130, 0.5);
}

.download-btn, .hire-btn {
display: inline-block;
margin-top: 20px;
padding: 12px 25px;
background: #f39c12;
color: #121212;
font-size: 1.1rem;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
transition: all 0.3s ease;
}

.download-btn:hover, .hire-btn:hover {
background: #ffffff;
color: #f39c12;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(243, 156, 18, 0.5);
}

.hire-btn {
margin-left: 15px;
background: #27ae60;
color: #ffffff;
}

.hire-btn:hover {
background: #2ecc71;
color: #121212;
}

/* About Image */
.about-image img {
width: 250px;
height: auto;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
transition: transform 0.3s, box-shadow 0.3s;
}


/* Responsive Design */
@media screen and (max-width: 768px) {
.about-section {
flex-direction: column;
text-align: center;
}

.about-content, .about-image {
max-width: 100%;
}

.about-content {
margin-bottom: 30px;
}
}
body {
font-family: 'Arial', sans-serif;
background-color: #121212;
color: #e0e0e0;
}

.container {
width: 80%;
margin: 0 auto;
}

.skills {
padding: 50px 0;
}

.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 30px;
color: #fff;
}

.skills-list {
display: flex;
flex-direction: column;
gap: 20px;
}

.skill-item {
background-color: #333;
padding: 15px;
border-radius: 8px;
display: flex;
flex-direction: column;
gap: 10px;
}

.skill-name {
font-size: 1.2rem;
font-weight: bold;
}

.skill-bar {
background-color: #444;
border-radius: 10px;
overflow: hidden;
height: 10px;
}

.skill-progress {
background-color: #00bcd4;
height: 100%;
width: 0;
transition: width 1s ease-out;
}

.skill-percentage {
text-align: right;
font-size: 1rem;
color: #bbb;
margin-top: 5px;
}

.skill-item:hover .skill-progress {
width: 100%;
}

h2 {
font-size: 36px;
text-align: center;
margin-bottom: 20px;
}

.container {
width: 90%;
margin: 0 auto;
}

.filters {
text-align: center;
margin-bottom: 30px;
}

.filter-btn {
background-color: #333;
color: #f4f4f4;
border: none;
padding: 10px 20px;
margin: 5px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: bold;
letter-spacing: 1px;
}

.filter-btn.active, .filter-btn:hover {
background-color: #6c63ff;
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
justify-items: center;
padding: 0 20px;

}

.portfolio-item {
background-color: #2d2d2d;
padding: 15px;
border-radius: 8px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}

.portfolio-item img {
width: 300px;
height: 200px;
object-fit: cover;
border-radius: 8px;
transition: all 0.3s ease;
}

.portfolio-item h3 {
margin-top: 15px;
font-size: 20px;
color: #fff;
}

.portfolio-item p {
margin-top: 10px;
font-size: 14px;
color: #ccc;
}

.portfolio-item:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover img {
transform: scale(1.1);
}







.moreproject {
    padding: 20px;
    position: relative;
    right: 130px;
    top: 240px;
    
}

.moreproject h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.moreproject p {
    font-size: 1rem;
  
}

.moreproject a {
   
    margin-top: 10px;
    padding: 10px 15px;
   
    background-color: #fafffa;
    text-decoration: none;
    border-radius: 5px;
   
}

.moreproject a:hover {
    background-color: #000000;
}









.portfolio-item .more-info {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.7);
color: #fff;
padding: 5px 15px;
border-radius: 5px;
display: none;
}

.portfolio-item:hover .more-info {
display: inline-block;
}

/* Modal Styles */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
justify-content: center;
align-items: center;
}

.modal-content {
background-color: #2d2d2d;
padding: 20px;
border-radius: 8px;
width: 60%;
max-width: 800px;
color: #f4f4f4;
}

.modal-content h3 {
font-size: 28px;
margin-bottom: 20px;
}

.modal-content p {
font-size: 16px;
line-height: 1.5;
}

.close-modal {
position: absolute;
top: 10px;
right: 10px;
background-color: transparent;
border: none;
color: #fff;
font-size: 24px;
cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
.portfolio-item img {
height: 150px;
}
}

@media (max-width: 480px) {
.filters {
display: flex;
flex-direction: column;
}

.portfolio-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

/* General Reset */
      

        /* Footer Styles */
        footer {
            background-color: #1e1e1e; /* Slightly lighter dark shade */
            padding: 40px 20px;
            text-align: center;
            position: relative;
        }

        footer .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 20px;
        }

        footer .social-icons {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        footer .social-icons li {
            display: inline-block;
        }

        footer .social-icons a {
            text-decoration: none;
            color: #ffffff;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        footer .social-icons a:hover {
            color: #00adb5; /* Accent color */
        }

        footer .links {
            margin: 20px 0;
        }

        footer .links a {
            color: #bbbbbb;
            text-decoration: none;
            margin: 0 10px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        footer .links a:hover {
            color: #00adb5; /* Accent color */
        }

        footer .copyright {
            font-size: 12px;
            color: #777777;
            margin-top: 20px;
        }

        footer .back-to-top {
            position: absolute;
            right: 2px;
            bottom: 20px;
            background-color: #00adb5;
            color: #ffffff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        footer .back-to-top:hover {
            background-color: #007a7f;
        }

/* Your original styles untouched */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero img {
        width: 80px;
        height: 80px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .hero .buttons {
        flex-wrap: wrap;
        gap: 5px;
    }

    .hero .buttons a {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .hero .social-links a {
        font-size: 1.2rem;
    }

    .about-section {
        padding: 20px 5%;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .about-content .skills {
        gap: 5px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.7rem;
    }

    .hero .buttons a {
        font-size: 0.7rem;
        padding: 6px 8px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.8rem;
    }

    .portfolio-grid {
        gap: 8px;
    }
}


/* General Reset */
/* Navbar Styles */
