  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
  font-family: "Poppins", sans-serif;
   /* font-family: Arial, sans-serif; */
    background: #0f172a;
    color: white;
  }


  

  
  [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: #111827;
    position: fixed;
    width: 100%;
    height: 27px;
    top: 0;
    z-index: 1000;

  }

  .logo {
    font-size: 24px;
    font-weight: bold;
  }

  .menu {
    list-style: none;
    display: flex;
    gap: 30px;
  }

  /* Style the anchor links */
  .menu li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
  }

  /* Hover color change */
  .menu li a:hover {
    color: rgb(13, 230, 254);
  }

  /* Underline effect on hover and active link */
  .menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: rgb(13, 230, 254);
    transition: width 0.3s ease;
  }

  .menu li a:hover::after,
  .menu li a.active::after {
    width: 100%;
  }

  /* Hamburger icon style */
  .hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  /* Responsive: Mobile view */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }

    .hamburger {
      display: block;
    }

    .menu {
      display: none;
    flex-direction: column;
    background: #1e293b; /* A slightly lighter background looks good */
    position: absolute;
    top: 64px;          /* This should be the height of your navbar */
    right: 20px;        /* Changed from right: 0 to give it space */
    width: 250px;       /* CHANGED: Was 100%. Set to a fixed width */
    padding: 10px;      /* Reduced padding a bit */
    
    /* ADD THESE LINES for a cleaner look */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

    .menu.show {
      display: flex;
    }

    .menu li {
      margin: 10px 0;
      text-align: center;
    }
  }

  .hero {
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
    flex-wrap: wrap;
  }

  .hero-text {
    max-width: 500px;
  }

  .hero-text h3 {
    font-size: 20px;
    color: #38bdf8;
  }

  .hero-text h1 {
    font-size: 40px;
    margin-top: 10px;
  }

  .hero-text h4 {
    font-size: 20px;
    margin: 10px 0;
  }

  .hero-text span {
    color: #38bdf8;
  }

  .hero-text p {
    margin: 15px 0;
    color: #cbd5e1;
  }

  .icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #38bdf8;
  }

  .btn {
    display: inline-block;
    margin-top: 20px;
    background: #38bdf8;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

.glass-btn {
  margin-left: 12px;
  padding: 12px 28px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.5);
  border-radius: 10px;
  color: #38bdf8;
  font-weight: bold;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.glass-btn:hover {
  background: rgba(56,189,248,0.2);
  box-shadow: 0 0 20px rgba(56,189,248,0.6);
  transform: scale(1.05);
}




  h3{
    color: #38bdf8;
  }

  .hero-img {
    text-align: center;
    margin-top: 20px;
  }

  .circle-bg {
     background: linear-gradient(135deg, #38bdf8, #06b6d4);
  box-shadow: 0 0 25px rgba(56,189,248,0.4);

    background-color: rgb(13, 230, 254);
    border-radius: 50%;
    width: 40vw;
    max-width: 270px;
    aspect-ratio: 1 / 1; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  .circle-bg img {
    width: 96%;
    height: 96%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  section {
    text-align: center;
    padding: 80px 40px;

  }
#about {
  scroll-margin-top: 65px;
}




 .about {
    max-width: 900px;          
    margin: 50px auto;         
    padding: 20px;             
  }

  .about p {
    text-align: justify;       
    line-height: 1.7;           
    font-size: 1.1rem;
    color: #d6d6d6;
    font-family: "Poppins", sans-serif;
  }

 

  @media (max-width: 768px) {
    .about {
      padding: 15px;
    }
    .about p {
      font-size: 1rem;
      line-height: 1.6;
    }
  }

   .achievements {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
  }

  .achievements h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #fffafa;
    font-family: "Poppins", sans-serif;
  }

  .achievements ul {
    list-style-type: none; /* remove default bullets */
    padding: 0;
  }

  .achievements li {
    background: transparent;
    margin-bottom: 15px;
    padding: 15px 20px;
    border: 0.5px solid #747474;
    border-radius: 5px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cac5c5;
    transition: transform 0.3s, background 0.3s;
  }

  .achievements li:hover {
    transform: translateX(5px);
    background: #000000;
  }

  @media (max-width: 768px) {
    .achievements {
      padding: 15px;
    }

    .achievements li {
      font-size: 1rem;
      padding: 12px 15px;
    }
  }


  .more-projects{
    color: rgb(203, 226, 223);
    text-decoration: none;
  }
.more-projects:hover{
    color: Blue;
    text-decoration: underline;
  }
  .projectimages{

    margin-top: -11.50%; margin-left: -11.50%; margin-bottom: 2%; border-radius: 15px;border-color: rgb(13, 230, 254);
  }


      /* Container: left and right side by side */
      .skills-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap; /* makes it responsive */
}
      .technical, .professional {
  flex: 1;
  min-width: 300px;
}
      h2 {
  text-align: center;
  margin-bottom: 20px;
}

      /* Technical Skills */
      .skill {
        margin-bottom: 20px;
      }
      .skill-name {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
      }
      .bar {
        background: #233554;
        height: 8px;
        border-radius: 5px;
        overflow: hidden;
      }
      .bar-fill {
        height: 100%;
        width: 0;
        background: rgb(13, 230, 254);
        transition: width 1.5s;
      }

      /* Professional Skills */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

      .circle-skill {
        text-align: center;
        margin-bottom: 30px;
      }
      svg {
        transform: rotate(-90deg);
      }
      circle {
        fill: none;
        stroke-width: 10;
        stroke-linecap: round;
      }
.bg {
  stroke: #233554;
}

 .progress {
  stroke: rgb(13, 230, 254);
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.5s;
}
.percent-text {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .skills-container {
    flex-direction: column;
  }
  .pro-grid {
    grid-template-columns: 1fr;
  }
  /* This will stack the buttons */
  .hero-text .btn,
  .hero-text .glass-btn {
    display: block;     /* Makes each button take its own line */
    margin-left: auto;   /* Centers the buttons */
    margin-right: auto;  /* Centers the buttons */
    width: 80%;         /* Gives them a nice, consistent width */
    text-align: center; /* Ensures the text inside is centered */
  }

  /* This adds space between the two stacked buttons */
  .hero-text .glass-btn {
    margin-top: 15px; 
  }


}




  .services .cards,
  .projects .cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .card {
    background: #1e293b;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
  }





  .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(56,189,248,0.3);
}





  footer {
    text-align: center;
    padding: 20px;
    background: #111827;
    color: #94a3b8;
    margin-top: 40px;
  }





  .contact-link {
  color: #38bdf8; /* light blue */
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-link:hover {
  color: #facc15; /* yellow on hover */
  text-decoration: underline;
}


  #contact {
    position: relative;
    overflow: hidden;
  }
  #contact #contactForm {
    margin-top: 30px;
  }

 
  .social-links {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
  }

  .social-links .social-btn {
      font-size: 24px;
      color: #fff;
      background: #0a96d6;
      padding: 12px;
      border-radius: 50%;
      transition: 0.3s;
  }

  .social-links .social-btn:hover {
      background: rgb(253, 0, 67);
      color: #fff;
      transform: scale(1.1);
  }



  .form-control {
    background: transparent;
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    border-radius: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    padding: 8px 10px;
      color: #fff;  /* 👈 always keep text white */
  }

  .dark_bg .form-control {
    border: 1px solid #fff;
  }

  .form-control:focus {
      color: #fff; /* Keep the text color white when focused */
      background: transparent;
      box-shadow: none;
      outline: none;
      border-color: rgb(11, 255, 255);
  }
  .contact-form-area {
    background: transparent;
    margin-left: 30%;
    margin-right: 30%;
  }
  .contact-form-area h4 {
    font-size: 18px;
    color: #222;
    text-transform: uppercase;
    margin: 10px 24px;
  }
  .dark_bg .contact-form-area h4 {
    color: #fff;
  }
  .footer-right-contact {
    padding: 0px;
    margin-top: 30px;
  }
  .footer-right-area {
    border: 1px solid #ccc;
    padding: 15px 10px;
  }
  .dark_bg .footer-right-area {
    border: 1px solid #fff;
  }
  .footer-right-contact .single-contact {
    margin: 10px 22px;
    padding: 3px 55px;
    position: relative;
    color: #666;
  }
  .footer-right-contact .single-contact p {
    margin-bottom: 5px;
  }
  .dark_bg .footer-right-contact .single-contact p {
    color: #fff;
  }
  .footer-right-contact .single-contact p a {
    color: #333333;
  }
  .dark_bg .footer-right-contact .single-contact p a {
    color: #fff;
  }
  .footer-right-contact .contact-icon {
    background: rgb(11, 245, 241);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    height: 40px;
    left: 0;
    padding-top: 8px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
  }
  .text-danger {
    font-size: 14px;
    margin-top: 10px;
  }
  .list-unstyled li {
    color: #d9534f;
  }
  #conatiner-map {
    margin-top: 30px;
    text-align: center;
    background-color: #fff;
    height: 370px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 101;
    width: 100%;
  }
  