@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/** <-- ===== Universal CSS ===== --> */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
html{
    scroll-behavior: smooth;
}
h1{
    font-family: "Plus Jakarta Sans", sans-serif;
}
img{
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.9) 0px 8px 24px;
}
iframe{
    border-radius: 15px;
}
section:before{
    content: attr(data-text);
}

/** <-- ===== Header Section Styling ===== --> */

header{
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.logo{
    text-decoration: none;
}
.logo img{
    width: 150px;
    border-radius: 0;
    box-shadow: none;
}
.nav_links ul{
    gap: 20px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_links ul li{
    list-style: none;
}
.nav_links ul li a{
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
.nav_links ul li:last-child a{
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    background-color: #4E70F8;
}
.nav_links ul li:last-child:hover a{
    background-color: #3451c5;
}
.mobileMenu{
    display: none;
}
.mobileMenu i{
    font-size: 24px;
    font-weight: 500;
}

/** <-- ===== Investment Section Styling ===== --> */

.investment .row{
    display: flex;
    align-items: center;
    justify-content: center;
}
.investmentStars{
    padding: 20px 0 10px;
}
.investmentStars i{
    font-size: 25px;
    color: #FFBF0B;
}
.investmentContent h1{
    color: #4E70F8;
    font-weight: 600;
}
.investmentContent a{
    color: #fff;
    border-radius: 4px;
    padding: 12px 30px;
    text-decoration: none;
    background-color: #4E70F8;
}
.investmentContent a:hover{
    background-color: #3451c5;
}
.investmentImage img{
    width: 100%;
}

/** <-- ===== Fund Vision Section Styling ===== --> */

.fundVision{
    padding: 75px 0 50px;
    text-align: center;
}
.fundVision p{
    font-size: 17px;
}

/** <-- ===== Expert Partner Section Styling ===== --> */

.expertPartner{
    padding: 50px 0;
    text-align: center;
}
.expertPartner p{
    font-size: 17px;
}
.partnerSteps{
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    align-items: center;
    justify-content: center;
}
.partnerStep{
    gap: 10px;
    width: 350px;
    padding: 10px;
    display: flex;
    text-align: left;
    border-radius: 10px;
    border: 1px solid lightgray;
}
.partnerStep i{
    color: #4E70F8;
    font-size: 22px;
}
.partnerStep p{
    margin: 0;
}

/** <-- ===== Year Growth Section Styling ===== --> */

.yearGrowth{
    padding: 50px 0;
}
.yearGrowthImg{
    display: flex;
    align-items: center;
    justify-content: center;
}
.yearGrowthImg img{
    width: 100%;
    height: 400px;
    object-fit: contain;
}
.yearGrowthContent h1{
    font-weight: 600;
}
.yearGrowthContent p{
    padding: 0 10px;
}

/** <-- ===== Breaking Fund Section Styling ===== --> */

.hero{
    padding: 50px 0;
}
.heroImage{
    width: 100%;
    height: 100%;
}
.heroImage img{
    width: 100%;
}

/** <-- ===== Distinctive Section Styling ===== --> */

.distinctive,
.breakingFund{
    padding: 50px 0;
    text-align: center;
}
.distinctiveCarousel{
    width: 100%;
    margin: auto;
}
.video-slide{
    outline: none;
}
.slick-prev, .slick-next{
    position: absolute;
    top: 50%;
    z-index: 100;
    border: none;
    padding: 15px;
    color: white;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    opacity: 1 !important;
    display: block !important;
    width: 50px; height: 50px;
    transform: translateY(-50%);
    background: #4E70F8 !important;
}
.slick-prev{
    left: -50px;
}
.slick-next{
    right: -50px;
}


/** <-- ===== Services Section Styling ===== --> */

.services{
    padding: 50px 0;
}
.services h1{
    padding: 50px 0 20px;
    text-align: center;
}
.carousel-container {
    width: 100%;
    margin: auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.carousel{
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.carousel-card{
    margin: 5px;
    height: 465px;
    min-width: 31%;
    text-align: center;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
}
.carousel-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    box-shadow: none;
    border-radius: 0;
}
.carouselContent h5{
    margin: 0;
    padding: 30px 0;
}
.carouselContent p{
    padding-bottom: 20px;
}
.carouselContent a{
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    padding: 15px 100px;
    text-decoration: none;
    background-color: #4E70F8;
}
.prev, .next{
    top: 50%;
    border: none;
    width: 35px;
    height: 35px;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
}
.prev{
    left: 10px;
}
.next{
    right: 10px;
}
.prev:hover, .next:hover{
    background-color: rgba(0, 0, 0, 0.8);
}

/** <-- ===== Testimonial Section Styling ===== --> */

.testimonial{
    padding: 50px 0 75px;
    text-align: center;
}
.testimonial h1{
    padding: 0 0 20px;
    font-weight: 700;
}
.testimonial h4{
    color: gray;
    font-size: 18px;
    font-weight: 400;
}
.testimonialCard{
    padding: 20px;
}
.testimonialCard i{
    color: #4E70F8;
}
.testimonialCard .bx{
    font-size: 40px;
    padding: 20px 0;
}
.testimonialCard h5{
    font-weight: 600;
}

/** <-- ===== Great News Section Styling ===== --> */

.greatNews{
    padding: 50px 0;
}
.greatNewsContent{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.greatNewsImg img{
    width: 100%;
}

/** <-- ===== Contact US Section Styling ===== --> */

.contactUS{
    padding: 75px 0;
    text-align: center;
}
.contactUS form{
    box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
}
.formGroups{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.formGroups:first-child .formGroup{
    padding-top: 20px;
}
.formGroup{
    display: flex;
    align-items: flex-start;
    justify-content: start;
    flex-direction: column;
}
form label{
    font-weight: bold;
}
.inputPlusIcon{
    display: flex;
    padding: 0 5px;
    border-radius: 4px;
    align-items: center;
    border: 1px solid lightgray;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.inputPlusIcon:focus-within{
    outline: none;
    border-color: #4E70F8;
    background-color: rgb(59 139 246 / .1);
}
.inputPlusIcon input{
    flex: 1;
    width: 300px;
    border: none;
    outline: none;
    background: none;
    padding: 12px 12px 12px 5px;
}
.phoneInput input{
    width: 660px;
}
textarea{
    outline: none;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid lightgray;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
textarea:focus{
    outline: none;
    border-color: #4E70F8;
    background-color: rgb(59 139 246 / .1);
}
.formBtn{
    display: block;
    width: 100%;
    padding: 10px;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .5px;
    border-radius: 4px;
    margin: 0 30px 20px;
    background-color: #4E70F8;
}

/** <-- ===== Meet Team Section Styling ===== --> */

.meetTeam{
    padding: 50px 0;
    text-align: center;
}
.meetTeamContent h1{
    padding: 20px 0;
    font-weight: 600;
}
.meetTeamContent p{
    font-size: 18px;
    font-weight: 400;
}
.teams{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.team{
    width: 33.33%;
    height: 250px;
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.4) 0px 4px 8px;
}
.team p{
    margin: 0;
    font-size: 16px;
}
.teamImgPlusName{
    display: flex;
    align-items: center;
    text-align: left;
    gap: 10px;
    padding: 10px 0 20px;
}
.teamImgPlusName img{
    width: 60px;
    height: 60px;
    box-shadow: none;
    border-radius: 50px;
}
.headingPlusLine h5{
    margin: 0;
    padding: 0;
}
.headingPlusLine p{
    margin: 0;
    padding: 0;
    font-size: 16px;
}

/** <-- ===== Brands Section Styling ===== --> */

.brands{
    padding: 75px 0;
    text-align: center;
}
.brands h1{
    padding: 0 0 20px;
}
.brandImg{
    width: 100%;
}
.brandImg img{
    width: 60%;
    height: 50px;
    box-shadow: none;
}

/** <-- ===== Letters Section Styling ===== --> */

.swiper{
    width: 100%;
    height: 100%;
    text-align: center;
}
.swiper h1{
    padding: 30px 0;
}
.swiper-slide{
    display: flex;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid lightgray;
}
.swiper-slide img{
    width: 100%;
    height: 300px;
    display: block;
    box-shadow: none;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.swiper-slide p{
    font-size: 16px;
    font-weight: 500;
}

/** <-- ===== Audio File Section Styling ===== --> */

.audioFile{
    padding: 75px 0;
    text-align: center;
}
.audioFile audio{
    width: 500px;
}
.audioFiles{
    gap: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

/** <-- ===== Freq Question Section Styling ===== --> */

.freqQuestion{
    padding: 50px 0;
}
.questionPlusAnswer{
    padding: 20px 0;
}
.questionPlusAnswer p{
    color: gray;
}
.questionPlusIcon{
    display: flex;
    align-items: center;
    gap: 20px;
}
.questionPlusIcon h5{
    width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    margin: 0;
    font-weight: 600;
    align-items: center;
    border-radius: 50px;
    justify-content: center;
    background-color: #4E70F8;
}
.finalLine{
    cursor: pointer;
    text-align: center;
}

/** <-- ===== About Us Section Styling ===== --> */

.aboutUs{
    padding: 75px 0;
}
.aboutUs h1{
    font-weight: 600;
}
.aboutUsImg img{
    width: 100%;
}

/** <-- ===== Call Us Section Styling ===== --> */

.callUs{
    width: 100%;
    color: #fff;
    padding: 20px 0;
    margin: 50px 0;
    text-align: center;
    background-color: #4E70F8;
}
.callUs h1{
    margin: 0;
    cursor: pointer;
    font-weight: 600;
}

/** <-- ===== Investment Advisory Section Styling ===== --> */

.investmentAdvisory{
    padding: 100px 0;
    text-align: center;
}
.investmentAdvisory h1{
    font-weight: 600;
}
.advisoryImgaes{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.advisoryImgaes img{
    width: 200px;
    height: 200px;
    box-shadow: none;
    border-radius: 50%;
}

/** <-- ===== You Know Section Styling ===== --> */

.youKnow{
    height: 50vh;
    display: flex;
    text-align: center;
    align-items: center;
    border-radius: 4px;
    flex-direction: column;
    justify-content: center;
    background-color: #F2FAFF;
    border: 1px solid #4E70F8;
}
.youKnow i{
    font-size: 35px;
    color: #4E70F8;
}

/** <-- ===== Footer Section Styling ===== --> */

.siteMap{
    margin: 50px 0 0;
}

/** <-- ===== Footer Section Styling ===== --> */

footer{
    padding: 50px 0;
}
footer img{
    width: 150px;
    margin: 20px 0;
    box-shadow: none;
}
.address{
    display: flex;
    align-items: center;
    gap: 5px;
}
.address p{
    margin: 0;
}
.address i{
    font-size: 22px;
    color: #4E70F8;
}
footer h6{
    font-weight: 600;
}
.footerLinks{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.smContact{
    display: none;
}
.bottomCenter{
    display: flex;
    align-items: center;
    gap: 20px;
}
footer a{
    color: #000;
    padding: 5px 0;
    font-weight: 400;
    text-decoration: none;
}
.footerBottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/*todo <-- ===== Other Page ===== --> */


/** <-- ===== Expert Investment Section Styling ===== --> */

.expertInvestment{
    padding: 50px 0;
}
.expertInvestment h1{
    color: #4E70F8;
    font-weight: 600;
}
.expertInvestment a{
    color: #fff;
    border-radius: 4px;
    padding: 12px 30px;
    text-decoration: none;
    background-color: #4E70F8;
}
.expertInvestment a:hover{
    background-color: #3451c5;
}
.expertInvestmentImg img{
    width: 100%;
}

/** <-- ===== Wealth Managment section Styling ===== --> */

.wealthManagment{
    padding: 75px 0;
}
.wealthManagment img{
    width: 100%;
    height: 350px;
}
.wealthManagment h1{
    font-weight: 600;
}
.wealthManagment a{
    color: #fff;
    border-radius: 4px;
    padding: 12px 30px;
    text-decoration: none;
    background-color: #4E70F8;
}
.wealthManagment a:hover{
    background-color: #3451c5;
}

/** <-- ===== Specials section Styling ===== --> */

.specialize{
    padding: 50px 0;
}
.specialize h1{
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
}
.specializeCards{
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.specializeCard{
    width: 350px;
    height: 450px;
    display: flex;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(149, 157, 165, 0.4) 0px 4px 8px;
}
.specializeCard1 img{
    width: 350px;
    height: 150px;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}
.specializeCard2 h3{
    padding: 20px 0;
}
.specializeCard2 p{
    padding: 10px 10px 20px;
}
.specializeCard2{
    width: 300px;
    height: 330px;
    margin-top: -50px;
    background-color: #fff;
    border: 1px solid #007BFF;
    border-top: 5px solid #007BFF;
}
.specializeCard2 a{
    color: #fff;
    border-radius: 4px;
    padding: 12px 30px;
    text-decoration: none;
    background-color: #4E70F8;
}
.specializeCard2 a:hover{
    background-color: #3451c5;
}
.hidden {
    display: none;
}
#toggle-btn{
    cursor: pointer;
    border-radius: 5px;
    padding: 15px 50px;
    background: transparent;
    border: 1px solid #007BFF;
}
#toggle-btn:hover{
    color: #fff;
    transition: .5s ease-in-out;
    background-color: #4E70F8;
}

/** <-- ===== Privacy Policy section ===== --> */

.privacyPolicy h2{
    padding: 50px 0 30px;
}
.privacyPolicy p{
    margin: 0;
}


/** <-- ===== PDF section ===== --> */

/* .pdfUploadContainer{
    padding: 50px 0 0;
}
.pdfUploadContainer label{
    font-weight: 500;
    padding: 0 20px;
    font-size: 22px;
}
#pdfUploadInput{
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #4E70F8;
    margin-bottom: 10px;
}
#pdfUploadButton{
    display: inline-block;
    border: none;
    color: #fff;
    font-size: 18px;
    margin: 0 0 0 20px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 4px;
    letter-spacing: .5px;
    background-color: #4E70F8;
    cursor: pointer;
}
#pdfDownloadButton{
    display: inline-block;
    border: none;
    color: #fff;
    font-size: 18px;
    margin: 0 0 0 20px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 4px;
    letter-spacing: .5px;
    background-color: #4E70F8;
    cursor: pointer;
}

@media screen and (max-width: 768px){
    .pdfUploadContainer{
        padding: 20px 0;
    }
    #pdfUploadInput{
        font-size: 16px;
        margin-bottom: 10px;
    }
    #pdfUploadButton,
    #pdfDownloadButton{
        width: 80%;
        font-size: 16px;
        padding: 10px;
        margin: 10px 0;
    }
} */



/*todo <-- ===== Media Query Start ===== --> */

@media (max-width: 768px){
    .row{
        width: 100%;
    }
    .footerLeft br{
        display: none;
    }

    /*? ====== hamburger ======*/

    header {
        z-index: 1000;
        position: relative;
    }
    .nav_links {
        top: 223px;
        left: -100%;
        width: 100%;
        z-index: 9999;
        padding: 0 0 20px;
        position: absolute;
        transition: 1s ease-in;
        background-color: #fff;
        transform: translate(-50%, -50%);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    .nav_links.active {
        left: 50%;
        transition: 1s ease-in;
    }
    .nav_links ul {
        flex-direction: column;
    }
    .nav_links ul li a {
        font-size: 13px;
    }
    .nav_links ul li:last-child a {
        padding: 5px;
    }
    .mobileMenu {
        display: block;
    }

    /*? ====== investment ======*/

    .investment .row{
        flex-direction: column-reverse;
    }
    .investmentContent{
        width: 100%;
    }
    .investmentContent h1{
        font-size: 30px;
    }
    .investmentContent p{
        font-size: 18px;
    }
    .investmentContent a{
        width: 94%;
        color: #fff;
        padding: 12px 0;
        font-size: 20px;
        margin-top: 30px;
        text-align: center;
        position: absolute;
        border-radius: 4px;
        text-decoration: none;
        background-color: #4E70F8;
    }
    .investmentImage img{
        width: 100%;
        margin-top: 20px;
    }

    /*? ====== Fund Vision ======*/

    .fundVision{
        padding-top: 150px;
    }
    .fundVision h1{
        font-weight: 700;
    }

    /*? ====== Expert Partner  ======*/

    .expertPartner h5{
        color: #4E70F8;
        font-weight: 500;
    }
    .expertPartner h1,
    .breakingFund h1,
    .hero h1{
        font-weight: 600;
    }
    .hero{
        text-align: center;
    }

    /*? ====== Year Growth ======*/

    .yearGrowthImg{
        margin: 0 10px;
    }
    .yearGrowthImg img{
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }

    /*? ====== Services ======*/

    #carousel1{
        padding: 15px;
    }
    .carousel-container{
        overflow: visible;
    }
    .carousel{
        flex-wrap: wrap;
        transform: none; 
    }
    .carousel-card{
        flex: 0 0 98%;
    }
    button{
        display: none;
    }
    .cloned-card{
        display: none;
    }

    /*? ====== Contact Us ======*/
    
    .contactForm{
        width: 95%;
        padding: 0;
        margin-left: 20px;
    }
    .formGroups{
        padding: 20px;
    }
    .phoneInput input{
        width: 300px;
    }
    textarea{
        width: 320px;
    }

    /*? ====== Meet Team ======*/

    .teams{
        flex-wrap: wrap;
        justify-content: center;
    }
    .team{
        width: 90%;
    }

    /*? ====== Great News ======*/

    .greatNews{
        text-align: center;
    }
    .greatNews h1{
        font-weight: 600;  
        padding: 10px 0 20px;
    }
    .greatNewsImg img{
        width: 100%;
        margin: 20px 10px 0;
    }

    /*? ====== Brands ======*/

    .brandImg img{
        margin: 20px 0;
        height: 40px;
        width: 40%;
    }

    /*? ====== Letters ======*/

    .letterCard{
        width: 100%;
        margin: 0 0 20px 20px;
    }
    .audioFile audio{
        width: 90%;
    }

    /*? ====== Freq Question ======*/

    .freqQuestion{
        padding: 25px;
    }
    .questionPlusIcon h5{
        width: 35px;
        height: 35px;
        border-radius: 50px;
    }

    /*? ====== About ======*/

    .aboutUs{
        padding: 20px 0;
    }
    .aboutUs h1,
    .aboutUs p{
        padding: 20px;
    }
    .aboutUsImg img{
        width: 100%;
        margin: 0;
    }
    .investmentAdvisory{
        padding-top: 50px;
    }
    .address{
        padding: 20px 0;
    }
    .footerBottom{
        padding-top: 20px;
        gap: 10px;
        flex-direction: column-reverse;
    }
    .lgContact{
        display: none;
    }
    .smContact{
        display: block;
    }
    .youKnow{
        width: 100%;
    }
    .advisoryImgaes{
        flex-wrap: wrap;
        gap: 50px;
    }
    .advisoryImgaes img{
        width: 125px;
        height: 125px;
    }



/*todo <-- ===== Other Page ===== --> */

    /*? ====== Mix sections ======*/

    .expertInvestment .row{
        display: flex;
        flex-direction: column-reverse;
    }
    .wealthManagment img{
        width: 100%;
        height: 250px;
        margin-bottom: 20px;
        box-shadow: rgba(149, 157, 165, 0.4) 0px 4px 8px;
    }
    .specializeCards{
        margin-left: 10px;
    }
}
@media (min-width: 769px) and (max-width: 1199px){
    #carousel1 .carousel-card{
        height: 520px;
    }
    .carouselContent a{
        padding: 10px 40px;
    }
    #carousel2 .carousel-card{
        height: 600px;
    }
    .formGroups{
        padding: 20px;
    }
    .phoneInput input{
        width: 300px;
    }
    textarea{
        width: 100%;
    }
    .team{
        height: 275px;
    }
    .team p{
        font-size: 13px;
    }
    .advisoryImgaes{
        gap: 30px;
    }
    .youKnow{
        height: 100%;
    }
}