{
    margin: 0;
    padding: 0;

}

.main{
    width: 100;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%, rgba(0,0,0,0.5)50%) ,url("../images/3.jpg");
    background-position: center;
    background-size: cover;
    height: 109vh;
}

.navbar{
    width: 1200px;
    height: 75px;
    margin: auto;
}

.icon{
    width: 200px;
    float: left;
    height: 70px;
}

.logo{
    color: #ff7200;
    font-size: 21px;
    font-family: system-ui;
    padding-left: 19px;
    float:left;
    padding-top: 18px;

}
.menu{
    width: 395px;
    float: left;
    height: 70px;
    
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 68px;
    margin-top: 25px;
    font-size: 14px;
}

ul li a{
    text-decoration: none;
    color: #fff;
    font-family: system-ui;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: #ff7200;
}

.search{
    width: 330px;
    float:left ;
    margin-left: 270px;
}

.srch{
    font-family: 'Times New Roman';
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid #ff7200;
    margin-top: 30px;
    color: #fff;
    border-right: none;
    font-size: 16px;
    float: left;
    padding: 10px;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.btn{
    width: 100px;
    height: 40px;
    background: #ff7200;
    border: 2px solid #ff7200;
    margin-top: 30px;
    color: #fff;
    font-size: 15px;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.btn:focus{
    outline: none;
}

.srch:focus{
    outline: none;
}

.content{
    width: 1200px;
    height: auto;
    margin: auto;
    color: #fff;
    position: relative;
    font-size: 18px;
}

.context .par{
    padding-left: 10px;
    padding-bottom: 25px;
    margin-bottom: auto;
    font-family: Arial;
    font-size: 18px;
    letter-spacing: 1.2px;  
}

.content h1{
    font-family: 'Times New Roman';
    font-size: 50px;
    padding-left: 5px;
    padding-top: 9%;
    letter-spacing: 2px;

}
.content .cn{
    width: 160px;
    height: 40px;
    background: #ff7200;
    border: none;
    margin-bottom: 10px;
    margin-top: 60px;
    margin-left: 1px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s ease;

}

.content .cn a{
    text-decoration: none;
    color: #000;
    transition: .3s ease;
}

.cn:hover{
    background-color: #fff;    
}

.content span{
    color:#ff7200;
    font-size: 60px;
}

.form{
    width: 250px;
    height: 390px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.577)50%,rgba(0,0,0,0.577)50%);
    position: absolute;
    top: 30px;
    left: 870px;
    border-radius: 10px;
    padding: 25px;
}

.form h2{
    width: 220px;
    font-family: sans-serif;
    text-align: center;
    color: #000;
    font-size: 20px;
    background-color: #ff7200;
    border-radius: 10px;
    margin: 2px;
    padding: 8px;

}
.form input{
    width: 240px;
    height: 30px;
    background: transparent;
    border-bottom: 1px solid #ff7200;
    border-top: none;
    border-right: none;
    border-left: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 28px;
    font-family: sans-serif;
}

.form input:focus{
    outline: none;
}

::placeholder{
    color: #fff;
    font-family: Arial;
}

.btnn{
    width: 240px;
    height: 40px;
    background: #ff7200;
    border: none;
    margin-top: 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;

}

.btnn:hover{
    background: #fff;
    color: #ff7200;
}

.btnn a{
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.form .link{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    padding-top: 20px;
    text-align: center;
}

.form .link a{
    text-decoration: none;
    color:#ff7200 ;
}

.liw{
    padding-top: 1px;
    padding-bottom: 10px;
    text-align: center;
}

.icon a{
    text-decoration: none;
    color: #fff;
}

.icon ion-icon{
    color: #fff;
    font-size:23px;
    padding-left: 13px;
    padding-top: 4px;
    transition: 0.3s ease;

}

.icon ion-icon:hover{
    color: #ff7200;
}

/* Main menu styling */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    background: black;
    padding: 15px 20px;
    margin: 0;
}

.menu li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

/* Dropdown container */
.dropdown {
    position: relative;
}

/* Dropdown menu styling */
.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 45px;
    left: 0;
    background: black;
    min-width: 160px;
    border: 1px solid #1e90ff;
    display: none;
    padding: 0;
}

/* Dropdown items */
.dropdown-menu li a {
    padding: 10px 15px;
    white-space: nowrap;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #1e90ff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
