*{
    margin: 0;
    padding: 0;
    font-family: 'Noto Serif', serif;
    font-family: 'Poppins', sans-serif;
    /* background-image: url(bg.jpeg); */
    /* background-image: linear-gradient(rgb),url("bg.jpeg"); */
}
.dropbtn {
    color: rgb(209, 128, 65);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
  }
.dropdown {
    position: relative;
    display: inline-block;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: rgb(48, 55, 62);}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #483c45;}
body {
    background-image: url("/Media/bg2.jpg");
    background-color: #cccccc;
   }
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("/Media/bg.jfif");
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6% ;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position:relative;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 13px;

}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
}
.nav-links ul li:hover::after{
    width: 100%;
    transition: 0.5s;
}
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box title{
    font-size: 60px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 15px;
    color: white
}
.hero-button{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 12px 35px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-button:hover{
    border:1px solid orange;
    background: red;
    transition: 1s;
}

.about{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 35px;
    font-weight: 600;
}
p{
    padding-top: 15px;
    color: #777;
    font-weight: 300;
    line-height: 22px;
    font-size: 15px;
    padding-bottom: 50px;
}

.cont{
    width: 60%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(/Media/contact.jpeg);
    background-position: center;
    border-radius: 10px;
    text-align: center;
    color: white;
}
.cont p{
    padding-top: 50px;
    color: antiquewhite;
    padding-bottom: 50px;
    margin: 30px;
}
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    color: red;
}
.icons .fa{
    margin: 0 13px;
    cursor: pointer;
    padding: 10px 0;
    color: rgb(117, 39, 95);
}
.fa-heart-o{
    color: red;
}

.flip-card{
    background-color: transparent;
    width: 300px;
    height: 400px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    /* position: relative;
    border-radius: 50; */
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flip-card-front {
    background-color: #bbb;
    color: black;
}
.flip-card-back {
    background-color: rgba(185, 215, 12, 0.315);
    color: rgb(148, 18, 18);
    transform: rotateY(180deg);
}
.about_header{
    height: 70vh;
    width: 100%;
    background-image:url(/Media/bg3.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: rgb(255, 255, 254);
    text-shadow: black;
}
.about_header h1{
    padding-top: 70px;
    font-size: 50px;
    font-weight: 600;
    border: orange;

}
.contact_header {
    height: 70vh;
    width: 100%;
    background-image:url(/Media/bg3.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: rgb(255, 255, 254);
    text-shadow: black;
}
.contact_header h1{
    padding-top: 70px;
    font-size: 50px;
    font-weight: 600;
    border: orange;
}
.loc{
    width: 80%;
    margin:auto;
    padding: 80px 0;
}
.loc iframe{
    width: 100%;
}
.contact_col{
    flex-basis: 48%;
    margin-bottom: 30px;
    margin-left: 600px;
    margin-right: auto;
}
.contact_col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact_col .fa{
    font-size: 25px;
    color: red;
    margin:10px;
    margin-right: 30px;
}
.contact_col div p{
    padding: 0;
}
.contact_col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: rgb(105, 104, 104);
    font-weight: 400;
}
.con_contact_col input,.con_contact_col textarea{
    width: 30%;
    padding: 10px;
    margin-left: 600px;
    margin-bottom: 15px;
    outline: none;
    border: 1px solid black;
    box-sizing: border-box;
    color: rgb(116, 147, 14);
}
.con_contact_col ::placeholder{
    color: rgba(0, 0, 0, 0.329);
    
}

.con_submit-button{
    width: 250px;
    display: inline-block;
    text-decoration: none;
    color: rgb(153, 45, 45);
    border: 1px solid rgb(165, 28, 28);
    padding: 12px 35px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin-left: 600px;
}
.con_submit-button:hover{
    border:1px solid orange;
    background: red;
    transition: 1s;
    color: white;
}

.container{
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
    background:rgba(120, 161, 212, 0.516);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_header,.nav-links ul li a{
    color: orange;
    font-weight: 600;
}
.card{
    width: 350px;
    height: 500px;
    box-shadow: 0 0 40px 20px white;
}
.inner_box{
    position: relative;
    width: 100%;
    height: 100%;
}
.card_front,.card_back{
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    padding: 55px;
    box-sizing: border-box; 
    backface-visibility: hidden;
}

.card_back{
    transform: rotateY(180deg);
}
.card h2{
    color: black;
    text-shadow: #f44336;
    text-decoration: double;
    font-weight: 800;
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
}
.input_box{
    width: 100%;
    background: transparent;
    border: 1px solid white;
    margin: 6px 0; 
    height: 32px;
    border-radius: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    outline: none;
    text-align: center;
    color: white;
}
::placeholder{
    color: white;
    font-size:12px ;
}
button{
    width: 100%;
    background: transparent;
    border: 1px solid white;
    margin: 6px 0; 
    height: 32px;
    border-radius: 20px;
    padding: 0 10px;
    box-sizing: border-box;
    outline: none;
    text-align: center;
    color: rgb(168, 19, 19);
    cursor: pointer;
}
button:hover{
    border:1px solid orange;
    background: red;
    transition: 1s;
    color: white;
}

.movies{
    padding: 50px;
    /* position:static; */
    border-radius: 50;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
}

