* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
::selection {
    background-color: wheat;
    color: black;
}
#minicircle {
    position: fixed;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: rgba(207, 193, 193, 0.7);
    z-index: 1000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s cubic-bezier(0.19, 1, 0.22, 1);
}



html , body {
    width: 100%;
    height: 100%;
}
#main {
    width: 100%;
   background-color: black;
}

#nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 30px 30px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
  
    transition: background 0.3s ease, padding 0.3s ease;
}
#menu-btn {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 8px 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
#menu-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
#menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #777;
    transform: translateY(-1px) scale(1.02);
}
#menu-btn:active {
    transform: translateY(0);
}

#menu-panel {
    position: absolute;
    top: 60px;
    right: 30px;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    border: none;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

#menu-panel .menu-inner {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top:15px;
}

#menu-panel .menu-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.2s ease;
}

#menu-panel .menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

#menu-panel .menu-link:hover::after {
    transform: scaleX(1);
}

#menu-panel .menu-link:hover {
    color: #e8e8e8;
}
 #hero {
   position: relative;
    width: 100%;
    height: 100vh; /*according to the screen size height  */
    background-color: black;
    color: #fff;
    
 }
 #heading h1{
    line-height: 1;
    text-transform: uppercase;
    font-size: 9vw;
    font-weight: 900;
    opacity: 0.6;
    margin-left: 30px;

 }
 #heading {
    margin-top: 60px;
 }

 #heading #secondh1 {
    margin-right: 270px;
 }
 /* #secondh1::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 90px;
    background-color: white;
    margin-left: 4px;
    } */
   .cursor {
  animation: blink 1.5s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
    
 .bounding {
    width: fit-content;
    overflow: hidden;
}

.bounding .boundingelem {
    transform: translateY(100%);
}

 .blocktext {
   display: flex;
   flex-direction: column;
   align-items: end;
    
 }
 .blocktext h5 {
    text-transform: uppercase;
    font-size: 15px;
    text-align: right;
    margin-right: 100px;

 }

 #chhotiheadings {
   display: flex;
   flex-direction: column;
   align-items: end;
    margin-top: 100px;
    padding-right: 50px;
 }
    #chhotiheadings h5 {
        text-transform: uppercase;
        font-size: 1vw;
        text-align: right;
        margin-top: .5vw;
    }
#herofooter {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0px 2vw;
   position: absolute;
    bottom: 0%;
   width: 100%;

}
#herofooter a  {
   color: #fff;
   text-transform: uppercase;
   text-decoration: none;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;

}

#herofooter a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

#herofooter a:hover {
    color: #e8e8e8;
    transform: translateY(-2px);
}

#herofooter a:hover::after {
    transform: scaleX(1);
}

#herofooter #iconset {
    display: flex;
    gap: 5px;
}

#herofooter .circle{

    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #888;

}

#second {
   padding-top: 180px;
   padding-right: 10vw;
    width: 100%;
    min-height: 100vh;
    background-color: black;
    
}

.elem {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   padding: 3.5vw 3vw;
   padding-right: 0;
   border-top: 1px solid #888 ;
}
.elem h1 {
    text-transform: uppercase;
    font-size: 7vw;
    opacity: 0.6;
    color: #fff;
}

.elemlast {
   border-bottom: 1px solid #888;
}

.elem h5 {
    text-transform: uppercase;
    font-size: .9vw;
    color: #fff;
}



.elem img {
    display: block; /* ensure the preview can render */
    opacity: 0; /* hidden until hover shows it */
    position: absolute;
    z-index: 999;
    height: 15vw;
    width: 35%;
    pointer-events: none; /* avoid blocking hover */
}
.note-snakerzz {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5vw;
    padding-bottom: 4vw;
}

.note-snakerzz .elem-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.note-snakerzz .project-note {
    color: #cfcfcf;
    font-size: 1vw;
    opacity: 0.75;
    letter-spacing: 0.04em;
}
#about {
   width: 100%;
   padding: 10vw 10vw;
   padding-left: 40vw;
   background-color: black;
   color: #fff;
   display: flex;
   align-items: center;
   /* justify-content: space-between; */
   gap: 50px;
}
#imageabout {
   width: 900px;
   height: 200px;
   border-radius: 50%;
   background-image: url(./mymedalpicspdt.jpg);
   background-size: cover;
   background-position: top;
   filter: grayscale(20%);
   
}
#textabout {
    width: 150rem;
  
}
#textabout h5 {
    text-transform: uppercase;
    opacity: .6;
    margin-bottom: 10px;
  
}

#textabout p {
    line-height: 1.6;
    font-size: 1.1vw;
    margin-bottom: 20px;
}
#textabout a {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 9px 20px;
    font-size: 1vw;
    border-radius: 120px;
}
#ops:hover {
    display: inline-block;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 15px;
    font-weight: 900;
}

#talk:hover {
    background-color: white;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#subscribe {
   color: #fff;
   background-color: black;
   padding: 20px 30px;
   padding-bottom: 6vw;
}
#subscribe h5 {
    text-transform: uppercase;
    opacity: .6;
}
#subscribe h3 {
      text-transform: uppercase;
      font-size: 14px;
      margin-top: 10px;
}

#footer {
   width: 100%;
   padding: 30px 30px;
   background-color: black;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
#footerleft {
   display: flex;
   align-items: center;
   gap: 20px;
}
#footer a {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    margin-left: 20px;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}
#footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

#footer a:hover {
    color: #e8e8e8;
    transform: translateY(-2px);
}

#footer a:hover::after {
    transform: scaleX(1);
}
#footerright {
   display: flex;
   align-items: center;
   gap: 20px;
}

#insta {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 770px)  {
    #nav {
position: sticky;
   top: 0;
   z-index: 100;
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: white;
   padding: 8px 24px;
   background: rgba(0, 0, 0, 0.55);
   backdrop-filter: blur(10px);
   transition: background 0.3s ease, padding 0.3s ease;
}

#heading {
   margin-top: 28px;
}
   #heading #secondh1 {
    margin-right: 53px;
}
#heading h1 {
    line-height: 1;
    text-transform: uppercase;
    font-size: 11vw;
    font-weight: 900;
    opacity: 0.6;
    margin-left: 30px;
}
.blocktext h5 {
    text-transform: uppercase;
    font-size: 8px;
    text-align: right;
    margin-right: 51px;
}

#nav h3 {
      font-size: 13px;
}
#menu-btn {
    position: relative;
    left: -16px;
    background: transparent;
    border: 1px solid #555;
    color: #fff;
    padding: 8px 14px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

#chhotiheadings {

   margin-top: 74px;
   padding-right: 50px;
}
#chhotiheadings h5 {
   text-transform: uppercase;
   font-size: 2.8vw;
   text-align: right;
   margin-top: -0.5vw;
}
#hero {
   width: 100vw;
   height: 88vh;
}
#herofooter a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 12px;
}
#herofooter #iconset {
    display: none;
}
#herofooter {
   padding: 0px 5vw;
}
#second {
    padding-top: 66px;
    padding-right: 10vw;
    width: 100%;
    min-height: 100vh;
    background-color: black;
}
.elem h5 {

    font-size: 3vw;
    
}
.elem h1 {
   font-size: 11vw;
}
#second {
   min-height: 80vh;;
}
#about {
    width: 100%;
    padding: 6vw 14vw;
    padding-left: 18vw;
    background-color: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    gap:50px;
}
#imageabout {
    width: 184px;
    height: 197px;
    border-radius: 50%;
    background-image: url(./mymedalpicspdt.jpg);
    background-size: cover;
    background-position: top;
    filter: grayscale(20%);
}
#textabout {
    width: auto;
}
#textabout p {
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}
#textabout a {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 10px 21px;
    font-size: 3vw;
    border-radius: 120px;
}
#subscribe {
    color: #fff;
    background-color: black;
    padding: 19px 29px;
    padding-bottom: 2vw;
}
#footer a {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    margin-left: 20px;
    font-size: 10px;
}
#footer {
    width: 100%;
    padding: 22px 22px;
    background-color: black;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

#footer h5 {
   font-size : 11px;
}
#footerleft {
    display: flex;
    align-items: center;
    gap: 11px;
    
}

#menu-panel {
    top: 26px;
   
}
/* #secondh1::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 49px;
    background-color: white;
    margin-left: 4px;
    } */
   
}

