/*=========================================================
    AIMSLIFY WEBSITE
    STYLE.CSS
    PART 1
=========================================================*/


/*=========================================================
GOOGLE FONT
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');


/*=========================================================
RESET
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Outfit',sans-serif;

    background:#050816;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.6;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    cursor:pointer;

    background:none;

    font-family:inherit;

}

input,
textarea{

    border:none;

    outline:none;

    font-family:inherit;

}


/*=========================================================
ROOT VARIABLES
=========================================================*/

:root{

    --primary:#6C63FF;

    --secondary:#8B5CF6;

    --accent:#00D4FF;

    --dark:#050816;

    --dark2:#0F172A;

    --card:#111827;

    --card-light:#1B2338;

    --white:#ffffff;

    --text:#B8C4E2;

    --border:rgba(255,255,255,.08);

    --radius:18px;

    --transition:.35s ease;

    --shadow:
    0 20px 60px rgba(0,0,0,.45);

}


/*=========================================================
SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#08101F;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}


/*=========================================================
CONTAINER
=========================================================*/

.container{

    width:min(1200px,92%);

    margin:auto;

}


/*=========================================================
SECTION
=========================================================*/

section{

    position:relative;

    padding:110px 0;

}


/*=========================================================
TYPOGRAPHY
=========================================================*/

.section-tag{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.05);

    color:var(--accent);

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

.section-header{

    text-align:center;

    max-width:760px;

    margin:auto;

    margin-bottom:70px;

}

.section-header h2{

    font-size:54px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:20px;

}

.section-header h2 span{

    color:var(--primary);

}

.section-header p{

    color:var(--text);

    font-size:18px;

}


/*=========================================================
BUTTONS
=========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:60px;

    font-weight:600;

    transition:var(--transition);

}

.primary-btn{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary));

    color:#fff;

    box-shadow:
    0 10px 30px rgba(108,99,255,.35);

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(20px);

}

.secondary-btn:hover{

    background:rgba(255,255,255,.08);

}


/*=========================================================
HEADER
=========================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(16px);

    background:rgba(5,8,22,.70);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:84px;

}


/*=========================================================
LOGO
=========================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:28px;

    font-weight:700;

    color:#fff;

}

.logo-img{

    width:52px;

    height:52px;

    object-fit:contain;

    transition:.3s ease;

}

.logo:hover .logo-img{

    transform:rotate(-8deg) scale(1.08);

}

/*=========================================================
NAVIGATION
=========================================================*/

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    position:relative;

    color:#dce3f5;

    transition:var(--transition);

}

.navbar a::after{

    content:"";

    position:absolute;

    bottom:-7px;

    left:0;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.navbar a:hover{

    color:#fff;

}

.navbar a:hover::after{

    width:100%;

}

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

}


/*=========================================================
HERO
=========================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:70px;

    align-items:center;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    margin-bottom:25px;

}

.hero h1{

    font-size:68px;

    line-height:1.05;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    font-size:19px;

    color:var(--text);

    max-width:600px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-stats{

    display:flex;

    gap:50px;

    margin-top:55px;

}

.hero-stats h2{

    font-size:40px;

    color:var(--accent);

}

.hero-stats p{

    margin-top:6px;

    font-size:15px;

}


/*=========================================================
DASHBOARD
=========================================================*/

.hero-image{

    position:relative;

}

.dashboard{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.dashboard-header{

    display:flex;

    gap:10px;

    padding:18px 20px;

    background:rgba(255,255,255,.04);

}

.circle{

    width:14px;

    height:14px;

    border-radius:50%;

}

.red{

    background:#ff5f57;

}

.yellow{

    background:#ffbd2e;

}

.green{

    background:#28c840;

}

.dashboard-body{

    display:flex;

    min-height:420px;

}


/*=========================================================
SIDEBAR
=========================================================*/

.sidebar{

    width:82px;

    background:rgba(255,255,255,.03);

    padding-top:35px;

}

.sidebar ul{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:25px;

}

.sidebar li{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    transition:var(--transition);

}

.sidebar li:hover{

    background:var(--primary);

}


/*=========================================================
DASHBOARD CONTENT
=========================================================*/

.dashboard-content{

    flex:1;

    padding:30px;

}

.large-card{

    background:linear-gradient(
        135deg,
        rgba(108,99,255,.25),
        rgba(0,212,255,.18));

    border-radius:20px;

    padding:30px;

    margin-bottom:24px;

    min-height:180px;

}

.graph{

    margin-top:28px;

    height:70px;

    border-radius:10px;

    opacity:.45;

    background:linear-gradient(
        to right,
        var(--primary),
        var(--accent));

}

.small-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.card{

    background:rgba(255,255,255,.05);

    border-radius:18px;

    padding:25px;

}

.card h4{

    margin-bottom:12px;

}

.card span{

    font-size:32px;

    font-weight:700;

    color:var(--accent);

}


/*=========================================================
FLOATING LABELS
=========================================================*/

.floating{

    position:absolute;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    font-size:14px;

    font-weight:600;


}

.website{

    top:-20px;

    left:-35px;

}

.crm{

    top:80px;

    right:-40px;

}

.automation{

    bottom:100px;

    left:-35px;

}

.marketing{

    bottom:-20px;

    right:15px;

}

.floating i{

    color:var(--accent);

}


/*=========================================================
BACKGROUND EFFECTS
=========================================================*/

.blur{

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.22;

    z-index:-1;

}

.blur-one{

    top:120px;

    left:-120px;

    background:#6C63FF;

}

.blur-two{

    bottom:50px;

    right:-120px;

    background:#00D4FF;

}

.grid-bg{

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;

    z-index:-2;

    opacity:.35;

}


/*=========================================================
SCROLL INDICATOR
=========================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:26px;

    height:46px;

    border:2px solid rgba(255,255,255,.35);

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:6px;

    height:10px;

    background:#ffffff;

    left:50%;

    transform:translateX(-50%);

    top:8px;

    border-radius:20px;


}

/*=========================================================
TRUSTED COMPANIES
=========================================================*/

.trusted{

    padding:80px 0;

}

.section-mini-title{

    text-align:center;

    color:var(--text);

    font-size:18px;

    margin-bottom:50px;

}

.trusted-logos{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

}

.logo-item{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    color:#d9e1f8;

    font-weight:600;

    transition:.35s;

}

.logo-item:hover{

    transform:translateY(-8px);

    background:linear-gradient(
        135deg,
        rgba(108,99,255,.18),
        rgba(0,212,255,.15));

    color:#ffffff;

}



/*=========================================================
SERVICES
=========================================================*/

.services{

    position:relative;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    position:relative;

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(108,99,255,.08),
        rgba(0,212,255,.05));

    opacity:0;

    transition:.35s;

}

.service-card:hover::before{

    opacity:1;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(108,99,255,.35);

    box-shadow:
    0 20px 50px rgba(0,0,0,.35);

}

.service-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    margin-bottom:28px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent));

    color:#fff;

    font-size:28px;

}

.service-card h3{

    font-size:26px;

    margin-bottom:16px;

}

.service-card p{

    color:var(--text);

    margin-bottom:24px;

}

.service-card ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.service-card li{

    color:#d8def4;

    display:flex;

    align-items:center;

    gap:12px;

}

.service-card li::before{

    content:"✓";

    color:var(--accent);

    font-weight:700;

}



/*=========================================================
WHY AIMSLIFY
=========================================================*/

.why-us{

    position:relative;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-content h2{

    font-size:54px;

    line-height:1.15;

    margin-bottom:25px;

}

.why-content h2 span{

    color:var(--primary);

}

.why-content>p{

    color:var(--text);

    font-size:18px;

    margin-bottom:40px;

}



/*=========================================================
FEATURE LIST
=========================================================*/

.feature-list{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

}

.feature-item i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent));

    color:#fff;

    font-size:20px;

    flex-shrink:0;

}

.feature-item h4{

    font-size:22px;

    margin-bottom:8px;

}

.feature-item p{

    color:var(--text);

}



/*=========================================================
GLASS CARD
=========================================================*/

.why-image{

    display:flex;

    justify-content:center;

}

.glass-card{

    width:100%;

    max-width:520px;

    padding:45px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;

}

.glass-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(108,99,255,.18);

    top:-80px;

    right:-80px;

    filter:blur(40px);

}

.glass-card h3{

    font-size:34px;

    margin-bottom:18px;

    position:relative;

    z-index:2;

}

.glass-card>p{

    color:var(--text);

    margin-bottom:40px;

    position:relative;

    z-index:2;

}



/*=========================================================
GLASS STATS
=========================================================*/

.glass-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    position:relative;

    z-index:2;

}

.glass-stats div{

    padding:24px 15px;

    text-align:center;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

}

.glass-stats h2{

    font-size:34px;

    color:var(--accent);

    margin-bottom:10px;

}

.glass-stats span{

    color:var(--text);

    font-size:15px;

}



/*=========================================================
SECTION BACKGROUND EFFECT
=========================================================*/

.services::after,
.why-us::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;

}

.services::after{

    left:-180px;

    top:150px;

    background:var(--primary);

}

.why-us::after{

    right:-180px;

    bottom:0;

    background:var(--accent);

}

/*=========================================================
PORTFOLIO
=========================================================*/

.portfolio{
    position:relative;
}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.portfolio-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    border-color:rgba(108,99,255,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.portfolio-image{

    height:240px;

    position:relative;

    overflow:hidden;

}

.image-one{

    background:linear-gradient(135deg,#6C63FF,#00D4FF);

}

.image-two{

    background:linear-gradient(135deg,#8B5CF6,#6C63FF);

}

.image-three{

    background:linear-gradient(135deg,#00D4FF,#2563EB);

}

.portfolio-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.25),
    transparent 55%);

}

.portfolio-image span{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    font-size:14px;

    font-weight:600;

}

.portfolio-content{

    padding:30px;

}

.portfolio-content h3{

    font-size:24px;

    margin-bottom:15px;

}

.portfolio-content p{

    color:var(--text);

    margin-bottom:25px;

}

.portfolio-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--accent);

    font-weight:600;

    transition:.3s;

}

.portfolio-content a:hover{

    gap:16px;

}



/*=========================================================
PROCESS
=========================================================*/

.process{

    position:relative;

}

.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:30px;

}

.timeline-item{

    position:relative;

    text-align:center;

    padding:35px 25px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.timeline-item:hover{

    transform:translateY(-10px);

    border-color:rgba(108,99,255,.30);

}

.timeline-number{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent));

    font-size:26px;

    font-weight:700;

    color:#fff;

}

.timeline-item h3{

    font-size:24px;

    margin-bottom:15px;

}

.timeline-item p{

    color:var(--text);

}



/*=========================================================
TESTIMONIALS
=========================================================*/

.testimonials{

    position:relative;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:rgba(108,99,255,.35);

    box-shadow:0 20px 55px rgba(0,0,0,.35);

}

.testimonial-card.featured{

    transform:scale(1.03);

    border:1px solid rgba(108,99,255,.45);

}

.stars{

    color:#FFD166;

    font-size:20px;

    letter-spacing:3px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:var(--text);

    margin-bottom:30px;

}

.client{

    display:flex;

    align-items:center;

    gap:18px;

}

.avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent));

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.client h4{

    margin-bottom:4px;

}

.client span{

    color:var(--text);

    font-size:14px;

}



/*=========================================================
CTA
=========================================================*/

.cta-banner{

    padding:90px 0;

}

.cta-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    padding:70px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(108,99,255,.20),
    rgba(0,212,255,.15));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    overflow:hidden;

    position:relative;

}

.cta-content::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(255,255,255,.10);

    border-radius:50%;

    top:-160px;

    right:-140px;

    filter:blur(80px);

}

.cta-content h2{

    font-size:48px;

    margin:20px 0;

}

.cta-content p{

    color:var(--text);

    max-width:620px;

}

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}



/*=========================================================
SECTION GLOW
=========================================================*/

.portfolio::after,
.process::after,
.testimonials::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;

}

.portfolio::after{

    left:-180px;

    top:120px;

    background:var(--accent);

}

.process::after{

    right:-180px;

    bottom:0;

    background:var(--primary);

}

.testimonials::after{

    left:50%;

    bottom:-180px;

    transform:translateX(-50%);

    background:#6C63FF;

}

/*=========================================================
PRICING
=========================================================*/

.pricing{
    position:relative;
}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.pricing-card{

    position:relative;

    padding:45px 35px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    text-align:center;

    transition:.35s;

    overflow:hidden;

}

.pricing-card:hover{

    transform:translateY(-12px);

    border-color:rgba(108,99,255,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.pricing-card.featured{

    transform:scale(1.04);

    border:2px solid var(--primary);

    background:
    linear-gradient(
        180deg,
        rgba(108,99,255,.15),
        rgba(255,255,255,.04)
    );

}

.popular{

    position:absolute;

    top:18px;

    right:-40px;

    width:170px;

    text-align:center;

    padding:8px;

    background:var(--primary);

    color:#fff;

    font-size:12px;

    font-weight:700;

    transform:rotate(45deg);

}

.pricing-card h3{

    font-size:30px;

    margin-bottom:20px;

}

.price{

    font-size:48px;

    font-weight:800;

    color:var(--accent);

    margin-bottom:15px;

}

.pricing-card p{

    color:var(--text);

    margin-bottom:30px;

}

.pricing-card ul{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;

}

.pricing-card li{

    display:flex;

    align-items:center;

    gap:12px;

    justify-content:flex-start;

}

.pricing-card li i{

    color:#22c55e;

}



/*=========================================================
FAQ
=========================================================*/

.faq{

    position:relative;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:22px;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.06);

    background:rgba(255,255,255,.04);

}

.faq-question{

    width:100%;

    padding:26px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#fff;

    font-size:19px;

    font-weight:600;

    cursor:pointer;

}

.faq-question i{

    transition:.35s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    padding:0 30px;

    transition:
        max-height .4s ease,
        padding .4s ease;

}

.faq-item.active .faq-answer{

    padding:0 30px 28px;

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-question i{

    transition:.35s ease;

}

.faq-item.active .faq-question i{

    transform:rotate(180deg);

}

.faq-answer p{

    color:var(--text);

}



/*=========================================================
CONTACT
=========================================================*/

.contact{

    position:relative;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.contact-content h2{

    font-size:52px;

    margin-bottom:25px;

    line-height:1.15;

}

.contact-content p{

    color:var(--text);

    margin-bottom:35px;

    font-size:18px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-info div{

    display:flex;

    align-items:center;

    gap:18px;

    font-size:18px;

}

.contact-info i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent));

    color:#fff;

}



/*=========================================================
CONTACT FORM
=========================================================*/

.contact-form{

    padding:40px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    display:flex;

    flex-direction:column;

    gap:20px;

    backdrop-filter:blur(20px);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    resize:none;

    transition:.35s;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{

    color:#9ca3af;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(108,99,255,.15);

}

.contact-form button{

    margin-top:10px;

}



/*=========================================================
BACKGROUND EFFECTS
=========================================================*/

.pricing::after,
.faq::after,
.contact::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    filter:blur(140px);

    opacity:.12;

    z-index:-1;

}

.pricing::after{

    left:-180px;

    top:100px;

    background:var(--primary);

}

.faq::after{

    right:-180px;

    top:100px;

    background:var(--accent);

}

.contact::after{

    left:50%;

    bottom:-180px;

    transform:translateX(-50%);

    background:#6C63FF;

}

/*=========================================================
FOOTER
=========================================================*/

.footer{

    position:relative;

    padding:90px 0 35px;

    background:#040611;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer h3{

    font-size:34px;

    margin-bottom:18px;

}

.footer h4{

    margin-bottom:22px;

    font-size:20px;

}

.footer p{

    color:var(--text);

    max-width:360px;

    line-height:1.8;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer ul li a{

    color:var(--text);

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--accent);

    padding-left:8px;

}


/*=========================================================
SOCIAL ICONS
=========================================================*/

.social-icons{

    display:flex;

    gap:16px;

    margin-top:20px;

}

.social-icons a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.social-icons a:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent));

    transform:translateY(-5px);

}


/*=========================================================
COPYRIGHT
=========================================================*/

.copyright{

    text-align:center;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.06);

    color:var(--text);

    font-size:15px;

}


/*=========================================================
BACK TO TOP
=========================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:56px;

    height:56px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent));

    color:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.35);

    cursor:pointer;

    z-index:999;

    transition:.35s;

}

.back-to-top:hover{

    transform:translateY(-8px);

}


/*=========================================================
UTILITY CLASSES
=========================================================*/

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:10px;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mt-4{

    margin-top:40px;

}

.mt-5{

    margin-top:50px;

}

.mb-1{

    margin-bottom:10px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:30px;

}

.mb-4{

    margin-bottom:40px;

}

.mb-5{

    margin-bottom:50px;

}


/*=========================================================
COMMON TRANSITIONS
=========================================================*/

.card,
.service-card,
.portfolio-card,
.pricing-card,
.testimonial-card{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

}




/*=========================================================
SELECTION
=========================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*=========================================================
FOCUS ACCESSIBILITY
=========================================================*/

a:focus,
button:focus,
input:focus,
textarea:focus{

    outline:2px solid var(--accent);

    outline-offset:3px;

}


/*=========================================================
SMALL SCREEN HELPERS
(Full responsive rules will be in responsive.css)
=========================================================*/

img{

    height:auto;

}

iframe{

    max-width:100%;

}

table{

    width:100%;

    border-collapse:collapse;

}

/*=========================================================
FORM MESSAGES
=========================================================*/

.form-error{

    display:block;

    margin-top:8px;

    color:#ef4444;

    font-size:14px;

}

.form-success{

    margin-bottom:25px;

    padding:18px;

    border-radius:12px;

    background:#10b98120;

    border:1px solid #10b981;

    color:#10b981;

    font-size:15px;

}

/*=========================================================
FAQ ACCORDION
=========================================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:

        max-height .35s ease,

        padding .35s ease;

}

.faq-item.active{

    border-color:rgba(108,99,255,.35);

}

.faq-item.active .faq-question{

    color:var(--accent);

}

.faq-question{

    transition:.3s;

}

.faq-question i{

    transition:

        transform .3s ease,

        color .3s ease;

}

.faq-item.active .faq-question i{

    transform:rotate(180deg);

    color:var(--accent);

}

/*=========================================================
END OF STYLE.CSS
=========================================================*/