@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Sixtyfour+Convergence&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');
/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Dark Gradient Background */
body {
  background: 
    linear-gradient(135deg, rgba(2, 1, 19, 0.85), rgba(0, 34, 3, 0.85)),
    url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
}



/* Navbar Styling */
.navbar {
  background: #111;
  padding: 15px 30px;
  border-radius: 50px; /* Curved border */
  box-shadow: 0px 0px 20px rgba(160, 32, 240, 1); /* Glowing effect */
  position: fixed;
  top: 70px;
  left: 75%;
  transform: translateX(-50%);
  z-index: 1000;
}

/* Navbar List */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Navbar Links */
.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 25px;
  transition: 0.3s;
}

/* Hover Effect */
.navbar ul li a:hover {
  background: cyan;
  color: black;
  box-shadow: 0px 0px 15px cyan;
}



.animated-text { 
  font-size: 50px;
  font-weight: 600;
  min-width: 280px;
  position: absolute;
  top: 380px;
  left: 100px;
  color: #ffffff;
}

.animated-text span {
  position: relative;
}

.animated-text span::before {
  content: "MC Server Dev";
  color: rgb(224, 101, 0);
  animation: words 20s infinite;
}

.animated-text span::after {
  content: "";
  position: absolute;
  width: calc(100% + 8px);
  height: 100%;
  background: linear-gradient(to right, cyan, purple); /* Replaced #2f3542 */
  border-left: 2px solid #ff7f50;
  right: -8px;
  animation: cursor .8s infinite, typing 20s steps(14) infinite;
}


@keyframes cursor {
  to {
      border-left: 2px solid #ff7f5000;
  }
}

@keyframes words {
  0%,20% {
      content: "MC Server Developer";
  }
  21%,40% {
      content: "Web Developer";
  }
  41%,60% {
      content: "BOT Developer";
  }
  61%,80% {
      content: "Plugin Developer";
  }
  81%,100% {
      content: "MOD Developer";
  }
}

@keyframes typing {
  10%,15%,30%,35%,50%,55%,70%,75%,90%,95% {
      width: 0;
  }
  5%,20%,25%,40%,45%,60%,65%,80%,85% {
      width: calc(100% + 8px);
  }
}

.home-pg-info {
  position: absolute;
  top: 495px;
  left: 85px;
  max-width: 80%;
  z-index: 1000;
  background-color: rgba(37, 36, 36, 0.445);
  padding: 35px 35px;
  border-radius: 30px;
  box-shadow: 0px 0px 20px rgba(160, 32, 240, 1);
}

#pg-info {
  font-family: 'Segoe UI', 'Fira Code', monospace;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.5px;
}

/* For smaller screens */
@media (max-width: 768px) {
  .home-pg-info {
    top: 20px;
    left: 20px;
    max-width: 90%;
  }
  
  #pg-info {
    font-size: 1rem;
  }
}

/* SKIN SETUP */

.skin-img {
  position: absolute;
  top: 270px;
  right: 240px;
  z-index: 1;
  filter: drop-shadow(12px 12px 0 #000000a4); /* Stronger shadow */
  animation: float 2s ease-in-out infinite; /* Faster animation */
}

.sking {
  height: 650px;
  width: auto;
  transition: all 0.3s ease;
}

.sking:hover {
  transform: scale(1.1); /* Stronger hover effect */
  filter: drop-shadow(15px 15px 0 #000000a4); /* Larger hover shadow */
}

/* Powerful floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px); /* Doubled floating height */
  }
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .skin-img {
    top: 15px;
    right: 15px;
    filter: drop-shadow(8px 8px 0 #000000a4); /* Slightly stronger mobile shadow */
  }
  .sking {
    height: 120px;
  }
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px); /* Stronger mobile float */
    }
  }
}


.about-pg-info {
  position: absolute;
  top: 135%;
  right: 350px;
  max-width: 80%;
  z-index: 1000;
  background-color: rgba(37, 36, 36, 0.445);
  padding: 35px 35px;
  border-radius: 30px;
  box-shadow: 0px 0px 20px rgba(160, 32, 240, 1);
}

#pg-about {
  font-family: 'Segoe UI', 'Fira Code', monospace;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.5px;
}




section{
  height: 100vh;
  padding: 2em;
}


#ab-img{
position: absolute;
top: 1000px;
left: 250px;
height: auto;
width: 400px;
}


.ab-info {
  position: absolute;
  top: 24%;
  right: 250px;
  max-width: 80%;
  z-index: 1;
  background-color: rgba(37, 36, 36, 0.445);
  padding: 35px 35px;
  border-radius: 30px;
  box-shadow: 0px 0px 20px rgba(160, 32, 240, 1);
}

#about-info {
  font-family: 'Segoe UI', 'Fira Code', monospace;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.5px;
}



.boy {
  position: absolute;
  top: 21%;
  left: 180px;
}

#boy-pic {
height: auto;
width: 650px;
}


.skill-pic {
  position: absolute;
  top: 34.5%;
  left: 25%;
  transform: translateX(-50%);
}

#skill-img {
  height: auto;
  width: 350px;
  z-index: 10;
}


@keyframes glow {
  0% {
    box-shadow: 0 0 100px white;
  }
  50% {
    box-shadow: 0 0 60px white;
  }
  100% {
    box-shadow: 0 0 100px white;
  }
}

.skill-box {
  width: 1500px;
  height: 10%;
  position: absolute;
  top: 43.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  border: 2px solid #a020f0;
  background-color: rgba(0, 0, 0, 0.164); /* Optional: Dark background for contrast */
  border-radius: 40px;
  box-shadow: 0px 0px 50px #a020f0;
}

.skills-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;
}

.skills-left{
  width: 42%;
  height: 300px;
}

.skills-right{
width: 42%;
height: 300px;
}

.skill-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background-color: black;
  margin: 20px 0;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 25px;
}

.skill-bar {
  height: 14px;
  background: #858585;
  border-radius: 10px;
  position: relative;
}

.skill-per {
  height: 14px;
  background-color: rgb(148, 7, 177);
  border-radius: 10px;
  position: relative;
  animation: fillBars 2.5s 1;
}

.skill-per::before {
  content: attr(per);
  position: absolute;
  padding: 4px 6px;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  top: -35px;
  right: 0;
  transform: translateX(50%);
  font-weight: bold;
  color: black;
}

.skill-per::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  top: -15px;
  right: 0;
  transform: translateX(50%) rotate(45deg);
  border-radius: 2px;
}

@keyframes fillBars {
  from {
      width: 0;
  }
  to {
      width: 100%;
  }
}

    


.project-img-box {
  position: absolute;
  top: 51.5%;
  left: 25%;
  transform: translateX(-50%);
}

#project-pic {
  height: auto;
  width: 450px;
  z-index: 10;
}

.service-img-box {
  position: absolute;
  top: 68%;
  left: 25%;
  transform: translateX(-50%);
}

#service-pic {
  height: auto;
  width: 450px;
  z-index: 10;
}




.copy-right {
  height: 50px;
  width: 100%;
  background-color: #222; /* Optional: background color */
  color: #fff; /* Text color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px; /* Match height for consistency */
  position: absolute; /* Optional: stick to bottom */
  bottom: 0;
  left: 0;
  z-index: 999;
}



#ptoject-container{
display: flex;
justify-content: center;
align-items: center;
min-height: 400px;
background-color: rgba(0, 0, 0, 0.308);
border-radius: 35px;
position: absolute;
top: 56%;
left: 50%;
transform: translateX(-50%);
}


#ptoject-container div{
height: 370px;
width: 335px;
background: #0000004b;
box-shadow: 0px 0px 20px rgba(160, 32, 240, 1);
border-radius: 25px;
margin: 80px;
text-align: center;
}


.FMC-PNG {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  height: 100vh; /* Full viewport height */
}

#fmc-pic {
  top: 20%;
  left: 79%;
  position: absolute;
  width: 120px;
  height: auto;
}

.INMC-PNG {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  height: 100vh; /* Full viewport height */
}

#in-pic {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 220px;
  height: auto;
}


.FM-PNG {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  height: 100vh; /* Full viewport height */
}

#fm-pic {
  top: 10%;
  left: 16.5%;
  transform: translateX(-50%);
  position: absolute;
  width: 220px;
  height: auto;
}



div #fm-position{
position: absolute;
top: 300px;
font-size: 15px;
left: 120px;
}

div #fm-web{
  position: absolute;
  top: 330px;
  font-size: 15px;
  left: 120px;
}

div #fm-dc{
  position: absolute;
  top: 360px;
  font-size: 15px;
  left: 120px;
}

div #fm-ip{
  position: absolute;
  top: 390px;
  font-size: 15px;
  left: 120px;
}




div #inmc-position{
  position: absolute;
  top: 300px;
  font-size: 15px;
  left: 620px;
  }
  
  div #inmc-web{
    position: absolute;
    top: 330px;
    font-size: 15px;
    left: 620px;
  }
  
  div #inmc-dc{
    position: absolute;
    top: 360px;
    font-size: 15px;
    left: 620px;
  }
  
  div #inmc-ip{
    position: absolute;
    top: 390px;
    font-size: 15px;
    left: 620px;
  }



  div #fmc-position{
    position: absolute;
    top: 300px;
    font-size: 15px;
    left: 1115px;
    }
    
    div #fmc-web{
      position: absolute;
      top: 330px;
      font-size: 15px;
      left: 1115px;
    }
    
    div #fmc-dc{
      position: absolute;
      top: 360px;
      font-size: 15px;
      left: 1115px;
    }
    
    div #fmc-ip{
      position: absolute;
      top: 390px;
      font-size: 15px;
      left: 1115px;
    }



    .mc-dev {
      background: #1a1a1a; /* optional: dark background to highlight glow */
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px 5px orange; /* orange glow */
      text-align: center;
      position: absolute;
      width: 600px;
      height: 180px;
      top: 71%;
      left: 50px;

    }
    
    .bot-dev {
      background: #1a1a1a; /* optional: dark background to highlight glow */
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px 5px orange; /* orange glow */
      text-align: center;
      position: absolute;
      width: 600px;
      height: 180px;
      top: 71%;
      right: 50px;

    }


    .plugin-dev {
      background: #1a1a1a; /* optional: dark background to highlight glow */
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px 5px orange; /* orange glow */
      text-align: center;
      position: absolute;
      width: 600px;
      height: 180px;
      top: 72%;
      left: 50%;
      transform: translateX(-50%);

    }







    .optimisition-dev {
      background: #1a1a1a; /* optional: dark background to highlight glow */
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px 5px orange; /* orange glow */
      text-align: center;
      position: absolute;
      width: 600px;
      height: 180px;
      top: 78%;
      left: 50px;

    }
    
    .configeration-dev {
      background: #1a1a1a; /* optional: dark background to highlight glow */
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px 5px orange; /* orange glow */
      text-align: center;
      position: absolute;
      width: 600px;
      height: 180px;
      top: 78%;
      right: 50px;

    }


    .managment-dev {
      background: #1a1a1a; /* optional: dark background to highlight glow */
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px 5px orange; /* orange glow */
      text-align: center;
      position: absolute;
      width: 600px;
      height: 180px;
      top: 77%;
      left: 50%;
      transform: translateX(-50%);

    }





    .row-1 {
      display: flex;
      justify-content: center;  /* center the row */
      gap: 5px;                /* space between each box */
      padding: 5px;            /* optional: spacing around the row */
    }
    
    /* Optional: Common styling for the boxes */
    .row-1 > div {
      background: #1a1a1a;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(255, 165, 0, 0.6); /* soft orange glow */
      text-align: center;
      width: 550px; /* or as needed */
    }
    



    .row-2 {
      display: flex;
      justify-content: center;  /* center the row */
      gap: 5px;                /* space between each box */
      padding: 5px;            /* optional: spacing around the row */
    }
    
    /* Optional: Common styling for the boxes */
    .row-2 > div {
      background: #1a1a1a;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(255, 165, 0, 0.6); /* soft orange glow */
      text-align: center;
      width: 550px; /* or as needed */
    }



    #mc-dev-img {
      position: absolute; /* Allows free placement */
      top: 10px;          /* Distance from top of the page */
      left: 10px;         /* Distance from left of the page */
      width: 150px;        /* Adjust width */
      height: auto;        /* Maintains aspect ratio */
      cursor: move;        /* Optional: shows a move cursor */
      z-index: 1;         /* Keeps it on top if overlapping */
    }
    
    #mc-dev-pic {
      width: 100%;
      height: auto;
      border-radius: 10px; /* Optional: adds rounded corners */
    }
    


    #plugin-dev-img {
      position: absolute; /* Allows free placement */
      top: 10px;          /* Distance from top of the page */
      left: 10px;         /* Distance from left of the page */
      width: 150px;        /* Adjust width */
      height: auto;        /* Maintains aspect ratio */
      cursor: move;        /* Optional: shows a move cursor */
      z-index: 1;         /* Keeps it on top if overlapping */
    }
    
    #plugin-dev-pic {
      width: 100%;
      height: auto;
      border-radius: 10px; /* Optional: adds rounded corners */
    }

    #bot-dev-img {
      position: absolute; /* Allows free placement */
      top: 10px;          /* Distance from top of the page */
      left: 10px;         /* Distance from left of the page */
      width: 150px;        /* Adjust width */
      height: auto;        /* Maintains aspect ratio */
      cursor: move;        /* Optional: shows a move cursor */
      z-index: 1;         /* Keeps it on top if overlapping */
    }
    
    #bot-dev-pic {
      width: 100%;
      height: auto;
      border-radius: 10px; /* Optional: adds rounded corners */
    }


    #optimization-img {
      position: absolute; /* Allows free placement */
      top: 10px;          /* Distance from top of the page */
      left: 10px;         /* Distance from left of the page */
      width: 150px;        /* Adjust width */
      height: auto;        /* Maintains aspect ratio */
      cursor: move;        /* Optional: shows a move cursor */
      z-index: 1;         /* Keeps it on top if overlapping */
    }
    
    #optimization-pic {
      width: 100%;
      height: auto;
      border-radius: 10px; /* Optional: adds rounded corners */
    }

  
    #configeration-img {
      position: absolute; /* Allows free placement */
      top: 10px;          /* Distance from top of the page */
      left: 10px;         /* Distance from left of the page */
      width: 150px;        /* Adjust width */
      height: auto;        /* Maintains aspect ratio */
      cursor: move;        /* Optional: shows a move cursor */
      z-index: 1;         /* Keeps it on top if overlapping */
    }
    
    #configeration-pic {
      width: 100%;
      height: auto;
      border-radius: 10px; /* Optional: adds rounded corners */
    }
    


    #management-img {
      position: absolute; /* Allows free placement */
      top: 10px;          /* Distance from top of the page */
      left: 10px;         /* Distance from left of the page */
      width: 150px;        /* Adjust width */
      height: auto;        /* Maintains aspect ratio */
      cursor: move;        /* Optional: shows a move cursor */
      z-index: 1;         /* Keeps it on top if overlapping */
    }
    
    #management-pic {
      width: 100%;
      height: auto;
      border-radius: 10px; /* Optional: adds rounded corners */
    }


    #mc-dev-info {
      position: absolute;   /* Allows free movement */
      top: 20px;           /* Adjust this to move vertically */
      left: 200px;          /* Adjust this to move horizontally */
      font-size: 25px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
    }
    

    #bot-dev-info {
      position: absolute;   /* Allows free movement */
      top: 20px;           /* Adjust this to move vertically */
      left: 200px;          /* Adjust this to move horizontally */
      font-size: 25px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
    }


    #plugin-dev-info {
      position: absolute;   /* Allows free movement */
      top: 20px;           /* Adjust this to move vertically */
      left: 200px;          /* Adjust this to move horizontally */
      font-size: 25px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
    }

    #optimization-title {
      position: absolute;   /* Allows free movement */
      top: 20px;           /* Adjust this to move vertically */
      left: 200px;          /* Adjust this to move horizontally */
      font-size: 25px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
    }


    #configeration-title {
      position: absolute;   /* Allows free movement */
      top: 20px;           /* Adjust this to move vertically */
      left: 200px;          /* Adjust this to move horizontally */
      font-size: 25px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
    }


    #management-title {
      position: absolute;   /* Allows free movement */
      top: 20px;           /* Adjust this to move vertically */
      left: 200px;          /* Adjust this to move horizontally */
      font-size: 25px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
    }


    #mc-dev-p {
      position: absolute;   /* Allows free movement */
      top: 60px;            /* Adjust this to move vertically */
      left: 180px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }
    

    #bot-dev-p {
      position: absolute;   /* Allows free movement */
      top: 60px;            /* Adjust this to move vertically */
      left: 180px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }

    #plugin-dev-p {
      position: absolute;   /* Allows free movement */
      top: 60px;            /* Adjust this to move vertically */
      left: 180px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }


    #optimization-dev-p {
      position: absolute;   /* Allows free movement */
      top: 60px;            /* Adjust this to move vertically */
      left: 180px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }

    #management-dev-p {
      position: absolute;   /* Allows free movement */
      top: 60px;            /* Adjust this to move vertically */
      left: 180px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }


    #configeration-dev-p {
      position: absolute;   /* Allows free movement */
      top: 60px;            /* Adjust this to move vertically */
      left: 180px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }



    #bt1 {
      position: absolute;   /* Allows free movement */
      top: 145px;            /* Adjust this to move vertically */
      left: 430px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }

    #bt2 {
      position: absolute;   /* Allows free movement */
      top: 145px;            /* Adjust this to move vertically */
      left: 430px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }

    #bt3 {
      position: absolute;   /* Allows free movement */
      top: 145px;            /* Adjust this to move vertically */
      left: 430px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }

    #bt4 {
      position: absolute;   /* Allows free movement */
      top: 145px;            /* Adjust this to move vertically */
      left: 430px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }

    #bt5 {
      position: absolute;   /* Allows free movement */
      top: 145px;            /* Adjust this to move vertically */
      left: 430px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }

    #bt6 {
      position: absolute;   /* Allows free movement */
      top: 145px;            /* Adjust this to move vertically */
      left: 430px;          /* Adjust this to move horizontally */
      font-size: 12px;      /* Customize font size */
      color: #ffffff;       /* Optional: text color */
      z-index: 20;          /* Stay above other elements */
      text-align: left;     /* Ensures left alignment */
    }


    #start-bt {
      background-color: skyblue;  /* Sky blue background */
      color: rgb(71, 71, 71);               /* White text */
      text-decoration: none;      /* Removes underline */
      padding: 10px 20px;         /* Optional: adds spacing */
      border-radius: 5px;         /* Optional: rounded corners */
      font-weight: bold;          /* Optional: bold text */
      display: inline-block;      /* Makes padding work properly */
      position: absolute;
      top: 15%;
      left: 100px;
    }
    

    #hire-me-bt {
      background-color: rgb(189, 138, 247);  /* Sky blue background */
      color: rgb(71, 71, 71);               /* White text */
      text-decoration: none;      /* Removes underline */
      padding: 10px 20px;         /* Optional: adds spacing */
      border-radius: 5px;         /* Optional: rounded corners */
      font-weight: bold;          /* Optional: bold text */
      display: inline-block;      /* Makes padding work properly */
      position: absolute;
      top: 15%;
      left: 250px;
    }
    



    .footer {
      background-color: skyblue; /* Div ka background */
      padding: 40px;
      position: absolute;
      height: 500px;
      width: 100%;
      display: flex;
      bottom: 0;
      left: 0;
      z-index: 12;
    
      /* 🔵 Curved top corners */
      border-top-left-radius: 3500px;
      border-top-right-radius: 3500px;
    
      /* ✅ White glow */
      box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.5);
    }
    

    .w-time {
      position: relative; /* ✅ So child absolute elements are contained here */
      height: auto;       /* Optional height for demonstration */
      background-color: #f0f0f0;
    }
    
    #work-day-and-time {
      position: absolute;   /* ✅ Enables movement */
      top: 78px;            /* ⬆ from top */
      left: 1300px;           /* ⬅ from left */
      font-size: 20px;
      color: black;
      width: 330px;
    }
    
    .avatr-text {
      width: 300px;
      height: 120px;
      border-radius: 20px;
      display: flex;                 /* 🔄 Flex row by default */
      align-items: center;          /* Vertically center */
      justify-content: start;       /* Align items to left */
      padding: 10px 20px;
      position: relative;
      left: 190px;
      top: 40px; 
    }
    
    #avatar-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 20px;           /* Space between image & text */
    }
    
    #SIDD_NAME {
      margin: 0;                    /* Remove extra space */
    }
    
    #my-name {
      font-size: 24px;
      color: black;
      margin: 0;
      font-weight: 900;
      font-size: 35px;
    }
    
    
    #aka {
      font-size: 24px;
      color: black;
      margin: 0;
      font-weight: 600;
      font-size: 20px;
    }



    .small-ab {
      position: absolute;     /* 🟡 Enables free positioning */
      top: 100px;             /* ⬇ Distance from top of page */
      left: 2px;            /* ⬅ Distance from left of page */
      width: 550px;           /* Optional width */
      padding: 20px;
      border-radius: 10px;    /* Rounded edges */


    }
    
    #Small-Info {
      font-size: 18px;
      line-height: 1.6;
      color: #333;
      font-weight: 300;
    }
    

.quick-links {
  position: absolute;     /* 🟢 Enable free placement */
  top: 20px;             /* ⬇ Distance from top */
  left: 800px;            /* ➡ Distance from right */
  width: 200px;
  padding: 20px;
  border-radius: 10px;

}

#quick-link-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: black;
}

.quick-links a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 16px;
}

.quick-links a:hover {
  color: #007bff;
}

  .s-h {
    position: absolute;  /* 🔓 Free positioning */
    top: 250px;           /* 👆 Distance from top */
    left: 1110px;
    width: 300px;         /* 👉 Distance from left */
  }

  #h-title {
    font-size: 24px;
    color: black;
    font-weight: bold;
  }

  #s-icons {
    position: absolute;   /* 🔓 Free positioning */
    top: 295px;           /* 👇 Below title */
    left: 1095px;          /* 👉 Adjust horizontally */
    font-size: 28px;
    color: #000;
    width: 300px;
  }

  #s-icons a {
    color: #000;
  }

  /* Optional Hover Effect */
  #s-icons i:hover {
    transform: scale(1.2); /* 👈 Zoom in */
    cursor: pointer;
  } 



  .mc-dev:hover {
    transform: scale(1.2); /* 👈 Zoom in */
    cursor: pointer;
  } 

  .mc-dev {
    transition: transform 0.3s ease; /* 👈 Smooth animation */
  }
  

  .optimisition-dev:hover {
    transform: scale(1.2); /* 👈 Zoom in */
    cursor: pointer;
  } 

  .optimisition-dev {
    transition: transform 0.3s ease; /* 👈 Smooth animation */
  }


  .configeration-dev:hover {
    transform: scale(1.2); /* 👈 Zoom in */
    cursor: pointer;
  } 

  .configeration-dev {
    transition: transform 0.3s ease; /* 👈 Smooth animation */
  }


  .bot-dev:hover {
    transform: scale(1.2); /* 👈 Zoom in */
    cursor: pointer;
  } 

  .bot-dev {
    transition: transform 0.3s ease; /* 👈 Smooth animation */
  }

  .ab-info:hover {
    transform: scale(1.1); /* 👈 Zoom in */
    cursor: pointer;
  } 

  .ab-info {
    transition: transform 0.3s ease; /* 👈 Smooth animation */
  }


  .pfp {
    position: absolute;
    top: 70px;
    left: 70px;
    z-index: 9999;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .pfp {
    cursor: pointer;
    user-select: none;
    z-index: 2; /* Ensure PFP stays above name tag */
  }
  
  #pfp {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }
  
  #pfp:hover {
    transform: scale(1.05);
  }

  .name-tag {
    position: absolute; /* Changed from absolute to fixed for easy movement */
    top: 85px; /* Your requested position */
    left: 170px;
    z-index: 9999;
    cursor: move; /* Shows it's draggable */
    user-select: none; /* Prevents text selection */
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-shadow: 0 0 5px #000;
    white-space: nowrap;
  }
  
  #name-tag {
    margin: 0;
    line-height: 1.3; /* For better multi-line spacing */
    text-align: left;
    
  }












































































