/* =====================================
   OUR PROCESS SECTION
===================================== */

.process-section {
    position: relative;
    padding: 100px 20px;
    background: #f8fafc;
    overflow: hidden;
}


/* Section Glow Accent */

.process-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.18), transparent 70%);
    top: -120px;
    right: -150px;
    filter: blur(80px);
    z-index: 0;
}


/* Container */

.process-section .container {
    position: relative;
    z-index: 2;
}


/* Header */

.process-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.process-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.process-header p {
    color: #64748b;
    line-height: 1.6;
}


/* Steps Grid */

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}


/* Horizontal Connector Line */

.process-steps::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(0, 82, 204, 0.25);
    z-index: 0;
}


/* Individual Card */

.process-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}


/* Top Accent Dot */

.process-card::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 82, 204, 0.6);
}


/* Hover Effect */

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}


/* Icon */

.process-card img {
    height: 48px;
    margin-bottom: 18px;
}


/* Title */

.process-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #0f172a;
}


/* Text */

.process-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}


/* =====================================
   DARK BLUE CTA BAND
===================================== */

.cta-band {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #002d72, #004aad);
    overflow: hidden;
}


/* Glow Accent */

.cta-band::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 82, 204, 0.5), transparent 70%);
    bottom: -150px;
    left: -150px;
    filter: blur(100px);
    z-index: 0;
}

.cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}


/* Content */

.cta-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-content p {
    color: #c7d2fe;
    line-height: 1.6;
}


/* Buttons */

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.cta-primary {
    background: white;
    color: #004aad;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
}

.cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    transition: 0.3s;
}

.cta-secondary:hover {
    background: white;
    color: #004aad;
}


/* Responsive */

@media(max-width:900px) {
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-buttons {
        justify-content: center;
        margin-top: 20px;
    }
}