@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 5%;
  height: 6.5rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.3);
}
/* section {
  min-height: 100vh;
  padding: 2rem 9%;
} */
.heading {
  font-size: 3.5rem;
  color: rgb(32, 32, 32);
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: rgb(115, 3, 167);
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #0e2431;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: #0e2431;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #011aff;
  border-bottom: 0.2rem solid #011aff;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */
 /* Hero Section */
 .home {
   position: relative;
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   min-height: 100vh;
   align-items: center;
   padding: 15rem 5%;
   overflow: hidden;
 }

 .home #particles-js {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   z-index: -1;
 }

 .home .content {
   flex: 1 1 40rem;
   padding-top: 1rem;
   z-index: 1;
 }

 .home .image {
   flex: 1 1 40rem;
   z-index: 1;
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .home .image img {
   max-width: 100%;
   width: 70%;
   height: auto;
   border-radius: 50%;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .home .image img:hover {
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
   transform: scale(1.02);
 }

 .home .content h2 {
   font-size: clamp(3rem, 5vw, 5rem);
   font-weight: 800;
   color: #002057;
   line-height: 1.2;
   margin-bottom: 1.5rem;
 }

 .home .content h2 span {
   color: #ff7b00;
 }

 .home .content p {
   font-size: clamp(1.8rem, 3vw, 2.5rem);
   color: #000;
   font-weight: 600;
   padding: 1rem 0;
 }

 .home .content p span {
   color: rgb(148, 8, 8);
 }

 .home .btn {
   margin-top: 2rem;
   display: inline-flex;
   align-items: center;
   line-height: 0;
   padding: 1.6rem 3rem;
   border-radius: 4em;
   transition: all 0.5s ease;
   color: #fff;
   background: #2506ad;
   box-shadow: 0px 5px 18px rgba(48, 68, 247, 0.6);
   text-decoration: none;
   font-weight: 700;
   font-size: 1.7rem;
   letter-spacing: 0.1rem;
   border: none;
   cursor: pointer;
 }

 .home .btn i {
   margin-left: 0.3rem;
   font-size: 1.5rem;
   transition: 0.3s;
 }

 .home .btn:hover {
   background: #1a047e;
   transform: translateY(-3px);
   box-shadow: 0px 8px 25px rgba(48, 68, 247, 0.8);
 }

 .home .btn:hover i {
   transform: translateX(5px);
 }

    .clients-section {
      display: flex;
      align-items: center;
      gap: 10px;
      
    }
  
    .client-images {
      display: flex;
      position: relative;
    }
  
    .client-images img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid white;
      object-fit: cover;
      position: relative;
      margin-left: -10px;
      box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    }
  
    .client-images img:first-child {
      margin-left: 0;
    }
  
    .client-text {
      font-size: 18px;
      font-weight: bold;
      color: green;
    }

    @media only screen and (max-width: 700px){
      .clients-section {
        gap: 2px !important;
        justify-content: center;

      }
      .client-text {
        font-size: 16px;
      }
    }
 /* Social Icons */
 .socials {
   position: relative;
   margin-top: 4rem;
 }

 .socials .social-icons {
   padding-left: 0;
   margin-bottom: 0;
   list-style: none;
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }

 .socials .social-icons li {
   display: inline-block;
 }

 .social-icons a {
   font-size: 2rem;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   width: 4.4rem;
   height: 4.4rem;
   color: #00d9ff;
   background-color: #09011b;
   border-radius: 100%;
   transition: all 0.3s ease;
   text-decoration: none;
 }

 .social-icons a:hover {
   color: #fff;
   transform: translateY(-3px);
 }

 .social-icons a.github:hover {
   background-color: #0e0e0e;
 }

 .social-icons a.twitter:hover {
   background-color: #00aced;
 }

 .social-icons a.linkedin:hover {
   background-color: #007bb6;
 }

 .social-icons a.dev:hover {
   background-color: #070707;
 }

 .social-icons a.telegram:hover {
   background-color: #0088cc;
 }

 .social-icons a.instagram:hover {
   background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
 }

 /* Typing Animation */
 .typing-text {
   display: inline-block;
   position: relative;
 }

 .typing-text::after {
   content: "|";
   position: absolute;
   right: -5px;
   animation: blink 1s infinite;
 }

 @keyframes blink {

   0%,
   100% {
     opacity: 1;
   }

   50% {
     opacity: 0;
   }
 }

 /* Responsive Design */
 @media (max-width: 991px) {
   .home {
     padding: 2rem;
     text-align: center;
     justify-content: center;
   }

   .home .content {
     flex: 1 1 100%;
     text-align: center;
     padding-top: 5rem;
   }

   .home .image {
     flex: 1 1 100%;
     margin-top: 3rem;
   }

   .home .image img {
     width: 60%;
     margin-left: 0;
   }

   .socials {
     margin-top: 4rem;
     display: flex;
     justify-content: center;
   }

   .socials .social-icons {
     justify-content: center;
   }
 }

 @media (max-width: 768px) {
  .hone-con {
    width: 99%;
    
  }
   .home .image img {
     width: 70%;
   }

   .home .btn {
     position: relative;
     margin: 2rem auto;
   }
 }

 @media (max-width: 450px) {
   .home {
     
     min-height: 90vh;
   }

   .home .content h2 {
     font-size: 3.5rem;
   }

   .home .content h2 span {
     font-size: 3.5rem;
   }

   .home .content p {
     font-size: 2rem;
   }

   .home .content p span {
     font-size: 2rem;
   }

   .home .image img {
     width: 80%;
   }

   .socials {
     margin-top: 4rem;
   }

   .home .btn {
     padding: 1.4rem 2.5rem;
     font-size: 1.5rem;
   }
 }
 @media only screen and (max-width: 700px){
  .socials {
    margin-top: 2px;
  }
 }
/*! about start */
.about-section {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
}

.container-cus {
  width: 100%;
  padding-left: 68px;
  padding-right: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 60px;
}

.profile-card {
  position: relative;
  flex: 1;
  height: 500px;
  aspect-ratio: 3/4;
  flex-shrink: 0;
  
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-card:hover .main-img {
  transform: scale(1.03);
}

.expert-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-label span {
  background: linear-gradient(45deg, #00ff87, #60efff);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  animation: float 3s ease-in-out infinite;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  margin-top: 440px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50px);
  }

  50% {
    transform: translateY(-60px);
  }
}

.glow-border {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(45deg, #00ff87, #60efff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.8;
}

.text-area {
  
  flex: 1;
}

.text-area h1 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(90deg, #00ff87, #60efff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.emoji {
  font-size: 38px;
  margin-left: 8px;
  display: inline-block;
  transform: translateY(-2px);
  animation: bounce 1s infinite;
  -webkit-animation: bounce 1s infinite;
}

.intro-text {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
  text-align: justify;
  max-width: 800px;
}

@media only screen and (max-width: 700px) {
  .container {
    gap: 5px;
  }
    .profile-card{
      padding: 0px 34px;
    }
    .container-cus {
      padding-left: 0;
      padding-right: 0;
    }
}

.know-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #00ff87, #60efff);
  color: #222;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 135, 0.3);
  margin-top: 5px;
}

.know-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.know-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 135, 0.4);
}

.know-button:hover svg {
  transform: translateX(3px);
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #00cc7a;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(-2px);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

@media (max-width: 992px) {
  .container {
    gap: 40px;
  }

  .text-area h1 {
    font-size: 36px;
    margin-bottom: 5px;
  }

  .intro-text {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .alwsy-head {
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
        .text-area {
          text-align: center;
        }
  .intro-text {
    width: 100%;
  }

  .about-section {
    padding: 30px 5px;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .know-button {
    margin: 0 auto;
  }

  .expert-label span {
    font-size: 18px;
    padding: 8px 20px;
    transform: translateY(-30px);
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(-30px);
    }

    50% {
      transform: translateY(-40px);
    }
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 28px;
  }
     .intro-text {
       width: 100%;
     }

  .stats {
    gap: 20px;
    margin-top: 30px;
  }

  .expert-label span {
    font-size: 16px;
    padding: 6px 15px;
  }
    .container-cus {
      padding-left: 0;
      padding-right: 0;
    }
    .text-area {
      text-align: center;
    }
}

/*! about end */

/* ! skill progress start */
skills-cus {
  width: 100%;
  background-color: #ffffff;
  margin: auto;
}
.skill-cus-con {
 padding: 30px 47px;
}
.my-slikk {
  font-size: 4.5rem;
  margin-bottom: 40px;
}

.title {
  font-family: cursive;
  font-size: 2.5rem;
  color: teal;
  
  text-align: center;
}

.my-slikk {
  text-align: center;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;

  margin: 0 auto;
  
}

@media (max-width: 700px) {
  .skill-cus-con {
    width: 98%;
    gap: 10px;
 
  }
    .skill-cus-con {
      padding:  0px;
    }
  .my-slikk {
    font-size: 3rem;
  }
}
@media (max-width: 400px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 990px;
    gap: 10px;
  }
     .my-slikk {
       font-size: 3rem;
     }
}

.circle-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  
}

.circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--color) 0deg, #eee 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
}

.label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  
}

.label h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.label p {
  margin: 0;
  font-size: 1.7rem;
  font-weight: bold;
  color: #ff5a4d;
}
@media only screen and (max-width: 700px){
  .circle-wrapper {
    width: 140px;
    height: 140px;
  }
}
/*! all works start */
 .section-title {
   font-size: 2.5rem;
   font-family: cursive;
   color: teal;
   text-align: center;
   margin-top: 40px;
 }

 .main-title {
   text-align: center;
   font-size: 4.5rem;
   margin-bottom: 30px;
 }

.services-wrapper {
  max-width: 93%;
  margin: 0 auto;
  padding-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid;
  transition: transform 0.3s;
}

 .service-card:hover {
   transform: translateY(-5px);
 }

 .service-icon {
   font-size: 6rem;
   margin-bottom: 1px;
   text-align: center;
 }

 .service-title {
   font-size: 3rem;
   margin: 10px 0;
   text-align: center;
   line-height: 35px;
 }

.service-description {
  font-size: 1.7rem;
  color: gray;
  margin-bottom: 15px;
  text-align: center;
  flex-grow: 1;
}

.service-btn {
  padding: 10px 25px;
  font-size: 1.5rem;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  align-self: center;
  margin-top: auto;
}
 /* Border color classes */
 .border-purple {
   border-color: #5a31f4;
 }

 .border-blue {
   border-color: #5ac7f4;
 }

 .border-orange {
   border-color: #f4b631;
 }

 .border-red {
   border-color: #f44531;
 }

 .border-green {
   border-color: #4fd34a;
 }

 .border-magenta {
   border-color: #cc2cff;
 }

 /* Button color classes */
 .btn-purple {
   background: #5a31f4;
 }

 .btn-blue {
   background: #5ac7f4;
 }

 .btn-orange {
   background: #f4b631;
 }

 .btn-red {
   background: #f44531;
 }

 .btn-green {
   background: #4fd34a;
 }

 .btn-magenta {
   background: #cc2cff;
 }

 @media only screen and (max-width: 700px){
  .services-wrapper {
    width: 98%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: auto;
  }
  .section-title {
    margin-top: 3px;
    margin-bottom: 2px;
  }
  .main-title {
    margin-bottom: 3px;
    line-height: 36px;
    font-size: 3rem;
  }
        .services-wrapper {
          padding-top: 5px;
        }
 }

/* skills section starts */
.skills {
  min-height: 90vh;
  background: linear-gradient(to bottom, #57059e, #4a00e0);
}
.skills h2 {
  color: #fff;
}
.skills .heading span {
  color: rgb(255, 230, 0);
}
.skills .container {
  background: rgba(0, 0, 22, 0.4);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
}
.skills .container .row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  flex-wrap: wrap;
  gap: 1.8rem;
}
.skills .container .bar {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 22, 0.9);
  transition: 0.2s;
}
.skills .container .bar:hover {
  box-shadow: 0 8px 10px rgba(0, 2, 68, 0.8) !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
}
.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.skills .container .bar .info i {
  font-size: 4rem;
}
.skills .container .bar .info span {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Poppins";
  margin-left: 0.5rem;
}
/* skills media queries starts*/
@media screen and (max-width: 600px) {
  .skills .container {
    padding: 0;
    margin: 0;
  }
  .skills .container .row {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: 1rem;
  }
  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
  .main-title {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
    .services-wrapper {
      padding-top: 5px;
    }
}
/* skills media queries ends*/
/* skills section ends */





/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
             .services-wrapper {
               padding-top: 5px;
             }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.2rem;
  font-size: 2rem;
  background: #ffae00;
  color: rgb(13, 0, 44);
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */
