* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: black;
    color: white;
    line-height: 1.6;
  }
 
/* slider */
.img_container{
  padding-top: 10rem;
    margin: 0;
      height: 40%;
     /* background: #111;*/
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      font-family: sans-serif;
}

.carousel {
      width: 400px;
      height: 300px;
      perspective: 1000px;
      position: relative;
    }

    .carousel__container {
      width: 70%;
      height: 70%;
      position: absolute;
      transform-style: preserve-3d;
      transition: transform 1s;
    }
.container .para{
  background-color: black;
}
    .carousel__slide {
      position: absolute;
      width: 100%;
      height: 100%;
    }
    p{
      color: white;
      background-color: rgb(116, 197, 225);
    }

    .carousel__slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    h3{
      color: black;
      text-align: center;
    }

    .buttons {
      margin-top: 20rem;
    }

    button {
      padding: 10px 15px;
      margin: 0 5px;
      border: none;
      background: rgb(116, 197, 225);
      color: white;
      cursor: pointer;
      border-radius: 5px;
      font-size: 16px;
    }

    button:hover {
      background: rgb(116, 197, 225);
    }
  


/* end of slider */




  a {
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    margin: 0 auto;
  }
  
  header {
    background: rgb(116, 197, 225);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
  }
  
  .header-content h1 {
    font-size: 3rem;
    font-weight: 600;
  }
  
  .header-content .subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  header .btn {
    display: inline-block;
    background: rgb(48, 117, 140);
    color: white;
    padding: 12px 25px;
    font-size: 1.1rem;
    border-radius: 30px;
    margin-top: 20px;
    transition: 0.3s;
  }
  
  header .btn:hover {
    background: grey;
  }
  
  .section {
    padding: 60px 0;
  }
  
  h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .skills-grid,
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
  }
  
  .skill,
  .project {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .skill h3,
  .project h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .project p {
    margin-bottom: 20px;
    color: #666;
  }
  
  .project .btn {
    background: rgb(116, 197, 225);
    color: white;
  }
  
  .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .project-img:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
  
  #contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  #contact input,
  #contact textarea {
    padding: 15px;
    font-size: 1.1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  #contact button {
    background: rgb(116, 197, 225);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
  }
  
  #contact button:hover {
    background: grey;
    color: white
  }
  
  footer {
    background: rgb(116, 197, 225);
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  footer p {
    margin: 0;
    font-size: 1rem;
  }

  .footer_para{
    background-color: rgb(116, 197, 225);

  }
  
  /* Animations */
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  .section {
    animation: fadeIn 1s ease-out;
  }
  