﻿
.OWP-process-section {
    padding: 90px 20px;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}
.OWP-process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.OWP-process-subtitle {
    color: #1e90ff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.OWP-process-heading {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0b1220;
}
.OWP-process-subheading {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #374151;
    line-height: 1.4;
}

/* floating glow background */
.OWP-process-section::before,
.OWP-process-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}
.OWP-process-section::before {
    top: -100px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(30,144,255,0.25), transparent 70%);
    animation: OWP-floatGlow 12s infinite alternate ease-in-out;
}
.OWP-process-section::after {
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106,17,203,0.25), transparent 70%);
    animation: OWP-floatGlow 14s infinite alternate-reverse ease-in-out;
}
@keyframes OWP-floatGlow {
    from { transform: translateY(0px) scale(1); }
    to   { transform: translateY(-40px) scale(1.1); }
}

/* Grid */
.OWP-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Card */
.OWP-process-card {
    background: #ffffff;
    border-radius: 0; 
    padding: 30px 24px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    text-align: left;
}

/* Entry Animation */
.OWP-process-card.OWP-show {
    opacity: 1;
    transform: translateY(0);
    animation: OWP-fadeSlide 1s ease forwards;
}
@keyframes OWP-fadeSlide {
    from {opacity: 0; transform: translateY(50px);}
    to   {opacity: 1; transform: translateY(0);}
}

/* Hover Effects */
.OWP-process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30,144,255,0.08), rgba(106,17,203,0.08));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}
.OWP-process-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
    opacity: 0;
}
.OWP-process-card:hover::before {
    opacity: 1; /* inner glow */
}
.OWP-process-card:hover::after {
    left: 120%;
    opacity: 1; /* animated light sweep */
}
.OWP-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18); 
    background: #ffffff;
    z-index: 2;
}

/* Number */
.OWP-process-num {
    font-size: 22px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 10px;
}

/* Icon Box */
.OWP-process-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f0f7ff, #e0ecff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(30,144,255,0.12);
}
.OWP-process-icon span {
    display: block;
    width: 28px;
    height: 28px;
    position: relative;
    transition: all 0.6s ease;
}

/* Creative icons */
.OWP-process-card:nth-child(1) .OWP-process-icon span::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    background: #1e90ff; /* brain-like */
}
.OWP-process-card:nth-child(2) .OWP-process-icon span::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, #1e90ff, #1e90ff 4px, transparent 4px, transparent 8px),
                repeating-linear-gradient(#1e90ff, #1e90ff 4px, transparent 4px, transparent 8px);
    border-radius: 4px; /* planning grid */
}
.OWP-process-card:nth-child(3) .OWP-process-icon span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    width: 12px;
    height: 28px;
    background: #1e90ff;
    border-radius: 50% 50% 0 0; /* rocket body */
}
.OWP-process-card:nth-child(3) .OWP-process-icon span::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 4px;
    width: 20px;
    height: 10px;
    background: orange;
    border-radius: 50%;
}
.OWP-process-card:nth-child(4) .OWP-process-icon span::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid #1e90ff;
    transform: rotate(45deg); /* package box */
}

/* Hover effect icon */
.OWP-process-card:hover .OWP-process-icon {
    background: linear-gradient(135deg, #1e90ff, #6a11cb);
    box-shadow: 0 0 18px rgba(30,144,255,0.5),
                0 0 25px rgba(106,17,203,0.4);
}
.OWP-process-card:hover .OWP-process-icon span {
    transform: rotate(360deg) scale(1.2);
}

/* Title + description */
.OWP-process-card h3 {
    font-size: 19px;
    margin: 18px 0 10px;
    font-weight: 600;
    color: #111827;
}
.OWP-process-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px){
    .OWP-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
    .OWP-process-grid { grid-template-columns: 1fr; }
}

/* Subtitle */
.OWP-process-subtitle {
    color: #1e90ff;       /* professional blue */
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


