*{

    font-size:medium;

}

a {
     text-decoration: none;
 }


 .menu-icon {
     display: none;
     font-size: 28px;
     cursor: pointer;
 }

 nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background-color: #f9f9f9;
     padding: 30px 100px;
 }

 nav ul {
     display: flex;
     list-style: none;
     gap: 20px;
 }

 h1 {
     max-height: 60px;
 }


 nav ul li {
     list-style: none;
     display: inline-block;
     padding: 10px 20px;
 }

 nav ul li a {
     color: #000;
     position: relative;
     padding: 5px 0;
 }

 nav ul li a:hover {
     color: #fd4766;
 }

 nav ul li a:after {
     content: "";
     position: absolute;
     left: 0;
     width: 0;
     height: 3px;
     background: #fd4766;
     transition: 0.3s;
     bottom: 0;

 }

 nav ul li a:hover:after {
     width: 100%;

 }

 nav h1 {
     font-size: 30px;
     font-weight: 600;
     margin-left: 10%;
 }

 nav ul {
     display: flex;
     gap: 20px;
     list-style: none;
 }

 nav ul li {
     list-style: none;
     display: inline-block;
     padding: 10px 20px;
 }

 nav ul li a {
     color: #1d1d24;
     position: relative;
     padding: 5px 0;
 }



 nav ul li a:after {
     content: "";
     position: absolute;
     left: 0;
     width: 0;
     height: 3px;
     background: #fd4766;
     transition: 0.3s;
     bottom: 0;
 }

 nav ul li a:hover:after {
     width: 100%
 }


 .h1,button {
    cursor: pointer;
    
    color: #fff;

    font-size: 16px;

    text-transform: uppercase;

    letter-spacing: 2px;

    padding: 16px 40px;

    margin-right: 50px;

    border-radius: 500px;

    display: inline-block;

    font-weight: 500;

    transition: all 0.4s ease-in-out;

    background-size: 152% 100%;

    background: #fd4766;

    border: 2px solid #fd4766;

}



.h1,button:hover {

    background: transparent;

    border-color: #fd4766;

    color: #fd4766;

}



.h1,button:hover {

    background: #fff;

    color: #00abf0;

    transform: scale(1.05);

}

 .skills-section {
     padding: 80px 8%;
     background-color: #f4f4f4;
     color: #1f1f25;
 }

 .skills-section h2 {
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 30px;
     color: #fd4766;
 }

 .skills-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
 }

 .skill-card {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
     padding: 30px;
     text-align: center;
     transition: transform 0.3s ease;
 }

 .skill-card:hover {
     transform: translateY(-8px);
 }

 .skill-card i {
     font-size: 40px;
     color: #00abf0;
     margin-bottom: 15px;
 }

 .skill-card h3 {
     font-size: 20px;
     margin-bottom: 10px;
 }

 .skill-card p {
     font-size: 14px;
     color: #555;
 }

 .card__indicator {
     margin-top: 50px;
     font-weight: 500;
     font-size: 14px;
 }

 .card__progress progress {
     width: 50%;
     height: 15px;
     border-radius: 100px;
     background-color: transparent;
 }

 .card__progress progress::-webkit-progress-bar {
     border-radius: 100px;
 }

 .card__progress progress::-webkit-progress-value {
     background-color: #00abf0;
     border-radius: 100px;
 }

 .footer {
     padding: 4px;
     margin-top: 3%;


 }

 .footer a {
     width: 40px;
     height: 40px;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     border: 2px solid #00abf0;
     border-radius: 50%;
     font-size: 20px;
     color: #000;
     text-decoration: none;
     position: relative;
     overflow: hidden;
     z-index: 1;
     transition: 0.5s;
 }

 .footer a::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background-color: #00abf0;
     z-index: -1;
     transition: 0.5s;
 }

 .footer a:hover::before {
     width: 100%;
 }




 @media (max-width: 768px) {
     nav {
         display: flex;
         flex-direction: column;
         align-items: center;
         padding: 20px;
         text-align: center;
     }

     nav ul {
         flex-direction: column;
         padding: 0;
         margin: 10px 0;
         gap: 10px;
     }

     nav ul li {
         margin: 10px 0;
     }


     .skills-section {
         padding: 20px;
         text-align: center;
         align-items: center;
     }

     .skills-section h2 {
         font-size: 24px;
     }

     .skills-grid {
         display: flex;
         flex-direction: column;
         gap: 20px;
     }

     .skill-card {
         margin: 0 auto;
         width: 90%;
         text-align: center;
     }

     .footer {
         display: flex;
         justify-content: center;
         gap: 20px;
         margin-top: 30px;
         flex-wrap: wrap;
     }

     nav {
         flex-direction: column;
         align-items: center;
     }

     .menu-icon {
         display: block;
     }

     .nav-links {
         display: none;
         flex-direction: column;
         align-items: center;
         width: 100%;
         margin-top: 10px;
     }

     .nav-links.active {
         display: flex;
     }

     .nav-links li {
         margin: 10px 0;
     }
 }