@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');
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');



*{
    /*font-family: "Poppins", sans-serif;*/
    
}

body{
    overflow-x: hidden;
    background-color: #FFFDF1;
    font-family: "Asap", sans-serif;
}



/*=================Slider====================*/
.slider-wrapper {
    position: relative;
    overflow: hidden;
    /*clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);*/
    border: 0;
    /*clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        50% 95%,   
        0 100%
    );*/
}

/*.slide-img {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomEffect 12s ease-in-out infinite;
}*/

.slide-img {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomEffect 12s ease-in-out infinite;
    /*clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);*/
    border: 0;
    /*clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        50% 95%,   
        0 100%
    );*/
}

.slide-img::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); 
    }
    100% {
        transform: scale(1); 
    }
}

.btn-text {
    background: #e6e600;
    border-radius: 50%;
    padding: 12px 20px;
    display: inline-block;
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.btn-text:hover {
    background: #ffcc00; 
    color: #000; 
    transform: scale(1.1) translateY(-5px);
}








/*=================Slider Text====================*/
.main_slider_text {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
}

.main_slider_text .slider_text .title {
    font-family: "Poppins", sans-serif;
    font-size: 3.6rem;
    line-height: 1.1;
    color: #fff;
    text-align: center;
}






/*=================Purpose Text====================*/
.main_slider_text .purpose_form {
    background: #002957cc; 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 14px 10px;
}

.form-control {
    background: #e6e6e6;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid #bfbfbf;
    border-radius: 25px;
    padding: 10px 15px;
}

.form-control::placeholder {
    color: #808080;
}

.form-control:focus {
    border-color: #66b3ff;
    box-shadow: 0 0 10px rgba(102, 179, 255, 0.5);
}






/*=================Currency Card====================*/
.currency_card .custom_card {
    background-color: #e6e6e6;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.city-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.city-img:hover {
    transform: scale(1.08);
    /*filter: blur(1px) brightness(0.6);*/
}




/*=================Currency Card One====================*/



.forex_card .amount_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forex_card .amount_box input {
    border: none;
    background: transparent;
    color: black;
    font-size: 22px;
    font-weight: bold;
    width: 100px;
    outline: none;
}

.forex_card .btn_counter {
    background: black;
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
}

.forex_card .card {
    margin-top: 10px;
    border-radius: 12px;
}

















/*=================Multi Card Slider====================*/
.forex-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px;
    width: 100%;
}

.forex-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.forex-card {
    min-width: 160px;
    background: #f1f3f6;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.forex-card small {
    display: block;
    margin-top: 8px;
    color: #555;
}

/* Navigation */
.forex-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;
}

.forex-card img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.forex-prev { left: 0; }
.forex-next { right: 0; }



/*=================About Us====================*/

.heading h1{
    font-size: 50px;
}

.heading img{
    border-radius: 20px;
}



/*=================Parallax====================*/


.parallax{
    background-color: #d8f1e8;
    padding-top: 40px;
    padding-bottom: 40px;
}

.parallax1{
    background-color: #ffe6e6;
    padding-top: 40px;
    padding-bottom: 40px;
}



/*=================Card animation====================*/

.service-card{
    position: relative;
    height: 400px;
    cursor: pointer;
    border-radius: 25px;
    overflow: hidden;
    
    /* Outside border radius effect */
    background: #fff;
    padding: 0;
}

.service-img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img{
    transform: scale(1.1);
}

.service-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;

    border-radius: 25px;
}

.service-overlay h3{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}


















/*=================Footer====================*/
.footer {
    position: relative;
    background: #074576;
    color: white;
    padding-top: 60px;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: "Asap", sans-serif;
    overflow: hidden;
    /*clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);*/
}

/*.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #074576;
}*/

.footer-overlay {
    position: relative;
    z-index: 1; 
}

.footer-content h5 {
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-content ul li {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: white;
    margin-right: 10px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: #00d1b2;
    transform: translateX(4px);
}

.footer .social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 5px;
}

.footer .social-icons a:hover {
    background: rgba(255, 255, 255, 0.4);
}


#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00c6ff;
    color: white;
    border: none;
    outline: none;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: 0.3s;

    animation: floatUpDown 2s ease-in-out infinite;
}

#scrollTopBtn:hover {
    background: #ffcc00;
    color: #000;
    transform: scale(1.1) translateY(-5px);
}

/* Animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


.footer .underline_one{
    margin-top: 10px;
    background-color: white;
    height: 2px;
    border-radius: 5px;
    width: 10%;
}




/*=================All Media Query====================*/
@media (max-width: 768px) {
    .slide-img {
        height: 320px;
    }

    .btn-text {
        background: #e6e600;
        border-radius: 50%;
        padding: 7px 14px;
        display: inline-block;
        animation: floatUpDown 2s ease-in-out infinite;
    }

    .main_slider_text {
        top: 20%;
        text-align: center;
        width: 100%;
    }

    .main_slider_text .slider_text .title {
        font-size: 22px;
        line-height: 1.4;
    }

    .main_slider_text .purpose_form{
        padding: 25px;
    }


    .footer {
        /*-webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);*/
    }



}







































