.header{
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-size: cover;
}
.header::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00000053;
    z-index: -1;
}
nav{
    height: 100px;
    padding: 20px 0;
    background-color: white;
    display: flex;
}

nav .main-container{
    display: flex;
    align-items: center;
    justify-content: space-between;


}

nav .logo-container{
    width: 150px;
    height: 45px;
}

nav .logo-container img{
    width: 100%;
    height: 100%;
}

nav .element ul{
    display: flex;
    list-style: none;
    gap: 20px;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    align-items: center;
}

nav .element ul a{
    color: black;
    position: relative;
}


.dropbtn {
    background-color: white;
    color: var(--main-color);

    padding: 4px 10px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid black;
    border-radius: 10px;
    cursor: pointer;
  }
  .dropbtn i{
   font-size: 14px;
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    width: 60px !important  ;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    margin-top: 1px;
    text-align: center;
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 10px;
    z-index: 99999999;
  }



  .dropdown-content a {
    color: #fff !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }


  .dropdown:hover .dropdown-content {
    display: block;
  }

.element .dropbtn{
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.element .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;

  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }


  .dropdown:hover .dropdown-content {
    display: block;
  }

  .landing {
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .landing .landing-text{
    color: white;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 30px;

  }
  .landing-text h4{
    line-height: 1.6;
  }
  .landing .landing-text a{
    width: 130px;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px ;
    border-radius: 10px;
    color: white !important;

  }
  .landing .landing-text a:hover{
    background-color: var(--main-color);

  }
  .landing-img img{

    width: 100%;
    height: 100%;
  }
  .test{
    position: absolute;
    background-color: red;
    width: 380px;
    height: 351px;
    z-index: 2;
    top: 0  ;
  }
.mask1 {
    position: relative;
    width: 380px;
    height: 350px;
    -webkit-mask-image: url(../images/image.png);
    mask-image: url(../images/image.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #000; /* The color inside the masked area */
    mask-size: 380px 350px;
}

.mask1 {
  position: relative;
  width: 380px;
  height: 350px;
  padding: 10px; /* Space for the border */
  background-color: #BAE6FF; /* Border color */
  -webkit-mask-image: url(../images/image.png);
  mask-image: url(../images/image.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%; /* Ensure mask fits the container */
  mask-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensure content stays within the mask */
  margin-right: auto;
}

.landing-img img {
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/image.png); /* Apply the same mask to the image */
  mask-image: url(../images/image.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%; /* Ensure the mask fits the image */
  mask-size: 100%;
}
