* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* navigation bar */
.navi {
    background: linear-gradient(to right, black);
}

.nav-link.name {
    color: aliceblue;
    font-weight: bold !important;
}

.nav-link.name:hover {
    color: lightskyblue;
    /* Change this color to whatever you want */
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.parallax1 {
    background-image: url('java-script-logoon-dark-wood-background-7yyxqxekizvuj4vg.jpg');
}

.parallax2 {
    background-image: url('js.jpg');
}
.parallax3 {
    background-image: url('jss.jpg');
}

.parallax h1, .parallax h2{
    font-size: 36px;
    margin-bottom: 10px;
}

.parallax p {
    font-size: 18px;
}

/* About Section */
.about, .more-about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about h2, .more-about h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.about p, .more-about p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.images img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .parallax h1, .parallax h2 {
        font-size: 28px;
    }

    .parallax p {
        font-size: 16px;
    }

    .images {
        flex-direction: column;
    }
}
/* footer */

.footer-dark {
    padding:50px 0;
    color:#f0f9ff;
    background-color:#282d32;
  }
  
  .footer-dark .text {
    padding:0 15px;
  }
  
  .footer-dark h3 {
    margin-top:0;
    margin-bottom:12px;
    font-weight:bold;
    font-size:16px;
    border-left: 3px solid #eeeeee;
    padding-left: 10px;
  }
  
  .footer-dark ul {
    padding:0;
    list-style:none;
    line-height:1.6;
    font-size:14px;
    margin-bottom:0;
  }
  
  .footer-dark ul li{
    padding: 0 0 .2em 1.0em; 
  }
  
  .footer-dark ul a {
    color:inherit;
    text-decoration:none;
    opacity:0.6;
  }
  
  .footer-dark ul a:hover {
    opacity:1.0;  
    font-size:16px;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
  }
  
  .footer-dark ul.social li{
    padding: 3px 0;
  }
  .footer-dark ul.social li a i {
      margin-right: 5px;
    font-size:25px;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
  }
  .footer-dark ul.social li:hover a i {
    font-size:30px;
    margin-top:-10px;
  }
  .footer-dark ul.social li a{
    color:#ffffff;
  }
  .footer-dark ul.social li a:hover{
    color:#eeeeee;
  }
  
  @media (max-width:767px) {
    .footer-dark .item:not(.social) {
      text-align:center;
      padding-bottom:20px;
    }
  }
  
  .footer-dark .item.text {
    margin-bottom:36px;
  }
  
  @media (max-width:767px) {
    .footer-dark .item.text {
      margin-bottom:0;
    }
  }
  
  .footer-dark .item.text p {
    opacity:0.6;
    margin-bottom:0;
  }
  
  .footer-dark .item.social {
    text-align:center;
  }
  
  @media (max-width:991px) {
    .footer-dark .item.social {
      text-align:center;
      margin-top:20px;
    }
  }
  
  .footer-dark .item.social > a {
    font-size:20px;
    width:36px;
    height:36px;
    line-height:36px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    box-shadow:0 0 0 1px rgba(255,255,255,0.4);
    margin:0 8px;
    color:#fff;
    opacity:0.75;
  }
  
  .footer-dark .item.social > a:hover {
    opacity:0.9;
  }
  
  .footer-dark .copyright {
    text-align:center;
    padding-top:24px;
    opacity:0.3;
    font-size:13px;
    margin-bottom:0;
  }