* {
    margin: 0;
    padding: 0;
}
body{
    font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.main-container {
    /* position: relative; */
    background-image: url("./images/background image.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    object-fit: contain;
    overflow: hidden;
}

.bg-col{
    background-color: rgba(0 , 0, 0, 0.8);
    height: 100vh;
}


.nav {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    position: relative;
}

.nav a img {
  width: 180px;
    position: relative;
    left: 150px;
    /* bottom: 12px; */
}

.nav button {
    position: relative;
    right: 150px;
    padding: 0px 20px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    background-color: #e50914;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 35px; 
    line-height: 30px;
    transition: 0.3s ease all;
}


.nav button:hover{
     background-color: #d6323a;
}


.text{
    text-align: center;
    align-items: center;
    margin: 100px auto;
}

.heading{
    font-size: 70px;
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
}

.para1{
       font-size: 20px;
    color: white;
    font-weight: 800;
    margin-bottom: 40px;
}

.para2{
      font-size: 15px;
    color: white;
    margin-bottom: 14px;
}


.inputF{
    flex: 1;
    padding: 17px 40px;
    font-size: 16px;
    width: 300px;
    border: none;
    outline: none;
    color: white;
    border-radius: 5px;
    border: 1px solid white;
    background-color: rgba(255, 255, 255, 0.1);
}


.start-btn {
    padding: 17px 15px;
    background-color: #e50914;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 3px;
    border-radius: 5px;
    margin-left: 10px;
}

.start-btn:hover {
    background-color: #f6121d;
}

main{
    background-color: black;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.section{
    
    padding-top: 20px ;
    
}

.section h1{
    color: white;
    margin: 0 0 12px 90px;
    font-size: 30px;
}


.dropdown{
    padding: 10px 20px;
    background-color: rgb(27, 25, 25);
    color: white;
    position: relative;
    margin-right: 20px;
    outline: none;
    font-size: 16px;
    left: 90px;
    border-radius: 5px;
    border: 1px solid rgb(177, 172, 172);
}
.dropdown  option {
    background-color: rgb(217, 209, 209);
}

.card-container{
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.cards{
    width: 176px;
    height: 240px;
    border-radius: 8px;
    position: relative;
      left: 90px;
      transition: 0.5s ease all;

}

.cards img{
    border-radius: 8px;
    width: 100%;
}

.cards h1{
    position: absolute;
    left: -20px;
    bottom: -5px;
    color: black;
    text-shadow: 
        -2px -2px 0 #fff,
         2px -2px 0 #fff, 
        -2px  2px 0 #fff, 
         2px  2px 0 #fff; 
    font-size: 100px;

}

.cards:hover{
     transform: scale(1.1) translateY(-3px);
}

.section2{
   padding-top: 80px ;

}


.section2 h1{
      color: white;
    margin: 0 0 12px 90px;
    font-size: 30px;
}

.cards2{
      display: flex;
    gap: 20px;
    margin-top: 30px;
}

.card2{
     width: 210px;
    height: 280px;
    border-radius: 8px;
    position: relative;
      left: 90px;
     background: linear-gradient(#2c2238, #2c2238, #7d3971);
       padding: 20px;
}

.card2 h2{
    line-height: 30px;
    margin-bottom: 30px;
    color: white;
    font-size: 25px;
  
}


.card2 p{
   color: rgb(180, 169, 169); 
   font-weight: 400;
   line-height: 20px;
   font-size: 17px;
}


.frequent{
       padding-top: 80px ;
}

.frequent h1{
      color: white;
    margin: 0 0 20px 90px;
    font-size: 30px;
}

.freq{
    display: flex;
    justify-content: center;
    flex-direction: column;

}
.freq-uent{
     margin: 0 0 12px 90px;
     padding: 20px;
    width: 1010px;
    background-color:#2D2D2D;
    position: relative;
}

.freq-uent h2{
    color: white;
    font-weight: 400;
  
}

.freq-uent span{
    color: white;
    position: absolute;
    right: 30px;
    top: 6px;
    font-size: 50px;

}

.freq-uent:hover{
    background-color: #535050 ;
        transition: 0.5s ease all;
    
}

.footer{
    width: 800px;
    padding: 50px;
    margin: 0 0 12px 90px;
}

.footer p{
    color: #b5aeae;
      /* margin: 0 0 12px 90px; */
      font-size: 18px;
      font-weight: 400;
      text-decoration: underline;

}


.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-column a {
    margin: 10px 0;
     color: #b5aeae;
      /* margin: 0 0 12px 90px; */
      font-size: 15px;
      font-weight: 200;
      text-decoration: underline;
}




.language-selector {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
     margin-bottom: 30px;
    cursor: pointer;
}

.language-selector:hover {
    background-color: #444;
   
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
    margin: 0;
}