/* ============fonts============= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');





*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
}


nav{
    position: fixed;
    background:#456882 ;
    width: 90vw;
    top: 0;
    left: 0;
    box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15);
    display: flex;
    justify-content: space-between;
    padding: 35px 100px;
    align-items: center;
    z-index: 1000;
    transition: 0.5s;
    max-height: 30px;
    border-bottom:0px solid #D6A77A;
}
.logo{
    left: 0%;
    width: 180px;
    height: auto;
    padding-left: 10px;
    color: #fff;
    letter-spacing: 2px;
}
ul{
    display: flex;
}

ul li a{
    margin: 0px 15px;
    padding: 0 10px;
    padding-bottom: 10px;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    border-radius: 2px;
    letter-spacing: 1px;
}
ul li a:hover{
    border-bottom: 4px solid #f0f8ff ;
}
.main{
    background-color: #F5E8D5;
    width: 100%;
    height: 100vh;
    padding-top:100px ;
    padding-bottom: 100px;
}

.center{
    padding-top: 200px;
    margin-left: 50px;
    color: #212f3d;
}
.center h1{
    color: #1F2937;
    padding-left: 0px;
    margin-left: 0px;
    font-size: 76px;
    font-weight: 900;
}
.center h2{
    padding: 30px 0px;
    color: #64748B;
}
.btn{
    margin-left: 350px;
    padding-left: 100px;
    margin-top: 60px;
    margin-bottom: 50px;
    padding-bottom:100px ;
}
.btn button {
    background: #456882;
    color: white;
    font-size: 1.25rem;
    padding: 2ch 3ch;
    margin: 0 50px;
    text-box: cap alphabetic;
    border-radius: 1e3px;
    border: none;
    text-align: center;
    align-items: center;
    margin: 10px 40px;
    position: relative;
}
button:hover{
    color: #67E8F9;
    transform:translateY(-10px) ;
    transition: 0.5s;
}


#contact{
    background: #213448;
}
.contact-heading h2{
    padding-top: 30px;
    border-bottom: 5px solid #fff;
    font-weight: 700;
    font-size: 40px;
    width:175px ;

}
.contact-heading {
    margin: 10px auto;
    width: 200px;
    color: #fff;
}
.contact-heading p{
    width: 500px;
    margin: 20px -120px;
    font-size: 16px;
    font-weight: 400;
}
.contact-social{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.contact-apps h2{
    padding: 10px 0;
    padding-top: 60px;
    font-weight: 700;
    font-size: 40px;
    color: #fff;
}
.contact-apps a{
    display: block;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
    max-width: 360px;
}
.contact-apps i{
    font-size: 32px;
    padding: 20px 20px;
    max-width: 360px;
}
.contact-apps a:hover{
    color: #456882;
    transform:translateY(-10px) ;
    transition: 0.5s;
}
.contact-form{
    margin-left: 50px;
    margin-top: 70px;
    width: 40%;
}
.contact-form form input,.contact-form form textarea{
    font-size: 13px;
    width: 100%;
    margin: 10px 0;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    margin-bottom: 12px;
}
.contact-form form input::placeholder,.contact-form form textarea::placeholder{
    letter-spacing: 1px;
    color: #212f3d;
}
.contact-form form textarea{
    resize: none;
    height: 200px;
}
.contact-form .contact-button{
    background: #456882;
    text-transform: uppercase;
    color: #fff;
    max-width: 120px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    width: 100%;
    margin: 10px 0;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    outline: none;
    margin-bottom: 12px;
}
.copyright{
    padding: 18px;
    background: #303234;
    color: #fff;
    text-align: center;
}

.login-box {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 400px;
  padding: 40px;
  padding-bottom: 60px;
  transform: translate(-50%, -50%);
  background:#456882;
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #fff;
  font-size: 12px;
}

.login-box form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}
.btn_lgin{
    margin-top: 25px;
    padding-left: 10px;
    border-radius: 1.5rem;
    width: 100%;
    background-color: #303234;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 15px 20px;
    border: 0px solid #303234;

}







.swap_container {
    max-width: 800px;
    margin: 250px auto;
    padding: 20px;
    background-color: #456882;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.swap_container h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.card {
    background-color: #1F2937;
    padding: 20px;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.card ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.card li {
    margin-bottom: 20px;
    padding: 15px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.2s ease;
}

.card li:hover {
    transform: translateY(-5px);
    background-color: #f0f8ff;
    border-color: #007bff;
}

strong {
    color: #1F2937;
}

button {
    margin-top: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #303234;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}




/* Swap Form Page */
.swap_container {
    margin: 200px auto;
    max-width: 600px;
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.swap_container h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 40px;
}

.box {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.box input {
    width: 100%;
    padding: 12px 10px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.box input:focus {
    border-color: #007bff;
}

.box label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    transition: 0.3s ease;
    background: #fff;
    padding: 0 5px;
}

.box input:focus + label,
.box input:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: #007bff;
}

.swap_container button {
    background-color: #456882;
    color: white;
    margin-right: 20px;
    margin-left: 20px;
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.swap_container button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 1340px) {
    .btn button {
       left: -20%;
    }
    .contact-heading h2{
        display: none;
    }
    .contact-form form input,.contact-form form textarea{
    font-size: 10px;
    width: 50%;
    margin: 0px 0;
    padding: 10px;
    margin-bottom: 5px;
    }
    .contact-form form textarea{
    height: 20px;
    }
    .contact-heading h2{
    padding-top: 20px;
    border-bottom: 4px solid #fff;
    font-weight: 600;
    font-size: 30px;
    width:130px;

    }
    .contact-heading {
        margin: 6px auto;
        width: 150px;
    }
    .contact-heading p{
        width: 250px;
        margin: 15px -140px;
        font-size: 14px;
        font-weight: 400;
    }
    .contact-form .contact-button{
        display: block;
        max-width: 80px;
        font-size: 15px;
        font-weight: 600;
        width: 50%;
        margin: 5px 0;
        padding: 8px;
        margin-bottom: 8px;
    }   
    .center h1{
        margin-left: 0px;
        font-size: 56px;
        font-weight: 800;
    }
    .center h2{
        padding: 10px 0px;
    }

}

@media screen and (max-width: 973px) {
    .center h1{
        font-size: 35px;
        font-weight: 800;
    }
    .center h2{
        padding: 5px 0px;
    }
    .btn button {
       left: -60%;
       padding: 20px 15px;
       font-size: 16px;
    }
    .contact-form form input,.contact-form form textarea{
        font-size: 8px;
        width: 50%;
        margin-bottom: 4px;
    }
    .contact-form form textarea{
        height: 20px;
    }
    .contact-apps h2{
        display: none;

    }
    .contact-apps a{
        font-size: 14px;
        padding:0px 0px;
        margin: 0px 0px;
    }
    .contact-form .contact-button{
        display: block;
        max-width: 100px;
        padding: 4px 4px;
        width: 30%;
        margin-bottom: 6px;
    }   
}
@media screen and (max-width: 440px){
    nav{
        padding: 14px 10px;
        font-size: 16px;
        width: 100%;
    }
    .main{
        width: 100%;
    }
    .logo{
        width: 100px;
        height: auto;
    }
    ul li a{
        margin: 0px 5px;
        padding: 0 5px;
        padding-bottom: 5px;
        font-weight: 300;
        font-size: 14px;
        letter-spacing: 0px;
    }
    .menu{
        margin-left: -200px;
        margin-right: 10px;
    }
    .main{
        width: 100%;
        padding-top:20px ;
        padding-bottom: 0px;
    }
    .center{
        padding: 5px 10px;
        padding-top: 100px;
        margin-left: 20px;
    }
    .center h1{
        margin-left: -15px;
        font-size: 36px;
        font-weight: 700;
    }
    .center h2{
        margin-left: -15px;
        padding: 0px 0px;
        font-size: 16px;
        font-weight: 400;
    }
    .btn{
        margin-left:  100px;
        padding-left: 50px;
        margin-top: 40px;
        margin-bottom: 0px;
        padding-bottom:0px ;
    }
    .contactfull{
        display: flex;
        flex-direction: row;
    }
    .contact-apps a{
        padding:-20px -10px;
        margin: -20px -10px;
        margin-left: -80px;
    }
    .contact-form .contact-button{
        max-width: 100px;
        padding: 4px 4px;
        width: 40%;
        font-size: 10px;
        margin-bottom: 6px;
    }
    .swap_container {
        margin: 50px 30px;
        margin-top: 100px;
        max-width: 300px;
        padding: 20px;
    }
    .swap_container h1 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 30px;
    }   
    .box {
        margin-bottom: 10px;
        width: 95%;
    }

    .box input {
        width: 100%;
        padding: 8px 6px;
        font-size: 0.6rem;
        border: 1px solid #ccc;
    }
    
    .box label {
        font-size: 10px;
    }
    .swap_container button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .login-box {
        width: 300px;
        padding: 30px;
        padding-bottom: 50px;
        }
    .card {
        padding: 15px;
    }

    .card li {
        margin-bottom: 15px;
        padding: 10px 8px;
        font-size: 15px;
    }


    
} 