
/* =========================================================
   PREMIUM MULTI BUSINESS WEBSITE CSS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#fff;
    overflow-x:hidden;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0a0f2c;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#00d2ff,#3a47d5);
    border-radius:20px;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.bg-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    z-index:-2;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(
    135deg,
    rgba(3,7,18,0.92),
    rgba(15,23,42,0.75)
    );
    z-index:-1;
}

.hero-content{
    position:relative;
    z-index:5;
    max-width:900px;
}

.hero-badge{
    display:inline-block;
    padding:12px 28px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:25px;
    color:#00d2ff;
    animation:float 4s ease-in-out infinite;
}

.main-title{
    font-size:75px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    background:linear-gradient(90deg,#ffffff,#00d2ff,#7f5af0);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-subtitle{
    font-size:20px;
    color:#cbd5e1;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

/* =========================================================
   BUTTONS
========================================================= */

.main-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    border-radius:60px;
    background:linear-gradient(135deg,#00d2ff,#3a47d5);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 10px 35px rgba(0,210,255,0.35);
}

.main-btn:hover{
    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 20px 45px rgba(0,210,255,0.5);
}

.outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    border-radius:60px;
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    backdrop-filter:blur(10px);
    transition:0.4s;
}

.outline-btn:hover{
    background:#fff;
    color:#000;
    transform:translateY(-5px);
}

/* =========================================================
   FLOATING SHAPES
========================================================= */

.floating-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:0.4;
}

.circle-1{
    width:300px;
    height:300px;
    background:#00d2ff;
    top:10%;
    left:5%;
    animation:float 8s infinite ease-in-out;
}

.circle-2{
    width:250px;
    height:250px;
    background:#7f5af0;
    bottom:10%;
    right:5%;
    animation:float 10s infinite ease-in-out;
}

.circle-3{
    width:200px;
    height:200px;
    background:#ff0080;
    top:40%;
    right:20%;
    animation:float 7s infinite ease-in-out;
}

/* =========================================================
   SCROLL DOWN
========================================================= */

.scroll-down{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
}

.scroll-down span{
    width:30px;
    height:50px;
    border:2px solid #fff;
    display:block;
    border-radius:30px;
    position:relative;
}

.scroll-down span::before{
    content:'';
    position:absolute;
    top:10px;
    left:50%;
    transform:translateX(-50%);
    width:6px;
    height:6px;
    background:#fff;
    border-radius:50%;
    animation:scroll 2s infinite;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.section-title span{
    color:#00d2ff;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:48px;
    margin-top:15px;
    font-weight:700;
}

/* =========================================================
   BUSINESS SECTION
========================================================= */

.business-section{
    padding:120px 0;
    background:#070b1f;
}

.business-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:30px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    transition:0.5s;
    text-decoration:none;
    height:100%;
}

.business-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 60px rgba(0,0,0,0.5);
}

.card-image{
    overflow:hidden;
    position:relative;
}

.card-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.6s;
}

.business-card:hover img{
    transform:scale(1.12);
}

.card-content{
    padding:30px;
    position:relative;
}

.icon-box{
    width:75px;
    height:75px;
    border-radius:20px;
    background:linear-gradient(135deg,#00d2ff,#3a47d5);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,210,255,0.35);
}

.icon-box i{
    font-size:30px;
    color:#fff;
}

.card-content h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.card-content p{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:20px;
}

.card-arrow{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#111827;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s;
}

.card-arrow i{
    color:#00d2ff;
}

.business-card:hover .card-arrow{
    background:#00d2ff;
}

.business-card:hover .card-arrow i{
    color:#fff;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section{
    padding:120px 0;
    background:#050816;
}

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:35px;
}

.about-image img{
    width:100%;
    border-radius:35px;
    transition:0.5s;
}

.about-image:hover img{
    transform:scale(1.08);
}

.about-content span{
    color:#00d2ff;
    font-weight:600;
}

.about-content h2{
    font-size:50px;
    font-weight:700;
    margin:20px 0;
}

.about-content p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section{
    padding:100px 0;
    background:linear-gradient(135deg,#0f172a,#111827);
}

.stats-box{
    padding:40px 20px;
    border-radius:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.5s;
}

.stats-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.08);
}

.stats-box h2{
    font-size:55px;
    font-weight:800;
    color:#00d2ff;
}

.stats-box p{
    margin-top:10px;
    color:#cbd5e1;
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section{
    padding:120px 0;
    background:#070b1f;
}

.cta-box{
    padding:80px 50px;
    border-radius:40px;
    background:linear-gradient(
    135deg,
    rgba(0,210,255,0.15),
    rgba(127,90,240,0.15)
    );
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
}

.cta-box h2{
    font-size:50px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-box p{
    color:#cbd5e1;
    margin-bottom:30px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer-section{
    padding:40px 0;
    background:#030712;
    border-top:1px solid rgba(255,255,255,0.06);
}

.footer-section p{
    margin:0;
    color:#94a3b8;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes scroll{

    0%{
        opacity:0;
        transform:translate(-50%,0);
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:translate(-50%,20px);
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .main-title{
        font-size:55px;
    }

    .section-title h2{
        font-size:38px;
    }

    .about-content h2{
        font-size:38px;
    }

    .cta-box h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .main-title{
        font-size:42px;
    }

    .hero-subtitle{
        font-size:17px;
    }

    .section-title h2{
        font-size:30px;
    }

    .about-content h2{
        font-size:30px;
    }

    .cta-box{
        padding:50px 30px;
    }

    .cta-box h2{
        font-size:30px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}