                                        /* =========================================================
   GLOBAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#081120;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

/* =========================================================
   COMMON
========================================================= */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:80px 0;
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:14px;
    line-height:1.2;
}

.section-title p{
    color:#cbd5e1;
    max-width:680px;
    margin:auto;
    font-size:15px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-main{
    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    color:#ffffff;
    padding:13px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.3s ease;
}

.btn-main:hover{
    transform:translateY(-2px);
    color:#ffffff;
}

.btn-outline-custom{
    border:2px solid #00d4ff;
    color:#00d4ff;
    padding:12px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-outline-custom:hover{
    background:#00d4ff;
    color:#000000;
}

.btn-dark-custom{
    background:#000000;
    color:#ffffff;
    padding:13px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
}

.btn-dark-custom:hover{
    background:#111827;
    color:#ffffff;
}

/* =========================================================
   HERO
========================================================= */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    padding-top:110px;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,
    rgba(0,212,255,0.10),
    transparent 35%),

    linear-gradient(
        135deg,
        #081120,
        #0f172a
    );
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(0,212,255,0.08);
    border:1px solid rgba(0,212,255,0.20);
    color:#00d4ff;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:56px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
}

.hero h1 span{
    color:#00d4ff;
}

.hero p{
    color:#cbd5e1;
    font-size:16px;
    max-width:560px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-image{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================================================
   COUNTERS
========================================================= */

.counter-box{
    background:#0f172a;
    border-radius:24px;
    padding:30px 24px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.3s ease;
    height:100%;
}

.counter-box:hover{
    transform:translateY(-5px);
    border-color:rgba(0,212,255,0.20);
}

.counter-icon{
    width:68px;
    height:68px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );

    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
}

.counter-icon i{
    font-size:24px;
}

.counter-box h3{
    font-size:38px;
    font-weight:800;
    color:#00d4ff;
    margin-bottom:8px;
}

.counter-box p{
    color:#cbd5e1;
    font-size:15px;
}

/* =========================================================
   PROJECTS
========================================================= */

.projects-slider-section{
    overflow:hidden;
}

.project-marquee{
    overflow:hidden;
    position:relative;
}

.project-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:marqueeMove 35s linear infinite;
}

.project-card{
    width:260px;
    background:#0f172a;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.05);
    flex-shrink:0;
    transition:0.3s ease;
}

.project-card:hover{
    transform:translateY(-5px);
    border-color:rgba(0,212,255,0.25);
}

.project-image{
    height:180px;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.project-content{
    padding:18px;
    text-align:center;
}

.project-content h4{
    font-size:13px;
    font-weight:600;
    margin:0;
    line-height:1.5;
    word-break:break-word;
}

.project-content h4 a{
    font-size:14px;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;
    transition:0.3s ease;
    word-break:break-word;
    display:inline-block;
}

.project-content h4 a:hover{
    color:#00d4ff;
}

@keyframes marqueeMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* =========================================================
   PRICING
========================================================= */

.pricing-card{
    background:#0f172a;
    border-radius:28px;
    padding:36px 28px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.05);
    transition:0.3s ease;
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-5px);
    border-color:rgba(0,212,255,0.20);
}

.pricing-card.active{
    background:linear-gradient(
        135deg,
        #00d4ff,
        #2563eb
    );
}

.pricing-card.active h3,
.pricing-card.active .price,
.pricing-card.active li{
    color:#000000;
}

.plan-icon{
    width:74px;
    height:74px;
    border-radius:18px;
    background:#00d4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.plan-icon i{
    font-size:30px;
    color:#000000;
}

.pricing-card h3{
    font-size:26px;
    margin-bottom:14px;
}

.price{
    font-size:42px;
    font-weight:800;
    color:#00d4ff;
    margin-bottom:20px;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:0 0 24px;
}

.pricing-card ul li{
    margin-bottom:12px;
    font-size:15px;
    color:#dbe4ef;
}

.pricing-card ul li i{
    color:#00d4ff;
    margin-right:8px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section{
    position:relative;
    overflow:hidden;
}

.testimonial-marquee{
    overflow:hidden;
    position:relative;
    padding-top:10px;
}

.testimonial-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:testimonialMove 40s linear infinite;
}

/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card{
    width:360px;
    flex-shrink:0;
    background:rgba(15,23,42,0.85);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:28px;
    padding:30px;
    backdrop-filter:blur(14px);
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.testimonial-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,212,255,0.05),
        transparent
    );

    opacity:0;
    transition:0.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,212,255,0.22);
}

.testimonial-card:hover::before{
    opacity:1;
}

/* =========================================================
   STARS
========================================================= */

.stars{
    margin-bottom:18px;
}

.stars i{
    color:#ffc107;
    font-size:16px;
    margin-right:4px;
}

/* =========================================================
   REVIEW TEXT
========================================================= */

.testimonial-text{
    color:#dbe4ef;
    font-size:15px;
    line-height:1.9;
    margin-bottom:28px;

    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* =========================================================
   CLIENT INFO
========================================================= */

.client-info{
    display:flex;
    align-items:center;
    gap:14px;
}

.client-info img{
    width:62px;
    height:62px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #00d4ff;
}

.client-details h5{
    font-size:17px;
    color:#ffffff;
    margin-bottom:4px;
}

.client-details span{
    color:#94a3b8;
    font-size:14px;
}

/* =========================================================
   MARQUEE ANIMATION
========================================================= */

@keyframes testimonialMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* =========================================================
   CTA MAIN SECTION
========================================================= */

.cta-main-section{
    position:relative;
}

.cta-box{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    padding:65px 30px;
    text-align:center;

    background:linear-gradient(
        135deg,
        #14d8ff,
        #2d6cff
    );
}

/* GLOW */

.cta-box::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,0.16);
    border-radius:50%;
    top:-140px;
    right:-100px;
    filter:blur(40px);
}

.cta-content{
    position:relative;
    z-index:2;
}

/* =========================================================
   TITLE
========================================================= */

.cta-content h2{
    font-size:50px;
    font-weight:800;
    line-height:1.2;
    color:#000000;
    margin-bottom:22px;
}

/* =========================================================
   TEXT
========================================================= */

.cta-content p{
    font-size:18px;
    line-height:1.8;
    color:#081120;
    max-width:900px;
    margin:0 auto 36px;
}

/* =========================================================
   BUTTON
========================================================= */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#000000;
    color:#ffffff;
    text-decoration:none;

    min-width:240px;
    height:68px;

    border-radius:50px;

    font-size:22px;
    font-weight:700;

    transition:0.3s ease;
}

.cta-btn:hover{
    transform:translateY(-3px);
    color:#ffffff;
    box-shadow:0 16px 30px rgba(0,0,0,0.25);
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:991px){

    section{
        padding:70px 0;
    }

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero h1{
        font-size:44px;
    }

    .hero p{
        margin:auto auto 28px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        margin-top:40px;
    }

    .section-title h2{
        font-size:36px;
    }

    .cta-box{
        padding:55px 26px;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-content p{
        font-size:17px;
    }

    .cta-btn{
        min-width:220px;
        height:62px;
        font-size:20px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:767px){

    section{
        padding:60px 0;
    }

    .hero{
        min-height:auto;
        padding-top:110px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:15px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-main,
    .btn-outline-custom{
        width:100%;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:30px;
    }

    .counter-box{
        padding:26px 20px;
    }

    .counter-box h3{
        font-size:32px;
    }

    .project-card{
        width:220px;
    }

    .project-image{
        height:150px;
    }

    .pricing-card{
        padding:30px 22px;
    }

    .price{
        font-size:36px;
    }

    .testimonial-card{
        padding:24px;
    }
    
    .testimonial-track{
        gap:18px;
    }

    .testimonial-card{
        width:300px;
        padding:24px;
    }

    .testimonial-text{
        font-size:14px;
    }

    .client-info img{
        width:54px;
        height:54px;
    }

    .client-details h5{
        font-size:16px;
    }
    
    .cta-box{
        padding:45px 22px;
        border-radius:26px;
    }

    .cta-content h2{
        font-size:28px;
        margin-bottom:18px;
    }

    .cta-content p{
        font-size:15px;
        line-height:1.8;
        margin-bottom:26px;
    }

    .cta-btn{
        width:100%;
        min-width:100%;
        height:56px;
        font-size:17px;
        border-radius:16px;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:576px){

    .hero h1{
        font-size:30px;
    }

    .section-title h2{
        font-size:26px;
    }

    .hero-badge{
        font-size:12px;
    }

    .counter-icon{
        width:60px;
        height:60px;
    }

    .counter-icon i{
        font-size:22px;
    }

    .counter-box h3{
        font-size:28px;
    }

    .pricing-card h3{
        font-size:22px;
    }

    .price{
        font-size:32px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-content p{
        font-size:14px;
    }

}                    