/*==================================================
Google Font
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/*==================================================
Root Variables
==================================================*/

:root{

    --primary:#4F46E5;
    --secondary:#7C3AED;
    --accent:#06B6D4;
    --dark:#0F172A;
    --dark-light:#1E293B;
    --light:#F8FAFC;
    --white:#ffffff;
    --text:#64748B;
    --border:#E2E8F0;

    --shadow:0 20px 45px rgba(0,0,0,.08);
    --radius:18px;
    --transition:.35s ease;

}


/*==================================================
Reset
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Outfit',sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.7;
    overflow-x:hidden;

}


/*==================================================
Typography
==================================================*/

h1,h2,h3,h4,h5,h6{

    font-weight:700;
    color:var(--dark);

}

p{

    color:var(--text);
    margin-bottom:0;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

img{

    max-width:100%;
    display:block;

}

.section-padding{

    padding:100px 0;

}

.section-tag{

    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#EEF2FF;
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    font-size:15px;

}

.section-title{

    font-size:48px;
    margin:20px 0;

}

.section-text{

    max-width:760px;
    margin:auto;
    font-size:18px;

}


/*==================================================
Buttons
==================================================*/

.btn{

    border-radius:50px;
    padding:14px 32px;
    font-weight:600;
    transition:var(--transition);

}

.btn-primary{

    background:linear-gradient(135deg,var(--primary),var(--secondary));
    border:none;
    box-shadow:0 15px 35px rgba(79,70,229,.30);

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.nav-btn{

    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:13px 28px;
    border-radius:50px;
}

.nav-btn:hover{

    color:#fff;
    transform:translateY(-4px);

}


/*==================================================
Navbar
==================================================*/

.main-navbar{

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(15px);
    padding:18px 0;
    transition:.4s;
    border-bottom:1px solid rgba(255,255,255,.4);

}

.navbar-brand{

    font-size:30px;
    font-weight:800;
    color:var(--primary)!important;

}

.navbar-brand i{

    color:var(--accent);
    font-size:34px;

}

.nav-link{

    color:var(--dark)!important;
    margin-left:15px;
    font-weight:500;
    position:relative;

}

.nav-link::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:.35s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

.nav-link:hover{

    color:var(--primary)!important;

}


/*==================================================
Hero Section
==================================================*/

.hero-section{

    position:relative;
    padding-top:170px;
    padding-bottom:120px;
    background:linear-gradient(135deg,#EEF4FF,#F8FAFF);

}

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    padding:12px 22px;
    border-radius:50px;
    box-shadow:var(--shadow);
    color:var(--primary);
    font-weight:600;

}

.hero-title{

    font-size:60px;
    line-height:1.15;
    margin:28px 0;

}

.hero-text{

    font-size:18px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.hero-btn-outline{

    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:50px;
    padding:14px 30px;
    font-weight:600;

}

.hero-btn-outline:hover{

    background:var(--primary);
    color:#fff;

}


/*==================================================
Hero Image
==================================================*/

.hero-image{

    position:relative;

}

.hero-image img{

    animation:floatImage 4s ease-in-out infinite;

}

.floating-card{

    position:absolute;
    background:#fff;
    border-radius:15px;
    box-shadow:var(--shadow);
    padding:15px 20px;
    display:flex;
    align-items:center;
    gap:10px;
    animation:floating 3s ease-in-out infinite;

}

.floating-card i{

    color:var(--primary);
    font-size:22px;

}

.card-one{

    top:5%;
    left:-30px;

}

.card-two{

    right:-25px;
    top:40%;

}

.card-three{

    bottom:5%;
    left:30px;

}


/*==================================================
Hero Info
==================================================*/

.hero-info{

    display:flex;
    gap:25px;
    flex-wrap:wrap;

}

.info-box{

    background:#fff;
    border-radius:16px;
    padding:16px 20px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:var(--shadow);

}

.info-box i{

    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:22px;

}

.info-box strong{

    display:block;
    color:var(--dark);

}

.info-box span{

    font-size:14px;
    color:var(--text);

}


/*==================================================
Background Shapes
==================================================*/

.hero-shape{

    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.35;

}

.hero-shape-1{

    width:300px;
    height:300px;
    background:#4F46E5;
    top:-120px;
    left:-100px;

}

.hero-shape-2{

    width:250px;
    height:250px;
    background:#06B6D4;
    right:-80px;
    top:120px;

}

.hero-shape-3{

    width:220px;
    height:220px;
    background:#7C3AED;
    bottom:-80px;
    left:40%;

}


/*==================================================
Animations
==================================================*/

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}
/*==================================================
WHY CHOOSE SECTION
==================================================*/

.why-section{

    background:#fff;
    position:relative;

}

.why-section::before{

    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(79,70,229,.08);
    border-radius:50%;
    top:40px;
    right:-80px;
    filter:blur(40px);

}


/*==================================================
FEATURE CARD
==================================================*/

.feature-card{

    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;

}

.feature-card::before{

    content:'';
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,
    rgba(79,70,229,.08),
    rgba(6,182,212,.08));
    transition:.5s;

}

.feature-card:hover::before{

    left:0;

}

.feature-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.feature-icon{

    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:32px;
    transition:.4s;

}

.feature-card:hover .feature-icon{

    transform:rotateY(180deg);

}

.feature-card h5{

    font-size:22px;
    margin:0;
    line-height:1.5;

}


/*==================================================
GUIDES SECTION
==================================================*/

.guides-section{

    background:#F8FAFC;

}

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#EEF2FF;
    color:var(--primary);
    padding:12px 20px;
    border-radius:40px;
    font-weight:600;

}

.section-desc{

    font-size:17px;
    color:var(--text);

}


/*==================================================
GUIDE LIST
==================================================*/

.guide-list{

    margin-top:35px;

}

.guide-item{

    display:flex;
    align-items:center;
    gap:16px;
    background:#fff;
    border-radius:15px;
    padding:18px 22px;
    margin-bottom:18px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.guide-item:hover{

    transform:translateX(10px);

}

.guide-item i{

    font-size:22px;
    color:#22C55E;

}

.guide-item span{

    font-size:17px;
    font-weight:500;
    color:var(--dark);

}


/*==================================================
SUPPORT CARD
==================================================*/

.support-card{

    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.support-card:hover{

    transform:translateY(-12px);

}

.support-icon{

    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--accent),var(--primary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;

}

.support-card h5{

    margin-bottom:15px;

}

.support-card p{

    font-size:15px;

}


/*==================================================
EVERYTHING SECTION
==================================================*/

.everything-section{

    background:#fff;

}

.service-card{

    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    border:1px solid var(--border);
    transition:.4s;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.service-card:hover{

    transform:translateY(-15px);

}

.service-card:hover .service-icon{

    transform:scale(1.12);

}

.service-icon{

    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:35px;
    transition:.35s;

}

.service-card h4{

    margin-bottom:18px;

}

.service-card p{

    font-size:16px;

}


/*==================================================
WIDE SERVICE CARD
==================================================*/

.wide-service-card{

    background:linear-gradient(135deg,#4F46E5,#7C3AED);
    border-radius:25px;
    padding:45px;
    color:#fff;
    height:100%;
    transition:.35s;
    position:relative;
    overflow:hidden;

}

.wide-service-card::before{

    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.10);
    border-radius:50%;
    right:-60px;
    top:-60px;

}

.wide-service-card:hover{

    transform:translateY(-10px);

}

.wide-service-card .service-icon{

    background:rgba(255,255,255,.18);
    margin-left:0;

}

.wide-service-card h4{

    color:#fff;
    margin:25px 0 15px;

}

.wide-service-card p{

    color:rgba(255,255,255,.90);
    font-size:17px;
    margin:0;

}
/*==================================================
POPULAR CATEGORIES
==================================================*/

.categories-section{
    background:#F8FAFC;
    position:relative;
    overflow:hidden;
}

.categories-section::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(79,70,229,.05);
    border-radius:50%;
    left:-120px;
    top:80px;
}

.category-card{

    background:#fff;
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    transition:.35s;
    border:1px solid var(--border);
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    position:relative;
    overflow:hidden;

}

.category-card::after{

    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
    transform:scaleX(0);
    transition:.35s;

}

.category-card:hover::after{

    transform:scaleX(1);

}

.category-card:hover{

    transform:translateY(-12px);

}

.category-card i{

    font-size:50px;
    color:var(--primary);
    margin-bottom:20px;
    display:block;
    transition:.35s;

}

.category-card:hover i{

    transform:rotate(10deg) scale(1.15);
    color:var(--secondary);

}

.category-card h5{

    margin:0;
    font-size:21px;

}

.large-card{

    padding:50px;

}

.large-card h4{

    margin-top:20px;

}


/*==================================================
PROCESS SECTION
==================================================*/

.process-section{

    background:#fff;

}

.step-card{

    background:#fff;
    border-radius:22px;
    padding:45px 25px;
    text-align:center;
    position:relative;
    border:1px solid var(--border);
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    overflow:hidden;
    height:100%;

}

.step-card:hover{

    transform:translateY(-12px);

}

.step-card::before{

    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--primary),var(--accent));

}

.step-number{

    width:45px;
    height:45px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    font-weight:700;

}

.step-icon{

    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:34px;
    transition:.4s;

}

.step-card:hover .step-icon{

    transform:rotateY(180deg);

}

.step-card h5{

    margin-bottom:15px;

}

.step-card p{

    font-size:16px;

}


/*==================================================
TRUST SECTION
==================================================*/

.trust-section{

    background:linear-gradient(135deg,#EEF2FF,#F8FAFC);

}

.trust-card{

    background:#fff;
    border-radius:18px;
    padding:30px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.35s;
    border:1px solid var(--border);
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    height:100%;

}

.trust-card:hover{

    transform:translateX(10px);

}

.trust-card i{

    font-size:34px;
    color:#22C55E;
    flex-shrink:0;

}

.trust-card h5{

    margin:0;
    font-size:20px;
    line-height:1.5;

}


/*==================================================
FAQ SECTION
==================================================*/

.faq-section{

    background:#fff;

}

.accordion-item{

    border:none;
    margin-bottom:18px;
    border-radius:18px!important;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.accordion-button{

    padding:24px;
    font-size:18px;
    font-weight:600;
    color:var(--dark);
    background:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-button:not(.collapsed){

    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;

}

.accordion-button::after{

    filter:brightness(0);

}

.accordion-button:not(.collapsed)::after{

    filter:brightness(100);

}

.accordion-body{

    padding:24px;
    font-size:16px;
    color:var(--text);
    line-height:1.8;
    background:#fff;

}
/*==================================================
CTA SECTION
==================================================*/

.cta-section{

    padding:100px 0;
    background:linear-gradient(135deg,#4F46E5,#7C3AED);
    position:relative;
    overflow:hidden;

}

.cta-section::before{

    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    left:-120px;
    top:-120px;

}

.cta-section::after{

    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-100px;
    bottom:-100px;

}

.cta-box{

    position:relative;
    z-index:2;
    color:#fff;

}

.cta-box h2{

    color:#fff;
    font-size:48px;
    margin-bottom:20px;

}

.cta-box p{

    color:rgba(255,255,255,.90);
    max-width:760px;
    margin:auto;
    font-size:18px;

}

.cta-btn{

    margin-top:35px;
    padding:16px 38px;
    border-radius:50px;
    background:#fff;
    color:var(--primary);
    font-weight:700;
    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-6px);
    color:var(--primary);

}


/*==================================================
FOOTER
==================================================*/

.footer{

    background:#0F172A;
    color:#CBD5E1;
    padding:90px 0 30px;

}

.footer-logo{

    color:#fff;
    font-size:30px;
    font-weight:800;
    margin-bottom:20px;

}

.footer-text{

    color:#94A3B8;
    line-height:1.9;

}

.footer-title{

    color:#fff;
    margin-bottom:22px;

}

.footer-links{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#94A3B8;
    transition:.3s;

}

.footer-links a:hover{

    color:#fff;
    padding-left:8px;

}

.footer-btn{

    margin-top:20px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    border-radius:50px;
    padding:14px 30px;

}

.footer-btn:hover{

    color:#fff;
    transform:translateY(-5px);

}

.social-links{

    display:flex;
    gap:15px;
    margin-top:25px;

}

.social-links a{

    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.35s;

}

.social-links a:hover{

    background:var(--primary);
    transform:translateY(-5px);

}

.footer-divider{

    margin:55px 0 25px;
    border-color:rgba(255,255,255,.10);

}

.footer-bottom{

    color:#94A3B8;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#E5E7EB;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(var(--primary),var(--secondary));
    border-radius:20px;

}


/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:var(--primary);
    color:#fff;

}


/*==================================================
UTILITY
==================================================*/

.shadow-box{

    box-shadow:var(--shadow);

}

.rounded-xl{

    border-radius:22px;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero-section{

padding-top:140px;
text-align:center;

}

.hero-title{

font-size:42px;

}

.hero-buttons{

justify-content:center;

}

.hero-info{

justify-content:center;
margin-top:40px;

}

.hero-image{

margin-top:60px;

}

.card-one,
.card-two,
.card-three{

display:none;

}

.section-title{

font-size:36px;

}

.main-navbar{

padding:14px 0;

}

.navbar-collapse{

background:#fff;
padding:25px;
margin-top:15px;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.nav-link{

margin:10px 0;

}

}


@media(max-width:767px){

.section-padding{

padding:70px 0;

}

.hero-title{

font-size:34px;

}

.section-title{

font-size:30px;

}

.hero-text,
.section-text{

font-size:16px;

}

.info-box{

width:100%;

}

.feature-card,
.service-card,
.support-card,
.step-card,
.category-card,
.trust-card{

padding:28px 22px;

}

.cta-box h2{

font-size:32px;

}

.footer{

text-align:center;

}

.social-links{

justify-content:center;

}

}


@media(max-width:575px){

.hero-badge{

font-size:14px;

}

.hero-btn,
.hero-btn-outline,
.nav-btn,
.cta-btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.feature-icon,
.service-icon,
.support-icon,
.step-icon{

width:70px;
height:70px;
font-size:28px;

}

.section-tag{

font-size:13px;

}

}