*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
    body {
        overflow: hidden;
        position: relative;
    }

    body {
      background: #eee;
      font-family: 'Montserrat','Montserrat Alternates', 'Roboto', 'Quicksand','Outfit', sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }
    .banner{
        position: relative;
    }
    swiper-container {
      width: 100%;
      height: 100vh;
    }

    swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    swiper-slide::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgb(2, 6, 22), rgba(15, 34, 112, 0.781), rgb(47, 74, 193));
      opacity: 80%;
      transition: opacity 0.5s ease;
    }
   
    swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero{
        position: absolute;
        top: 20%;
        left: 10%;
        width: 60%;
        display: flex;
        justify-content: start;
        align-items: start;
        z-index: 1;
    }
    .hero-content{
        padding: 20px;
    }
    .hero-text-suapon{
        font-size: 50px;
        font-weight: 700;
        color: #fff;
        text-align: start;
        margin-bottom: 20px;
    }
    .sub-hero-text{
        font-size: 60px;
        font-weight: 400;
        color: #c1bedf;
        text-align: start;
        margin-bottom: 10px;
        margin-top: 20px;
    }
    .hero-description{
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.8px;
        color: #FFFFFF;
        font-family: "Montserrat Alternates", sans-serif;
        margin-top: 20px;
        text-align: start;
        max-width: 800px;
        width: 100%;
    }
    .country-wrapper{
        margin-top: 20px;
        display: flex;
        gap: 10px;
        max-width: 600px;
    }
    .country-select{
        width: 100%;
        height: 50px;
        border-radius: 5px;
        background-color: #fff;
        border: none;
        padding: 10px;
        font-size: 16px;
        color: #000;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        outline: none;
        font-family: 'Montserrat', sans-serif;
    }
    .countryBtn{
        height: 50px;
        border-radius: 5px;
        background-color: #04306E;
        border: 1px solid #ffffff36;
        padding: 10px 20px;
        font-size: 16px;
        color: #FFFFFF;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        outline: none;
        font-family: 'Montserrat', sans-serif;
    }
    @media screen and (max-width: 768px) {
        .hero{
            top: 10%;
            left: 5%;
            width: 100%;
        }
        .hero-text-suapon{
            font-size: 30px;
        }
        .sub-hero-text{
            font-size: 45px;
        }
        .hero-description{
            font-size: 15px;
            max-width: 100%;
        }
        .country-wrapper{
            flex-direction: column;
            gap: 5px;
        }
        .country-select{
            width: 70%;
        }
        .countryBtn{
            width: 100px;
        }
        
    }
    @media screen and (max-width: 414px) {
        .hero-text-suapon{
            font-size: 30px;
        }
        .sub-hero-text{
            font-size: 35px;
        }
        .country-select{
            width: 90%;
        }
        .countryBtn{
            width: 90%;
        }
       
        .countryBtn{
            padding: 10px;
           
        }
    }