*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}
:root{
  --bg-color: #000000;
  --second-bg-color: #1a1a1a;
  --text-color: white; 
  --main-color: #9B30FF;
  --third-bg-color: transparent;
  --fourth-bg-color: rgba(0, 0, 0, 0.5);
}
html{
  font-size: 60%;
  overflow-x: hidden;
}
body{
  background: var(--bg-color);
  color: var(--text-color);
}
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4rem 12% 4rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}
.logo{
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;  
}
.logo:hover{
  transform: scale(1.1);
}
.logo span{
  text-shadow: 0 0 25px var(--main-color);
}
.navbar a{
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
}

.navbar a:hover,
.navbar a.active{
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
#menu-icon{
  font-size: 3.6rem;
  color: var(--main-color);
  display: none;
}

/**************Home*/
section{
  min-height: 100vh;
  padding: 5rem 5%;
}

.home{
  display: flex;
  align-items: center;
  margin-left: 20rem;
  gap: 15rem;
}
.home-content{
  flex-direction: column;
  align-items: baseline;
}
span{
  color: var(--main-color);
}
.logo span{
  color: var(--main-color);
}
.home-content h3{
  margin-bottom: 2rem;
  margin-top: 1rem;
  font-size: 3.5rem;
}
.home-content h1{
  font-size: 7rem;
  font-weight: 700;
  margin-top: 2rem;
  line-height: 1;
}
/*
.home-img{
  border-radius: 50%;
}
.home-img img{
position: relative;
top: 3rem;
width: 32vw;
border-radius: 50%;
box-shadow:  0 0 25px var(--main-color);
cursor: pointer;
transition: 0.4s ease-in-out;
}
.home-img img:hover{
  box-shadow: 0 0 25px var(--main-color), 
              0 0 50px var(--main-color),
              0 0 100px var(--main-color);
}
              */
.home-content p{
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  max-width: 1000px;
}
.social-icons a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  background: transparent;
  border: 2px solid var(--main-color);
  font-size: 2.5rem;
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}
.social-icons a:hover{
  color: var(--text-color);
  transform: scale(1.3)translateY(-5px);
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
}
.btn{
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color);
  box-shadow: 0 0 25px var(--main-color);
  border-radius: 4rem;
  font-size: 1.6rem;
  color: black;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn:hover{
transform: scale(1.05);
box-shadow: 0 0 50px var(--main-color);
color: var(--text-color);
}

.btn-group{
  display: flex;
  align-items: center;
  gap:1.5rem;
}

.btn-group a:nth-of-type(2){
  background-color: black;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  box-shadow: 0 0 25px transparent;
}
.btn-group a:nth-of-type(2):hover{
  box-shadow: 0 0 25px var(--main-color);
  background-color: var(--main-color);
  color: var(--text-color);
}

.text-animation {
  font-size: 34px;
  font-weight: 600;
  min-width: 280px;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.text-animation span {
  position: relative;
}

.text-animation span::before {
  content: "Web Developer"; /* Initial text */
  color: var(--main-color);
  animation: words 20s infinite;
}

.text-animation span::after {
  content: "";
  background-color: var(--bg-color);
  position: absolute;
  width: 0;
  height: 100%;
  border-left: 3px solid var(--main-color); /* Typing cursor effect */
  right: -8px;
  animation: cursor 0.6s infinite, typing 20s steps(20) infinite; /* Adjust steps(20) as needed */
}

/* Keyframes for changing text content */
@keyframes words {
  0%, 20% {
    content: "Frontend Developer";
  }
  21%, 40% {
    content: "Backend Developer";
  }
  41%, 60% {
    content: "Fullstack Developer";
  }
  61%, 80% {
    content: "Amazon Specialist";
  }
}

/* Keyframes for typing animation */
@keyframes typing {
  10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {
    width: 0;
  }
  5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85%, 100% {
    width: calc(100% + 2px); /* Width will grow as text is typed */
  }
}

/* Keyframes for cursor effect */
@keyframes cursor {
  0% {
    border-left: 2px solid ;
  }
  100% {
    border-left: 2px solid transparent; /* Flickering effect */
  }
}



/*About*/


.about {
  background-color: var(--second-bg-color);
  color: var(--text-color);
  padding: 5rem 12%;
  display: flex;
  flex-direction: column; /* Change to column layout */
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-content h2 {
  font-size: 5rem;
  margin-bottom: 50px;
  margin: auto;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  border-bottom: 3px solid var(--main-color);
}

.about-content p {
  margin-top: 40px;
  font-size: 16px;
  color: white;
  font-weight: 300;
  line-height: 22px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.about-content h3 {
  font-size: 2rem;
  margin-top: 40px;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.dev-tools-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem; /* Add padding */
  justify-content: center; /* Center icons horizontally */
  align-items: center; /* Center icons vertically */
}

.dev-tools-icons img {
  width: 9%;
  height: 3.5rem;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease-in-out;
}

.dev-tools-icons img:hover {
  transform: scale(1.3);
}

/* Media query for iPhone 13 mini */
@media (max-width: 375px) {
  .about {
    flex-direction: column;
  }

  .about-img {
    order: -1; /* Move image to the top */
    margin-bottom: 2rem;
  }

  .about-content {
    align-items: center;
    text-align: center;
  }
}


/************EDUCATION******************/

.heading{
  font-size: 8rem;
  text-align: center;
  margin: 5rem 0;
}

.education{
  padding: 100px 15px;
  background: var(--second-bg-color);
}

.education h2{
  margin-bottom: 5rem;
  font-size: 3rem;


}

.timeline-items{
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.timeline-items::before{
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: var(--main-color);
  left: calc(50% - 1px);
}

.timeline-item{
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}
.timeline-item:last-child{
  margin-bottom: 0;
}
.timeline-item:nth-child(odd){
  padding-right: calc(50% + 30px);
  text-align: right;
}
.timeline-item:nth-child(even){
  padding-left: calc(50% + 30px);
}
.timeline-dot{
  height: 21px;
  width: 21px;
  background-color: var(--main-color);
  box-shadow: 0 0 25px var(--main-color),
              0 0 50px var(--main-color);
  position: absolute;
  left: calc(50% - 8px);
  border-radius: 50%;
  top: 10px;
}
.timeline-date{
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 6px 0 15px;
}

.timeline-content{
  background-color: var(--third-bg-color);
  backdrop-filter: blur(8px);
  border: 3px solid var(--main-color);
  padding: 30px 50px;
  border-radius: 4rem;
  box-shadow: 0 0 10px var(--main-color);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.timeline-content:hover{
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--main-color);
}
.timeline-content h3{
  font-size: 20px;
  color: white;
  margin: 0 0 10px;
  font-weight: 500;
}

.timeline-content p{
  font-size: 16px;
  color: white;
  font-weight: 300;
  line-height: 22px;
}

::-webkit-scrollbar{
  width: 15px;
}

::-webkit-scrollbar-thumb{
  background-color: var(--bg-color);
  width: 50px;
}

::-webkit-scrollbar-track{
  background-color: var(--bg-color);
  width: 50px;
}



/************Certificates******************/
.heading{
  font-size: 5rem;
  text-align: center;
  margin: 5rem 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  
}

.certificates{
  background: var(--second-bg-color);
  color: white;
}

.certificate-container{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  padding: 5rem 12%;
}

.certificate-box{
  background-color: var(--main-color);
  height: 300px;
  border-radius: 3rem;
  border: 5px solid transparent;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.certificate-box:hover{
  border: 3px solid var(--main-color);
  transform: translateY(-10px)scale(1.03);
  box-shadow: 0 0 50px var(--main-color);
}

.certificate-box:hover::after{
  opacity: 1;
}

.certificate-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3rem;
}

@media(max-width:991px){
  .certificate-container{
    grid-template-columns: repeat(2,1fr);
    padding: 5rem 3%;
  }
}

@media(max-width:768px){
  .certificate-container{
    grid-template-columns: repeat(1,1fr);
    padding: 5rem 3%;
  }
}

/************Services******************/
/*
.services{
  background: var(--bg-color);
  color: black;
}
.services h2{
  margin-bottom: 5rem;
  color: white;
}

.services-container{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 2.5rem;
}
.service-box{
  background-color: var(--main-color);
  height: 300px;
  border-radius: 3rem;
  border: 5px solid transparent;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.service-box:hover{
  background: white;
  color: black;
  border: 5px solid var(--main-color);
  transform: scale(1.03);
}
.service-box .service-info{
  display: flex;
  flex-direction: column;
  text-align: left;
  max-height: 200px;
  justify-content: left;
  align-items: baseline;
  padding: 5rem 5rem;
}

.service-info h4{
  font-size: 3rem;
  font-weight: 800;
  line-height: 2;
  text-align: center;
}
.service-info p{
  font-size: 1.6rem;
  font-weight: 600;
  max-height: 100px;
  line-height: 1.7;
  margin: auto;
}
*/
/************Projects******************/
.testimonials {
    background: var(--second-bg-color);
}

.testimonials-box {
    background-size: cover;
    display: grid;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.testimonials .heading {
    margin-bottom: 5rem;
}

.testimonials-box img {
    width: 100%;
    max-width: 30rem;
    border: 3px solid var(--main-color);
    box-shadow: 0 0 5px var(--main-color);
    border-radius: 5px;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-content: center;
}

.testimonial-item {
    min-height: 550px;
    max-width: 450px;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(238, 238, 238, 0.2);
    border-radius: 2rem;
    padding: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    color: white;
    transition: 0.4s ease-in-out; 
}

.testimonial-item:hover {
    border: 3px solid var(--main-color);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 50px var(--main-color);
}

.testimonial-item h2 {
    font-size: 2.8rem;
}

.testimonial-item p {
    font-size: 1.3rem;
    line-height: 1.5;
}

#star {
    color: gold;
    font-size: 2rem;
}

.btn {
    background: var(--main-color);
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: var(--main-color);
}


/************Contact******************/
.contact {
  background-color: var(--bg-color);
}

.contact h2 {
  margin-bottom: 3rem;
  color: white;
}

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 2rem auto;
  text-align: center;
}

.contact form .input-box {
  position: relative; /* This is important for positioning the icon inside */
  display: flex;
  align-items: center;
  width: 100%;
}

.contact form .input-box i {
  position: absolute;
  left: 10px; /* Adjust the left position of the icon */
  font-size: 1.8rem;
  color: var(--main-color); /* You can change the color */
}

.contact form .input-box input {
  width: 100%;
  padding: 1.5rem 2.5rem 1.5rem 3.5rem; /* Space for the icon on the left */
  font-size: 1.8rem;
  color: var(--text-color);
  background: var(--fourth-bg-color);
  border-radius: 10px;
  border: 2px solid var(--main-color);
  margin: 1.5rem 0;
  resize: none;
}

.contact form .input-box input::placeholder {
  color: var(--text-color);
}

.contact form .input-group-2 textarea {
  width: 100%;
  padding: 1.5rem 2.5rem 1.5rem 3.5rem; /* Space for the icon on the left */
  font-size: 1.8rem;
  color: var(--text-color);
  background: var(--third-bg-color);
  border-radius: 10px;
  border: 2px solid var(--main-color);
  margin: 1.5rem 0;
  resize: none;
  font-weight: 600;
  backdrop-filter: blur(3px); /* Add blur effect */
}
.contact form .input-group-2 textarea::placeholder{
  color: var(--text-color);
}
.contact form .btn {
  margin-top: 2rem;
  width: 60%;
}

/************Footer******************/
.footer{
  position: relative;
  width: 100%;
  padding: 20px 0;
  background-color: var(--second-bg-color);
}

.footer .social{
  text-align: center;
  color: var(--main-color);
}

.footer .social a{
  font-size: 25px;
  margin: 0 1rem;
  color: var(--main-color);
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
}

.footer .social a:hover{
  transform: scale(1.2)translateY(-10px);
  background-color: var(--main-color);
  color: var(--text-color);
  box-shadow: 0 0 25px var(--main-color);
}

.footer ul{
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer ul li a{
  color: white;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
}

.footer ul li a:hover{
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
.footer ul li{
  display: inline-block;
  padding: 0 5px;
}
.footer .copyright{
  margin-top: 10px;
  text-align: center;
  font-size: 10px;
  color: white;
}

/************PHONE VIEW******************/

@media(max-width:1285){
  html{
    font-size: 55%;
  }
  .services-container{
    padding-bottom: 7rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 5rem;
  }
}
@media(max-width:991px){
  header{
    padding: 3rem 3%;
  }
  section{
    padding: 10rem 3% 2rem;
  }
  .timeline-items::before{
    left: 7px;
  }
  .timeline-item:nth-child(odd){
    padding-right: 0;
    text-align: left;
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even){
    padding-left: 37px;
  }
  .timeline-dot{
    left: 0;
  }
  .services{
    padding-bottom: 7rem;
  }
  .testimonials .wrapper{
    grid-template-columns: repeat(1, 1fr);
  }
  .contact form{
    flex-direction: column;
  }
  .footer{
    padding: 2rem 3%;
  }
  .earth{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    pointer-events: none;
  }
}
@media(max-width:895px){
  #menu-icon{
    display: block;
  }
  .navbar{
    position: absolute;
    top: 100%;
    right: 0;
    width: 30%;
    padding: 1rem 3%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom-left-radius: 2rem;
    border-left: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    display: none;
    justify-content: center;
    text-align: center;
  }
  .navbar.active{
    display: block;
  }
  .navbar a{
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
    color: white;
  }
  .home{
    flex-direction: column-reverse;
    margin: 5rem 4rem;
  }
  .home-content h3{
    font-size: 2.6rem;
  }
  .home-content h1{
    font-size: 5rem;
    margin-top: 45rem;
  }
  .home-content p{
    max-width: 600px;
    margin: 0 auto;
  }
  .home-img img{
    width: 50vw;
  }
  .services h2{
    margin-bottom: 3rem;
  }
  .services-container{
    grid-template-columns: repeat(1, 1fr);
    margin: 0 2rem;
  }
  
  .earth{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    pointer-events: none;
  }
}

/* For iPhone Mini 13 View */
@media (max-width: 375px) {  /* 375px is the width of iPhone Mini 13 in portrait mode */
  html {
    font-size: 50%;  /* Reduce font size for smaller screens */
  }
  .home-content h1 {
    margin-top: 30rem;
    font-size: 4.5rem; /* Adjust the font size of the main title */
  }
  .home-content h3 {
    font-size: 2.2rem;  /* Adjust the font size of the subtitle */
  }
  .home-content p {
    font-size: 1.4rem; /* Adjust the font size of the paragraph */
  }
  .home-img img {
    width: 60vw; /* Adjust image width */
  }
  .navbar a {
    font-size: 1.8rem; /* Adjust navbar font size */
  }
  .navbar {
    padding: 2rem 2%;
  }
  .services-container {
    margin: 0 2rem; /* Adjust the margin */
    padding-bottom: 5rem;
    grid-template-columns: 1fr; /* Ensure services display in one column */
  }
  .testimonials .wrapper {
    grid-template-columns: 1fr; /* Stack testimonials vertically */

  }
 
  .footer {
    padding: 2rem 2%; /* Adjust footer padding */
  }

  .earth{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    pointer-events: none;
  }
  .planet-earth{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    pointer-events: none;
  }
}



.work-list {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
}

.work-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  color: white;
}

.work-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: purple; /* Change to your preferred shade */
  border-radius: 50%; /* Makes it a dot */
}

/*3D*/

.nebula-spine{
  width: 100%;
  height: 100vh;
  position: absolute;
  opacity: 0.1;
  z-index: -1;
}

.brain{
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.earth{
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.5;
  left: 30%;
}

.planet-earth{
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.5;
  pointer-events: none;
}