/*=========================================================
            FinGrowTrack Enterprise Website
                    Version 2.0
=========================================================*/

/*=========================================================
                    GOOGLE FONT
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================================
                    RESET
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*=========================================================
                    BODY
=========================================================*/

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#F8FAFC;
    color:#334155;
    overflow-x:hidden;
    line-height:1.7;

}

/*=========================================================
                COMMON STYLES
=========================================================*/

section{

    padding:100px 0;

}

.container{

    max-width:1200px;

}

img{

    max-width:100%;

}

/*=========================================================
                    HEADINGS
=========================================================*/

h1{

    font-size:58px;
    font-weight:700;
    color:#0F172A;

}

h2{

    font-size:42px;
    font-weight:700;
    color:#0F172A;

}

h3{

    font-size:30px;
    font-weight:600;

}

h4{

    font-size:24px;
    font-weight:600;

}

h5{

    font-size:20px;
    font-weight:600;

}

p{

    font-size:17px;
    color:#64748B;

}

/*=========================================================
                    LINKS
=========================================================*/

a{

    text-decoration:none;
    transition:.3s;

}

a:hover{

    color:#2563EB;

}

/*=========================================================
                    BUTTONS
=========================================================*/

.btn{

    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;

}

.btn-primary{

    background:#2563EB;
    border:none;

}

.btn-primary:hover{

    background:#1D4ED8;

}

.btn-outline-primary{

    border:2px solid #2563EB;
    color:#2563EB;

}

.btn-outline-primary:hover{

    background:#2563EB;
    color:#ffffff;

}

/*=========================================================
                SECTION HEADING
=========================================================*/

.section-badge{

    display:inline-block;
    background:#EAF2FF;
    color:#2563EB;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;

}

.section-title{

    margin-top:20px;
    margin-bottom:20px;

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:#64748B;

}

/*=========================================================
                    NAVBAR
=========================================================*/

.navbar{

    background:#ffffff !important;
    padding:16px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.navbar-brand img{

    height:60px;

}

.navbar-nav .nav-link{

    color:#334155 !important;
    font-weight:500;
    margin-left:20px;

}

.navbar-nav .nav-link:hover{

    color:#2563EB !important;

}

.navbar .btn{

    margin-left:20px;

}

/*=========================================================
                END OF PART 1
=========================================================*/
/*=========================================================
                    HERO SECTION
=========================================================*/

.hero-section{

    background:linear-gradient(135deg,#F8FBFF,#EEF5FF);
    padding:100px 0;

}

.hero-badge{

    display:inline-block;
    background:#2563EB;
    color:#ffffff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;

}

.hero-title{

    font-size:62px;
    font-weight:800;
    line-height:1.15;
    color:#0F172A;
    margin-bottom:20px;

}

.hero-title span{

    display:block;
    color:#2563EB;

}

.hero-tagline{

    color:#2563EB;
    font-size:22px;
    font-weight:600;
    margin-bottom:20px;

}

.hero-description{

    font-size:18px;
    color:#64748B;
    line-height:1.9;
    margin-bottom:35px;

}

.hero-buttons .btn{

    padding:14px 32px;
    border-radius:12px;

}

.hero-buttons .btn-outline-primary{

    margin-left:15px;

}

/*=========================================================
                    HERO CARD
=========================================================*/

.hero-card{

    background:#ffffff;
    border-radius:25px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.hero-card-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;

}

.hero-card-header h5{

    margin:0;
    color:#0F172A;

}

.status{

    color:#16A34A;
    font-size:14px;
    font-weight:600;

}

/*=========================================================
                    MINI CARDS
=========================================================*/

.mini-card{

    background:#F8FAFC;
    border-radius:15px;
    padding:25px;
    text-align:center;
    transition:.3s;

}

.mini-card:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(37,99,235,.12);

}

.mini-card h3{

    font-size:36px;
    margin-bottom:12px;

}

.mini-card h6{

    font-size:16px;
    font-weight:600;
    color:#334155;
    margin:0;

}

/*=========================================================
                    HERO FOOTER
=========================================================*/

.hero-footer{

    text-align:center;
    padding-top:25px;
    border-top:1px solid #E2E8F0;

}

.hero-footer strong{

    color:#2563EB;
    font-size:18px;

}

.hero-footer small{

    color:#64748B;

}

/*=========================================================
                HERO RESPONSIVE
=========================================================*/

@media(max-width:991px){

.hero-section{

text-align:center;

}

.hero-card{

margin-top:50px;

}

.hero-buttons .btn{

display:block;
width:100%;
margin-bottom:15px;

}

.hero-buttons .btn-outline-primary{

margin-left:0;

}

.hero-title{

font-size:42px;

}

}

@media(max-width:576px){

.hero-title{

font-size:34px;

}

.hero-tagline{

font-size:18px;

}

.hero-description{

font-size:16px;

}

.hero-card{

padding:25px;

}

}
/*=========================================================
                    ABOUT SECTION
=========================================================*/

.about-section{

    padding:100px 0;
    background:#ffffff;

}

.about-card{

    background:#F8FAFC;
    border-radius:20px;
    padding:35px;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.about-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.about-card h3{

    color:#0F172A;
    margin-bottom:20px;

}

.about-card p{

    color:#64748B;
    line-height:1.8;

}

/*=========================================================
                WHY CHOOSE SECTION
=========================================================*/

.why-section{

    padding:100px 0;
    background:#F8FAFC;

}

.feature-card{

    background:#ffffff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.feature-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.feature-icon{

    width:90px;
    height:90px;

    background:#EAF2FF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    transition:.35s;

}
.feature-icon i{

    font-size:38px;

    color:#2563EB;

}
.feature-card h4{

    color:#0F172A;
    margin-bottom:15px;

}

.feature-card p{

    color:#64748B;
    margin:0;

}

/*=========================================================
                FUTURE PRODUCTS
=========================================================*/

.future-products{

    padding:100px 0;
    background:#ffffff;

}

.product-card{

    background:#F8FAFC;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

border-top:4px solid transparent;

overflow:hidden;
.product-card:hover{

    border-top:4px solid #2563EB;

}

.product-icon{

    width:90px;
    height:90px;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    transition:.35s;

}
.product-icon i{

    font-size:38px;

    color:#ffffff;

}

.product-card h4{

    color:#0F172A;
    margin-bottom:15px;

}

.product-card p{

    color:#64748B;
    margin-bottom:20px;

}

.coming-soon{

    display:inline-block;

    background:#EAF2FF;

    color:#2563EB;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

}

    display:inline-block;
    background:#2563EB;
    color:#ffffff;
    padding:8px 18px;
    border-radius:25px;
    font-size:14px;
    font-weight:600;

}
/*=========================================================
                CONTACT SECTION
=========================================================*/

.contact-section{

    padding:100px 0;
    background:#F8FAFC;

}

.contact-info{

    background:#ffffff;
    padding:40px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.contact-info h4{

    color:#0F172A;
    margin-bottom:20px;

}

.contact-info p{

    color:#64748B;
    margin-bottom:18px;

}

.contact-form{

    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}
.contact-form .form-control{

    height:55px;

    border-radius:12px;

    border:1px solid #E2E8F0;

    padding:15px 18px;

    transition:.3s;

}
.contact-form textarea.form-control{

    height:170px;

    resize:none;

}

.contact-form .form-control:focus{

    border-color:#2563EB;
    box-shadow:none;

}

.contact-form button{

    width:100%;

    height:55px;

    border-radius:12px;

    font-weight:600;

    transition:.35s;

}
.contact-form button:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(37,99,235,.25);

}

/*=========================================================
                    FOOTER
=========================================================*/

.footer-section{

    background:#0F172A;
    color:#ffffff;
    padding:70px 0 20px;

}

.footer-logo{

    color:#ffffff;
    margin-bottom:15px;

}

.footer-section h5{

    color:#ffffff;
    margin-bottom:20px;

}

.footer-section p{

    color:#CBD5E1;

}

.footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#CBD5E1;
    transition:.3s;

}

.footer-links a:hover{

    color:#2563EB;

}

.footer-section hr{

    border-color:rgba(255,255,255,.10);
    margin:35px 0;

}

.footer-bottom{

    color:#CBD5E1;

}


/*=========================================================
                SOCIAL ICONS
=========================================================*/

.social-icon{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:42px;
    height:42px;

    margin-left:10px;

    border-radius:50%;

    background:#1E293B;

    color:#ffffff;

    transition:.3s;

}

.social-icon:hover{

    background:#2563EB;
    color:#ffffff;
    transform:translateY(-5px);

}


/*=========================================================
                RESPONSIVE DESIGN
=========================================================*/

@media(max-width:991px){

    .navbar-nav{

        text-align:center;
        margin-top:20px;

    }

    .navbar .btn{

        margin-left:0;
        margin-top:15px;

    }

    section{

        padding:80px 0;

    }

}

@media(max-width:768px){

    h1{

        font-size:42px;

    }

    h2{

        font-size:32px;

    }

    p{

        font-size:16px;

    }

    .hero-card,
    .about-card,
    .feature-card,
    .product-card,
    .contact-info,
    .contact-form{

        margin-bottom:25px;

    }

}

@media(max-width:576px){

    h1{

        font-size:34px;

    }

    h2{

        font-size:28px;

    }

    .btn{

        width:100%;
        margin-bottom:15px;

    }

    .hero-buttons .btn{

        margin-left:0 !important;

    }

    .social-icon{

        margin:5px;

    }

}


/*=========================================================
                CUSTOM SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#E2E8F0;

}

::-webkit-scrollbar-thumb{

    background:#2563EB;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#1D4ED8;

}


/*=========================================================
            FinGrowTrack Enterprise Website
                    Version 2.0
                CSS COMPLETED
=========================================================*/
/*=========================================
            HERO LOGO
=========================================*/

/* Hero Logo */

.hero-logo{

    display:flex;

    justify-content:center;

    align-items:center;

    height:100%;

}

.hero-logo img{

    max-width:420px;

    width:100%;

    height:auto;

}
/*=========================================
        HERO PREMIUM UI
=========================================*/

.hero-section{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#F8FBFF 0%,#EEF5FF 50%,#FFFFFF 100%);

}


/* Background Glow */

.hero-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.hero-section::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(59,130,246,.06);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

    filter:blur(50px);

}
/*=========================================
            HERO LOGO
=========================================*/

.hero-logo{

    position:relative;

    text-align:center;

}

.hero-logo img{

    width:100%;

    max-width:420px;

    animation:floatLogo 4s ease-in-out infinite;

    filter:drop-shadow(0 20px 40px rgba(37,99,235,.25));

}


/* Floating Animation */

@keyframes floatLogo{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}
.hero-buttons .btn{

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.hero-buttons .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(37,99,235,.25);

}

.hero-buttons .btn-outline-primary:hover{

    transform:translateY(-4px);

}
/*=========================================
        BUSINESS HIGHLIGHTS
=========================================*/

.highlights-section{

    padding:70px 0;
    background:#ffffff;

}

.highlight-card{

    background:#F8FAFC;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.highlight-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.highlight-card i{

    font-size:48px;
    color:#2563EB;
    margin-bottom:20px;

}

.highlight-card h4{

    color:#0F172A;
    margin-bottom:15px;

}

.highlight-card p{

    color:#64748B;
    margin:0;

}
/*=========================================
        CONTACT PREMIUM
=========================================*/

.contact-item{

    display:flex;

    align-items:center;

    margin-bottom:25px;

}

.contact-icon{

    width:60px;

    height:60px;

    background:#EAF2FF;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-right:18px;

    transition:.3s;

}

.contact-icon i{

    font-size:22px;

    color:#2563EB;

}

.contact-item h6{

    margin:0;

    color:#0F172A;

    font-weight:600;

}

.contact-item p{

    margin:0;

    color:#64748B;

}

.contact-item:hover .contact-icon{

    background:#2563EB;

}

.contact-item:hover .contact-icon i{

    color:#ffffff;

}
/*=========================================
        WHY PRODUCTS
=========================================*/

.why-products{

    background:#F8FAFC;

}

.why-product-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.why-product-card i{

    font-size:42px;

    color:#2563EB;

    margin-bottom:20px;

}

.why-product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

/*=========================================
        CTA SECTION
=========================================*/

.cta-section{

    padding:80px 0;

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

}

.cta-box{

    color:#ffffff;

}

.cta-box h2{

    color:#ffffff;

    margin-bottom:20px;

}

.cta-box p{

    color:#E2E8F0;

    max-width:700px;

    margin:0 auto 35px;

}

.cta-box .btn{

    min-width:200px;

    border-radius:50px;

}
/*=========================================
        ABOUT PAGE
=========================================*/

.company-section{

    background:#ffffff;

}

.mission-section{

    background:#F8FAFC;

}
/*=========================================
        CORE VALUES
=========================================*/

.values-section{

    background:#ffffff;

}

.value-card{

    background:#F8FAFC;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.value-icon{

    width:80px;

    height:80px;

    background:#EAF2FF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

}

.value-icon i{

    font-size:32px;

    color:#2563EB;

}

/*=========================================
        WHY FINGROWTRACK
=========================================*/

.why-fgt{

    background:#F8FAFC;

}

.why-list{

    list-style:none;

    padding:0;

}

.why-list li{

    margin-bottom:18px;

    font-size:17px;

}

.why-list i{

    color:#2563EB;

    margin-right:10px;

}
/*=========================================
        JOURNEY SECTION
=========================================*/

.journey-section{

    background:#ffffff;

}

.timeline-card{

    background:#F8FAFC;

    padding:35px 30px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.timeline-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.timeline-year{

    display:inline-block;

    background:#2563EB;

    color:#ffffff;

    padding:10px 22px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}
/*=========================================
            CONTACT HERO
=========================================*/

.contact-hero{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #F8FBFF,
        #EEF5FF,
        #FFFFFF
    );

    position:relative;

    overflow:hidden;

}

.contact-hero::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.contact-hero::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(59,130,246,.06);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

    filter:blur(50px);

}
/*=========================================
        CONTACT INFO SECTION
=========================================*/

.contact-info-section{

    background:#ffffff;

}

.contact-card{

    background:#F8FAFC;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.contact-card-icon{

    width:80px;

    height:80px;

    background:#EAF2FF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

}

.contact-card-icon i{

    font-size:32px;

    color:#2563EB;

}

.contact-card h4{

    margin-bottom:15px;

    color:#0F172A;

}

.contact-card p{

    color:#64748B;

    margin:0;

}
/*=========================================
        CONTACT FORM SECTION
=========================================*/

.contact-form-section{

    background:#F8FAFC;

}

.contact-form-box{

    background:#ffffff;

    padding:50px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form-box .form-label{

    font-weight:600;

    color:#0F172A;

    margin-bottom:10px;

}

.contact-form-box .form-control{

    height:55px;

    border:1px solid #E2E8F0;

    border-radius:12px;

    padding:15px;

    transition:.3s;

}

.contact-form-box textarea.form-control{

    height:180px;

    resize:none;

}

.contact-form-box .form-control:focus{

    border-color:#2563EB;

    box-shadow:0 0 0 0.2rem rgba(37,99,235,.15);

}

.contact-form-box button{

    min-width:220px;

    border-radius:50px;

    transition:.35s;

}

.contact-form-box button:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(37,99,235,.25);

}
/*=========================================
            FAQ SECTION
=========================================*/

.faq-section{

    background:#ffffff;

}

.accordion-item{

    border:none;

    border-radius:15px !important;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.accordion-button{

    font-weight:600;

    padding:20px;

}

.accordion-button:not(.collapsed){

    background:#2563EB;

    color:#ffffff;

}

/*=========================================
            MAP SECTION
=========================================*/

.map-section{

    background:#F8FAFC;

}

.map-placeholder{

    background:#ffffff;

    border-radius:20px;

    padding:80px 30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.map-placeholder i{

    font-size:60px;

    color:#2563EB;

    margin-bottom:20px;

}
/*==============================
        WEBSITE LOGO
==============================*/

.logo{

    height:85px;

    width:auto;

    transition:.3s ease;

}

.logo:hover{

    transform:scale(1.05);

}
/*=========================================
            SERVICES HERO
=========================================*/

.services-hero{

    padding:100px 0;

    background:linear-gradient(135deg,#F8FBFF,#EEF5FF,#FFFFFF);

    position:relative;

    overflow:hidden;

}

.services-hero::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.services-hero::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(59,130,246,.06);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

    filter:blur(50px);

}
/*=========================================
        SERVICES SECTION
=========================================*/

.services-section{

    background:#F8FAFC;

}

.service-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.service-icon{

    width:80px;

    height:80px;

    background:#EAF2FF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

}

.service-icon i{

    font-size:32px;

    color:#2563EB;

}

.service-card h4{

    margin-bottom:15px;

    color:#0F172A;

}

.service-card p{

    color:#64748B;

    margin:0;

}
/*=========================================
        WHY SERVICES
=========================================*/

.why-services{

    background:#ffffff;

}

.why-card{

    background:#F8FAFC;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.why-card i{

    font-size:40px;

    color:#2563EB;

    margin-bottom:20px;

}

/*=========================================
        WORK PROCESS
=========================================*/

.work-process{

    background:#F8FAFC;

}

.process-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.process-number{

    width:70px;

    height:70px;

    background:#2563EB;

    color:#ffffff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

    margin:0 auto 20px;

}
/*=========================================
        INDUSTRIES SECTION
=========================================*/

.industries-section{

    background:#ffffff;

}

.industry-card{

    background:#F8FAFC;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.industry-card i{

    font-size:40px;

    color:#2563EB;

    margin-bottom:20px;

}

.industry-card h5{

    margin-bottom:15px;

    color:#0F172A;

}

.industry-card p{

    color:#64748B;

    margin:0;

}
/*=========================================
            BLOG HERO
=========================================*/

.blog-hero{

    padding:100px 0;

    background:linear-gradient(135deg,#F8FBFF,#EEF5FF,#FFFFFF);

    position:relative;

    overflow:hidden;

}

.blog-hero::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.blog-hero::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(59,130,246,.06);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

    filter:blur(50px);

}
/*=========================================
        FEATURED BLOG
=========================================*/

.featured-blog{

    background:#ffffff;

}

.blog-category{

    display:inline-block;

    background:#EAF2FF;

    color:#2563EB;

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

}

.blog-meta{

    color:#64748B;

    font-size:15px;

}

.featured-image img{

    max-width:380px;

    width:100%;

}
/*=========================================
        LATEST ARTICLES
=========================================*/

.latest-articles{

    background:#F8FAFC;

}

.blog-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px 30px;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.blog-card-icon{

    width:70px;

    height:70px;

    background:#EAF2FF;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.blog-card-icon i{

    font-size:28px;

    color:#2563EB;

}

.blog-tag{

    display:inline-block;

    background:#EAF2FF;

    color:#2563EB;

    padding:6px 15px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}

.read-more{

    color:#2563EB;

    text-decoration:none;

    font-weight:600;

}

.read-more:hover{

    color:#1D4ED8;

}
/*=========================================
        NEWSLETTER
=========================================*/

.newsletter-section{

    background:#ffffff;

}

.newsletter-box{

    background:#F8FAFC;

    padding:60px 40px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

/*=========================================
        BLOG CATEGORIES
=========================================*/

.blog-categories{

    background:#F8FAFC;

}

.category-card{

    background:#ffffff;

    border-radius:20px;

    padding:30px 20px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,.15);

}

.category-card i{

    font-size:36px;

    color:#2563EB;

    margin-bottom:15px;

}

.category-card h6{

    margin:0;

    font-weight:600;

}
/*=========================================
        PRIVACY POLICY
=========================================*/

.privacy-hero{

    padding:100px 0;

    background:linear-gradient(135deg,#F8FBFF,#EEF5FF,#FFFFFF);

    position:relative;

    overflow:hidden;

}

.privacy-hero::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.privacy-hero::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(59,130,246,.06);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

    filter:blur(50px);

}

.privacy-intro{

    background:#F8FAFC;

}

.privacy-card{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}
/*=========================================
        PRIVACY DETAILS
=========================================*/

.privacy-details{

    background:#ffffff;

}

.privacy-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.privacy-card h3{

    margin-bottom:20px;

    color:#0F172A;

}

.privacy-card ul{

    padding-left:20px;

    margin-bottom:0;

}

.privacy-card ul li{

    margin-bottom:12px;

    color:#64748B;

}

.privacy-card p{

    color:#64748B;

    line-height:1.8;

}
/*=========================================
        PRIVACY RIGHTS
=========================================*/

.privacy-rights{

    background:#F8FAFC;

}

.privacy-rights .privacy-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.privacy-rights hr{

    margin:20px 0;

    border-color:#E2E8F0;

}
/*=========================================
        TERMS & CONDITIONS
=========================================*/

.terms-hero{

    padding:100px 0;

    background:linear-gradient(135deg,#F8FBFF,#EEF5FF,#FFFFFF);

    position:relative;

    overflow:hidden;

}

.terms-hero::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.terms-hero::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(59,130,246,.06);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

    filter:blur(50px);

}

.terms-intro{

    background:#F8FAFC;

}

.terms-card{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}
/*=========================================
        TERMS DETAILS
=========================================*/

.terms-details{

    background:#ffffff;

}

.terms-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.terms-card h3{

    color:#0F172A;

    margin-bottom:20px;

}

.terms-card p{

    color:#64748B;

    line-height:1.8;

}

.terms-card ul{

    padding-left:20px;

    margin-bottom:0;

}

.terms-card ul li{

    margin-bottom:12px;

    color:#64748B;

}
/*=========================================
        TERMS FINAL
=========================================*/

.terms-final{

    background:#F8FAFC;

}

.terms-final .terms-card{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.terms-final hr{

    margin:20px 0;

    border-color:#E2E8F0;

}
/*=========================================
            404 ERROR PAGE
=========================================*/

.error-404{

    min-height:85vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#F8FBFF,#EEF5FF,#FFFFFF);

    text-align:center;

    position:relative;

    overflow:hidden;

}

.error-404::before{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.error-logo{

    max-width:140px;

}

.error-code{

    font-size:140px;

    font-weight:800;

    color:#2563EB;

    margin-bottom:10px;

    line-height:1;

}

.error-title{

    font-size:38px;

    font-weight:700;

    color:#0F172A;

}

.error-text{

    font-size:18px;

    color:#64748B;

    max-width:650px;

    margin:20px auto 35px;

}
/*=========================================
        404 QUICK LINKS
=========================================*/

.error-links{

    background:#F8FAFC;

}

.quick-link{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    border-radius:18px;

    padding:25px 15px;

    text-decoration:none;

    color:#0F172A;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    height:100%;

}

.quick-link:hover{

    transform:translateY(-8px);

    color:#2563EB;

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.quick-link i{

    font-size:34px;

    color:#2563EB;

    margin-bottom:15px;

}

.quick-link span{

    font-weight:600;

}
/*=========================================
        COMING SOON
=========================================*/

.coming-soon-hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:linear-gradient(135deg,#F8FBFF,#EEF5FF,#FFFFFF);

    position:relative;

    overflow:hidden;

}

.coming-soon-hero::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(37,99,235,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

    filter:blur(60px);

}

.coming-soon-hero::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(59,130,246,.06);

    border-radius:50%;

    left:-80px;

    bottom:-80px;

    filter:blur(50px);

}

.coming-logo{

    max-width:170px;

}
/*=========================================
        COMING SOON FINAL
=========================================*/

.upcoming-products{

    background:#ffffff;

}

.future-card{

    background:#F8FAFC;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.future-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.future-card i{

    font-size:40px;

    color:#2563EB;

    margin-bottom:20px;

}

.roadmap-section{

    background:#F8FAFC;

}

.roadmap-item{

    background:#ffffff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.roadmap-item h4{

    color:#2563EB;

    font-weight:700;

}