* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    background: #f8f9fa;
  }

  header {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
  }
  header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
  }
  header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-in-out;
  }

header a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2c5364;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  .section h2 {
    font-size: 2.5rem;
margin-bottom: 20px;
    text-align: center;
  }
  .section p, .section li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .swiper {
    width: 100%;
    height: 720px;
    /* margin-bottom: 40px; */
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    padding: 20px;
  }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: -1;
  }
  
  /* .slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin-left: 5rem;
    padding: 20px;
    animation: fadeInUp 1s ease-in-out;
  } */

  .section {
    padding: 60px 20px;
    max-width: 90%;
    margin: auto;
    /* background-color: #fff; */
    margin-bottom: 20px;
    border-radius: 12px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
  }

  .section:nth-child(even) {
    /* background-color: #f0f8ff; */
  }
  h2 {
    font-size: 2.5rem;
    color: #203a43;
    margin-bottom: 20px;
    text-align: center;
  }
  h3 {
    font-size: 1.6rem;
    margin-top: 30px;
    color: #2c5364;
  }
  p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  ul {
    padding-left: 20px;
  }
  li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .feature-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 5px solid #2c5364;
    text-align: center;
  }
  .feature-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    transform: translateY(-5px);
  }
  .feature-box .icon {
    font-size: 2.5rem;
    color: #2c5364;
    margin-bottom: 12px;
    display: block;
  }
  .feature-box strong {
    display: block;
    font-size: 1.2rem;
    color: #2c5364;
    margin-bottom: 8px;
  }
  .feature-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .img {
    padding: 2rem;
    margin: .7rem auto;
    /* width: 100%; */
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .img img {
    width: 100%;
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .final-link {
    padding: 0px 20px;
    max-width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: #fff; */
    margin-bottom: 40px;
    border-radius: 12px;
  }

  a.site-link, a.Youtube {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2c5364;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }



  .slider-container {
      width: 100%;
      overflow: hidden;
      background: white;
      /* border: 1px solid #ccc; */
      /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    }

    .slider-track {
      display: flex;
      width: max-content;
      animation: scroll 30s linear infinite;
    }

    .slider-track img {
      height: 100px;
      margin-right: 20px;
      object-fit: contain;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }