  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f9f9f9;
            /* color: rgb(27, 27, 198); */
            font-size: 16px;
        }

        .contain{
            width: 95%;
            margin: auto;
            
            /* background-color: #000000; */
        }
        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
        }

        section {
           padding: 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 4rem;
            color: rgb(10, 8, 8);
        }

        /* Hero Section */
        .hero {
             height: 90vh;          
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 10%;
          
        }

        .profile-picture {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            /* border: 5px solid #2563EB; */
            margin: 0 auto 2rem;
            object-fit: cover;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            color: #000000;
            letter-spacing: -1px;
        }

        .hero-content{
            display: grid;
            grid-template-columns: 30% 70%
        }

        .hero-content h2 {
            font-size: 1.75rem;
            font-weight: 500;
            color: #2563EB;
            margin: 0.5rem 0 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #000000;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .social-links a {
            color: #000000;
            font-size: 2rem;
            margin: 0 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            color: #1D4ED8;
            transform: translateY(-2px);
        }
        
        .jam {
            color: white;
            text-decoration: none;
        }

        .btn-primary {
            display: inline-block;
            background-color: #2563EB;
            color: #FFFFFF;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 2.5rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            background-color: #1D4ED8;
        }

        /* About Me Section */
        .about-content {
          
            margin: 0 auto;
          
            font-size: 1.15rem;
            color: black;
        }
        #about{
            background-color:#e5eff0;
        }

        .about-content strong {
            color: black;
            font-weight: 500;
            
        }

       

        /* Projects Section */
        #projects {
            background-color: white;
        }

        .project-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .project-item:last-child {
            margin-bottom: 0;
        }

        .project-item:nth-child(odd) .project-image {
            order: 3;
        }

        .project-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            aspect-ratio: 4 / 3;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-image:hover img {
            transform: scale(1.03);
        }

        .project-description h3 {
            font-size: 2rem;
            color: #000000;
            font-weight: 700;
        }

        .project-description p {
            color:#000000;
            margin: 1rem 0 1.5rem;
        }
       
        .tech-tags span {
            display: inline-block;
            background-color: white;
            color: #000000;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 0.85rem;
            margin: 0.25rem;
            font-weight: 500;
            border: 1px solid #E5E7EB;
        }


       .tech-tags span:hover{

           background-color: #2563EB;
           color: #FFFFFF;
        }
        .project-links {
            margin-top: 2rem;
        }

        .btn-secondary {
            color: #2563EB;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid #E5E7EB;
            padding: 10px 20px;
            border-radius: 8px;
            margin-right: 1rem;
            transition: background-color 0.3s, color 0.3s;
        }

        .btn-secondary:hover {
            background-color: #2563EB;
            color: #FFFFFF;
        }

        .btn-secondary i {
            margin-left: 0.5rem;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .skill-card {
            background-color: #f9f9f9;
            padding: 2.5rem 2rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #E5E7EB;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .skill-card:hover {
            transform: translateY(-5px);
            border-color: #2563EB;
        }

        .skill-card i {
            font-size: 3rem;
            color: #2563EB;
            margin-bottom: 1rem;
        }

        .skill-card h3 {
            font-size: 1.5rem;
            color: #000000;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .skill-card p {
            color: #000000;
        }

        /* Contact Section */
        #contact {
            text-align: center;
            background-color: #F9FAFB;
        }

        .contact-subtitle {
            max-width: 500px;
            margin: 0 auto 2.5rem;
            color: #000000;
        }

        .contact-details {
            display: flex;
            justify-content: center;
            gap: 2rem 4rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: blue;
        }

        .contact-item a {
            font-size: 1.1rem;
            color: black;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .contact-item a:hover {
            color: green;
        }
        
        /* Footer */
        footer {
            padding: 3rem 0;
            text-align: center;
            color:#000000;
            font-size: 0.9rem;
            background-color: #F9FAFB;
        }

        .footer-social-links {
            margin-bottom: 1.5rem;
        }
        
.hi{
    display: flex;
    justify-content: space-between;
    width: 95%;
    
   

}

.hi1 ul li{
    display: inline;
    padding: 20px;

}
.give{
    width: 100%;
    background-color: #fff;
    
    position: fixed;
    top: 0;
    z-index: 1000;
    opacity: 0.8;
}
        
            
       
        @media (max-width: 700px) {
            .section-title {
                font-size: 2rem;
            }

            .about-content{
                font-size: 1rem;
            }
          .btn-secondary {
            color: #2563EB;
            text-decoration: none;
            font-weight: 300;
            border: 1px solid #E5E7EB;
            padding: 5px 10px;
            border-radius: 8px;
            margin-right: 0.2rem;
            transition: background-color 0.3s, color 0.3s;
        }

      .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero{
                height: auto;
            }
            .give{
                opacity: 1;
            }

.hero-content{
    display: inline;
}

.hero-content a{
    font-size: 1.4rem;
}

        
            .hero-content h2 {
                font-size: 1.5rem;
            }

            .project-item,
            .project-item:nth-child(even) {
                grid-template-columns: 2fr;
            }

            .project-item:nth-child(even) .project-image {
                order: 1;
               
            }

            .project-description {
                text-align: center;
            }
            .profile-picture{
                height: 150px;
                width: 150px;
            }

            .project-image {
                margin-bottom: 2rem;
                
            }
           
        }





nav{
   display: flex;
   padding: 0px 20px;
   justify-content: space-between;
   align-items: center;
  
}
.ben{
    flex: 1;
    text-align: right;
}
.ben a{
    list-style: none;
    display: inline-block;
    padding:8px 12px ;
    position: relative;
}
.ben a{
   color: #000000; 
    text-decoration: none;
    font-size: 15px;
}
.ben a::after{
    content: '';
    width: 0%;
    background-color: #1D4ED8;
    
    height: 2px;
    display: block;
    margin: auto;

}
.ben a:hover::after 
{
    width: 100%;
}

 .fa{
    display: none;

}

@media(max-width:700px){
    .text-box h1 
    {
        font-size: 20px;
    }

    section{
        padding: 10%;
        
    }
    h1{
        font-size: 20px;
    }
       .ben a
       {
        display: block;
        color: #FFFFFF;
       }
       .ben{
        position: fixed;
         background: #3675f4;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition:1s;
       }
      
       .fa{
        display: block;
        color: #000000;
        margin: 10px;
        cursor: pointer;
        font-size: 22px;
       }
    .ben a{
        padding: 30px;
    }
}

.logo {
            font-size:2rem;
            font-weight: 800;
            color: var(--secondary-color);
            text-decoration: none;
        }
 .contact-col{
        flex-basis: 48%;
        margin-bottom: 30px;
    }
    .contact-col div{
      display: flex; 
      align-items: center; 
      margin-bottom: 40px;

    }
    .contact-col div .fa{
        font-size: 28px;
        color: #f44336;
        margin: 10px;
        margin-right: 30px;
    }
    .contact-col div h5{
        font-size:20px ;
        margin-bottom:5px ;
        color:#555 ;
        font-weight: 400;
    }
    .contact-col input, .contact-col textarea{
        width: 100%;
        padding: 15px;
        margin-bottom: 17px;
        outline: none;
        border: 1px solid #ccc;
    }


    input{
    border-radius: 30px;
    }
    textarea{
        border-radius: 30px;
    }
    .red-btn{

    border: 1px solid #f44336;
    background: transparent;
    color:#000000;
}
.red-btn:hover{
    color: #fff;
}
.hero-btn{
    display: inline;
    text-decoration: none;
   
    border:1px solid rgb(43, 25, 25);
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #3675f4;
    background: #3675f4;
    transition: 1s;

}

