*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
    scroll-behavior: smooth;
}
.container
{
    display: flex;
    justify-content: space-around;
    padding: 10px;
    
}

.nav-container
{
    display: flex;
    justify-content: space-around;
    background-color: black;
}
.menu-item a
{
    text-decoration: none;
    color:white;
}
.header
{
    text-align: center;
}
.hamburger {
    display: none;
  }

.menu {
  
  padding: 15px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    color: white;
  }

  .menu {
    display: none;
    flex-direction: column;
    padding: 10px 0px 0px 0px;
    max-height: 0; 
    transition: max-height 0.3s ease;
    gap:10;
  }


  .menu.show {
    display: flex;
    max-height: 500px;
    transition: max-height 0.3s ease;
  }

  .nav-container {
    flex-direction: column;
    padding: 15px;
  }

  .offered-skills-list
  {
    justify-content: center;
  }
  .content p
  {
    font-size:15px;
  }
  .container
  {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .detail
  {
    width: calc(100%-10px);
  }
}



marquee
{
    padding: 10px;
}
.banner
{
    background-image: url('pic2.png');
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 23px;
    position: relative;
    
}
.content
{
    width:70vw;
    z-index: 1;
}
.content h2
{
padding: 10px 10px 50px 10px;
font-size:50px ;
color:white;
}

.content p
{
    line-height: 28px;
    color:white;
    font-size:20px ;
    text-align: justify;
}

.banner .overlay
{
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.7);
z-index: 1;
height: 100%;
width: 100%;
z-index: 0;
}

.offered-skills{
    padding: 20px;
    min-height:100vh ;
    
}

.detail
{
    box-shadow: 0px 0px 10px grey;
    padding: 15px;
    margin: 10px;
    line-height:30px;
    min-height: 150px;
    width: 300px;
    padding: 50px;
    border-radius: 10px;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .detail:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    
.offered-skills-list
{
    display: flex;
    flex-wrap: wrap;
    
    padding: 10px;
    gap:25px;
}

.offered-skills .heading2
{
    text-align: center;
    margin:30px 0px 30px 0px;
}

.gallery-card
{
    width: 30%;
}
.gallery-card img
{
    height:100%;
    width: 100%;
}
.center
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin:50px 0px 0px 0px;
}

  .parent {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  video {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  
    .cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 20px;
      margin-top: 40px;
    }

    .card {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      width: 350px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .card h2 {
    
      color: #333;
      margin:15px 0px;
    }

    .card p {
      color: #555;
      font-size: 15px;
      line-height: 1.6;
      padding:15 0px;
    }

    @media (max-width: 768px) {
      .card {
        width: 90%;
      }
    }

    .p-15
    {
      padding: 15px;;
    }