@import url('https://fonts.cdnfonts.com/css/geometria');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Geometria', sans-serif;;
}
.container{
    width: 90%;
    margin: 0 auto;
}
/* header */
header li {
    margin-left: 20px;
}
header li :hover{
    text-decoration: underline;
}
/* header end */

/* banner start */
/* help by AI */
.slider-container {
        max-width: 1350px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        height: 450px;
      }

      .slider {
        display: flex;
        transition: transform 0.5s ease;
        position: relative;
      }

      .slide {
        min-width: 100%;
        height: 450px;
        object-fit: cover;
      }

      .thumbnail-container {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        background-color: #f0f0f0;
      }

      .thumbnail {
        width: 100px;
        height: 100px;
        object-fit: cover;
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.3s ease;
        border: 2px solid transparent;
      }

      .thumbnail.active,
      .thumbnail:hover {
        opacity: 1;
        border-color: #007bff;
      }

      /* Scrollbar styling for thumbnail container */
      .thumbnail-container::-webkit-scrollbar {
        height: 10px;
      }

      .thumbnail-container::-webkit-scrollbar-track {
        background: #f1f1f1;
      }

      .thumbnail-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
      }

      .thumbnail-container::-webkit-scrollbar-thumb:hover {
        background: #555;
      }
      /* banner end */
      .about .about-img img{
        border-radius: 100%;
        width: 200px;
        height: 200px;
        object-fit: cover;
        margin-right: 25px;
      }
      .about .about-text{
        width: 50%;
      }
      /* about end */

      /* background start */
      .senario{
        background-image: url(/assets/slider/img2.jpg);
        height: 500px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
      }
      /* background end */
      /* footer start */

      /* contact */
      .contact{
        border-bottom: 1px solid #47453d;
        margin-bottom: 20px;
      }
      .row-box {
        display: flex;
        flex-direction: row;
        gap: 1rem;
      }
      
      @media (max-width: 768px) {
        .row-box {
          flex-direction: row;
        }
      }
      
      input,
      textarea {
        background-color: #262626;
        color: #e5e5e5;
        border: none;
        outline: none;
        transition: background-color 0.3s ease;
      }
      
      input:focus,
      textarea:focus {
        background-color: #333333;
      }
      
      button {
        transition: background-color 0.3s ease;
      }
      
      button:hover {
        background-color: #404040;
      }
  /* contact end  */

  /* social media */
  .icons ul li a{
    margin-left: 30px;
  }
  /* social media end */
  /* end code */