* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

:root {

    --bg: #09090F;
    --surface: rgba(255, 255, 255, .05);
    --card: rgba(255, 255, 255, .04);
    --border: rgba(255, 255, 255, .08);

    --white: #fff;
    --text: #D1D5DB;
    --muted: #94A3B8;

    --violet: #8B5CF6;
    --cyan: #06B6D4;
    --pink: #EC4899;

}

body {
    background: var(--bg);
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* =====================
AURORA BACKGROUND
===================== */

body::before {

    content: '';

    position: fixed;

    width: 1000px;
    height: 1000px;

    background:
        radial-gradient(circle,
            rgba(139, 92, 246, .25),
            rgba(6, 182, 212, .15),
            transparent);

    top: -300px;
    right: -200px;

    filter: blur(180px);

    animation: floatbg 12s infinite alternate;

    z-index: -2;
}

body::after {

    content: '';

    position: fixed;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(236, 72, 153, .18),
            transparent);

    left: -150px;
    bottom: -150px;

    filter: blur(150px);

    z-index: -2;
}

@keyframes floatbg {

    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(80px);
    }

}

/* =====================
NAVBAR
===================== */

nav {

    position: sticky;
    top: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 8%;

    background: rgba(9, 9, 15, .7);

    backdrop-filter: blur(25px);

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    z-index: 999;

}

.logo {

    font-size: 34px;
    font-weight: 800;

}

.logo span {

    background: linear-gradient(135deg, #8B5CF6, #06B6D4);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.menu {

    display: flex;
    gap: 40px;

}

.menu a {

    text-decoration: none;
    color: #D1D5DB;
    font-size: 15px;

    transition: .3s;

}

.menu a:hover {

    color: #8B5CF6;

}

/* =====================
HERO
===================== */
.hero{

    min-height:calc(100vh - 90px);

    padding:20px 8% 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    overflow:hidden;

}
.left{

    max-width:580px;

}

.hero h1{

    font-size:72px;

    line-height:.95;

    letter-spacing:-3px;

    margin-bottom:20px;

}

.subtitle{

    font-size:18px;

    line-height:1.8;

    color:#94A3B8;

    margin-bottom:25px;

}
.hero-visual{

    position:relative;

    width:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}
.hero-visual::before{

    content:'';

    position:absolute;

    width:700px;

    height:700px;

    background:
    radial-gradient(circle,
    rgba(139,92,246,.25),
    rgba(6,182,212,.18),
    transparent);

    filter:blur(140px);

    z-index:-1;

}
.hero-visual img{

    width:950px;

    max-width:none;

    border-radius:50px;

    transform:
    rotate(-18deg)
    translateX(130px)
    translateY(-120px);

    filter:
    drop-shadow(0 0 80px rgba(139,92,246,.35));

    transition:.5s;

}
.hero-visual img:hover{

    transform:
    rotate(-15deg)
    translateX(130px)
    translateY(-120px)
    scale(1.03);

}
@media(max-width:1100px){

.hero{

    flex-direction:column;

}

.hero-visual{

    width:100%;

}

.hero-visual img{

    width:100%;

    transform:none;

}

}
.hero-stack{

    position:relative;

    width:700px;
    height:700px;

}


.card1{

    position:absolute;

    width:650px;

    right:-100px;

    transform:
    rotate(-18deg);

    opacity:.3;

}


.card2{

    position:absolute;

    width:650px;

    right:-40px;

    transform:
    rotate(-10deg);

    opacity:.6;

}


.card3{

    position:absolute;

    width:650px;

    right:20px;

    transform:
    rotate(-2deg);

}
.left {

    max-width: 700px;

}
@media(max-width:1100px){

.hero{

    flex-direction:column;
}

.hero-image{

    width:100%;
}

.hero-image img{

    width:90%;
}

}
.badge {

    display: inline-block;

    padding: 12px 20px;

    background: rgba(139, 92, 246, .15);

    border: 1px solid rgba(139, 92, 246, .25);

    border-radius: 100px;

    color: #C4B5FD;

    margin-bottom: 18px;

}

.hero h1 {

    font-size: 82px;

    line-height: 1;

    letter-spacing: -4px;

    margin-bottom: 30px;

}

.gradient {

    background: linear-gradient(135deg,
            #8B5CF6,
            #06B6D4,
            #EC4899);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.subtitle {

    font-size: 20px;

    line-height: 1.9;

    color: var(--muted);

    margin-bottom: 25px;

}

/* BUTTONS */

.buttons{

    display:flex;

    gap:18px;

    margin-top:20px;

}

.primary {

    padding: 18px 34px;

    border: none;

    border-radius: 18px;

    cursor: pointer;

    font-weight: 600;

    background:
        linear-gradient(135deg,
            #8B5CF6,
            #06B6D4);

    color: white;

    box-shadow:
        0 20px 50px rgba(139, 92, 246, .4);

    transition: .4s;

}

.primary:hover {

    transform: translateY(-4px);

}

.secondary {

    padding: 18px 34px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    color: white;

    cursor: pointer;

    transition: .4s;

}

.secondary:hover {

    background: rgba(255, 255, 255, .08);

}

/* =====================
DASHBOARD
===================== */
.hero-image{
    width:650px;

    display:flex;
    justify-content:center;
    align-items:center;

    animation:floating 6s ease-in-out infinite;
}


.hero-image img{

    width:100%;

    border-radius:35px;

    box-shadow:
    0 0 80px rgba(139,92,246,.25);

    transition:.5s;
}


.hero-image img:hover{

    transform:scale(1.02);

}
/* Sidebar */

.sidebar {

    width: 180px;

    padding: 30px;

    background: rgba(255, 255, 255, .03);

}

.item {

    padding: 16px;

    margin-bottom: 10px;

    border-radius: 15px;

    color: #94A3B8;

    cursor: pointer;

    transition: .3s;

}

.active {

    background:
        linear-gradient(135deg,
            rgba(139, 92, 246, .3),
            rgba(6, 182, 212, .15));

    color: white;

}

.item:hover {

    background: rgba(255, 255, 255, .05);

}

/* Main */

.content {

    flex: 1;

    padding: 30px;

}

.top-cards {

    display: flex;

    gap: 15px;

    margin-bottom: 20px;

}

.card {

    flex: 1;

    padding: 20px;

    background: rgba(255, 255, 255, .04);

    border-radius: 20px;

}

.card h2 {

    margin-top: 10px;

    font-size: 28px;

}

/* Chart */

.chart-card {

    height: 250px;

    background: rgba(255, 255, 255, .03);

    border-radius: 25px;

    padding: 25px;

}

.chart {

    height: 130px;

    margin-top: 40px;

    border-radius: 20px;

    background:
        linear-gradient(90deg,
            #8B5CF6,
            #06B6D4,
            #EC4899);

    opacity: .8;

}

/* =====================
COMMON SECTIONS
===================== */

section{

    padding:80px 8%;

}

.title {

    font-size: 58px;

    margin-bottom: 30px;

}

.text {

    max-width: 950px;

    line-height: 2;

    font-size: 18px;

    color: #94A3B8;

}

/* SERVICES */

.grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    margin-top: 60px;

}

.service-card {

    padding: 40px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 30px;

    transition: .4s;

}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 0 40px rgba(139, 92, 246, .15);

}

.service-card h3 {

    margin-bottom: 20px;

}

.service-card p {

    line-height: 1.8;

    color: #94A3B8;

}

/* =====================
FOOTER
===================== */

footer {

    padding: 100px 8%;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

footer h2 {

    font-size: 42px;

    margin-bottom: 25px;

}

footer p {

    color: #94A3B8;

    line-height: 2;

    margin-bottom: 15px;

}

/* =====================
RESPONSIVE
===================== */

@media(max-width:1100px) {

    .hero {

        flex-direction: column;

    }

    .dashboard-preview {

        width: 100%;

    }

    .menu {

        display: none;

    }

    .hero h1 {

        font-size: 60px;

    }

}

.timeline {
    margin-top: 60px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 0 40px rgba(139, 92, 246, .3);
}

.timeline-content h3 {
    margin-bottom: 15px;
}

.timeline-content p {
    color: #94A3B8;
    line-height: 1.8;
}

/* ===================== STATS ===================== */
.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.stat-box{

    position:relative;

    padding:50px 40px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:35px;

    backdrop-filter:blur(30px);

    text-align:center;

    overflow:hidden;

    transition:.5s;

}
.stat-box::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:
    radial-gradient(
    rgba(139,92,246,.25),
    transparent);

    top:-100px;
    left:-100px;

    opacity:0;

    transition:.5s;

}


.stat-box:hover::before{

    opacity:1;

}


.stat-box:hover{

    transform:translateY(-12px);

    border-color:
    rgba(139,92,246,.4);

    box-shadow:

    0 0 30px rgba(139,92,246,.2),

    0 0 80px rgba(6,182,212,.15);

}
.stat-box h1{

    font-size:75px;

    margin-bottom:20px;

    background:linear-gradient(
    135deg,
    #8B5CF6,
    #06B6D4);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}
.stat-box p{

    color:#94A3B8;

    font-size:18px;

    line-height:1.8;

}

.stat-box h1 {
    font-size: 60px;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    margin-top: 20px;
    color: #94A3B8;
}

/* ===================== FOOTER ===================== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    font-size: 40px;
}

.footer-logo span {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer a {
    display: block;
    text-decoration: none;
    color: #94A3B8;
    margin-top: 15px;
    transition: .3s;
}

footer a:hover {
    color: white;
}

footer p {
    color: #94A3B8;
    line-height: 2;
}

.copyright {
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    color: #64748B;
}
.login-modal{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background: rgba(0,0,0,.6);
    backdrop-filter: blur(10px);

    display:none;              /* IMPORTANT */
    justify-content:center;
    align-items:center;

    z-index:1000;
}
.login-card{
    width:400px;
    padding:40px;

    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);

    backdrop-filter: blur(30px);

    border-radius:30px;

    position:relative;
}

.login-card h2{
    margin-bottom:15px;
}

.login-card p{
    color:#94A3B8;
    margin-bottom:30px;
}
.input-box{
    margin-bottom:20px;
}

.input-box label{
    display:block;
    margin-bottom:10px;
}

.input-box input{
    width:100%;
    padding:18px;

    border:none;
    outline:none;

    border-radius:15px;

    background:rgba(255,255,255,.05);

    color:white;
}
.login-btn{
    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:linear-gradient(135deg,#8B5CF6,#06B6D4);

    color:white;

    font-size:16px;

    cursor:pointer;
}
.close-login{
    position:absolute;

    top:20px;
    right:20px;

    font-size:28px;

    cursor:pointer;
}
.profile-btn{
    width:45px;
    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    transition:.3s;
}

.profile-btn:hover{
    background:rgba(255,255,255,.1);
}
/*================ ABOUT US ================*/

.about-section{

    padding:40px 8% 100px;

}


.about-heading{

    display:flex;
    justify-content:center;

    margin-bottom:40px;

}


.about-heading h1{

    position:relative;

    font-size:65px;

    cursor:pointer;

}


.about-heading h1::after{

    content:'';

    position:absolute;

    left:50%;
    bottom:-15px;

    width:0;

    height:4px;

    border-radius:10px;

    background:
    linear-gradient(90deg,#8B5CF6,#06B6D4,#EC4899);

    transform:translateX(-50%);

    transition:.5s;

}


.about-heading h1:hover::after{

    width:100%;

}



/* CARD */

.about-card{

    position:relative;

    max-width:1100px;

    margin:auto;

    padding:65px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:40px;

    backdrop-filter:blur(40px);

    transition:.5s;

    overflow:hidden;

}


.about-card:hover{

    transform:translateY(-10px);

    border-color:rgba(139,92,246,.3);

}


.about-card p{

    color:#94A3B8;

    font-size:20px;

    line-height:2.2;

    text-align:center;

}
.about-card::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:40px;

    padding:1.5px;

    background:
    linear-gradient(
    135deg,
    transparent,
    transparent,
    transparent);

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    opacity:0;

    transition:.6s;

}
.about-card:hover::before{

    background:

    linear-gradient(
    135deg,
    #8B5CF6,
    #06B6D4,
    #EC4899);

    opacity:1;

}
.about-card p{

    color:#94A3B8;

    font-size:20px;

    line-height:2.1;

    text-align:center;

}
/*================ SERVICES ================*/

.services-section{

    padding:40px 8% 100px;

}


.services-heading{

    display:flex;
    justify-content:center;

    margin-bottom:60px;

}


.services-heading h1{

    position:relative;

    font-size:65px;

    cursor:pointer;

}


.services-heading h1::after{

    content:'';

    position:absolute;

    left:50%;
    bottom:-15px;

    width:0;

    height:4px;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #8B5CF6,
    #06B6D4,
    #EC4899);

    transform:translateX(-50%);

    transition:.5s;

}


.services-heading h1:hover::after{

    width:100%;

}
.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

}
.service-card{

    position:relative;

    padding:40px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:35px;

    backdrop-filter:blur(40px);

    overflow:hidden;

    transition:.5s;

}
.service-card::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:35px;

    padding:1.5px;

    background:
    linear-gradient(
    135deg,
    transparent,
    transparent);

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    opacity:0;

    transition:.6s;

}
.service-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 0 30px rgba(139,92,246,.25),

    0 0 60px rgba(6,182,212,.15);

}


.service-card:hover::before{

    background:
    linear-gradient(
    135deg,
    #8B5CF6,
    #06B6D4,
    #EC4899);

    opacity:1;

}
.service-icon{

    width:80px;
    height:80px;

    border-radius:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:30px;

    background:
    linear-gradient(
    135deg,
    rgba(139,92,246,.2),
    rgba(6,182,212,.15));

}


.service-icon i{

    font-size:38px;

    background:
    linear-gradient(
    135deg,
    #8B5CF6,
    #06B6D4);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}
.service-card h3{

    font-size:28px;

    line-height:1.4;

    margin-bottom:20px;

}


.service-card p{

    color:#94A3B8;

    font-size:17px;

    line-height:1.9;

}
.process-section{

    padding:100px 8%;

}

.process-heading{

    display:flex;
    justify-content:center;

    margin-bottom:100px;

}

.process-heading h1{

    font-size:65px;

    position:relative;

    cursor:pointer;

}


.process-heading h1::after{

    content:'';

    position:absolute;

    width:0;

    height:4px;

    left:50%;

    bottom:-15px;

    transform:translateX(-50%);

    background:linear-gradient(
    90deg,
    #8B5CF6,
    #06B6D4,
    #EC4899);

    border-radius:10px;

    transition:.5s;

}


.process-heading h1:hover::after{

    width:100%;

}
.roadmap{

    position:relative;

    max-width:1400px;

    margin:auto;

    height:1300px;

}
.connector{

    position:absolute;

    background:
    linear-gradient(
    90deg,
    rgba(139,92,246,.2),
    #8B5CF6,
    #06B6D4,
    rgba(6,182,212,.2));

    height:3px;

    border-radius:20px;

    box-shadow:
    0 0 20px #8B5CF6,
    0 0 40px #06B6D4;

}
.line1{

    width:600px;

    top:140px;

    left:300px;

}
.line2{

    width:200px;

    top:280px;

    left:750px;

    transform:rotate(35deg);

}

.step{

    position:absolute;

    width:280px;

    padding:35px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    backdrop-filter:blur(40px);

    transition:.5s;

}


.step:hover{

    transform:translateY(-10px);

    box-shadow:

    0 0 30px rgba(139,92,246,.3),

    0 0 70px rgba(6,182,212,.15);

}
.circle{

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;
    font-weight:700;

    margin-bottom:20px;

    background:
    linear-gradient(
    135deg,
    #8B5CF6,
    #06B6D4);

}
.step1{
    top:0;
    left:0;
}

.step2{
    top:0;
    right:0;
}

.step3{
    top:300px;
    left:180px;
}

.step4{
    top:300px;
    right:180px;
}

.step5{
    top:600px;
    left:340px;
}

.step6{
    top:600px;
    right:340px;
}

.step7{
    top:900px;
    left:520px;
}

.step8{
    top:900px;
    right:520px;
}
.roadmap::before{

    content:'';

    position:absolute;

    width:900px;

    height:900px;

    left:50%;

    transform:translateX(-50%);

    background:none;

    border-left:2px dashed rgba(139,92,246,.3);

    border-bottom:2px dashed rgba(6,182,212,.3);

    border-radius:100px;

}
.step{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;

}

.step.active{

    opacity:1;

    transform:translateY(0);

}
.connector{

    position:absolute;

    height:2px;

    background:

    linear-gradient(
    90deg,
    #8B5CF6,
    #06B6D4);

    box-shadow:

    0 0 10px #8B5CF6,

    0 0 20px #06B6D4;

    transform-origin:left;

    transform:scaleX(0);

    transition:1s ease;

}


.connector.active{

    transform:scaleX(1);

}
.process-grid{

    width:100%;

}
.row{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-bottom:40px;

    opacity:0;

    transform:translateY(80px);

    transition:1s ease;

}
.row.show{

    opacity:1;

    transform:translateY(0);

}
.step-card{

    width:350px;

    padding:40px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:35px;

    backdrop-filter:blur(40px);

    transition:.5s;

}
.step-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 0 30px rgba(139,92,246,.25),

    0 0 60px rgba(6,182,212,.15);

}
.process-heading{

    text-align:center;

    margin-bottom:70px;

}

.process-heading h1{

    font-size:70px;

    font-weight:800;

    color:white;

    position:relative;

    display:inline-block;

    cursor:pointer;

}

/* Underline */

.process-heading h1::after{

    content:'';

    position:absolute;

    left:50%;

    bottom:-15px;

    transform:translateX(-50%);

    width:0;

    height:4px;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    #8B5CF6,
    #06B6D4);

    transition:.5s;

}

/* Hover Effect */

.process-heading h1:hover::after{

    width:100%;

}
.achievement-heading{

    text-align:center;

    margin-bottom:80px;

}

.achievement-heading h1{

    font-size:70px;

    font-weight:800;

    margin-bottom:20px;

    background:linear-gradient(
    135deg,
    #8B5CF6,
    #06B6D4,
    #EC4899);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    position:relative;

    display:inline-block;

}


.achievement-heading h1::after{

    content:'';

    position:absolute;

    left:50%;
    bottom:-15px;

    transform:translateX(-50%);

    width:120px;
    height:4px;

    border-radius:20px;

    background:linear-gradient(
    90deg,
    #8B5CF6,
    #06B6D4);

}


.achievement-heading p{

    max-width:850px;

    margin:auto;

    color:#94A3B8;

    font-size:19px;

    line-height:1.9;

}
.achievement-card{

    max-width:1200px;

    margin:60px auto 90px;

    padding:60px 80px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:40px;

    backdrop-filter:blur(30px);

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.5s;

}


.achievement-card::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:
    radial-gradient(
    rgba(139,92,246,.15),
    transparent);

    top:-120px;
    left:-120px;

    opacity:0;

    transition:.5s;

}


.achievement-card:hover::before{

    opacity:1;

}


.achievement-card:hover{

    border-color:rgba(139,92,246,.35);

    box-shadow:

    0 0 30px rgba(139,92,246,.15),

    0 0 80px rgba(6,182,212,.1);

}


.achievement-card p{

    color:#94A3B8;

    font-size:22px;

    line-height:2.2;

}
.contact-form-card{

    padding:60px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:40px;

    backdrop-filter:blur(30px);

}
.contact-form-card h2{

    font-size:40px;

    margin-bottom:40px;

}
.row-input{

    display:flex;

    gap:25px;

    margin-bottom:25px;

}
.contact-form-card input,
.contact-form-card textarea{

    width:100%;

    padding:22px 25px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    outline:none;

    color:white;

    font-size:17px;

    transition:.4s;

}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{

    color:#94A3B8;

}
.contact-form-card input:focus,
.contact-form-card textarea:focus{

    border-color:#8B5CF6;

    box-shadow:

    0 0 15px rgba(139,92,246,.3);

}
.contact-form-card textarea{

    resize:none;

    margin-top:25px;

}
.send-btn{

    margin-top:35px;

    padding:20px 50px;

    border:none;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #8B5CF6,
    #06B6D4);

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    box-shadow:

    0 0 30px rgba(139,92,246,.3);

    transition:.4s;

}
.send-btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 0 40px rgba(139,92,246,.5);

}
.analytics{

display:grid;

grid-template-columns:2fr 1fr;

gap:25px;

margin-top:40px;

}


.chart-card{

background:var(--card);

border:1px solid var(--border);

border-radius:30px;

padding:30px;

}


.card-title{

display:flex;

justify-content:space-between;

margin-bottom:35px;

}


.card-title i{

font-size:30px;

color:#8B5CF6;

}


.source-item{

margin-bottom:25px;

}


.source-item span{

display:block;

margin-bottom:10px;

}


.bar{

height:15px;

background:rgba(255,255,255,.06);

border-radius:20px;

overflow:hidden;

}


.fill{

height:100%;

background:linear-gradient(90deg,#8B5CF6,#06B6D4);

border-radius:20px;

}


.cyan{

background:#06B6D4;

}


.pink{

background:#EC4899;

}


.performance{

height:220px;

display:flex;

justify-content:space-around;

align-items:flex-end;

}


.performance-bar{

text-align:center;

}


.value{

width:40px;

background:linear-gradient(#8B5CF6,#06B6D4);

border-radius:20px;

}


.performance-bar span{

display:block;

margin-top:15px;

font-size:13px;

color:#94A3B8;

}


.table-card{

background:var(--card);

border:1px solid var(--border);

border-radius:30px;

padding:30px;

margin-top:30px;

overflow:auto;

}


.table-header{

display:flex;

justify-content:space-between;

margin-bottom:25px;

}


.table-header button{

background:linear-gradient(135deg,#8B5CF6,#06B6D4);

border:none;

padding:12px 25px;

border-radius:15px;

color:white;

cursor:pointer;

}


table{

width:100%;

border-collapse:collapse;

}


th{

color:#94A3B8;

padding:20px;

text-align:left;

}


td{

padding:20px;

border-top:1px solid rgba(255,255,255,.06);

}


.status{

padding:8px 15px;

border-radius:20px;

font-size:13px;

}


.discussion{

background:rgba(139,92,246,.2);

color:#8B5CF6;

}


.follow{

background:rgba(236,72,153,.2);

color:#EC4899;

}


.converted{

background:rgba(6,182,212,.2);

color:#06B6D4;

}
.bottom-grid{

display:grid;

grid-template-columns:2fr 1fr;

gap:25px;

margin-top:30px;

}


.trend-card,
.notification-card,
.activity-card,
.quick-card{

background:var(--card);

border:1px solid var(--border);

border-radius:30px;

padding:30px;

}


.trend-chart{

height:250px;

display:flex;

justify-content:space-around;

align-items:flex-end;

margin-top:30px;

}


.trend-bar{

width:45px;

background:

linear-gradient(
180deg,
#8B5CF6,
#06B6D4);

border-radius:20px;

position:relative;

}


.trend-bar span{

position:absolute;

bottom:-35px;

left:50%;

transform:translateX(-50%);

font-size:13px;

color:#94A3B8;

}


.notification{

display:flex;

gap:15px;

margin-bottom:30px;

}


.notification i{

font-size:25px;

color:#8B5CF6;

}


.notification h4{

margin-bottom:8px;

}


.notification p{

font-size:14px;

color:#94A3B8;

}


.timeline-item{

display:flex;

gap:20px;

margin-bottom:35px;

}


.dot{

width:14px;

height:14px;

border-radius:50%;

background:#8B5CF6;

margin-top:7px;

box-shadow:

0 0 15px #8B5CF6;

}


.timeline-item p{

margin-top:8px;

font-size:14px;

color:#94A3B8;

}


.quick-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

margin-top:25px;

}


.quick-box{

padding:25px;

background:rgba(255,255,255,.03);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

display:flex;

flex-direction:column;

align-items:center;

gap:15px;

cursor:pointer;

transition:.4s;

}


.quick-box:hover{

transform:translateY(-8px);

box-shadow:

0 0 30px rgba(139,92,246,.25);

}


.quick-box i{

font-size:30px;

color:#8B5CF6;

}


.quick-box span{

font-size:14px;

}
.team-card,
.assignment-card,
.follow-card,
.audit-card{

background:var(--card);

border:1px solid var(--border);

border-radius:30px;

padding:30px;

position:relative;

overflow:hidden;

transition:.5s;

}


.team-card:hover,
.assignment-card:hover,
.follow-card:hover,
.audit-card:hover{

transform:translateY(-8px);

box-shadow:

0 0 25px rgba(139,92,246,.25),

0 0 50px rgba(6,182,212,.15);

}


/* TEAM */

.team-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

margin-top:25px;

}

.team-box{

padding:25px;

background:rgba(255,255,255,.03);

border-radius:20px;

text-align:center;

}

.team-box h1{

font-size:40px;

background:

linear-gradient(
135deg,
#8B5CF6,
#06B6D4);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.team-box p{

margin-top:10px;

color:#94A3B8;

}


/* ASSIGNMENT */

.queue-item{

display:flex;

justify-content:space-between;

margin-bottom:30px;

}


.queue-status{

padding:8px 18px;

background:rgba(236,72,153,.2);

color:#EC4899;

border-radius:20px;

}


.assigned{

background:rgba(6,182,212,.2);

color:#06B6D4;

}


/* FOLLOW UPS */

.follow-item{

margin-bottom:35px;

}

.follow-item p{

margin-top:8px;

color:#94A3B8;

font-size:14px;

}


/* AUDIT */

.audit-item{

margin-bottom:35px;

}

.audit-item p{

margin-top:8px;

font-size:14px;

color:#94A3B8;

}
@media(max-width:1100px){

.sidebar{

width:90px;

}

.logo{

font-size:0;

}

.logo span{

font-size:30px;

}

.menu a{

justify-content:center;

font-size:0;

}

.menu i{

font-size:22px;

}

.main{

margin-left:90px;

}

.analytics,
.bottom-grid{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

}

}