
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #080821;
            --secondary-color: #111c3d;
            --accent-color: #0f3460;
            --text-color: #e9e9e9;
            --highlight-color: #33b037;
            --card-bg: #16213e;
            --border-color: #2d4059;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        
        header {
            background-color: var(--secondary-color);
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        nav {
            
            display: flex;
            justify-content: space-between;
            align-items: center;
           
            font-size: 1rem;
            font-weight: 500;

        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            justify-content: space-between;
         
        }

        .nav-links a {
            margin-left: 3rem;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--highlight-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--highlight-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 90px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100%" height="100%" fill="none"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="rgba(233,69,96,0.1)" stroke-width="1"/></svg>');
            opacity: 0.3;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
           
        }
        #project-button{
            margin: 40px;

            display: flex;
           justify-content: start;
            align-items: center;
        }
        #touch-button{
            margin: 40px;
            display: flex;
           justify-content: end;
            align-items: center;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.6rem;
            margin-bottom: 2rem;
            max-width: 600px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--highlight-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--highlight-color);
            margin-right: 1rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--highlight-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.2);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--highlight-color);
            border: 2px solid var(--highlight-color);
        }

        .btn-outline:hover {
            background-color: var(--highlight-color);
            color: white;
        }

     
        section {
            padding: 5rem 0;
        }

        section:nth-child(even) {
            background-color: var(--secondary-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--highlight-color);
            border-radius: 2px;
        }

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

        .about-img {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-img img {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 5px solid var(--border-color);
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            font-size: 1.2rem;
        }

        .skill-bars {
            margin-top: 2rem;
        }

        .skill {
            margin-bottom: 1.5rem;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .skill-bar {
            height: 10px;
            background-color: var(--card-bg);
            border-radius: 5px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background-color: var(--highlight-color);
            border-radius: 5px;
            width: 10;
            transition: width 2s linear;
        }

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

        .project-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

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

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

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

        .project-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            font-size: 1.2rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 0.5rem 0 1rem;
            gap: 0.5rem;
            font-size: 1.1rem;
        }

        .tag {
            font-size: 1rem;
            padding: 0.2rem 0.6rem;
            background-color: rgba(233, 69, 96, 0.2);
            color: var(--highlight-color);
            border-radius: 20px;
            border: 1px solid var(--highlight-color);
        }

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

        .project-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .project-links a:hover {
            color: var(--highlight-color);
        }

       
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--border-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            margin-bottom: 2rem;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--highlight-color);
            border: 4px solid var(--card-bg);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }

        .timeline-item:nth-child(even)::after {
            left: -10px;
        }

        .timeline-content {
            padding: 20px;
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            font-size: 1.2rem;
        }

        .timeline-content h3 {
            margin-top: 0;
            color: var(--highlight-color);
        }

        .timeline-date {
            font-weight: 600;
            color: var(--highlight-color);
            margin-bottom: 0.5rem;
        }

        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: stretch;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            font-size: 1.2rem;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .contact-icon {
            font-size: 1.8rem;
            color: var(--highlight-color);
            margin-right: 1rem;
            min-width: 30px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

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

        .form-control {
            width: 100%;
            padding: 1rem;
            background-color: var(--secondary-color);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-color);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--highlight-color);
        }

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

       
        footer {
          
            background-color: var(--secondary-color);
            padding: 3rem 0;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 2rem 0;
            gap: 1.5rem;
        }

        
        .footer-text {
            color: #aaa;
            font-size: 0.9rem;
        }

        
    @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

       
 @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            .hero {
                text-align: center;
            }
            .hero-content {
                margin: 150px auto 0 auto;
            }
            .about-content {
                flex-direction: column;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
            .timeline-item::after {
                left: 15px;
            }
            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                right: auto;
            }
        }

 @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--secondary-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 1.5rem 0;
            }
            .hamburger {
                display: block;
            }
            .btn {
                display: block;
                width: 80%;
                margin: 1rem auto;
                text-align: center;
            }
        }

@media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .container {
                width: 95%;
            }
            section {
                padding: 3rem 0;
            }
}
.container .social-links a{
    display: inline flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background-color: transparent;
    /* border: 0.2rem solid var(--highlight-color); */
    border-radius: 50%;
    color: var(--highlight-color);
    /* margin: 5px 10px; */
    font-size: 1.2rem;
    transition: 0.2s linear;
}
.container .social-links a:hover{
    scale: 1.2;
    color: var(--text-color);
    background-color: var(--border-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
}
.skill-image{
    height: 20px;
    width: 20px;
}

