/* ========================================================= */
/* ======================= HERO ============================ */
/* ========================================================= */

.hero-bg{
    position:absolute;
    inset:0;
    background:
        radial-gradient(800px circle at 20% 30%, rgb(0 129 255), transparent 40%), radial-gradient(600px circle at 80% 60%, rgb(24 253 167), transparent 45%), linear-gradient(135deg, #050c18, #28374f);
}

.hero-container{
    padding:90px 0;
}

.hero-title{
    font-size:clamp(2.2rem,4vw,3.5rem);
    font-weight:800;
}

.hero-text{
    color:#9fb3d1;
    max-width:520px;
}

.hero-img{
    max-width:100%;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.45));
    border-radius:10px;
}

/* Floating cards (DESKTOP ONLY) */
.stat-card{
    position:absolute;
    background:rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding:14px 18px;
    border-radius:14px;
    color:#fff;
    z-index:2;
}

.stat-1{
    top: 3%;
    left: 40px;
}
.stat-2{
    top: 4%;
    right: 43px;
}
.stat-3{
    top: 85%;
    right: 38%;
}


/* ========================================================= */
/* ======================= ABOUT =========================== */
/* ========================================================= */

.about-section{
    padding:20px 0;
    background:linear-gradient(180deg,#050c18,#081428);
}

.section-badge{
    margin-top: 15px;
    background:rgba(30,144,255,.15);
    color:#1e90ff;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
    font-weight:600;
}

.about-title{
    margin-top: 10px;
    font-size:clamp(2rem,3vw,2.8rem);
    font-weight:800;
}

.about-text{
    color:#9fb3d1;
    max-width:520px;
}

.stats-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    background:rgba(255,255,255,.03);
    padding:25px;
    border-radius:16px;
}

.stat-item h3{
    margin:0;
    color:#1e90ff;
    font-size:28px;
    font-weight:800;
}

.stat-item p{
    margin:0;
    font-size:14px;
    color:#9fb3d1;
}

.feature-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

/* ========================================================= */
/* ================= IMAGE COLLAGE ========================= */
/* ========================================================= */

.about-images{
    position:relative;
    min-height:450px;
}

.about-img{
    position:absolute;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 30px 60px rgba(0,0,0,.45);
}

.img-main{
    width:82%;
    top:0;
    right:0;
    z-index:1;
}

.img-overlay{
    width:60%;
    bottom:-50px;
    left:0;
    z-index:3;
    background:#071223;
    padding:4px;
    border-radius:20px;
}

.award-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#0d6efd;
    color:#fff;
    padding:14px 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
    z-index:5;
}


/* ========================================================= */
/* ================= SCROLL REVEAL ========================= */
/* ========================================================= */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .8s ease,
        transform .8s ease;
    will-change:opacity, transform;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.delay-1{ transition-delay:.15s; }
.delay-2{ transition-delay:.3s; }
.delay-3{ transition-delay:.45s; }
.delay-4{ transition-delay:.6s; }


/* ========================================================= */
/* ================= MOBILE FIXES ========================== */
/* ========================================================= */

@media (max-width: 991px){

    /* HERO */
    .hero-container{
        padding-top:80px;
        padding-bottom:40px;
        text-align:center;
    }

    .hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-img{
        margin-top:25px;
        max-width:90%;
    }

    /* floating cards off on mobile */
    .stat-card{
        display:none !important;
    }

    /* ABOUT IMAGES STACK */
    .about-images{
        min-height:auto;
        display:flex;
        flex-direction:column;
        gap:20px;
        margin-top:30px;
    }

    .about-img{
        position:relative;
        width:100%;
        inset:auto;
        padding:0;
        background:none;
        box-shadow:0 18px 35px rgba(0,0,0,.35);
    }

    .img-overlay{
        bottom:auto;
        left:auto;
    }

    .award-badge{
        position:relative;
        top:auto;
        right:auto;
        margin-top:10px;
        align-self:flex-start;
    }

    /* REVEAL smoother on mobile */
    .reveal{
        transform:translateY(40px);
    }

    .delay-1,
    .delay-2,
    .delay-3,
    .delay-4{
        transition-delay:0s;
    }
}
/* ========================================================= */
/* ======================= SERVICES ======================== */
/* ========================================================= */

.services-section{
    padding:80px 0;
    background:linear-gradient(180deg,#081428,#050c18);
}

.services-title{
    font-size:clamp(2rem,3vw,2.6rem);
    font-weight:800;
}

.services-text{
    color:#9fb3d1;
    max-width:620px;
}

.service-card{
    height:100%;
    background:rgba(255,255,255,.04);
    border-radius:20px;
    padding:30px;
    box-shadow:0 25px 50px rgba(0,0,0,.35);
    transition:transform .35s ease, box-shadow .35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 70px rgba(0,0,0,.55);
}

.service-card.featured{
    border:1px solid rgba(30,144,255,.45);
}

.service-icon{
    width:56px;
    height:56px;
    background:#0d6efd;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:20px;
    color:#fff;
}

.service-card h4{
    font-size:22px;
    font-weight:700;
}

.service-card p{
    color:#9fb3d1;
    font-size:15px;
}

.service-card ul{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.service-card ul li{
    position:relative;
    padding-left:22px;
    margin-bottom:10px;
    font-size:14px;
    color:#c7d4ea;
}

.service-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#1e90ff;
}

.service-more{
    color:#1e90ff;
    font-weight:600;
    text-decoration:none;
}

.service-more:hover{
    text-decoration:underline;
}

/* MOBILE */
@media (max-width: 767px){
    .services-section{
        padding:60px 0;
        text-align:center;
    }

    .service-card ul{
        text-align:left;
    }
}
/* ========================================================= */
/* =================== WHY CHOOSE US HERO ================== */
/* ========================================================= */

.why-hero{
    padding:100px 0;
    background:radial-gradient(900px circle at 80% 40%, rgba(30,144,255,.12), transparent 45%),
               linear-gradient(180deg,#050c18,#081428);
}

.why-title{
    margin-top: 10px;
    font-size:clamp(2.2rem,4vw,3rem);
    font-weight:800;
    line-height:1.2;
}

.why-title span{
    color:#1e90ff;
}

.why-text{
    color:#9fb3d1;
    max-width:520px;
    margin:20px 0 35px;
}

/* STATS */
.why-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.why-stat h3{
    font-size:42px;
    font-weight:800;
    color:#1e90ff;
    margin:0;
}

.why-stat p{
    margin:0;
    font-size:14px;
    color:#9fb3d1;
}

/* IMAGE */
.why-img{
    max-width:95%;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.45));
}

/* MOBILE */
@media(max-width:991px){
    .why-hero{
        padding:70px 0;
        text-align:center;
    }

    .why-text{
        margin-left:auto;
        margin-right:auto;
    }

    .why-stats{
        justify-content:center;
    }
}
/* ========================================================= */
/* =================== WHY FEATURES BOXES ================= */
/* ========================================================= */

.why-features{
    padding:80px 0 100px;
    background:linear-gradient(180deg,#081428,#050c18);
}

.why-card{
    position:relative;
    height:100%;
    background:rgba(255,255,255,.04);
    border-radius:20px;
    padding:34px 30px;
    box-shadow:0 25px 50px rgba(0,0,0,.35);
    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 70px rgba(0,0,0,.55);
}

.why-card.active{
    border:1px solid rgba(30,144,255,.45);
}

.popular-badge{
    position:absolute;
    top:18px;
    right:18px;
    background:#0d6efd;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:6px 12px;
    border-radius:20px;
}

.why-icon{
    width:56px;
    height:56px;
    background:#0d6efd;
    color:#fff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:20px;
}

.why-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.why-card p{
    font-size:15px;
    color:#9fb3d1;
    margin-bottom:22px;
}

.why-link{
    color:#1e90ff;
    font-weight:600;
    text-decoration:none;
}

.why-link:hover{
    text-decoration:underline;
}

/* MOBILE */
@media(max-width:767px){
    .why-features{
        padding:60px 0;
        text-align:center;
    }
}
/* ========================================================= */
/* ================== CORE CAPABILITIES =================== */
/* ========================================================= */

.core-section{
    padding:90px 0;
    background:linear-gradient(180deg,#050c18,#081428);
}

/* LEFT BOXES */
.core-step{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    margin-bottom:18px;
    background:rgba(255,255,255,.04);
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.core-no{
    width:54px;
    height:54px;
    border-radius:14px;
    background:#0d6efd;
    color:#fff;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
}

.core-step h5{
    margin:0;
    font-weight:700;
}

.core-step p{
    margin:0;
    font-size:14px;
    color:#9fb3d1;
}

/* RIGHT CONTENT */
.core-title{
    font-size:clamp(2rem,3vw,2.6rem);
    font-weight:800;
    margin-bottom:15px;
}

.core-desc{
    color:#9fb3d1;
    max-width:600px;
}

.core-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.core-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:22px;
}

.core-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:4px;
    color:#1e90ff;
    font-weight:700;
}

.core-list h6{
    font-weight:700;
    margin-bottom:6px;
}

.core-list p{
    margin:0;
    font-size:14px;
    color:#9fb3d1;
}

.core-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* MOBILE */
@media(max-width:991px){
    .core-section{
        padding:70px 0;
        text-align:center;
    }

    .core-step{
        text-align:left;
    }

    .core-actions{
        justify-content:center;
    }
}
/* ================= TESTIMONIALS ================= */

.testimonials-section{
    
    background:linear-gradient(135deg,#050c18,#081428);
    color:#fff;
}

.testimonial-heading{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
}

.testimonial-heading span{
    color:#4da6ff;
}

.testimonial-wrapper{
    background:rgba(10,20,40,.9);
    border-radius:26px;
    padding:55px;
    margin-bottom:70px;
    box-shadow:0 35px 70px rgba(0,0,0,.45);
}

.testimonial-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
}

.testimonial-text{
    color:#b9c7df;
    font-size:16px;
    line-height:1.9;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
}

.testimonial-user img{
    width:56px;
    height:56px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h6{
    margin:0;
    font-weight:600;
}

.testimonial-user span{
    font-size:14px;
    color:#8fb3d9;
}

.testimonial-image{
    max-width:360px;
    margin:auto;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.4);
}

.testimonial-image img{
    width:100%;
    display:block;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){
    .testimonial-wrapper{
        padding:35px;
        text-align:center;
    }

    .testimonial-user{
        justify-content:center;
    }
}
/* ================= TESTIMONIAL SLIDER ================= */

.testimonial-slider{
    position:relative;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    transition:transform .6s ease;
}

.testimonial-slide{
    min-width:100%;
    padding:0 10px;
}

.testimonial-wrapper{
    background:rgba(10,20,40,.9);
    border-radius:26px;
    padding:55px;
    box-shadow:0 35px 70px rgba(0,0,0,.45);
}

/* NAV BUTTONS */
/* ================= TESTIMONIAL NAV SIDES ================= */

.testimonial-slider{
    position:relative;
    overflow:hidden;
}

.testimonial-nav{
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform:translateY(-50%);
    display:flex;
    justify-content:space-between;
    padding:0 15px;
    pointer-events:none; /* container click-through */
}

/* MOBILE */
@media(max-width:767px){
    .testimonial-btn{
        width:33px;
        height:67px;
        font-size:24px;
    }
}

.testimonial-btn{
    background:transparent;
    border:none;
    box-shadow:none;
    color:#ffffff;
    font-size:42px;
    cursor:pointer;
    pointer-events:auto;
    transition:color .2s ease, transform .2s ease;
}

.testimonial-btn:hover{
    color:#1e90ff;
    transform:scale(1.2);
}


/* MOBILE */
@media(max-width:991px){
    .testimonial-wrapper{
        padding:35px;
        text-align:center;
    }
}
/* ================= contact us  ================= */
/* ================= CONTACT SECTION (FINAL PRO) ================= */

.contact-section{
    padding:70px 0;
    background:
        radial-gradient(900px circle at 15% 20%, rgba(13,110,253,.18), transparent 40%),
        radial-gradient(700px circle at 85% 70%, rgba(0,212,132,.15), transparent 45%),
        linear-gradient(135deg,#050c18,#081428);
    color:#fff;
}

/* BADGE */
.section-badge{
    display:inline-block;
    padding:6px 16px;
    border-radius:50px;
    font-size:12px;
    letter-spacing:1px;
    background:rgba(13,110,253,.18);
    color:#9cc3ff;
    font-weight:600;
}

/* TITLE */
.contact-title{
    font-size:clamp(2.2rem,4vw,3.2rem);
    font-weight:800;
    line-height:1.2;
    margin:18px 0 12px;
}

.contact-title span{
    background:linear-gradient(90deg,#4da3ff,#00d084);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
.contact-text{
    color:#b8cbe6;
    max-width:460px;
    margin-bottom:40px;
    font-size:15px;
}

/* ================= INFO CARDS ================= */

.contact-card{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:20px 22px;
    margin-bottom:18px;
    border-radius:18px;
    background:rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    border:1px solid rgba(255,255,255,.12);
    transition:.3s ease;
}

.contact-card:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.1);
}

/* ICON CIRCLE */
.icon-box{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:linear-gradient(135deg,#0d6efd,#00d084);
    flex-shrink:0;
}

/* ICON IMAGE */
.icon-box img{
    width:20px;
    height:20px;
    object-fit:contain;
    filter:brightness(0) invert(1);
}


.contact-card h6{
    margin:0;
    font-weight:600;
    font-size:15px;
}

.contact-card p{
    margin:5px 0 0;
    color:#d7e3f7;
    font-size:14px;
}

.contact-card small{
    color:#9fb3d1;
    font-size:12px;
}

/* ================= FORM BOX ================= */

.contact-form-box{
    
    background:rgba(255,255,255,.07);
    backdrop-filter: blur(18px);
    border-radius:26px;
    padding:42px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.contact-form-box h4{
    font-weight:700;
    font-size:22px;
    margin-bottom:6px;
}

.contact-form-box p{
    color:#b8cbe6;
    font-size:14px;
    margin-bottom:32px;
}

/* ================= FORM GROUP ================= */

.form-group{
    margin-bottom:18px;
}

/* LABELS (IMPORTANT FIX) */
.form-group label{
    display:block;
    margin-bottom:6px;
    font-size:13px;
    font-weight:500;
    color:#cfe0ff;
}

/* INPUTS (USABLE FIX) */
.contact-form-box .form-control{
    width:100%;
    background:#0e1a2b;
    border:1px solid rgba(255,255,255,.2);
    color:#ffffff;
    border-radius:14px;
    padding:14px 16px;
    font-size:14px;
    transition:.25s ease;
}

/* PLACEHOLDER */
.contact-form-box .form-control::placeholder{
    color:#8fa7c6;
}

/* FOCUS */
.contact-form-box .form-control:focus{
    background:#0e1a2b;
    border-color:#4da3ff;
    box-shadow:0 0 0 3px rgba(77,163,255,.25);
    outline:none;
}

/* TEXTAREA */
.contact-form-box textarea{
    resize:none;
    min-height:120px;
}

/* ================= BUTTON ================= */

.contact-form-box .btn{
    padding:15px;
    font-size:15px;
    font-weight:600;
    border-radius:14px;
    background:linear-gradient(90deg,#0d6efd,#00d084);
    border:none;
    transition:.3s ease;
}

.contact-form-box .btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 35px rgba(13,110,253,.35);
}

/* ================= FOOT NOTE ================= */

.form-note{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    font-size:12px;
    color:#9fb3d1;
    margin-top:10px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){
    .contact-section{
        padding:55px 0;
    }

    .contact-form-box{
        padding:26px;
    }

    .contact-title{
        font-size:2rem;
    }
}
