
/* =========================
   MY WORKING PROCESS
========================= */

/* =========================
   MY WORKING PROCESS (UPGRADED)
========================= */

:root {
    --primary-color: #ff6600;
    --text-dark: #111111;
    --text-muted: #555555;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.process-area {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Class ke liye (. lagayein) */
.white-bg-section {
    background-color: #ffffff; /* Pure White */
}

/* Ya phir specific ID ke liye (# lagayein) */
#work-process {
    background-color: #F0F0F0;
}
 

/* Section Title */
.process-area .section-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.process-area .section-title h2 {
    font-size: clamp(28px, 4vw, 40px); /* Auto scales on mobile */
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-area .section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Process Grid Container */
.sequential-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Automatically handles columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Single Process Box */
.single-process-box {
    background: var(--white);
    padding: 40px 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Impressive Hover Effect */
.single-process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.2);
}

/* Icon Container */
.process-icon-wrap {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.single-process-box:hover .process-icon-wrap {
    background: var(--primary-color);
}

.process-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.single-process-box:hover .process-icon i {
    color: var(--white);
    transform: rotate(360deg); /* Subtle playful spin */
}

/* Badge Number */
.process-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
}

/* Typography Inside Box */
.single-process-box h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.single-process-box p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Reset Unwanted Pseudo Elements */
.process-area .section-title::before,
.process-area .section-title::after,
.process-area .section-title p::before,
.process-area .section-title p::after {
    display: none !important;
}

/* =========================
   RESPONSIVE / MOBILE FIXES
========================= */
@media (max-width: 768px) {
    .process-area {
        padding: 60px 0;
    }
    
    .sequential-process {
        grid-template-columns: 1fr; /* Mobile par automatic ek column */
        gap: 20px;
        padding: 0 15px;
    }
    
    .single-process-box {
        padding: 30px 20px;
    }
}
/*::::::::::::::::::::::::::::::::::::
    My Process Section END
::::::::::::::::::::::::::::::::::::*/
