* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
/* =================================================== */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: #343434;
    color: #F0A500;
    box-shadow: 5px 5px 8px #FFB22C;
    border: 2px solid  #FFB22C; 
    height:70px;
    padding: 0 20px;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 0;   
}
.name{
    font-size: 1.5rem;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;   
}
.navigation a{
    padding: 5px 10px;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s;
    color: #F0A500;
}
.navigation a:hover{
    color:white ; 
}
.split-btn-container {
    display: inline-flex;
    border: 2px solid #F0A500;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 10px;
}

.split-btn-part {
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    background-color: #343434;
    color: #F0A500;
    transition: background-color 0.3s, color 0.3s;
}

.split-btn-part.left {
    border-right: 2px solid #F0A500;
}

.split-btn-part:hover {
    background-color: #F0A500;
    color: #343434;
}
/* =================================================== */

 html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.Back {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;

}

.Back::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("https://img.lovepik.com/bg/20231216/an-image-of-a-clothing-store_2490513_wh860.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    display: flex;
    min-height: 100%;
    justify-content: center;
    margin-top: 60px;
}

.container form {
    width: 671px;
    height: 590px;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    margin: 21px;
    padding: 21px;
}

.container form h1 {
    color: black;
    margin-top: 21px;
    text-align: center;
    font-weight: 700;
    width: 500px;
}

.container form h2 {
    color: black;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.container form input {
    width: 300px;
    height: 50px;
    padding-left: 10px;
    border: none;
    font-size: 20px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #000000;
    color: black;
}

.container form input::placeholder {
    color: #000000;
}

.container form #LastName, 
.container form #MobileNumber {
    margin-left: 20px;
}

.container form textarea {
    width: 100%;
    padding: 10px;
    height: 151px;
    
    border: 2px solid #000000;
    font-size: 20px;
    margin-bottom: 20px;
    background: none;
    color: #000;
}

.container form #send {
    width: 200px;
    background: black;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    margin: 0 auto;
    font-size: 30px;
}

.container form #send:hover {
   box-shadow: 0px 5px 15px rgb(255, 238, 0) ;
    transition: box-shadow 0.3s ;
}  
   

footer {
    background-color: #343434;
    color: #F0A500;
    padding: 32px 5% 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 30px;
}

.footer-section {
    flex: 1;
    padding: 0 16px;
}

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}
.footer-section ul li a {
    color: #F0A500;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    color: #F0A500;
    font-size: 1.2rem;
}
.footer-bottom {
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}
