/* =========================================================
   NEXOLUTION — SHARED SERVICE PAGE STYLES
   Same design system as service.php
   Palette: #7b4ce2 / #e056b6 / #8e44ad / #9b59b6 / #d16ba5
   ========================================================= */

/* ---------- HERO ---------- */
.page-hero{
    min-height:60vh;
    background: linear-gradient(135deg, #7b4ce2, #e056b6);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:80px 0 100px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 25px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,0.4);
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    font-size:14px;
    font-weight:500;
    opacity:0;
    transform:translateY(-20px);
}

.hero-title{
    font-size:56px;
    font-weight:700;
    margin-top:25px;
    opacity:0;
    transform:translateY(30px);
}

.hero-subtitle{
    font-size:20px;
    max-width:720px;
    margin:20px auto 0;
    opacity:0;
    transform:translateY(30px);
}

.animate-show{
    opacity:1 !important;
    transform:translateY(0) !important;
    transition:all 1s ease;
}

@media (max-width:768px){
    .hero-title{ font-size:36px; }
    .hero-subtitle{ font-size:16px; padding:0 15px; }
}

/* ---------- INTRO (text + image, two column) ---------- */
.intro-section{
    padding:90px 0;
    background:#fff;
}

.intro-eyebrow{
    display:inline-block;
    color:#8e44ad;
    font-weight:600;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.intro-title{
    font-weight:700;
    font-size:38px;
    color:#8e44ad;
    line-height:1.25;
    margin-bottom:22px;
}

/* Tablet */
@media (max-width: 991px) {
    .intro-title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .intro-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .intro-title {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 16px;
    }
}
.intro-text p{
    font-size:17px;
    color:#5b5b5b;
    line-height:1.8;
    margin-bottom:18px;
}

.intro-img-wrap img{
    width:100%;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(142,68,173,0.18);
}

@media (max-width:991px){
    .intro-img-wrap{ margin-top:40px; }
}

/* ---------- VALUES / FEATURE GRID (4 small cards) ---------- */
.values-section{
    padding:20px 0 90px;
    background:#fff;
    text-align:center;
}

.values-title{
    font-weight:700;
    font-size:34px;
    color:#8e44ad;
}

.values-subtitle{
    color:#777;
    font-size:18px;
    margin-bottom:50px;
}

.value-card{
    background:#fff;
    border-radius:16px;
    padding:30px 22px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    border:2px solid transparent;
    transition:all 0.4s ease;
}

.value-card:hover{
    transform:translateY(-8px);
    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(135deg,#8e44ad,#e056b6) border-box;
    box-shadow:0 20px 40px rgba(142,68,173,0.18);
}

.value-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    margin:0 auto 18px;
    background:linear-gradient(135deg,#9b59b6,#e056b6);
}

.value-card h5{
    font-weight:600;
    font-size:19px;
    margin-bottom:8px;
}

.value-card p{
    font-size:15px;
    color:#777;
    margin-bottom:0;
}

/* ---------- OFFER SECTION (service detail cards) ---------- */
.offer-section{
    padding:90px 0;
    background:#fbf8fd;
}

.section-title{
    font-weight:700;
    font-size:42px;
    color:#8e44ad;
}

.section-subtitle{
    color:#777;
    font-size:19px;
}

.offer-card{
    background:#fff;
    border-radius:16px;
    padding:35px;
    border:2px solid transparent;
    transition:all 0.4s ease;
    height:100%;
    min-height:300px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    position:relative;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.offer-card:hover{
    transform:translateY(-12px);
    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(135deg,#8e44ad,#e056b6) border-box;
    box-shadow:0 20px 40px rgba(142,68,173,0.18);
}

.icon-box{
    width:55px;
    height:55px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
    background:linear-gradient(135deg,#9b59b6,#e056b6);
    transition:0.4s;
}

.offer-card h3{
    font-weight:600;
    font-size:21px;
    transition:0.3s;
}

.offer-card:hover h3{ color:#8e44ad; }

.offer-card p{
    font-size:16px;
    color:#666;
    margin-bottom:15px;
}

.offer-card ul{
    padding-left:18px;
    margin-bottom:15px;
}

.offer-card ul li{
    font-size:15px;
    color:#666;
    margin-bottom:6px;
}

.learn-more{
    font-size:15px;
    color:#8e44ad;
    text-decoration:none;
    font-weight:500;
    margin-top:auto;
}

.learn-more:hover{ text-decoration:underline; }

@media(max-width:768px){
    .section-title{ font-size:28px; }
    .offer-card{ min-height:auto; }
}

/* ---------- PLATFORM CARDS (used on Web Development page: Core PHP / WordPress) ---------- */
.platform-section{
    padding:90px 0;
    background:#fff;
}

.platform-card{
    background:#fff;
    border-radius:20px;
    padding:45px 38px;
    height:100%;
    border:2px solid #f0e6f6;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:all 0.4s ease;
}

.platform-card:hover{
    transform:translateY(-10px);
    border-color:transparent;
    background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(135deg,#8e44ad,#e056b6) border-box;
    box-shadow:0 25px 45px rgba(142,68,173,0.2);
}

.platform-icon{
    width:64px;
    height:64px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    margin-bottom:22px;
    background:linear-gradient(135deg,#7c3aed,#ec4899);
}

.platform-card h3{
    font-weight:700;
    font-size:25px;
    margin-bottom:12px;
    color:#2d2d2d;
}

.platform-card p.platform-desc{
    font-size:16px;
    color:#666;
    margin-bottom:20px;
}

.platform-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.platform-card ul li{
    font-size:15.5px;
    color:#555;
    margin-bottom:10px;
    padding-left:26px;
    position:relative;
}

.platform-card ul li::before{
    content:"\f633";
    font-family:"bootstrap-icons";
    position:absolute;
    left:0;
    top:1px;
    color:#e056b6;
    font-weight:700;
}

/* ---------- PROCESS ---------- */
.process-section{
    padding:90px 0;
    text-align:center;
    background:#fbf8fd;
}

.process-title{
    font-size:42px;
    font-weight:700;
    color:#9b59b6;
}

/* Tablet */
@media (max-width: 991px) {
    .process-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .process-title {
        font-size: 30px;
        line-height: 1.3;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .process-title {
        font-size: 26px;
        line-height: 1.3;
    }
}
.process-subtitle{
    color:#6c757d;
    margin-top:10px;
    margin-bottom:70px;
    font-size:18px;
}

.process-step{
    position:relative;
    padding:40px 25px;
    border-radius:16px;
    background:#ffffff;
    transition:all 0.4s ease;
    opacity:0;
    transform:translateY(50px);
    z-index:1;
    border:2px solid transparent;
}

.process-step::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:16px;
    padding:2px;
    background:linear-gradient(135deg,#7c3aed,#ec4899);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity:0;
    transition:0.4s ease;
    z-index:-1;
}

.process-step:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.process-step:hover::before{ opacity:1; }

.show{
    opacity:1 !important;
    transform:translateY(0) !important;
}

.step-number{
    font-size:58px;
    font-weight:700;
    color:#a569bd;
    letter-spacing:2px;
}

.step-number::after{
    content:"";
    position:absolute;
    top:36px;
    right:-35px;
    width:30px;
    height:2px;
    background:#e5d4f4;
}

.process-step:last-child .step-number::after{ display:none; }

.process-step h5{
    margin-top:18px;
    font-size:23px;
    font-weight:bold;
}

.process-step p{
    color:#6c757d;
    font-size:17px;
    margin-top:8px;
    max-width:220px;
    margin-left:auto;
    margin-right:auto;
}

@media(max-width:992px){
    .step-number::after{ display:none; }
    .process-step{ margin-bottom:50px; }
}

/* ---------- CTA ---------- */
.cta-section{
    background:linear-gradient(135deg, #8e44ad, #d16ba5);
    padding:110px 0;
    text-align:center;
    color:#fff;
    opacity:0;
    transform:translateY(60px);
    transition:all 1s ease;
}

.cta-title{
    font-size:44px;
    font-weight:700;
}

.cta-subtitle{
    font-size:18px;
    margin-top:15px;
    margin-bottom:40px;
    opacity:0.9;
}

.cta-btn{
    padding:14px 40px;
    border-radius:50px;
    font-weight:500;
    transition:all 0.4s ease;
}

.btn-white{
    background:#fff;
    color:#8e44ad;
    border:none;
}

.btn-white:hover{
    background:#f1f1f1;
    transform:translateY(-3px);
}

.btn-outline-white{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

.btn-outline-white:hover{
    background:#fff;
    color:#8e44ad;
    transform:translateY(-3px);
}

@media(max-width:768px){
    .cta-title{ font-size:30px; }
    .cta-btn{ width:100%; margin-bottom:15px; }
}