body{
    background-color: #191a1c;
}
.nav {

    display: flex;
    grid-template-rows: repeat(3, 150px);
    top: 0;
    left: 0;
    justify-content: space-between;
    z-index: 10;
}
.nav .logo {
height: 65px;
width: 90px;
margin-left: 20%;
display: flex;
flex-wrap: wrap;



}
.home {
    color: #eb064b;
}
.na {
    position: relative;
    color: aliceblue;
    padding-left: 8px;
    transition: color 0.2s ease;
  }
  
  .na::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 0;
    background-color: #eb064b;
    transition: width 0.2s ease;
  }
  
  .na:hover {
    color: #eb064b;
  }
  
  .na:hover::before {
    width: 4px;
  }
  
.nav .side {
    display: flex;
    margin-right: 10px;
    margin-top: 20px;
    margin-right: 140px;
    gap: 30px;
    flex-wrap: wrap;
}
.nav .side a {
    text-decoration: none;
    
}

/*scrolling effect*/



.section1 {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 1;
    background-color: #191a1c;
  }
.section {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    z-index: 2;
    background-color: #191a1c;
  }

  .section:nth-child(1) {
    background-color: #191a1c;
    z-index: 2;
  }


  .section:nth-child(3) {
    background-color: #191a1c;
    z-index: 4;
  }

  .section:nth-child(4) {
    background-color: #191a1c;
    z-index: 5;
  }
  .section:nth-child(5) {
    background-color: #191a1c;
    z-index: 6;
  }
  .section:nth-child(6) {
    background-color: #191a1c;
    z-index: 7;
  }
  .section:nth-child(7) {
    background: linear-gradient(135deg, #2E3B4E, #1D2430);
    z-index: 8;
  }
  .section:nth-child(8) {
    background-color: #191a1c;
    z-index: 9;
  }
  .section:nth-child(9) {
    background-color: #191a1c;
    z-index: 10;
  }
  .section:nth-child(10) {
    background-color: #191a1c;
    z-index: 11;
  }

/*introduction*/

/* Background Style */
.bodyy {
    background: linear-gradient(to right, #6a11cb, #2575fc); /* Softer gradient */
    color: white;
    width: 130%;
    background-size: cover;
    animation: slidein 5s ease;
}

/* Introduction Section */
.intro {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 1s ease-in-out;
}

/* Intro fades as you scroll */
.intro.fade-out {
    opacity: 0;
}

.intro-title {
    font-size: 30px;
    font-weight: bold;
}

.intro-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
}

@keyframes slidein {
    0% { opacity: 0; transform: translateY(-100px); }
    100% { opacity: 1; transform: translateY(0); }
}




  
/*loading*/
.loading {
    display: flex;
    position: fixed;
    gap: 8px;
    z-index: 10000;
    font-size: 40px;
  }

  .dot1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3498db;
    animation: jump 1s infinite ease-in-out;
  }

  .dot1:nth-child(1) {
    animation-delay: 0s;
  }

  .dot1:nth-child(2) {
    animation-delay: 0.2s;
  }

  .dot1:nth-child(3) {
    animation-delay: 0.4s;
  }

  @keyframes jump {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }

 .content {
    display: none;
 }









  .hold1 {
    display: flex;
    left: 0;
    gap: 30%;
    
  }
  .hold1 .words {
    margin-bottom: 3%;
  }

  .hold1 .words h1{
    color: #eb064b;
    font-size: 25px;
    

  }
  .hold1 .words h3{
    color: aliceblue;
    font-size: 38px;


  }
  .hold1 .pic .profile{
    height: 470px;
    width: 400px;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    transition: all 0.2s ease;
    cursor: pointer;
  }

  .hold1 .pic .profile:hover {
    animation: glow 2.5s infinite;
    scale: 1.02;
  }

  @keyframes glow {
    0% {
       filter: drop-shadow(4px 4px 10px #eb064b); 
    }
    25% {
        filter: drop-shadow(2px 2px 5px  #01eeff); 
    }
    50% {
        filter: drop-shadow(4px 4px 10px #eb064b); 
    }
    75% {
        filter: drop-shadow(2px 2px 5px  #01eeff); 
    }
    100% {
        filter: drop-shadow(4px 4px 10px #eb064b); 
    }
  }



  .static-text {
    color: white;
    font-size: 25px;
}
#dynamic-text {
    color: #01eeff;
    font-size: 25px;
}
 .typewriter p {
    color: white;
 }
.social-media {
    margin-bottom: 70px;
    margin-top: 70px;
}
.typewriter p {
    font-size: 17px;
}
.btns a {
    text-decoration: none;
    padding: 5px 10px;
    background-color: transparent;
    margin-top: 1%;
    color: white;
    border: 2px solid rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

.btns a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #01eeff; /* Change to blue  */
    transition: all 0.3s ease; 
    transform: scaleX(0);
    transform-origin: bottom right;
}

.btns a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}
 .btns {
    margin-left: 50px;
 }

 .social-media {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-left: 50px;
 }

.social-media .soci {
    height: 35px;
    width: 48px;
    margin-left: -2px;
}
.pic .profile {
    height: 150px;
}



.social-media .dot {
    height: 50px;
    width: 50px;
    
    border-radius: 50%;
    border: 2px solid #01eeff;
    display: flex;
    place-items: center;
    place-content: center;
    cursor: pointer;
    text-align: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
    transition: all 0.3s ease;
}

.social-media .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #01eeff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0); 
    opacity: 0; 
    transition: all 0.3s ease; 
}

.social-media .dot:hover::before {
    opacity: 0.4; 
    transform: translate(-50%, -50%) scale(1); /* Scale to full size inside the dot */
}


/*about me*/
.about-me {
    display: flex;
    justify-content: space-evenly;
    margin-top: 10%;
}
.about-me .icon {
    width: 400px;
    height: 550px;
    animation: move2 10s ease infinite;
    margin-bottom: 10%;
    margin-left: 20px;
}



@keyframes move2 {
    0% {
        transform: translateX(-15%);
    }
    50% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(-15%);
    }
}

.more-about {
    display: none;
    margin-top: 1rem;
}


.about-me .words a {
    text-decoration: none;
    padding: 6px 14px;
    background-color: transparent;
    margin-top: 10px;
    color: white;
    border: 2px solid rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
    font-size: 30px;
}

.about-me .words a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #01eeff; /* Change to blue  */
    transition: all 0.3s ease; 
    transform: scaleX(0);
    z-index: -1;
    transform-origin: bottom right;
}

.about-me .words a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.about-me h1 {
    color: white;
    
    
}
.about-me h3 {
    color: #01eeff;
    font-size: 30px;
}
.about-me p {
    color: white;
    font-size: 20px;
    margin-bottom: 5%;
}








/*services*/

.three {
    display: flex;
    flex-direction: column;
}
.service-text {
    text-align: center;
    display: flex;
    place-items: center;
    gap: 1.3%;
    justify-content: space-between;
    font-size: 25px;
    top: 0;
}
.service-text h1 {
    color: white;
    font-size: 20px;
    font-weight: bold;
}
.service-text .ser {
    color: #01eeff;
}
.services {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    text-align: center;
    color: white;


}
.services .web h1 {
    font-size: 20px;
    color: #01eeff;
}
.services .web p {
    font-size: 18px;
    margin-bottom: 5%;
}

.web {
    padding: 50px;
    width: 250px;
    gap: 30px;
    background-color: #6d7483;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services .pic {

    height: 100px;

}

.web:hover {
    scale: 1.02;
    animation: border 4.5s ease infinite;
}

@keyframes border {
    0% {
        border: 2px solid #01eeff;
    }
    25% {
        border: 2px solid #eb064b;
    }
    50% {
        border: 2px solid #01eeff;
    }
    75% {
        border: 2px solid #eb064b;
    }
    100% {
        border: 2px solid #01eeff;
    }

}



/*additons on services*/


.three .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }
  
  .three .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: appear 0.2s ease;
  }

  @keyframes appear {
    0% {
        scale: 0;
    }
    100% {
        scale: 1;
    }
  }
  
  .modal-content h2 {
    margin-top: 0;
    color: #222;
    font-size: 23px;
  }
  
  .modal-content a {
    color: #007acc;
    text-decoration: none;
  }
  .modal-content p {
    color: #191a1c;
    font-size: 18px;
  }
  
  .modal-content a:hover {
    text-decoration: underline;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #191a1c;

    font-size: 24px;
    cursor: pointer;
  }
  







/*projects*/


.project-card {
    padding: 10px 20px;
    background-color: rgb(32, 31, 31);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    cursor: pointer;

}
.project-card .project-content h2{
    font-size: 20px;
    font-weight: 900;
}
.project-card .project-content p{
    font-size: 17px;
}
.project-card .project-features ul li{

    font-size: 17px;
}


.project-content .project-links a {
    font-size: 17px;
    color: white;
    text-decoration: none;
    padding: 5px 8px;
    background-color: #01eeff;
    border-radius: 3px;
}
.project-card .project-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 3px;
}


.project-card:hover {
    animation: border 4.5s ease infinite;
}


/*progress bar*/

.skills-section {
    max-width: 800px;
    margin: 0 auto;
    width: 80%;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .skills-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #01eeff;
    font-size: 2rem;
  }

  .skill {
    margin-bottom: 1.5rem;
  }

  .skill-info {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .skill-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

  .skill-name {
    font-weight: 600;
    color: #e4dede;
  }

  .progress-bar {
    width: 100%;
    height: 12px;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
  }

  .progress {
    height: 100%;
    border-radius: 6px;
    width: 0;
    transition: width 1.5s ease-in-out;
    position: relative;
  }

  .progress::after {
    content: attr(data-percent) "%";
    position: absolute;
    right: 10px;
    top: -20px;
    font-size: 12px;
    font-weight: bold;
  }

  .html {
    background-color: #E44D26;
  }

  .css {
    background-color: #2965F1;
  }

  .js {
    background-color: #F0DB4F;
  }



/*contact*/

.contact {
    display: flex;
    justify-content: space-around;
}
.contact .word {
    margin-bottom: 20%;
}

.contact .word h1 {
    font-size: 25px;
    color: #eb064b;
}
.contact .word h3 {
    font-size: 25px;
    color: #01eeff;
}

.contact .word p {
font-size: 15px;
}

.contact .contact-card {
    padding: 10px 20px;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    display: flex;
    width: 350px;
    gap: 20px;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;

}

.contact .contact-card:hover {
    animation: border 4.5s ease infinite;
    scale: 1.01;
    
}
.contact .contact-card h1 {
    font-size: 28px;
}
.contact .contact-card {
    font-size: 25px;
}

.contact .contact-card  textarea {
    resize: none;
    padding: 10px 15px;
    height: 100px;
    border-radius: 2px;
    background-color: transparent;
    color: white;
}
.contact .contact-card input {
    padding: 10px 15px;
    border: none;
    border-bottom: 2px solid rgb(46, 44, 44);
    background-color: transparent;
    outline: none;
    color: white;

}

.contact .contact-card input::placeholder {
    color: white;
}

.contact .contact-card  textarea::placeholder {
    color: white;
}
.contact-card .btn {
    height: 30px;
    background-color: #01eeff;
    border: none;
}




.contact .social-media {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 50px;
 }

 .contact .social-media .soci {
    height: 35px;
    width: 48px;
    margin-left: -2px;
}



.contact .social-media .dot {
    height: 50px;
    width: 50px;
    
    border-radius: 50%;
    border: 2px solid #01eeff;
    display: flex;
    place-items: center;
    place-content: center;
    cursor: pointer;
    text-align: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
    transition: all 0.3s ease;
}

.contact .social-media .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #01eeff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0); 
    opacity: 0; 
    transition: all 0.3s ease; 
}

.contact .social-media .dot:hover::before {
    opacity: 0.4; 
    transform: translate(-50%, -50%) scale(1); /* Scale to full size inside the dot */
}

/*FAQs*/


.section.FAQs {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .FAQs .box {
    padding: 10px auto;

  }
  
  .section.FAQs h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 28px;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
  }
  
  .faq-question {
    background-color: #191a1c;
    color: #afadad;
    width: 100%;
    padding: 10px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
  }
  
  .faq-question:hover {
    background-color: #28292b;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    
  }
  
  .faq-answer p {
    margin: 0.5rem 0;
    font-size: 18px;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem;
  }
  






/*footer*/


.footer {
    background-color: #111;
    color: #ccc;
    padding: 40px 20px 20px;
    font-size: 14px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    color: cyan;
    margin-bottom: 10px;
  }
  
  .footer a {
    color: cyan;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    color: #777;
  }
  







  /* Responsive Adjustments */

/* Tablet (768px to 1279px) */
@media screen and (max-width: 1279px) {
    .nav .logo {
        margin-left: 10%;
        width: 60px;
        height: 50px;
    }

    .nav .side {
        margin-right: 50px;
        gap: 20px;
    }

    .section {
        font-size: 1.5rem;
    }

    .hold1 {
        gap: 15%;
        flex-direction: row;
        align-items: center;
    }

    .hold1 .pic .profile {
        height: 300px;
        width: 300px;
    }

    .hold1 .words h3 {
        font-size: 30px;
    }

    .social-media {
        margin: 50px 0;
        gap: 15px;
        margin-left: 20px;
    }

    .social-media .dot {
        height: 40px;
        width: 40px;
    }

    .social-media .soci {
        height: 30px;
        width: 40px;
    }

    .about-me {
        flex-direction: row;
        align-items: center;
        margin-top: -10%;
    }

    .about-me .icon {
        width: 300px;
        height: 400px;
        margin-bottom: 5%;
    }

    .about-me .words a {
        font-size: 24px;
    }

    .services {
        flex-wrap: wrap;
        justify-content: center;
    }

    .web {
        width: 45%;
        padding: 30px;
    }

    .project-card .project-image {
        height: 150px;
    }

    .skill-circles {
        gap: 1.5em;
    }

    .circle {
        width: 100px;
    }

    .contact {
        flex-direction: column;
        align-items: center;
    }

    .contact .contact-card {
        width: 250px;
       
    }

    .contact .word {
        margin-bottom: 10%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Mobile (320px to 767px) */
@media screen and (max-width: 767px) {
    .nav {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .nav .logo {
        margin-left: 0;
        width: 50px;
        height: 40px;
    }

    .nav .side {
        margin-right: 0;
        margin-top: 10px;
        gap: 15px;
        justify-content: center;
    }



    



    .section {
        font-size: 1.2rem;
        height: auto;
        padding: 20px;
    }

    .hold1 {
        gap: 10%;
        flex-direction: column;
        align-items: center;
    }

    .hold1 .pic .profile {
        height: 200px;
        width: 200px;
    }

    .hold1 .words h1 {
        font-size: 20px;
    }

    .hold1 .words h3 {
        font-size: 24px;
    }

    .static-text,
    #dynamic-text {
        font-size: 20px;
    }

    .typewriter p {
        font-size: 14px;
    }

    .social-media {
        margin: 30px 0;
        gap: 10px;
        margin-left: 0;
        justify-content: center;
    }

    .social-media .dot {
        height: 35px;
        width: 35px;
    }

    .social-media .soci {
        height: 25px;
        width: 35px;
    }

    .btns {
        margin-left: 0;
        text-align: center;
    }

    .btns a {
        padding: 3px 8px;
        font-size: 14px;
    }

    .hold1 .pic .profile{
        height: 250px;
        width: 200px;
        border-bottom-right-radius: 50%;
        border-bottom-left-radius: 50%;
        transition: all 0.2s ease;
        cursor: pointer;
      }

    .about-me {
        margin-top: 3%;
    }

    .about-me .icon {
        width: 200px;
        height: 300px;
        margin-left: 0;
    }

    .about-me .words a {
        font-size: 18px;
    }

    .about-me h3 {
        font-size: 16px;
    }
    .about-me h1 {
        font-size: 18px;
    }

    .about-me p {
        font-size: 13px;
    }
/* Services Section */
.section.three {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: sticky;
    top: 0;
    padding: 15px;
    box-sizing: border-box;
}

.service-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
}

.service-text h1 {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.service-text .ser {
    color: #01eeff;
}

.services {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
}

.web {
    padding: 20px;
    width: 180px;
    background-color: #6d7483;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: transform 0.3s ease, border 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.web:hover {
    transform: scale(1.02);
    border: 2px solid #01eeff;
}

.services .pic {
    height: 60px;
    width: auto;
    margin-bottom: 8px;
}

.services .web h1 {
    font-size: 16px;
    color: #01eeff;
    margin: 8px 0;
}

.services .web p {
    font-size: 12px;
    color: white;
    line-height: 1.3;
    margin: 0;
}

/* Projects Section */
.section.project {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: sticky;
    top: 0;

    padding: 15px;
    box-sizing: border-box;
    overflow-y: auto;
    transition: all 0.3s ease ;
}
.section .project {
    animation: border 0.3s ease infinite;
}

.project-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    background-color: rgb(32, 31, 31);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 8px 0;
    width: 100%;
    overflow-y: scroll;
    max-width: 800px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.project-card:hover {
    scale: 1.01;
}

.project-card .project-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 10px;
}

.project-content {
    flex: 1;
}

.project-content h2 {
    font-size: 16px;
    font-weight: 900;
    color: white;
    margin: 0 0 5px;
}

.project-content p {
    font-size: 12px;
    color: white;
    margin: 0 0 8px;
    line-height: 1.3;
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.project-features ul li {
    font-size: 11px;
    color: white;
    line-height: 1.2;
}

.project-links a {
    font-size: 11px;
    color: white;
    text-decoration: none;
    padding: 3px 5px;
    background-color: #01eeff;
    border-radius: 3px;
    margin-right: 5px;
    transition: background-color 0.3s ease;
}

.project-links a:hover {
    background-color: #eb064b;
}



/*FAQs*/







/* Contact Section */
.section.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: sticky;
    top: 0;
    padding: 15px;
    box-sizing: border-box;
}

.contact {
    display: flex;
    gap: 15px;
    max-width: 800px;
    width: 100%;
}

.contact .word {
    flex: 1;
    margin-bottom: 0;
}

.contact .word h1 {
    font-size: 20px;
    color: #eb064b;
    margin: 0 0 5px;
}

.contact .word h3 {
    font-size: 18px;
    color: #01eeff;
    margin: 0 0 8px;
}

.contact .word p {
    font-size: 12px;
    color: white;
    line-height: 1.3;
    margin: 0 0 10px;
}

.contact .social-media {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 15px;
    margin-left: 0;
}

.contact .social-media .dot {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 2px solid #01eeff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact .social-media .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #01eeff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact .social-media .dot:hover::before {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
}

.contact .social-media .soci {
    height: 25px;
    width: 35px;
}

.contact .contact-card {
    flex: 1;
    padding: 10px;
    background-color: rgb(32, 31, 31);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 250px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    margin-bottom: 40px;
}

.contact .contact-card:hover {
    transform: scale(1.01);
    border: 2px solid #01eeff;
}

.contact .contact-card h1 {
    font-size: 18px;
    color: white;
    margin: 0 0 8px;
}

.contact .contact-card input,
.contact .contact-card textarea {
    padding: 6px 10px;
    border: none;
    border-bottom: 2px solid #01eeff;
    background-color: transparent;
    outline: none;
    font-size: 12px;
    color: white;
}

.contact .contact-card input::placeholder,
.contact .contact-card textarea::placeholder {
    color: #ccc;
}

.contact .contact-card textarea {
    resize: none;
    height: 60px;
    border-radius: 2px;
}

.contact .contact-card .btn {
    height: 30px;
    background-color: #01eeff;
    border: none;
    border-radius: 3px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact .contact-card .btn:hover {
    background-color: #eb064b;
}
}

/* Footer Section */
.footer {
    background-color: #111;
    color: #ccc;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer h3 {
    color: cyan;
    margin-bottom: 10px;
}

.footer a {
    color: cyan;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    color: #777;
}

/* Responsive Adjustments */

/* Tablet (768px to 1279px) */
@media screen and (max-width: 1279px) {
    .section.three {
        padding: 10px;
    }

    .service-text {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-text h1 {
        font-size: 18px;
    }

    .services {
        gap: 8px;
    }

    .web {
        width: 160px;
        padding: 15px;
    }

    .services .pic {
        height: 50px;
    }

    .services .web h1 {
        font-size: 14px;
    }

    .services .web p {
        font-size: 11px;
    }

    .section.project {
        padding: 10px;
    }

    .project-card {
        padding: 8px;
        max-width: 600px;
    }

    .project-card .project-image {
        height: 80px;
        margin-bottom: 8px;
    }

    .project-content h2 {
        font-size: 14px;
    }

    .project-content p,
    .project-features ul li,
    .project-links a {
        font-size: 11px;
    }

    .section.skill-circles {
        padding: 10px;
    }

    .skill-circles {
        gap: 0.8em;
        max-width: 400px;
    }

    .circle {
        width: 70px;
    }

    .circle p {
        font-size: 0.8em;
    }

    .section.contact {
        padding: 10px;
    }

    .contact {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 5%;
    }

    .contact .word h1 {
        font-size: 22px;
    }

    .contact .word h3 {
        font-size: 18px;
    }

    .contact .word p {
        font-size: 16px;
    }

    .contact .contact-card {
        width: 70%;
        width: 270px;
    }

    .contact .social-media .dot {
        height: 30px;
        width: 30px;
    }

    .contact .social-media .soci {
        height: 20px;
        width: 30px;
    }

    
    .footer {
        padding: 30px 15px 15px;
        font-size: 13px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom {
        font-size: 12px;
        margin-top: 20px;
        padding-top: 10px;
    }
}

/* Mobile (320px to 767px) */
@media screen and (max-width: 767px) {
    .section.three {
        padding: 8px;
    }

    .service-text {
        font-size: 16px;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 8px;
    }

    .service-text h1 {
        font-size: 16px;
    }

    .services {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .web {
        width: 85%;
        padding: 12px;
    }

    .services .pic {
        height: 40px;
    }

    .services .web h1 {
        font-size: 13px;
    }

    .services .web p {
        font-size: 10px;
    }

    .section.project {
        padding: 8px;
        display: flex;
        flex-direction: column;
    }

    .project-card {
        margin: 4px 0;
        padding: 6px;
        max-width: 90%;
    }

    .project-card .project-image {
        height: 60px;
    }

    .project-content h2 {
        font-size: 13px;
    }

    .project-content p,
    .project-features ul li,
    .project-links a {
        font-size: 10px;
    }

    .section.skill-circles {
        padding: 8px;
    }

    .skill-circles {
        gap: 0.6em;
        max-width: 250px;
    }

    .circle {
        width: 60px;
    }

    .circle p {
        font-size: 0.75em;
    }

    .section.contact {
        padding: 8px;
        display: flex;
        flex-direction: column;
    }

    .contact .word h1 {
        font-size: 20px;
    }

    .contact .word h3 {
        font-size: 14px;
    }

    .contact .word p {
        font-size: 16px;
    }

    .contact .contact-card {
        width: 250px;
    }

    .contact .contact-card h1 {
        font-size: 16px;
    }
    

    .contact .contact-card input,
    .contact .contact-card textarea {
        padding: 5px 8px;
        font-size: 10px;
    }

    .contact .contact-card textarea {
        height: 50px;
    }

    .contact .contact-card .btn {
        height: 25px;
        font-size: 10px;
    }

    .contact .social-media {
        gap: 8px;
        justify-content: center;
    }

    .contact .social-media .dot {
        height: 25px;
        width: 25px;
    }

    .contact .social-media .soci {
        height: 18px;
        width: 25px;
    }

    .footer {
        padding: 20px 10px 10px;
        font-size: 12px;
    }

    .footer-container {
        gap: 15px;
    }

    .footer-bottom {
        font-size: 11px;
        margin-top: 15px;
        padding-top: 8px;
    }
}
