@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}


:root {
    --color-bg: #F7F7F8;
    --color-bg-variant: #2c2c6c;
    --color-primary: #4db5ff;
    --color-primary-variant: rgba(77, 181, 255, 0.5);
    --color-white: #1c2127;
    --color-Light: rgba(255, 255, 255, 0.6);
    --transition: all 400ms ease;
    
    /* Media Query */
    --container-width-lg: 85%;
    --container-width-md: 86%;
    --container-width-sm: 90%;
}



body {
    font-family: 'Poppins', sans-serif;
    background: var(--color-bg);
    color: var(--color-white);
}

.hero-widget {
    width: 80% !important;
    height: 60% !important;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, 50%);   
}



/* =========================================================== GENERAL CSS */
.container {
    width: var(--container-width-lg);
    margin: 0 auto;
}
.wrapper {
    background: linear-gradient(45deg, #E8F7FC 0%, #FDF8E9 100%);
    box-shadow: 1px 1px 9px 1px rgba(0, 0, 0, 0.1);
    padding: 5% 4%;
    margin: 10% 0%;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    position: relative;
}
.wrapper h2 {
    font-size: 18px;
    color: #2764FF;
}
.paraWidth1 {
    width: 60%;
    margin: 0 auto;
}
.paraWidth {
    width: 50%;
}
.list__box {
    margin: 5% 0%;
    position: relative;
}
.list__wrapper {
    columns: 100px 2;
    column-gap: 30px;
    max-width: 400px;
    resize: both;
    line-height: 3rem;
    margin-top: 5%;
}
.list__wrapper li {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.list__wrapper li img { 
    width: 10px;
}
.right__box {
    width: 40%;
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translate(0%, -50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow: hidden;
    /* border: 1px solid green; */
}
h1,h2,h3,h4,h5 {
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    text-transform: capitalize;
    font-family: 'Roboto', sans-serif;
    padding-bottom: 20px;
}

.btn-primary {
    font-weight: 600;
    width: max-content;
    border-radius: 5px;
    padding: 0.25rem 1.1rem;
    background: var(--color-primary);
    color: var(--color-bg) !important;
}
.btn-secondary {
    width: 200px;
    text-align: center;
    display: inline-block;
    color: var(--color-white);
    border-radius: 5px;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-primary);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-bg);
}




/*========================================================== Header section Styling */
header {
    width: 100%;
    padding: 0 8%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: 0.5s ease-in-out;
}
header.scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    opacity: 0.98;
    top: -50px;
}
.logo {
    text-align: center;
    padding: 5px 0px 0px;
    margin: 0 auto;
    position: relative;
    /* border: 1px solid green; */
}
.logo img {
    width: 120px;
    object-fit: cover;
}
.nav-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 0% 1%;
}
.nav-links ul {
    display: flex;
    gap: 25px;
}
.nav-links ul li{
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    color: #fff;
    font-size: 0.8rem;
    transition: color 0.5s ease-in-out;
}
/*  */
header.scrolled .nav-links ul li a {
    color: #000;
}

.nav-links ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}
.right-nav-box {
    display: flex;
    gap: 25px;
    align-items: center;
}
.right-nav-box a {
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer !important;
}
/*  */
header.scrolled .right-nav-box a  {
    color: #000;
}
/* End of Header Section Styling */



/*=========================================================== Hero Section Styling */
.hero-container {
    width: 100%;
    position: relative;
}
.hero-container video {
    width: 100%;
    /* filter: blur(10px); */
}
.text-box {
    width: 45%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1 {
    font-size: 4em;
    color: var(--color-white);
    font-weight: 700;
}
.text-box p {
    font-size: 1.2em;
    color: #1c2127;
    font-weight: 100;
    margin-bottom: 10%;
}


/*========================================= Count Section */
.count__wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 2rem 7rem;
    display: flex;
    justify-content: space-between;
    margin: 35% auto 5%;
    box-shadow: 1px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
.count__box {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.count__box img {
    width: 50px;
}
.count__text h3 {
    font-size: 2em;
}
.count__text span {
    color: #CEDAFA;
}
/*End of Count Section */


/*========================================= What We Offer Section */
.gen_heading {
    margin-top: 10%;
    text-align: center;
}
.gen_heading h2 {
    width: max-content;
    padding: 1rem 3rem;
    background: #CEDAFA;
    color: #2764FF;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5%;
}
.gen_heading h1 {
    font-size: 42px;
    font-weight: 700;
}
.gen_heading p {
    font-size: 18px;
}
/*End of What We Offer Section */


/*========================================= Hero Card Section */
.swiperContainer {
    margin: 5% 0%;
}
.hc__slide-content {
    overflow: hidden;
    padding: 1%;
    /* border: 1px solid blue; */
}
.swiper-pagination-bullet {
    background-color: blue !important;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #4db5ff !important;
}
.text__card {
    width: 100%;
    height: auto !important;
    padding: 2rem;
    text-align: center;
    border-radius: 5px;
    background: #FDF8E9;
    color: var(--color-);
    box-shadow: 1px 1px 9px 3px rgba(0, 0, 0, 0.1);
    /* border: 1px solid purple; */
}
.text__card h4{
    padding: 20px 0px;
}
.text__card p {
    font-weight: lighter;
    font-size: 0.9rem;
}
.text__card img {
    width: 100px;
    object-fit: cover;
}
/* End Of Hero Section Styling */



/*======================================================= Proposal Section Styling */
/* End Of Proposal Section Styling */


/*==================================================== Business Section Styling */
/* End Of Business Section Styling */


/*========================================================== Best Section Styling */
/* End Of Best Section Styling */



/*==================================================== News/Logo Wrapper Section Styling */
.logo-img__wrapper {
    margin: 5% 0% 10%;
    display: flex;
    /* gap: rem; */
    justify-content: space-between;
}
.logo-img__wrapper img {
    filter: grayscale();
    width: 100px;
    object-fit: cover;
    transition: 0.5s;
}
.logo-img__wrapper img:hover {
    filter: none;
}
/* End Of News/Logo Section Styling */



/*==================================================== Official Reg Section Styling */
.official__container {
    background: #000;
    padding: 5% 10%;
    color: var(--color-Light);
}
.official__wrapper {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 2rem;
    /* background: var(--color-bg-variant); */
}
.official__content img {
    width: 500px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.official__text-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.official__text-container h2 {
    font-size: 4rem;
    line-height: 3rem;
    text-shadow: 10px 5px 5px rgba(0, 0, 0, 0.5);
}
.official__text-container h3 {
    padding-bottom: 1rem;
}
/* End Of Official Reg Section Styling */


/*==================================================== Widget Coontainer Section Styling */
.widget__container {
    padding: 10% 10% 0%;
    position: relative;
}
.widget__wrapper h1 {
    font-size: 4em;
}
.lower-widget {
    width: 100% !important;
    border: none !important;
    margin: 5% 0%;
}
.widget-btn {
    text-align: center;
    margin: 0% auto;
}
.widget-btn p {
    padding: 1% 0% 3%;
}
/* End Of Widget Container Section Styling */



/*==================================================== In-Out Transaction Section Styling */
.in-out__container {
    margin: 5% 0% 10%;
    padding: 0% 5%;
}
.in-out__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}
.in-out__box {
    flex: 1;
    justify-content: center;
}
.in-out__box img {
    margin: 0 15%;
    width: 400px;
    object-fit: cover;
    display: flex;
}
.in-out__text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    gap: 2rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-bg-variant));
}
.in-out__text h2 {
    font-size: 3rem;
    font-weight: 600;
    padding-top: 1rem;
    line-height: 2.8rem;
}
/* End Of In-Out Transaction Section Styling */


/*==================================================== Testimonial Section Styling */
.testimonial__container {
    background: #000;
}
.test-heading {
    display: flex;
    gap: 2rem;
    padding: 5% 10% 0%;
    position: relative;
    align-items: center;
    color: #fff;
    /* border: 1px solid #fff; */
}
.test-heading i {
    position: absolute;
    top: 8%;
    left: 15%;
    color: #b0afaf;
    font-size: 10rem;
    opacity: 0.2;
}
.test-heading h2 {
    z-index: 1;
    font-size: 40px;
}
.test-heading p {
    font-size: 18px;
}
.testimoniial__wrapper {
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6% 10% 9%;
    /* border: 1px solid #fff; */
}
.tophand {
    position: absolute;
    top: 25px;
    right: -5.7%;
    width: 350px;
    z-index: 2;
}
.bottomhand {
    position: absolute;
    bottom: 80px;
    left: -5%;
    width: 350px;
    z-index: 2;
}
.testimoniial__slide-content {
    border-radius: 5px;
    /* padding: 1% 0% 5%; */
    /* border: 1px solid blue; */
}
.swiper-pagination-bullet {
    background-color: blue !important;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #4db5ff !important;
}
.testimoniial__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 300px;
    height: auto !important;
    padding: 2rem;
    background: #fff;
    border-radius: 5px;
    position: relative;
}
.fa-quote-left,
.fa-quote-right {
    color: #000;
    font-size: 2rem;
}
.fa-quote-right {
    text-align: right;
}
.name {
    font-size: 1.5rem;
    font-weight: 700;
}
.description {
    font-size: 1rem;
}
/* End Of Testimonial Section Styling */



/*==================================================== How To Get Started Section Styling */
.getStarted__wrapper {
    display: flex;
    gap: 3rem;
    border: 1px solid #fff;
    margin-top: 5%;
}
.get-started__left,
.get-started__right {
    flex: 1;
}
.get-started__left {
    border: 4px solid blue;
}
.get-started__right {
    border: 4px solid yellow;
    height: 100vh;
    position: relative;
}
.get-img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}
.get-img-box img {
    width: 450px;
    justify-content: center;
    object-fit: cover;
}

.getStarted__card {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 5rem;
    color: #fff;
    background: green;
    /* background: linear-gradient(150deg, #020024 0%, #1D2330 45%, #020024 100%); */
}

.getStarted__card h4 {
    text-align: center;
    font-size: 1.5rem;
}
.getStarted__card  span {
    text-align: center;
}
.getStarted__card  p {
    color: #fff;
    padding: 5% 0%;
}

.pink {
    background: pink;
}
.blue {
    background: blue;
}
.yellow {
    background: yellow;
}
/* End Of How To Get Started Section Styling */



/*==================================================== Referral Section Styling */
.referral__container {
    background: url(../assets/ref-bg.png), var(--color-white);
    padding: 10%;
}
.referral__wrapper {
    max-width: 1024px;
    position: relative;
}
.ref-text {
    width: 500px;
}
.ref-text h2 {
    font-size: 2em;
    color: white;
}
.ref-text p {
    color: var(--color-Light);
}
/* End Of Referral Section Styling */


/*==================================================== Calculator Section Styling */
.calculator__container {
    background: linear-gradient(45deg,#2764FF, var(--color-bg-variant));
    padding: 10%;
    color: #1C2127;
}
.calculator__wrapper {
    gap: 5rem;
    align-items: center;
}
.cal__device {
    width: 100%;
    margin-top: 5%;
    padding: 0 20%;
    justify-content: center;
    /* border: 1px solid yellow; */
}
/* End Of Calculator Section Styling */


/*==================================================== Payment Section Styling */
.platform__wrapper {
    padding: 10% 0%;
    /* border: 3px solid #2c2c6c; */
    position: relative;
}
.platform__heading h2 {
    font-size: 3rem;
    line-height: 3rem;
    padding-bottom: 1rem;
}
.platform__box {
    width: 40%;
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}
.platform__box div {
    flex: 1;
}
.platform__box div img {
    width: 50px;
    object-fit: cover;
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    background: #F7F7F8;
    border-radius: 5px;
}
.platform__box div p {
    line-height: 20px;
    padding-top: 3%;
}
.platform__img {
    position: absolute;
    right: 0%;
    bottom: -15%;
}
.platform__img img {
    width: 500px;
}
/* End Of Payment Section Styling */



/*==================================================== Footer Section Styling */
footer{
    color: var(--color-Light);
    background: var(--color-white);
}
.footer__wrapper {
    padding: 10% 0% 6%;
}
.footer__box {
    display: flex;
    gap: 6rem;
    margin-bottom: 4%;
    justify-content: space-between;
}
.footer__signup {
    width: 50%;
}
.quicklink1 {
    display: flex;
    justify-content: space-between;
    width: 80%;
}
.footer__content h3 {
    padding-bottom: 1rem;
}
.footer__content ul  {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer__content ul li a {
    font-size: 0.9rem;
    color: #707070;
}
.quicklink2 {
    border-top: 1px solid gray;
    padding-top: 1rem;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}
.quicklink2 div {
    flex: 1;
}
/* End Of Footer Section Styling */





/* ====================================================================== */
/* ============================ About Page Styling */
.about_hero__container {
    width: 100%;
    height: 100dvh;
    padding: 0% 10%;
    background: linear-gradient(150deg, #DFA5D5 45%, var(--color-primary) 100%);
}
.about_hero__wrapper {
    padding-top: 20%;
    max-width: 1024px;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}
.about_heading h1 {
    font-size: 4rem;
}
.about_img img {
    width: 400px;
}

/* ========================= Get Income Section */
.get_income__wrapper {
    margin: 5% 0% 10%;
}
.about-sub-heading {
    text-align: center;
    margin-bottom: 2rem;
}
.about-sub-heading h2 {
    width: auto;
    text-align: left;
    margin-bottom: 5%;
    padding: 0 2%;
    font-size: 2rem;
    line-height: 1.9rem;
    position: relative;
    border-left: 2px solid var(--color-primary);
}
.about__text {
    columns: 2 200px;
    gap: 3rem;
    margin: 0% 10%;
    /* border: 1px solid green; */
}
/* End Of About Hero Section Styling */

/*========================================= Count Section */
.aboutcount__wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 2rem 7rem;
    display: flex;
    justify-content: space-between;
    margin: 10% auto 5%;
    box-shadow: 1px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
/*End of Count Section */

/*==================================================== Why We Stand Out Section Styling */
.standout__wrapper {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 5% 0% 10%;
}
.standout__box {
    flex-basis: 400px;
    flex-grow: 1;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 1px 1px 9px 1px rgba(0, 0, 0, 0.1);
}
.standout__box h2 {
    padding-bottom: 1rem;
}

/*==================================================== Our Vision Section Styling */
.vision__wrapper {
    padding: 10% 10%;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 5% 0% 10%;
    color: #fff;
}
.vision__card {
    border: 1px solid #fff;
    flex-basis: 400px;
    flex-grow: 1;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 15px 15px 3px 2px rgba(50, 50, 50, 0.5);

}
.vision__card h2 {
    padding-bottom: 1rem;
}





/* ====================================================================== */
/* ============================ Ftp Page Stying */
.fpt__container {
    width: 100%;
    height: 50vh;
    padding: 0% 10%;
    background: linear-gradient(150deg, #DFA5D5 45%, var(--color-primary) 100%);
}
.fpt__wrapper {
    padding-top: 15%;
}
.fpt_heading h1 {
    font-size: 4rem;
}
.pt__wrapper {
    margin: 5% 5% 10%;
}






/* ================ MEDIA QUERRIES FOR MEDIUM SCREEN ================== */
@media screen and (max-width: 1024px) {
    .contanier {
        width: var(--container-width-md);
    }
    .wrapper {
        margin: 10% 0% 15%;
    }
    .right__box {
        width: fit-content;
        position: relative;
        top: 0%;
        right: 0%;
        transform: translate(0%, 0%);
        margin: 0% auto 10%;
        justify-content: center;
        /* border: 1px solid green; */
    }
    .paraWidth1 {
        width: 100%;
    }
    .paraWidth {
        width: 100%;
    }
   
    /* Hero section Styling */
    .hero-container {
        height: 60vh;
        border: 1px solid green;
    }
    .hero-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .text-box {
        width: 65%;
        top: 55%;
    }
    .text-box h1 {
        font-size: 3em;
    }
    .text-box p {
        margin-bottom: 5%;
    }
    .hero-widget {
        width: 100% !important;
        height: 100% !important;
        top: 45%; 
    }
    .hc__slide-content {
        padding-bottom: 5%;
        /* border: 1px solid green; */
    } 
    /*End of Hero Section */
    
    
    /* Count Section */
    .count__wrapper {
        padding: 2rem 5rem;
        flex-wrap: wrap;
        gap: 3rem;
        margin: 120% auto 10%;
    }
    .count__box {
        justify-content: center;
        flex: 1;
        gap: 1.5rem;
    }
    /*End of Count Section */
    

    /* What We Offer Section */
    .gen_heading {
        margin-top: 15%;
    }
    .gen_heading h2 {
        margin-bottom: 10%;
    }
    .gen_heading h1 {
        font-size: 42px;
        font-weight: 700;
    }
    .gen_heading p {
        font-size: 18px;
    }
    /*End of What We Offer Section */
    
    /* Logo Section */
    .logo-img__wrapper {
        margin: 5% 0% 15%;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .logo-img__wrapper img {
        width: 130px;
    }
    /* End Of Best Section Styling */
    
    /* In-Out Transaction Section Styling */
    .in-out__container {
        margin: 10% 0% 15%;
    }
    .in-out__wrapper {
        flex-direction: column;
    }
    .in-out__box {
        margin: 0 15%;
        border-radius: 10px;
        box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.1);
    }
    .in-out__box img {
        width: 350px;
    }
    .in-out__text {
        height: 50%;
        gap: 1rem;
    }
    .in-out__text h2 {
        line-height: 2.5rem;
    }
    /* End Of In-Out Transaction Section Styling */
    
    /* Testimoial Section Styling */
    .test-heading h2 {
        font-size: 30px;
        line-height: 27px;
    }
    .tophand {
        top: -5px;
        right: -10.7%;
        width: 270px;
        display: none;
    }
    .bottomhand {
        bottom: 20px;
        left: -15%;
        width: 300px;
    }
    /* End Of testimonial Section Styling */
    
    /* Official Reg Section Styling */
    .official__wrapper {
        flex-direction: column-reverse;
    }
    .official__content {
        justify-content: space-between;
    }
    .official__content img {
        width: 420px;
    }
    .official__text-container p {
        padding-right: 0rem;
    }
    /* End Of Official Reg Section Styling */
    
    
    /* Platform Section Styling */
    .platform__box {
        flex-direction: column;
    }
    .platform__img {
        bottom: 2%;
    }
    .platform__img img {
        width: 400px;
    }
    /* End Of Platform Section Styling */

    /* Footer Section Styling */
    .footer__wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    .footer__box {
        flex-direction: column;
        gap: 3rem;
    }
    .footer__signup {
        width: 65%;
    }
    .quicklink1 {
        width: 100%;
    }
    .footer__content p {
        width: 100%;
    }
    .footer__content ul li a {
        font-size: 1rem;
    }
    .quicklink2 {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
        padding-bottom: 3rem;
    }
    .quicklink2:nth-child(2) p {
        text-align: center;
    }
    /* End Of Footer Section Styling */




    /* ============================================================== */
    /* ============================ About Page Styling */
    /* About Hero Section Styling */
    .about_hero__container {
        height: 45dvh;
        padding: 0% 10%;
    }
    .about_hero__wrapper {
        padding-top: 30%;
    }
    .about_heading h1 {
        font-size: 2rem;
    }
    .about_img img {
        width: 300px;
    }
    /* End Of About Hero Section Styling */ 

    /* Get Income Section Styling */
    .about__text {
        margin: 0% 0%;
        /* border: 1px solid green; */
    }
    /* End Of Get Income Section Styling */

    .aboutcount__wrapper {
        padding: 2rem 5rem;
        flex-wrap: wrap;
        gap: 3rem;
        margin: 20% auto 10%;
    }

    /* End Of About Page Section Styling */ 



    /* ====================================================================== */
    /* ============================ Ftp Page Stying */
    .fpt__container {
        height: 25vh;
    }
    .fpt__wrapper {
        padding-top: 25%;
    }
    .fpt_heading h1 {
        font-size: 3rem;
    }
    .pt__wrapper {
        margin: 10% 5% 25%;
    }
}


/* ================ MEDIA QUERRIES FOR SMALL SCREEN ================== */
@media screen and (max-width: 600px) {
    .contanier {
        width: var(--container-width-sd);
    }
    .wrapper h1 {
        font-size: 2rem;
        line-height: 2rem;
    }
    .list__wrapper {
        column-gap: 20px;
        margin: 10% 0% 0%;
    }
    .list__wrapper li {
        line-height: 30px;
    }
    .list__wrapper li p { 
        font-size: 13px;
    }
    .right__box {
        width: 100%;
        position: relative;
        top: 0%;
        right: 0%;
        transform: translate(0%, 0%);
        margin: 10% 0% 20%;
    } 
    .right__box img {
        width: 100%;
    } 
    .hc__slide-content {
        padding-bottom: 10%;
        margin-top: 5%;
    }
    
    /* Header section Styling */
    .logo {
        text-align: center;
        padding: 10px 0px 0px;
        margin: 0 auto;
        position: relative;
    }
    header.scrolled {
        top: -60px;
    }
    .logo img {
        width: 120px;
        object-fit: cover;
    }
    .nav-links{
        position: fixed;
        background: linear-gradient(150deg, #DFA5D5 45%, var(--color-primary) 100%);
        height: 50dvh;
        width: 100%;
        top: 0;
        left: -100%;
        z-index: 2;
        transition: 1s;
    }
    header.scrolled .nav-links {
        padding-top: 60px;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px 0px;
        font-size: 22px;
        cursor: pointer;
    }
    header.scrolled nav .fa{
        color: #000;
    }
    nav .fa-times {
        text-align: right;
        padding-right: 25px;
    }
    header.scrolled nav .fa-times .nav-links ul li a {
        color: #fff;
    }
    header.scrolled .nav-links ul li a {
        color: #fff;
    }
    .nav-links ul {
        padding: 20px 30px;
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links ul li::after{
        display: none;
    }
    /* End of Header Section Styling */    
    
    /* Hero Section Styling */
    .hero-container {
        width: 100%;
        height: 100dvh;
        position: relative;
    }
    .text-box {
        width: 100%;
        margin-top: 5%;
    }
    .text-box h1 {
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        font-size: 2.7rem;
        text-align: center;
        padding-bottom: 10%;
    }
    .text-box p {
        padding: 0 10%;
        margin-bottom: 10%;
        font-size: 1rem;
    }
    .hero-widget {
        width: 100% !important;
        height: 100% !important;
        top: 50%; 
    }
    .hero-container > video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    /* End Of Hero Section Styling */
    
    /* Count Section */
    .count__wrapper {
        margin: 55rem auto 10%;
    }
    /*End of Count Section */
    
    /* What We Offer Section */
    .gen_heading {
        margin: 20% 0%;
    }
    .gen_heading h1 {
        font-size: 32px;
    }
    .gen_heading p {
        font-size: 14px;
    }
    /* End Of What We Offer Section Styling */

    /* News/Logo Wrapper Section Styling */
    .logo-img__wrapper {
        margin: 0% 0% 30%;
        gap: 0;
        justify-content: none;
    }
    .logo-img__wrapper img {
        width: 150px;
    }
    /* End Of News/Logo Section Styling */
    
    /* Official Reg Section Styling */
    .official__wrapper {
        gap: 3rem;
        padding: 4rem 0.6rem;
        margin-bottom: 40%;
    }
    .official__content {
        flex-direction: column;
    }
    .official__context {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .official__content img {
        width: 100%;
    }
    .official__text-container {
        gap: 2rem;
    }
    .official__text-container h2 {
        font-size: 2.5rem;
        line-height: 2rem;
    }
    .official__text-container p {
        padding-right: 0rem;
    }
    /* End Of Official Reg Section Styling */

    /* Widget Coontainer Section Styling */
    .widget__container {
        padding: 15% 0% 15%;
    }
    .widget__wrapper {
        padding: 0% 5% 0%;
        text-align: center;
    }
    .widget__wrapper h1 {
        font-size: 3em;
        line-height: 3rem;
    }
    .widget__wrapper p {
        font-size: 1rem;
    }
    .lower-widget {
        margin: 15% 0%;
    }
    .widget-btn {
        padding: 0% 10% 0%;
        margin: 5% auto 0%;
    }
    .widget-btn p {
        padding: 2% 0% 10%;
    }
    /* End Of Widget Container Section Styling */
    
    /* In-Out Transaction Section Styling */
    .in-out__container {
        padding: 0% 5% 10%;
    }
    .in-out__wrapper {
        gap: 5rem;
    }
    .in-out__box {
        display: flex;
        flex-direction: column;
        margin: 0 0%;
    }
    .in-out__box img {
        width: 250px;
        margin: 0 auto;
    }
    .in-out__text {
        gap: 1rem;
    }
    .in-out__text h2 {
        font-size: 2rem;
        padding-top: 0rem;
    }

    /* End Of In-Out Transaction Section Styling */
    
    /* Testimonial Section Styling */
    .testimoniial__wrapper {
        padding: 20% 10%;
    }
    .test-heading {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 15% 10% 0%;
    }
    .test-heading h2 {
        line-height: 35px;
    }
    .tophand {
        position: absolute;
        top: 29px;
        right: -22%;
        width: 200px;
        z-index: 2;
        display: block;
    }
    .bottomhand {
        bottom: 35px;
        left: -22%;
        width: 200px;
    }
    .testimoniial__slide-content {
        border-radius: 5px;
        /* padding: 1% 0% 5%; */
        /* border: 1px solid blue; */
    }
    .swiper-pagination-bullet {
        background-color: blue !important;
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background-color: #4db5ff !important;
    }
    /* End Of testimonial Section Styling */
    
    /* Referral Section Styling */
    .referral__container {
        background: url(../assets/ref-bg.png), var(--color-white);
        padding: 15% 10%;
    }
    .ref-text {
        width: fit-content;
    }
    .ref-text h2 {
        font-size: 1.8em;
        padding-bottom: 1rem;
    }
    /* End Of Referral Section Styling */
    
    /* Calculator Section Styling */
    .calculator-text h1 {
        font-size: 2rem;
    }
    .cal__device {
        margin: 15% 0%;
        padding: 0 5%;
    }
    /* End Of Calculator Section Styling */

    /* Platform Section Styling */
    .platform__wrapper {
        padding: 10% 0%;
        /* border: 3px solid #2c2c6c; */
        position: relative;
    }
    .platform__heading h2 {
        font-size: 2rem;
        line-height: 2rem;
    }
    .platform__box {
        width: 100%;
        margin-top: 10%;
        flex-direction: row;
        gap: 2rem;
    }
    .platform__img {
        position: relative;
        margin: 10% auto;
        padding: 0 10%;
    }
    .platform__img img {
        width: 250px;
    }
    /* End Of Payment Section Styling */

    /* Footer Section Styling */
    .footer__wrapper {
        flex-direction: column;
        gap: 2rem;
        padding-top: 20%;
    }
    .footer__signup {
        width: 100%;
    }
    .quicklink1 {
        flex-direction: column;
        gap: 2rem;
    }
    .quicklink2 {
        margin-bottom: 10%;
        margin-top: 10%;
    }
    /* End Of Footer Section Styling */
    
    
    
    
    
    /* ============================================================== */
    /* ============================ About Page Styling */
    .about_hero__container {
        height: 100dvh;
    }
    .about_hero__wrapper {
        padding-top: 50%;
        flex-direction: column;
        gap: 2rem;
    }
    .about_heading h1 {
        font-size: 2rem;
    }
    .about_img img {
        width: 300px;
    }
    
    /* ========================= Get Income Section */
    .get_income__wrapper {
        margin: 5% 0% 10%;
    }
    .about-sub-heading {
        text-align: center;
        margin-bottom: 2rem;
    }
    .about-sub-heading h2 {
        text-align: center;
    }
    .about__text {
        text-align: center;
        margin: 0% 0%;
    }
    /* End Of About Hero Section Styling */
    
    /*========================================= Count Section */
    .aboutcount__wrapper {
        justify-content: center;
        margin: 30% auto 5%;
    }
    /*End of Count Section */
    

    /* ====================================================================== */
    /* ============================ Ftp Page Stying */
    .fpt__container {
        height: 40vh;
        padding: 0% 10%;
    }
    .fpt__wrapper {
        padding-top: 50%;
    }
    .fpt_heading h1 {
        font-size: 1.8rem;
    }
    .pt__wrapper {
        margin: 15% 5% 30%;
    }

}
