@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



*{font-family: "Open Sans", sans-serif;}
html, body{
    overflow-x: hidden;
}

.custom_btn_group {
    display: flex;
    overflow: hidden;
}

.custom_btn_group .btn {
    position: relative;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    color: #4c9a00;
    background: #e5e5e5;
    clip-path: polygon(0 0,90% 0,100% 50%,90% 100%,0 100%,10% 50%);
    margin-right: -10px;
    transition: all 0.3s ease;
    z-index: 1;
}

.custom_btn_group .btn.active {
    background: linear-gradient(135deg,#001020 0%,#004060 30%,#006090 65%,#0080B0 100%);
    color: #fff;
    z-index: 2;
}

.custom_btn_group .btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}








/*=================Slider====================*/
.slider-wrapper {
    position: relative;
    overflow: hidden;
    border: 0;
}

.slide-img {
    height: 67.30vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomEffect 12s ease-in-out infinite;
    border: 0;
}

.slide-img::before {
    content: "";
    position: absolute;
    inset: 0;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); 
    }
    100% {
        transform: scale(1); 
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}








/*=================Slider Text====================*/
.main_slider_text {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translateX(-50%);
}

.main_slider_text .slider_text .title {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    background: linear-gradient(90deg,#6bbd1e 0%,#8ccf3f 30%,#ffd633 55%,#ffe95c 75%,#fff27a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:0 2px 12px rgba(255,255,255,0.12), 0 6px 25px rgba(0,0,0,0.30);
    letter-spacing: 1px;
}








/*=================Purpose Text====================*/
.main_slider_text .purpose_form {
    background-color: white;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 48px;
}

.form-control {
    background: #e6e6e6;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid #bfbfbf;
    border-radius: 10px;
    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 {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    padding-top: 60px;
    padding-bottom: 50px;
}

.currency_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../image/two.png') center/cover no-repeat;
    filter: blur(15px) brightness(0.80);
    transform: scale(1.1);
    z-index: -1;
} 


.currency_card .custom_card {
    background-color: white;
    border-radius: 25px;
    color: #fff;
}

.city-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 15px;
    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;
    margin-top: 38px;
    width: 100%;
}

.forex-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.forex-card {
    min-width: 160px;
    background-color: #e0e0d1;
    /*background-color: #d1e0e0;*/
    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;
}

.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: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg,#001020 0%,#004060 20%,#006090 40%,#6bbd1e 60%,#cca300 80%,#ffd11a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:0 2px 12px rgba(255,255,255,0.12), 0 6px 25px rgba(0,0,0,0.30);
    letter-spacing: 1px;
    display: inline-block;
}

.heading p{
    font-size: 18px;
    font-weight: 400;
    text-align: justify-all;
}

.heading1 h1{
    font-size: 4rem;
    font-weight: 700;
    color: #ffd11a;
    text-shadow:0 2px 12px rgba(255,255,255,0.12), 0 6px 25px rgba(0,0,0,0.30);
    letter-spacing: 1px;
    display: inline-block;
}

.heading1 p{
    font-size: 18px;
    font-weight: 400;
    text-align: justify-all;
}



/* ==========================
   ABOUT SECTION
========================== */
.about-card{
    background: #e0e0eb;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Background Circle */
.about-card::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background: linear-gradient(135deg,#0080B0,#00C6FF);
    opacity:.08;
    border-radius:50%;
    transition: all 0.5s ease;
}

/* Flash Effect */
.about-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    transform: skewX(-25deg);
}

/* Hover */
.about-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,128,176,0.20);
}

.about-card:hover::before{
    opacity: .15;
    transform: scale(1.2);
}

.about-card:hover::after{
    animation: flash 0.8s ease;
}

@keyframes flash{
    100%{
        left: 150%;
    }
}

.about-tag{
    display:inline-block;
    background: rgba(0,128,176,.1);
    color:#0080B0;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.about-title{
    font-size:40px;
    font-weight:800;
    color:#0b1f33;
    margin-bottom:25px;
    line-height:1.2;
}

.about-title span{
    color:#0080B0;
}

.about-text{
    font-size:17px;
    line-height:1.9;
    color:black;
    margin-bottom:20px;
    text-align: justify;
}

.about-highlight{
    margin-top:15px;
    background: linear-gradient(135deg,#0080B0,#00A3E0);
    color:#fff;
    padding:25px;
    border-radius:15px;
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.about-highlight i{
    font-size:28px;
    flex-shrink:0;
}

.about-highlight span{
    font-size:16px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:768px){

    .about-card{
        padding:35px 25px;
    }

    .about-title{
        font-size:34px;
    }

    .about-text{
        font-size:16px;
    }
}




/*=================Top Features====================*/
.top_features{
    background: linear-gradient(90deg,#00152d 0%,#002b5a 50%,#00152d 100%);
    padding: 22px 0;
    position: relative;
    overflow: hidden;
}

/* Optional glow effect */
.top_features::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center,
    rgba(0,153,255,0.18),
    transparent 60%);

    opacity:0.8;
}

.feature_box{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    border-right:1px solid rgba(255,255,255,0.18);
}

.feature_icon{
    width:38px;
    height:38px;

    border-radius:50%;
    border:1px solid rgba(255,255,255,0.25);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(5px);
}

.feature_box h6{
    margin:0;
    color:#fff;
    font-size:14px;
    font-weight:500;
    letter-spacing:0.2px;
}

/* Mobile Responsive */
@media(max-width:768px){

    .feature_box{
        justify-content:flex-start;
        border-right:none;
        padding-left:10px;
    }

    .top_features{
        padding:18px 0;
    }

}








/*==========================Choose Us============================*/
.choose_us {
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 150px;
}


.choose_us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../image/two.png') center/cover no-repeat;
    filter: blur(10px) brightness(0.80);
    transform: scale(1.1);
    z-index: -1;
} 







/*==========================Counter============================*/
.counter_section{
    padding-top:100px;
    padding-bottom:100px;
    background-color:#fff7b3;
}

.counter_section h1{
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    color: #003a70;
    text-shadow:0 2px 12px rgba(255,255,255,0.12), 0 6px 25px rgba(0,0,0,0.30);
    letter-spacing: 1px;
}







/*=================Card animation====================*/
/* Heading */
.review_count {
    font-size: 55px;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0;
}

.review_text {
    color: #0f172a;
    font-size: 30px;
    font-weight: 700;
}

/* Users */
.review_user {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

/* Button */
.btn_warning_custom {
    background: #f59e0b;
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
}

.btn_warning_custom:hover {
    background: #d97706;
    color: #fff;
}

/* Review Cards */
.review_card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    z-index: 1;
    transition: 0.3s ease;
    overflow: hidden;
}

/* Gradient Shadow Border */
.review_card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #001020 0%,
        #004060 20%,
        #006090 40%,
        #6bbd1e 60%,
        #ffd633 80%,
        #fff27a 100%
    );
    z-index: -2;
}

/* Inner White Background */
.review_card::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: 16px;
    z-index: -1;
}

/* Hover Effect */
.review_card:hover {
    transform: translateY(-5px);
}

/* Stars */
.stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Footer */
.review_footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.review_footer img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.review_footer span {
    font-weight: 600;
    color: #0f172a;
}
















/*=================Footer====================*/
/* =========================
   FOOTER MAIN
========================= */

.footer .card{
    border-radius: 15px;
    margin-top: -150px;
    border: none;
    padding: 40px;
    background-color: #f2f2f2;
}


.footer {
    background: linear-gradient(90deg,#001020 0%,#004060 20%,#006090 50%,#6bbd1e 100%);
    color: white;
    margin-top: 140px;
    padding-top: 70px;
    box-shadow:
        0 -10px 40px rgba(0, 0, 0, 0.15),
        0 -5px 20px rgba(0, 128, 176, 0.25);
}







.footer-content h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Underline */
.underline_one {
    width: 50px;
    height: 3px;
    background: linear-gradient(
        90deg,
        #6bbd1e,
        #ffd633
    );
    border-radius: 10px;
    margin-top: 8px;
}

/* =========================
   LISTS & LINKS
========================= */

.footer-content ul li {
    margin-bottom: 0.7rem;
    transition: 0.3s;
}

.footer-content ul li:hover {
    transform: translateX(5px);
}

.footer-content a {
    color: rgba(255,255,255,0.9);
    margin-right: 10px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: #ffd633;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 50%;
    margin-right: 8px;

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.footer .social-icons a:hover {
    background: #ffd633;
    color: #000;
    transform: translateY(-5px);
}

/* =========================
   COMPANY LOGO
========================= */

.footer img {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* =========================
   SUB FOOTER
========================= */

.footer .sub_footer {
    background: linear-gradient(
        90deg,
        #fff27a 0%,
        #ffd633 100%
    );

    color: #000;

    font-weight: 600;

    position: relative;
    z-index: 2;

    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}

/* =========================
   SCROLL BUTTON
========================= */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;

    background: linear-gradient(
        135deg,
        #00c6ff,
        #0072ff
    );

    color: white;

    border: none;
    outline: none;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    font-size: 18px;
    cursor: pointer;

    display: none;
    z-index: 999;

    transition: 0.3s;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.2),
        0 5px 15px rgba(0,114,255,0.4);

    animation: floatUpDown 2s ease-in-out infinite;
}

#scrollTopBtn:hover {
    background: linear-gradient(
        135deg,
        #ffd633,
        #ffb300
    );

    color: #000;

    transform: scale(1.1) translateY(-5px);
}

/* =========================
   FLOAT ANIMATION
========================= */

@keyframes floatUpDown {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}







/*=================All Media Query====================*/
@media (max-width: 768px) {
.slide-img {
    height: 320px;
}

.main_slider_text {
    top: 18%;
    text-align: center;
    width: 100%;
}

.main_slider_text .slider_text .title {
    font-size: 22px;
    line-height: 1.4;
}

.main_slider_text .purpose_form{
    border-radius: 15px;
    margin-top: 26px;
    padding: 25px;
}
}
