* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background:#e0d9d9
    }

    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #4c82b5; /* Aqua blue */
      padding: 15px 30px;
      color: white;
      height: 90px;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
    }

    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      margin: 0 15px;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
      font-size: 18px;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: #4c82b5;
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

     /* Container */
    .video-container {
      width: 100%;
      height: 650px;
      overflow: hidden;
      position: relative;
    }

    /* Video Styling */
    .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover; /* makes it responsive */
    }

    /* Optional overlay content */
    .overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
    }

    .overlay h1 {
      font-size: 80px;
      opacity: 0.7;
    }

    .overlay p{
        font-size: 24px;
        opacity: 0.7;
    }


    .container {
        width: 90%;
        max-width: 1100px;
        margin: 50px auto;
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border: 15px solid #4c82b5;
    }

    .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .image {
        flex: 1 1 45%;
    }

    .image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
    }

    .text {
        flex: 1 1 45%;
    }

    .text h2 {
        font-size: 32px;
        color: #4c82b5;
        margin-bottom: 15px;
    }

    .text p {
        font-size: 16px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .slider {
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 15px solid #4c82b5;
}

.slides {
    display: flex;
    transition: transform 1.5s ease; /* slow smooth */
}

.slides img {
    width: 100%;
    flex: 0 0 100%; /* each image takes full width */
    height: 400px;
    object-fit: cover;
}

/* Buttons */
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
}

.prev { left: 10px; }
.next { right: 10px; }

   
.image-container {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding: 15px;
    overflow-x: auto; /* scroll on small screens */
   

}

.image-container img {
    width: 20%; /* 5 images in one line */
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
    border: 2px solid white;
    
}

.footer{
    background:#4c82b5;
    color:black;
    padding:40px 20px;
   
}

.footer-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:30px;
}

.footer-box{
    flex:1 1 250px;
}

.footer-logo img{
    width:120px;
    margin-bottom:15px;
}

.footer h3{
    margin-bottom:15px;
    color:black;
}

.footer p, .footer a{
    font-size:14px;
    color:black;
    text-decoration:none;
    line-height:1.6;
}

.footer a:hover{
    color:black;
}

.social-icons{
    margin-top:15px;
}

.social-icons i{
    margin-right:10px;
    font-size:18px;
    cursor:pointer;
    transition:0.3s;
}

.social-icons i:hover{
    color:black;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #333;
    margin-top:30px;
    padding-top:15px;
    font-size:13px;
    color:black;
}



    /* Mobile */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #7bdcb5;
        flex-direction: column;
        text-align: center;
        display: none;
        z-index: +1;
      }

      .nav-links li {
        margin: 15px 0;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
      .overlay h1 {
        font-size: 24px;
      }

       .content {
            flex-direction: column;
            text-align: center;
        }

        .text h2 {
            font-size: 24px;
        }

        .text p {
            font-size: 15px;
        }

          .slides img { height: 250px; }

          .image-container img {
        width: 70%; /* bigger images + scroll */
    }

    .footer-container{
        flex-direction:column;
        text-align:center;
    }
   
}