/* =========================
GLOBAL
========================= */

:root{
    --primary:#6c63ff;
    --secondary:#8f6bff;
    --dark:#050816;
    --dark-2:#0d1326;
    --dark-3:#141c35;
    --white:#ffffff;
    --text:#d7dcef;
    --text-light:#9ca7c4;
    --border:rgba(255,255,255,0.08);
    --gradient:linear-gradient(135deg,#6c63ff 0%,#00c2ff 100%);
    --shadow:0 15px 45px rgba(0,0,0,0.25);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
    transition:0.3s ease;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

section{
    position:relative;
}

.container{
    position:relative;
    z-index:2;
}


/* =========================
HERO SECTION
========================= */

.marketing-automation-hero{
    min-height:100vh;
    background:
    radial-gradient(circle at top left,rgba(108,99,255,0.25),transparent 40%),
    radial-gradient(circle at bottom right,rgba(0,194,255,0.15),transparent 40%),
    #050816;
    padding-top:120px;
}

.hero-grid-bg{
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
    background-size:60px 60px;
    opacity:0.4;
}

.hero-mini-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    color:#fff;
    font-size:14px;
    font-weight:600;
    backdrop-filter:blur(12px);
}

.automation-hero-title{
    font-size:4rem;
    font-weight:800;
    line-height:1.1;
    color:#fff;
}

.automation-hero-desc{
    font-size:1.1rem;
    color:#c2cae3;
    max-width:620px;
}

.automation-btn-primary{
    background:var(--gradient);
    border:none;
    color:#ffffff;
    padding:16px 32px;
    border-radius:14px;
    font-weight:600;
    box-shadow:0 14px 35px rgba(108,99,255,0.4);
}

.automation-btn-primary:hover{
    transform:translateY(-4px);
    color:#ffffff;
}

.automation-btn-outline{
    border:1px solid rgba(255,255,255,0.18);
    color:#ffffff;
    padding:16px 30px;
    border-radius:14px;
    font-weight:600;
    background:rgba(255,255,255,0.04);
}

.automation-btn-outline:hover{
    background:#ffffff;
    color:#ffffff;
}

.trusted-platforms span{
    color:#b5c0dd;
    font-size:15px;
}

.platform-list{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.platform-chip{
    padding:12px 18px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:12px;
    color:#fff;
    font-size:14px;
    font-weight:500;
}

.platform-chip i{
    margin-right:8px;
    color:#7b8cff;
}

/* =========================
DASHBOARD
========================= */

.automation-dashboard-wrapper{
    position:relative;
}

.automation-dashboard-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:30px;
    box-shadow:var(--shadow);
}

.dashboard-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.dashboard-dots{
    display:flex;
    gap:8px;
}

.dashboard-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
    opacity:0.5;
}

.dashboard-status{
    padding:10px 18px;
    background:rgba(0,255,153,0.15);
    color:#58ffbf;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.dashboard-chart-card{
    background:#0f1730;
    border-radius:24px;
    padding:28px;
}

.dashboard-chart-card h3{
    font-size:2.4rem;
    font-weight:700;
    margin-top:5px;
    color: #ffffff;
}

.growth-badge{
    background:rgba(0,255,153,0.15);
    color:#4effb1;
    padding:12px 18px;
    border-radius:12px;
    font-weight:700;
}

.chart-bars{
    display:flex;
    align-items:flex-end;
    gap:14px;
    margin-top:30px;
    height:180px;
}

.chart-bars span{
    flex:1;
    border-radius:20px 20px 0 0;
    background:var(--gradient);
    animation:bars 3s infinite alternate;
}

.chart-bars span:nth-child(1){height:50%;}
.chart-bars span:nth-child(2){height:80%;}
.chart-bars span:nth-child(3){height:60%;}
.chart-bars span:nth-child(4){height:100%;}
.chart-bars span:nth-child(5){height:70%;}
.chart-bars span:nth-child(6){height:90%;}

@keyframes bars{
    from{
        opacity:0.6;
    }
    to{
        opacity:1;
    }
}

.automation-flow-box{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.flow-step{
    padding:14px 18px;
    background:#101933;
    border-radius:14px;
    color:#dfe7ff;
    font-size:14px;
    font-weight:600;
}

.flow-step.active{
    background:var(--gradient);
    color:#fff;
}

.flow-line{
    width:40px;
    height:2px;
    background:rgba(255,255,255,0.2);
}

.mini-stat-card{
    background:#101933;
    padding:22px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
}

.mini-stat-card h4{
    font-size:2rem;
    font-weight:700;
    margin-bottom:6px;
     color:#ffffff;
}

.mini-stat-card p{
    color:#a8b3cf;
    margin:0;
}

.floating-notification-card{
    position:absolute;
    bottom:-40px;
    left:-40px;
    background:#fff;
    color:#000;
    padding:20px 24px;
    border-radius:22px;
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
    animation:floatCard 4s infinite ease-in-out;
}

@keyframes floatCard{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

.notification-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#00d084,#00ff99);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.notification-icon i{
    font-size:18px;
}

/* =========================
BLURS
========================= */

.automation-blur,
.integration-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    z-index:0;
}

.blur-one{
    width:300px;
    height:300px;
    background:#6c63ff;
    top:0;
    left:0;
    opacity:0.25;
}

.blur-two{
    width:280px;
    height:280px;
    background:#00c2ff;
    bottom:0;
    right:0;
    opacity:0.2;
}

/* =========================
COMMON SECTION
========================= */

.automation-section-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:999px;
    background:rgba(108,99,255,0.12);
    color:#8ea2ff;
    font-size:14px;
    font-weight:600;
    border:1px solid rgba(108,99,255,0.2);
}

.automation-section-title{
    font-size:3rem;
    font-weight:800;
    line-height:1.2;
    color:#fff;
}

.automation-section-desc{
    color:#ffffff;
    font-size:1.05rem;
}

/* =========================
SERVICES
========================= */

.automation-services-section{
    background:#08101f;
}

.automation-service-card{
    background:#0f172d;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:28px;
    padding:35px;
    height:100%;
    transition:0.4s ease;
}

.automation-service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(108,99,255,0.5);
}

.service-icon-box{
    width:80px;
    height:80px;
    border-radius:22px;
    background:var(--gradient);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}

.service-icon-box i{
    font-size:32px;
    color:#fff;
}

.automation-service-card h3{
    font-size:1.5rem;
    margin-bottom:18px;
    color:#fff;
}

.automation-service-card p{
    color:#a8b3cf;
}

.automation-feature-list li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:14px;
    color:#dfe6fb;
}

.automation-feature-list i{
    color:#6cffc6;
}

/* =========================
PROCESS
========================= */

.automation-process-section{
    background:#050816;
    color:#ffffff;
}

.process-card{
    background:#0f172d;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
    height:100%;
    transition:0.4s ease;
}

.process-card:hover{
    transform:translateY(-8px);
}

.process-number{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:24px;
    border-radius:50%;
    background:var(--gradient);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
    font-weight:700;
}

/* =========================
WHY SECTION
========================= */

.why-automation-section{
    background:#091121;
    color:#ffffff;
}

.why-automation-image{
    background:#0f172d;
    border-radius:30px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.06);
}

.analytics-screen{
    background:#111b33;
    border-radius:24px;
    padding:30px;
}

.screen-header{
    font-weight:700;
    margin-bottom:25px;
}

.analytics-bars{
    display:flex;
    align-items:flex-end;
    gap:12px;
    height:180px;
}

.analytics-bars span{
    flex:1;
    border-radius:20px 20px 0 0;
    background:var(--gradient);
}

.analytics-bars span:nth-child(1){height:40%;}
.analytics-bars span:nth-child(2){height:70%;}
.analytics-bars span:nth-child(3){height:90%;}
.analytics-bars span:nth-child(4){height:65%;}
.analytics-bars span:nth-child(5){height:100%;}

.analytics-bottom{
    display:flex;
    justify-content:space-between;
    margin-top:30px;
}

.analytics-bottom h4{
    font-size:2rem;
    font-weight:700;
    color:#ffffff;
}

.analytics-bottom p{
    color:#9ba7c5;
}

.why-feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    font-size:1rem;
    color:#e4ebff;
}

.why-feature-item i{
    color:#59ffbf;
    font-size:20px;
}

/* =========================
FAQ
========================= */

.automation-faq-section{
    background:#050816;
}

.automation-accordion .accordion-item{
    background:#0f172d;
    border:1px solid rgba(255,255,255,0.06);
    margin-bottom:20px;
    border-radius:20px!important;
    overflow:hidden;
}

.automation-accordion .accordion-button{
    background:#0f172d;
    color:#fff;
    padding:24px;
    font-weight:600;
    box-shadow:none!important;
}

.automation-accordion .accordion-button:not(.collapsed){
    background:#121d39;
    color:#fff;
}

.automation-accordion .accordion-body{
    color:#b2bedc;
    padding:24px;
}

/* =========================
INTEGRATION SECTION
========================= */

.automation-integrations-section{
    background:#08101f;
}

.integration-main-card,
.roi-growth-card{
    background:#0f172d;
    border-radius:30px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.06);
    height:100%;
    color:#ffffff;
}

.integration-header small{
    color:#9eaacf;
}

.integration-header h3{
    font-size:2rem;
    margin-top:8px;
    color:#fff;
}

.integration-live-status{
    background:rgba(0,255,153,0.12);
    color:#58ffbf;
    padding:12px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.integration-platform-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.integration-platform-card{
    background:#121c35;
    border-radius:22px;
    padding:28px 20px;
    text-align:center;
    transition:0.4s ease;
}

.integration-platform-card:hover{
    transform:translateY(-8px);
}

.integration-icon{
    width:70px;
    height:70px;
    margin:auto;
    margin-bottom:20px;
    border-radius:18px;
    background:var(--gradient);
    display:flex;
    align-items:center;
    justify-content:center;
}

.integration-icon i{
    font-size:30px;
}

.integration-platform-card span{
    color:#9ca7c5;
    font-size:14px;
}

.roi-mini-badge{
    display:inline-block;
    background:rgba(108,99,255,0.15);
    color:#8da1ff;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.roi-stats-wrapper{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.roi-stat-item{
    background:#121c35;
    border-radius:20px;
    padding:20px;
}

.roi-stat-item h4{
    font-size:2rem;
    margin-bottom:5px;
    color:#ffffff;
}

/* =========================
COMPARISON
========================= */

.automation-comparison-section{
    background:#050816;
}

.comparison-card{
    border-radius:30px;
    padding:40px;
    border:1px solid rgba(255,255,255,0.06);
}

.manual-side{
    background:#1a0e16;
    color:#ffffff;
}

.automation-side{
    background:#0f1e1c;
    color:#ffffff;
}

.comparison-top{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.comparison-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.comparison-icon i{
    font-size:28px;
}

.danger{
    background:linear-gradient(135deg,#ff4d6d,#ff758f);
}

.success{
    background:linear-gradient(135deg,#00d084,#00ffbf);
}

.comparison-list li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
    font-size:16px;
}

.manual-side li i{
    color:#ff758f;
}

.automation-side li i{
    color:#5dffbf;
}

/* =========================
CTA
========================= */

.cta-section{
    padding:120px 0;
    background:
    radial-gradient(circle at top left,rgba(108,99,255,0.18),transparent 35%),
    #08101f;
    color:#fff;
}

.cta-title{
    font-size:3rem;
    font-weight:800;
}

.cta-subtitle{
    color:#ffffff;
    font-size:1.1rem;
}

.glass-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    padding:45px;
    backdrop-filter:blur(18px);
    height:100%;
    color:#ffffff;
}

.glass-card h3{
    margin-bottom:18px;
    font-size:2rem;
    color:#ffffff;
}

.glass-card p{
    color:#ffffff;
    margin-bottom:30px;
}

.custom-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
    border-radius:14px;
    font-weight:600;
    margin:10px 10px 0 0;
    transition:0.4s ease;
}

.btn-contact{
    background:var(--gradient);
    color:#fff;
}

.btn-call{
    background:#00c853;
    color:#fff;
}

.btn-chat{
    background:#25D366;
    color:#fff;
}

.custom-btn:hover{
    transform:translateY(-4px);
    color:#fff;
}

.list-inline-item a{
    color:#fff;
}

.fa-stack .fa-circle{
    color:#111a33;
}

.fa-stack:hover .fa-circle{
    color:#6c63ff;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

    .automation-hero-title{
        font-size:3.2rem;
    }

    .automation-section-title{
        font-size:2.5rem;
    }

}

@media(max-width:991px){

    .navbar-collapse{
        padding-top:30px;
    }

    .automation-hero-title{
        font-size:2.7rem;
    }

    .automation-dashboard-wrapper{
        margin-top:60px;
    }

    .floating-notification-card{
        position:relative;
        left:0;
        bottom:0;
        margin-top:30px;
    }

    .integration-platform-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .automation-hero-title{
        font-size:2.2rem;
    }

    .automation-section-title{
        font-size:2rem;
    }

    .integration-platform-grid{
        grid-template-columns:1fr;
    }

    .chart-bars{
        height:120px;
    }

    .comparison-card,
    .glass-card,
    .automation-service-card,
    .process-card{
        padding:28px;
        color:#ffffff;
    }

    .cta-title{
        font-size:2.3rem;
    }

}

@media(max-width:576px){

    .brand-text{
        font-size:0.95rem;
    }

    .automation-btn-primary,
    .automation-btn-outline{
        width:100%;
        justify-content:center;
        color: #ffffff;
    }

    .platform-list{
        flex-direction:column;
    }

    .automation-dashboard-card{
        padding:22px;
    }

    .dashboard-chart-card{
        padding:22px;
    }

    .flow-line{
        display:none;
    }

    .automation-flow-box{
        flex-direction:column;
    }

}
.social-icons li a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#151f39;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:0.3s ease;
}

.social-icons li a:hover{
    background:#1b65d3;
    transform:translateY(-4px);
}
