*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

html{
  scroll-behavior: smooth;
}

a{
  text-decoration: none;
}

body{
  background-color: #00000b;
  color: #bbbbbb;
}

@media (max-width: 2560px){
  body{
    padding: 0 30%;
  }
}

@media (max-width: 1440px){
  body{
    padding: 0 0%;
  }
}

.container{
  padding: 0 7%;
}

@media (max-width: 777px){
  .container{
    padding: 0 5%;
  }
}

/* style for scroll-watcher */

.scroll-watcher{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c450c8;
  border-radius: 50px;
  z-index: 9999;
  scale: 0 1;
  transform-origin: left;
  animation: scroll-watcher linear;
  animation-timeline: scroll();
}

@keyframes scroll-watcher {
  to {
    scale: 1 1;
  }
}



/* style for bottom-navbar */

.bottom-navbar{
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 11, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid #292932;
  border-radius: 50px;
  display: flex;
  padding: 5px;
  z-index: 999;
  visibility: hidden;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.bottom-navbar .bottom-icon{
  padding: 7px 13px;
}

.bottom-navbar .bottom-icon:hover i,
.bottom-navbar .bottom-icon:hover p{
  color: #fff;
  transform: scale(1.1);
}

.bottom-navbar .bottom-icon i{
  color: #bbbbbb;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.bottom-navbar .bottom-icon p{
  font-size: 12px;
  color: #bbbbbb;
  transition: all 0.3s ease-in-out;
}


/* style for header navbar */

.nav-bar{
  position: sticky;
  left: 0;
  top: 0;
  padding: 20px 7%;
  z-index: 999;
  background: rgba(0, 0, 11, 0.9);
  backdrop-filter: blur(10px);
}

.nav-bar .nav-bar_container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* From Uiverse.io by neerajbaniwal */ 
.btn-shine {
  color: #fff;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

.nav-bar .nav-bar_container .nav-list{
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-bar .nav-bar_container .nav-list li{
  margin: 0 15px;
}

.nav-bar .nav-bar_container .nav-list li a{
  color: #bbbbbb;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 777px){
  .btn-shine {
    font-size: 20px;
  }
}

@media (max-width: 555px){
  .nav-bar .nav-bar_container .nav-list{
    display: none;
  }
  .bottom-navbar{
    visibility: visible;
  }
}



/* hero section styling */

.hero-section .container{
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
}

.hero-section .container .first-row{
  width: 65%;
}

.hero-section .container .first-row .little-heading{
  background: #fb8dff;
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  color: #6d0571;
  z-index: -1;
  transform: rotate(-10deg);
  border: 1px solid #c450c8;
  border-radius: 20px;
}

.hero-section .container .first-row .little-heading::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 20px;
  background: #fb8dff;
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  z-index: -1;
  color: #6d0571;
  opacity: 0.4;
  transform: rotate(2deg);
  border: 1px solid #c450c8;
  border-radius: 20px;
}

.hero-section .container .first-row h1{
  font-size: 60px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-section .container .first-row h1 span{
  text-shadow: 5px 7px 12px #c450c8;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
}

.hero-section .container .first-row .social-icons{
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 20px;
}

.hero-section .container .first-row .social-icons a{
  width: 40px;
  height: 40px;
  display: flex;
  font-size: 18px;
  color: #bbbbbb;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #bbbbbb;
  border-bottom: 3px solid #bbbbbb;
  border-left: 3px solid #bbbbbb;
  transition: all 0.3s ease-in-out;
}

.hero-section .container .first-row .social-icons a:hover{
  transform: scale(1.1);
}

/* From Uiverse.io by andrew-demchenk0 */ 
.pyramid-loader {
  position: relative;
  width: 300px;
  height: 300px;
  display: block;
  z-index: -1;
  transition: all ease 0.5s;
  transform-style: preserve-3d;
  transform: rotateX(-20deg);
}

/* .pyramid-loader:hover{
  transform: rotateX(-60deg);
} */

.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotateY(360deg);
  }
}

.pyramid-loader .wrapper .side {
  width: 70px;
  height: 70px;
/* you can choose any gradient or color you want */
  /* background: radial-gradient( #2F2585 10%, #F028FD 70%, #2BDEAC 120%); */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.pyramid-loader .wrapper .side1 {
  transform: rotateZ(-30deg) rotateY(90deg);
  background: conic-gradient( #2BDEAC, #F028FD, #D8CCE6, #2F2585);
}

.pyramid-loader .wrapper .side2 {
  transform: rotateZ(30deg) rotateY(90deg);
  background: conic-gradient( #2F2585, #D8CCE6, #F028FD, #2BDEAC);
}

.pyramid-loader .wrapper .side3 {
  transform: rotateX(30deg);
  background: conic-gradient( #2F2585, #D8CCE6, #F028FD, #2BDEAC);
}

.pyramid-loader .wrapper .side4 {
  transform: rotateX(-30deg);
  background: conic-gradient( #2BDEAC, #F028FD, #D8CCE6, #2F2585);
}

.pyramid-loader .wrapper .shadow {
  width: 60px;
  height: 60px;
  background: #8B5AD5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotateX(90deg) translateZ(-40px);
  filter: blur(12px);
}

@media (max-width: 777px){
  .hero-section .container .first-row .little-heading{
    font-size: 12px;
  }
  .hero-section .container .first-row .little-heading::before{
    height: 17px;
  }
  .hero-section .container{
    flex-direction: column;
    height: auto;
    padding: 70px 5%;
  }
  .hero-section .container .first-row{
    width: 100%;
  }
  .hero-section .container .first-row h1{
    font-size: 42px;
  }
}


/* about section styling */

.about-section .container{
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 70px 250px;
}

.about-section .container p{
  font-size: 18px;
  font-weight: 600;
}

.about-section .container .about-paragraph{
  font-weight: 500;
  letter-spacing: 0.2px;
}

.about-section .container h2{
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 15px 0;
}

.about-section .container h2 div{
  width: 30px;
  height: 30px;
  background: url(images/2025favicon.png);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.about-section .container marquee{
  width: 80%;
  height: 100px;
  margin-top: 40px;
}

.about-section .container marquee .tech-stark{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.about-section .container marquee .tech-stark .stark-holder{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section .container marquee .tech-stark .stark-holder i{
  color: #3f3f3f;
  font-size: 51px;
  margin: 0 20px;
}

.about-section .container marquee .tech-stark .stark-holder P{
  text-align: center;
  font-size: 16px;
  color: #3f3f3f;
}

@media (max-width: 777px){
  .about-section .container{
    padding: 0 50px;
  }
  .about-section .container h2{
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 15px 0;
  }
  .about-section .container p{
    font-size: 15px;
    font-weight: 500;
  }
}

@media (max-width: 555px){
  .about-section .container{
    padding: 0px 5%;
  }
  .about-section .container h2 div{
    width: 20px;
    height: 20px;
  }
  .about-section .container marquee{
    width: 100%;
    height: 100px;
    margin-top: 34px;
  }
}


/* Detail section styling */

.details-section{
  width: 100%;
  padding: 70px 0;
}

.stark-container .first-stark-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 7px;
}

.stark-container .first-stark-row .stark{
  /* width: 300px;
  height: 300px; */
  border-radius: 10px;
  background: #0f0f16;
  padding: 20px;
}

/* .stark-container .first-stark-row .stark video{
  width: 100%;
  height: 100%;
  border-radius: 10px;
} */

.stark-container .first-stark-row .stark .project-heading{
  font-size: 14px;
  font-weight: 500;
  color: #00000b;
  padding: 7px 15px;
  margin-bottom: 30px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: inset 0 0 10px #00000b;
  background: #bbbbbb;
}

.stark-container .first-stark-row .stark marquee{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 15px 0;
}

.stark-container .first-stark-row .stark marquee .tech-stark{
  display: flex;
  align-items: center;
  justify-content: center;
}

.stark-container .first-stark-row .stark .tech-stark .typing-speed{
  display: flex;
  align-items: baseline;
  margin-top: 30px;
}

.stark-container .first-stark-row .stark .tech-stark .typing-speed h1{
  font-size: 80px;
  font-weight: 500;
}

.stark-container .first-stark-row .stark .typing-speed-below{
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

.stark-container .first-stark-row .stark marquee .tech-stark p{
  font-size: 15px;
  color: #bbbbbb;
  background: #3f3f3f;
  border-radius: 7px;
  margin: 0 5px;
  padding: 10px;
}

.stark-container .first-stark-row .stark marquee .tech-stark i{
  font-size: 51px;
  margin: 0 20px;
  opacity: 0.5;
}

.stark-container .first-stark-row .stark .stark-content h3{
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 15px 0;
}

.stark-container .first-stark-row .stark .stark-content p{
  font-size: 15px;
  color: #bbbbbb;
  font-weight: 400;
  margin-bottom: 10px;
}

.stark-container .first-stark-row .stark1{
  flex: 1;
}

.stark-container .second-row{
  margin-top: 7px;
}


/* projects styling */

.project-section{
  width: 100%;
  padding: 70px 0;
}

.project-section .container{
  width: 100%;
  display: block;
}

.project-section .container .project-heading{
  font-size: 14px;
  font-weight: 500;
  color: #a543a8;
  padding: 7px 15px;
  border-radius: 20px;
  display: inline-block;
  background: #fbcaff;
}

.project-head-container{
  margin-bottom: 40px;
}

.project-section .container .project-heading i{
  font-size: 13px;
}

.project-section .container h1{
  width: 50%;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin: 15px 0;
}

.project-section .container .project-paragraph{
  width: 70%;
  font-size: 15px;
}

.project-folder{
  /* background: #292932; */
  display: flex;
  width: 100%;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid #292932;
  border-bottom: 1px solid #292932;
  border-radius: 10px;
}

.project-folder:hover .project-folder-content .btn{
  text-decoration: underline;
}

.project-folder .project-video{
  width: 300px;
}

.project-folder .project-video video,
.project-folder .project-video img{
  width: 100%;
  border-radius: 10px;
}

.project-folder .project-video .project-folder-content{
  display: block;
}

.project-folder-tech{
  display: flex;
  align-items: end;
  gap: 7px;
}

.project-folder-tech .technologies{
  color: #bbbbbb;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #3f3f3f;
}

.project-folder-tech .project-date{
  color: #bbbbbb;
  font-size: 13px;
}

.date-time{
  color: #bbbbbb;
  font-size: 14px;
  margin-top: 15px;
}

.project-folder-content h2{
  font-size: 24px;
  font-weight: 500;
  margin: 15px 0;
  color: #fff;
}

.project-folder-content .project-discription{
  color: #bbbbbb;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.project-folder-content .btn{
  color: #c450c8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px){
  .project-section .container h1{
    width: 70%;
    font-size: 32px;
  }
  .project-section .container .project-paragraph{
    width: 80%;
  }
  
}

@media (max-width: 555px){
  .project-section .container h1{
    width: 100%;
  }
  .project-section .container .project-paragraph{
    width: 100%;
  }
  .project-folder{
    /* background: #292932; */
    display: flex;
    flex-direction: column;
  }
  .project-folder .project-video{
    width: 100%;
  }
}


/* Blog styling css */

.blog-container{
  width: 100%;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.blog-container .blog-folder .image{
  overflow: hidden;
  border-radius: 7px;
}

.blog-container .blog-folder .image img{
  width: 100%;
  border-radius: 7px;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: all 0.3s ease-in-out;
}

.blog-container .blog-folder .image img:hover{
  cursor: pointer;
  transform: scale(1.1);
}

.blog-container .blog-folder .date-time{
  font-size: 14px;
}

.blog-container .blog-folder h2{
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin: 15px 0;
}

.blog-container .blog-folder .blog-discription{
  font-size: 15px;
  font-weight: 400;
  margin: 10px 0 20px 0;
}

.blog-container .blog-folder a{
  color: #c450c8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
}

.blog-container .blog-folder a i{
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.blog-container .blog-folder:hover i{
  margin-left: 7px;
  transform: rotate(-15deg);
}

@media (max-width: 768px){
  .blog-container .blog-folder{
    margin-top: 15px;
  }
}


/* Contact section styling */

.contact-container{
  display: grid;
  gap: 40px;
  margin-top: 50px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  
}


.contact-container .contact-form{
  width: 100%;
  padding: 20px;
  display: block;
  border-radius: 7px;
  box-shadow: 0 0 5px rgba(10, 0, 400, 0.2);
  border: 1px solid #292932;
}

.contact-container .contact-form h2{
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.contact-container .contact-form form input,
.contact-container .contact-form form textarea{
  width: 100%;
  color: #bbbbbb;
  margin: 7px 0;
  padding: 15px;
  resize: none;
  outline: none;
  font-size: 17px;
  border-radius: 7px;
  background: #00000b;
  box-shadow: 0 0 5px rgba(10, 0, 400, 0.2);
  border: 1px solid #292932;
  transition: all 0.3s ease-in-out;
}

.contact-container .contact-form form input::placeholder,
.contact-container .contact-form form textarea::placeholder{
  font-size: 15px;
}

.contact-container .contact-form form input:focus,
.contact-container .contact-form form textarea:focus{
  border: 1px solid #c450c8;
}

.contact-container .contact-form form button{
  width: 100%;
  padding: 15px;
  font-size: 17px;
  color: #bbbbbb;
  margin-top: 15px;
  background: #0f0f16;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.contact-container .contact-form form button:hover{
  background: #c450c8;
  color: #fff;
}

.contact-container .contact-info h2{
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.contact-container .contact-info p{
  font-size: 17px;
  color: #bbbbbb;
  margin: 7px 0;
}

.contact-container .contact-info a{
  color: #fff;
  font-size: 17px;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.contact-info .social-icons{
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 20px;
}

.contact-info .social-icons a{
  width: 40px;
  height: 40px;
  display: flex;
  font-size: 18px;
  color: #bbbbbb;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #bbbbbb;
  border-bottom: 3px solid #bbbbbb;
  border-left: 3px solid #bbbbbb;
  transition: all 0.3s ease-in-out;
}

.contact-info .social-icons a:hover{
  transform: scale(1.1);
}

@media (max-width: 555px){
  .contact-container .contact-form{
    padding: 15px;
  }
}


/* footer styling */

.footer-section{
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid #292932;
  background: #00000b;
}

.footer-section .container .footer-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section .container .footer-content .social-icons{
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.footer-section .container .footer-content .social-icons a{
  width: 40px;
  height: 40px;
  display: flex;
  font-size: 18px;
  color: #bbbbbb;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #bbbbbb;
  border-bottom: 3px solid #bbbbbb;
  border-left: 3px solid #bbbbbb;
  transition: all 0.3s ease-in-out;
}

.footer-section .container .footer-content .social-icons a:hover{
  transform: scale(1.1);
}

@media (max-width: 555px){
  .footer-section{
    width: 100%;
    padding: 30px 0;
  }
  .footer-section .container .footer-content{
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .footer-section .container .footer-content .social-icons{
    justify-content: center;
  }
}




