
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color:#d7d7d7;

}

header {
    margin-top:2rem;
    height: 2.875rem;
   
}
.container{
    width: min(90%,1120px);
    margin-inline: auto;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.navbar .mobile-logo{
    display: none;
}
.navbar .logo{
    width: 3.729375rem;
    height:3.125rem ;
    cursor: pointer;
}
.nav-links{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    
}
.nav-links li{
    list-style: none;
}
.nav-links li a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
}
.nav-links .btn{
    text-decoration: none;
    background-color: #fff;
    color: rgb(7, 6, 6);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
    cursor: pointer;
}
.hero{
    margin-top: 2.125rem;
    display: flex;
    flex-direction: column;
}
.hero-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bg-img img{
    width: 60%;
    height: 100vh;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.hero-top .content{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.info h1{
    margin-bottom: 1.375rem;
    font-size: 2rem;
    font-weight: 700;
}
.info h2{
    font-size: 3rem;
    font-weight: 700;
}
.info h6{
    font-size: 1.5rem;
    font-weight: 400;
    color: #909090;
}
.person-img img{
   

    margin-right: 8rem;
    width: 582px;
    height: 429px;

    filter: drop-shadow(6px 6px 0 Gold) 
    drop-shadow(-6px -6px 0 Gold)
    drop-shadow(6px -6px 0 Lavender)
    drop-shadow(-6px 6px 0 Lavender);
}
.contact-me{
    display: flex;
    justify-content: center;
   gap: 2rem;
}
.contact-me a{
    text-decoration: none;
    color: rgb(7, 6, 6);
}
.contact-me i{
    background-color: #C4C4C4;
    padding: 0.625rem .75rem;
    border-radius: 5px;
}
.BERRIES{
    background-color: #1d1d1d;
    display:  flex;
    flex-direction: column;
    align-items: self-start;
    padding: 2rem 3rem;
    color: #fff;
    gap: 1rem;
}
.BERRIES p{
    font-size: 0.6875rem;
    line-height: 1rem;
    color: #909090;
}
.BERRIES span{
    font-size: 0.6875rem;
    line-height: 1rem;
    color: #d7d7d7;
    border-inline: 1px solid #d7d7d7;
    padding-inline: 0.5rem;
}
.hamburger{
    display: none;
}
.aboutme{
    margin-top: 8.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}
.aboutme p{
    font-size: 0.6875rem;
    line-height: 1rem;
    color: black;
}
.header-info{
    display: flex;
    flex-direction: column;
   text-align: center;
    align-items: center;
    gap:2rem ;
}
.header-info h4{
    font-size: 2rem;
    font-weight: 700;
    border: 4px solid #000;
    padding: 0.5rem 1rem;
}
.header-info h6{
    font-size: 1rem;
    font-weight: 600;
    border-inline: 2px solid #000;
    padding-inline: 1rem;
}
.grid-about{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
}
.grid-about h6{
    font-size: 1rem;
    font-weight: 700;
}
.grid-about .columns{
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

#skillll
/* Skills Section - Matching Your Design */
.skills-section {
    margin-top: 8.875rem;
    background-color: #d7d7d7;
    padding: 2rem 0;
  }
  
  .header-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .header-info h4 {
    font-size: 2rem;
    font-weight: 700;
    border: 4px solid #000;
    padding: 0.5rem 1rem;
  }
  
  .skills-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .skill-card {
    background: #e9e6e6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .skill-card:hover {
    transform: translateY(-5px);
  }
  
  .card-header {
    background-color: #1c1918;
    color: #d7d7d7;
    padding: 1rem;
    text-align: center;
  }
  
  .card-header h5 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .card-body ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .card-body li {
    font-size: 0.9rem;
    color: #333;
    padding: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .card-body li:before {
    content: "•";
    color: rgb(71, 71, 66);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
  }
  
  @media (max-width: 768px) {
    .skills-cards {
      grid-template-columns: 1fr;
    }
    
    .card-body ul {
      grid-template-columns: 1fr;
    }
  }







.grid-item img{
    width: 40px;
    height: 50px;
}

.header-img{
    height: 10rem;
    background: url(./images/Section\ Header.png) center / cover  no-repeat;
    margin-top: 50px;
}
.grid-header{
    background-color: #1c1918;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#d7d7d7;
}
.grid-header .info{
    display: flex;
    padding-bottom: .2rem;
    gap: 3rem;
    border-bottom: 1px solid #fff;
  
}
.grid-header .info p{
    font-size: 0.6875rem;
    line-height: 1rem;
}







/* Portfolio Section */
.portfolio {
    background-color: #000;
    margin-top: 8.875rem;
    color: #1a1717;
    padding-bottom: 2rem;
}


.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #444;
}

.filter-btn {
    background: none;
    border: none;
    color: #181414;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.filter-btn.active {
    color: rgb(168, 18, 63);
    border-bottom: 2px solid rgb(185, 11, 133);
}

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

.project-card {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: gold;
}

.project-info p {
    margin-bottom: 1rem;
    color: #d7d7d7;
}

.project-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid gold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background-color: gold;
    color: #000;
}

.grid-footer {
    text-align: center;
    padding: 2rem;
    color: #909090;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-port {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-port {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}









.contact{
    margin-top: 8.875rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}
form input{
    padding: .5rem  1rem;
    background-color: transparent;
    color: black;
    border: none;
    border-bottom: 4px solid black;
    border-left: 4px solid black;
    width: 60%;
}
form button{
    background-color: transparent;
    padding: .5rem  1.5rem;
    border: none;
    border-inline: 2px solid black;
    font-size: 1.5rem;
}
form #comment{
    height: 100px;
}
footer a{
    text-decoration: none;
    color:#fff;
}
footer{
    margin-top: 3rem;
    background-color: #1c1918;
    color: #fff;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.footer-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.social{
    display: flex;
    gap: 1rem;
}
.footer-info p{
    font-size: 0.6875rem;
    line-height: 1rem;
    color: #d7d7d7;
}
@media (max-width: 768px){
    header{
        margin-top: 0;
        background-color: black;
       height: 3rem;
    }
    .navbar{
        height: 100%;
        align-items: center;
    }
    .navbar .logo{
        display: none;
    }
    .navbar .mobile-logo{
        display: block;
        width: 2.5rem;
        height:2rem ; 
    }
    .nav-links{
        height: 210px;
        position: absolute;
        left: 0;
        right: 0;
        background-color:#1c1918;
        margin-top: 16rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-top:1px solid #d7d7d7 ;
        padding-top: 2rem;
        gap: 2rem;
        transition: transform 100ms ease-in-out ;
    }
    .nav-links .btn{
        width: 100%;
        border-radius: 0;
    }
    .hamburger{
        display: block;
    }
    .hamburger i{
        color: #fff;
        position: absolute;
        right: 5%;
        top: 2.5%;
        font-size:1.5rem ;
    }
    .hamburger i[data-visible="false"]{
        display: none;
    }
    .hamburger i[data-visible="true"]{
        display: block;
    }
    .nav-links[data-visible="false"]{
        transform: translateY(-145%);
    }
   
    .bg-img {
        display: none;
    }
    .person-img{
        display: none;
    }
    .hero{
        height: calc(100vh - 3rem);
        margin-top: 0;
        background: url(./images/person.png)center/cover no-repeat;
        justify-content: center;
        align-items: center;
    }
    .hero-top{
        height: 100%;
        justify-content: center;
        color: #fff;
    }
    .grid-skills{
        grid-template-columns: repeat(2,1fr);
    }
    .grid-port{
        grid-template-columns: repeat(2,1fr);
    }
    form input{
        width: 90%;
    }
}
@media (max-width: 480px){
    .grid-about{
        grid-template-columns: 1fr;
    }
    .grid-skills{
        grid-template-columns: 1fr;
    }
    .grid-port{
        grid-template-columns: 1fr;
    }
    form input{
        width: 100%;
    }
}
.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: white; /* or whatever color matches your design */
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Make sure your h6 is styled appropriately */
h6 {
    margin: 0;
    display: inline-block;
}
/* blink*/
/* Add this to your CSS */
@keyframes colorChange {
    0% { color: #ff0000; } /* Red */
    25% { color: #00ff00; } /* Green */
    50% { color: #0000ff; } /* Blue */
    75% { color: #ffff00; } /* Yellow */
    100% { color: #ff0000; } /* Back to red */
  }
  
  .contact-me a i {
    font-size: 14px; /* Adjust size as needed */
    margin: 0 10px;
    animation: colorChange 5s infinite;
  }
  
  /* Add different animation delays for each icon */
  .contact-me a:nth-child(1) i {
    animation-delay: 0s;
  }
  
  .contact-me a:nth-child(2) i {
    animation-delay: 1s;
  }
  
  .contact-me a:nth-child(3) i {
    animation-delay: 2s;
  }
  
  .contact-me a:nth-child(4) i {
    animation-delay: 3s;
  }
  
  /* Optional hover effect */
  .contact-me a:hover i {
    animation-play-state: paused;
    color: #ffffff; /* Or any color you want when hovered */
    transform: scale(1.2);
    transition: transform 0.3s ease;
  }