@font-face {
    font-family: sail;
    src: url(/fonts/Sail-Regular.otf);
}
@font-face {
    font-family: code;
    src: url(/fonts/0xPropo-Medium.otf);
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    
}
body{
    font-size: 100%;
    overflow:hidden ;
    overflow-y: hidden;
    overflow-y: hidden;
    cursor: none;
    background-color: #b8e0d2;
    color: #a9746e;

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: code;
    word-spacing: normal;
    color: #a9746e;
}

nav {
    position: fixed;
    top: 0px;
    overflow: hidden;
    padding: 1rem 2.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 10;
    color: #000;
    background: #fff;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    transition: all 0.5 ease;
}

.logo {
    /* color: #fff; */
    color: #a9746e;
    font-size: 3.2rem;
    text-decoration: none;
    font-family: Sail;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links li a:hover {
    color: #a0d8ef; /* Accent color */
  }

.nav-links a {
    color: #a9746e;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-size: 22px;
    cursor: none;
}
.nav-links li a.active {
    color:#a0d8ef;
}
.nav-links >li > button{
    width: 80px;
    padding: 10px;
    border: none;
    margin-top: -10px;
    background-color: #a0d8ef;
    color: #a9746e;
    cursor: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    &:hover {
        background-color: #88cbe3;
      }
}
 .hamburger {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    border: 2px solid #a9746e;
    border-radius: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background:#a9746e;
    margin: 5px 0;
    transition: all 0.3s ease;
}
.dot {
  position: fixed;
  background-color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
  z-index: 9999;
}  
section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
}
section h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    /* text-shadow: 0 0 12px rgba(255, 255, 255, 0.7); */
  }

#home { 
    background-color: #b8e0d2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#home > img{
    height: 350px;
    border: 2px solid #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin-top: 60px;
}
#home > h1{
    margin-top: 10px;
}
#home h3 {
    margin-top: -30px;
}
#home h1{
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}
#home h3 {
  color: #a9746e;
  /* text-shadow: 0 0 12px rgba(255, 255, 255, 0.7); */
}
#resume{
    width: 100px;
    padding: 10px;
    border: none;
    margin-top: 10px;
    background-color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    color: #a9746e;
    border-radius: 5px;
    cursor: none;
    transition: background-color 0.3s ease;
    &:hover {
        background-color: #88cbe3;
      }
}
#about {   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#about > .about_section{
    height: 80vh;
}
#about > .about_section > p{
    font-size: 1.5rem;
    text-align: justify;
    padding-left: 100px;
    padding-right: 100px;
}
#about > .about_section >h1{
    margin-top: 35px;
    margin-bottom: -5px;
}
#skills{
    display: flex;
    flex-direction: column;
}
#skills > h1{
    margin-top: 80px;
    margin-bottom: 10px;
}
#skills > .list {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(4,200px);
    gap: 10px;
}
.list >.box {
    height: 200px;
    width: 200px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);    
    &:hover{
        border: 3px solid #a0d8ef;
    }

}
.box:hover img {
    transform: scale(1.1);
  }
.box h6 {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.box:hover h6 {
  opacity: 1;
}
.box img {
    width: 80px;
    height: auto;
    transition: transform 0.3s;
}

/* #projects >.pro > .pro-box {
    width: 100%;
    height: 190px;
    font-size: 1.2rem;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap ;
    background: #ffffffcc;
    backdrop-filter: blur(20px);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    color: #000;
} */
#projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    padding: 10px;
}
#projects > #pro_h1{
    margin-top:80px;
}
.pro-box {
    position: relative;
    width: 100%;
    height: 190px;
    font-size: 1.2rem;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    cursor: none;
    background: #ffffffcc;
    backdrop-filter: blur(40px);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    color: #000;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.pro-box:focus {
    transform: scale(1.004);
}

.pro-content {
    display: block;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.pro-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:2px;
    background: #ffffffcc;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* On hover */
.pro-box:focus .pro-content {
    opacity: 0;
    pointer-events: none;
}

.pro-box:focus .pro-hover {
    opacity: 1;
    transform: translateY(0%);
}

.pro-hover a {
    color: inherit; 
    text-decoration: none;
    cursor: none;
    font-weight: bold;
    padding: 8px 16px;
    border: 2px solid #000;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.pro-hover a:hover {
    transform: scale(1.05);
}
#contact > form{
    height: 500px;
    width: 60%;
    border-radius: 20px;
    display: flex;
    margin-top: 100px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: none;
    padding: 40px;
}
#contact > form > label{
    display: block;
    text-align: center;
    justify-content: start;
    align-items: start;
    cursor: none;

}
#contact > form > input{
    padding: 10px;
    width: 80%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #a9746e;
    background: none;
    font-size: 16px;
    cursor: none;   
    margin-bottom: 30px;
    color: #a9746e;
    &:focus{
        border: none;
        outline: none;
        border-bottom: 2px solid #a9746e;
    }
}
#contact > form > button{
    padding: 10px;
    width: 80%;
    border-radius: 30px;
    background-color: #fff;
    color: #a9746e;
    cursor: none;   
    padding: 10px;
    border: none;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    transition: 0.3s ease;
    &:hover{
        background-color: #88cbe3;
        box-shadow: 0 0 10px rgba(160, 216, 239, 0.7);
    }
}
#contact > form > p{
    font-size: 16px;
}
#contact > form > .footer > a {
    text-decoration: none;
    cursor: none;   
}
#contact > form > .footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
}
#contact > form > .footer > button{
    margin-left: 50%;
}
#contact > form > .footer > a > img{
    height: 35px;
    width: 35px;
    margin-right: 10px;
    margin-top: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.footer a:hover img {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
input:-webkit-input-placeholder {
    font-size: 16px;
    color: #a9746e;
    
}

input::-webkit-input-placeholder {
    transition: 0.2s ease-in;
    color: #a9746e;
}
.footer1 {
    text-align: center;
    font-size: 0.95rem;
    padding: 1.5rem 1rem;
    background: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
   letter-spacing: 0.3px;
  }

  .footer1 p {
    margin: 0;
  }

  .footer1 span {
    font-weight: bold;
    /* color: #00897b; */
    color: #a0d8ef;
  }
@media (min-width: 600px) {
   .list { grid-template-columns: repeat(1, 1fr); }
  }
  
@media (min-width: 481px) and (max-width: 767px) {
    nav {
        width: 100%;
    }
    #cursorDot {
        display: none;
      }

    .hamburger {
        display: block;
        z-index: 9999;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -101%;
        height: 100vh;
        width: 101%;
        background: #ffffffcc;
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 100px 20px;
        transition: right 0.5s ease;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        border-left: 2px solid rgba(255, 255, 255, 0.7) ;
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }
    #home{
        height: 88vh;
    }

  #about > .about_section >h1{
        color: #fff;
        margin-top: 5px;
        margin-bottom:-15px ;
    }
    #about > .about_section > p{
        font-size: 1.3rem;
        text-align: justify;
        padding: 20px;
    }
    #skills > h1{
    margin-top: 100px;
    margin-bottom: -10px;
    }

   #skills > .list {
    padding: 20px; 
    grid-template-columns: repeat(2, 1fr); 
    }
    .list >.box {
        height: 200px;
        width: 200px;
        display:flex;
        gap: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 2px solid #fff;
        border-radius: 10px;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        &:hover{
        border: 3px solid #a0d8ef;
    }
    }
    .box:hover img {
    transform: scale(1.1);
      }
    .box h6 {
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }
    .box:hover h6 {
      opacity: 1;
    }
    .box img {
        width: 60px;
        height: auto;
        transition: transform 0.3s;
        
    }
    #projects > #pro_h1{
        margin-top:-5px;
        margin-bottom: 20px;
    }
/* 
    #projects >.pro > .pro-box {
        width: 100%;
        height: 230px;
        font-size: 1rem;
        padding-left: 5px;
        margin-bottom: 20px;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap ;
        border: none;
        background: #ffffffcc;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px); 
        border-radius: 10px;
        backdrop-filter: blur(40px);
    } */
    .pro-box {
        position: relative;
        width: 100%;
        height: 230px;
        font-size: 1rem;
        padding-left: 5px;
        margin-bottom: 20px;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        border: none;
        background: #ffffffcc;
        backdrop-filter: blur(40px);
        border-radius: 10px;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        color: #000;
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
    }
    
    .pro-box:focus {
        transform: scale(1.004);
    }
    
    .pro-content {
        display: block;
        text-align: center;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    .pro-hover {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:2px;
        background: #ffffffcc;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        text-align: center;
        opacity: 0;
        transform: translateY(100%);
        transition: transform 0.5s ease, opacity 0.5s ease;
    }
    
    /* On hover */
    .pro-box:focus .pro-content {
        opacity: 0;
        pointer-events: none;
    }
    
    .pro-box:focus .pro-hover {
        opacity: 1;
        transform: translateY(0%);
    }
    
    .pro-hover a {
        color: inherit; 
        text-decoration: none;
        cursor: none;
        font-weight: bold;
        padding: 8px 16px;
        border: 2px solid #000;
        border-radius: 6px;
        transition: transform 0.3s ease;
    }
    
    .pro-hover a:hover {
        transform: scale(1.05);
    }
    #contact > form{
        height: 500px;
        width: 100%;
        border-radius: 20px;
        display: flex;
        margin-top: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0px;
    }
    #contact{
        height: 88vh;
    }
    #contact > form > p{
        font-size: 12px;
    }
    #contact > form > input button{
        width: 100%;
    }
  
  }

  @media (min-width: 320px) and (max-width: 480px) {
    nav {
        width: 100%;
    }
    #cursorDot {
        display: none;
      }

    .hamburger {
        display: block;
        z-index: 9999;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -101%;
        height: 100vh;
        width: 101%;
        background: #ffffffcc;
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 100px 20px;
        transition: right 0.5s ease;
        /* border-left: 1px solid black; */
        border-left: 2px solid rgba(255, 255, 255, 0.7) ;
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }
    #home{
        height: 88vh;
    }
    #about > .about_section >h1{
        color: #fff;
        margin-top: 5px;
        margin-bottom:-15px ;
    }
    #about > .about_section > p{
        font-size: 1rem;
        text-align: justify;
        padding: 20px;
    }
    #skills > h1{
    margin-top: 80px;
    margin-bottom: -10px;
    }

   #skills > .list {
    padding: 20px; 
    grid-template-columns: repeat(2, 1fr); 
    }
    .list >.box {
        height: 150px;
        width: 180px;
        display:flex;
        gap: 10px;
        flex-direction: column;
        justify-content: center;
     	align-items: center;
        border: 2px solid #fff;
        border-radius: 10px;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        &:hover{
        border: 3px solid #a0d8ef;
    }
    }
    .box:hover img {
        transform: scale(1.1);
      }
    .box h6 {
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }
    .box:hover h6 {
      opacity: 1;
    }
    .box img {
        width: 60px;
        height: auto;
        transition: transform 0.3s;
    }
    #projects > #pro_h1{
        margin-top:-5px;
        margin-bottom: 20px;
    }
/*     #projects >.pro > .pro-box {
        width: 100%;
        height: 250px;
        font-size: 1rem;
        padding-left: 5px;
        margin-bottom: 20px;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap ;
        border: none;
        background: #ffffffcc;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px); 
        border-radius: 10px;
        backdrop-filter: blur(40px);
    } */
     #projects >.pro > .pro-box {
        width: 100%;
        height: 250px;
        font-size: 1rem;
        padding-left: 5px;
        margin-bottom: 20px;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap ;
        border: none;
        background: #ffffffcc;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px); 
        border-radius: 10px;
    }
    .pro-box {
        position: relative;
        width: 100%;
        height: 250px;
        font-size: 1rem;
        padding-left: 5px;
        margin-bottom: 20px;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        border: none;
        background: #ffffffcc;
        backdrop-filter: blur(40px);
        border-radius: 10px;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        color: #000;
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
    }
    
    .pro-box:focus {
        transform: scale(1.004);
    }
    
    .pro-content {
        display: block;
        text-align: center;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    .pro-hover {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap:2px;
        background: #ffffffcc;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        text-align: center;
        opacity: 0;
        transform: translateY(100%);
        transition: transform 0.5s ease, opacity 0.5s ease;
    }
    
    /* On hover */
    .pro-box:focus .pro-content {
        opacity: 0;
        pointer-events: none;
    }
    
    .pro-box:focus .pro-hover {
        opacity: 1;
        transform: translateY(0%);
    }
    
    .pro-hover a {
        color: inherit; 
        text-decoration: none;
        cursor: none;
        font-weight: bold;
        padding: 8px 16px;
        border: 2px solid #000;
        border-radius: 6px;
        transition: transform 0.3s ease;
    }
    
    .pro-hover a:hover {
        transform: scale(1.05);
    }
    
    #contact{
        height: 88vh;
    }
    #contact > form{
        height: 500px;
        width: 100%;
        border-radius: 20px;
        display: flex;
        margin-top: 50px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0px;
    }
    #contact > form > p{
        font-size: 12px;
    }
    #contact > form > input button{
        width: 100%;
    }
  }
  
