﻿/* ============================================================
   INDEX.CSS – Movex Warehousing (Home Page Specific Styles)
   ============================================================ */

/* ---------- CUSTOM IMAGE HEIGHTS ---------- */
.custom-img {
    height: 400px !important;
    object-fit: cover;
}

.custom2-img {
    height: 700px !important;
    object-fit: cover;
}

.custom3-img {
    height: 400px !important;
    object-fit: cover;
}

/* ---------- WORK PROCESS SECTION - MOVEX WAREHOUSING ---------- */
.work-process-new {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

    .work-process-new::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: #0A2540;
    }

    .work-process-new .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .work-process-new .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

        .work-process-new .section-header .badge {
            display: inline-block;
            background: rgba(10, 37, 64, 0.08);
            color: #0A2540;
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 6px 20px;
            border-radius: 30px;
            margin-bottom: 25px;
        }

        .work-process-new .section-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: #0A2540;
            margin: 0 0 15px 0;
        }

            .work-process-new .section-header h2 span {
                color: red;
                position: relative;
            }

                .work-process-new .section-header h2 span::after {
                    content: '';
                    position: absolute;
                    bottom: -5px;
                    left: 0;
                    right: 0;
                    height: 3px;
                    background: #0A2540;
                    border-radius: 3px;
                }

        .work-process-new .section-header .subtitle {
            font-size: 16px;
            color: blue;
            max-width: 600px;
            margin: 0 auto;
        }

    .work-process-new .process-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .work-process-new .process-card {
        background: #FFFFFF;
        border-radius: 24px;
        padding: 35px 25px;
        text-align: center;
        position: relative;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

        .work-process-new .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: rgba(10, 37, 64, 0.2);
        }

        .work-process-new .process-card .card-number {
            position: absolute;
            top: -15px;
            left: 25px;
            width: 40px;
            height: 40px;
            background: red;
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(10, 37, 64, 0.25);
            transition: all 0.3s ease;
        }

        .work-process-new .process-card:hover .card-number {
            background: #0A2540;
            transform: scale(1.05);
        }

        .work-process-new .process-card .icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: rgba(10, 37, 64, 0.08);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .work-process-new .process-card:hover .icon-wrapper {
            background: red;
        }

        .work-process-new .process-card .icon-wrapper svg {
            width: 50px;
            height: 50px;
            color: #0A2540;
            transition: all 0.4s ease;
        }

        .work-process-new .process-card:hover .icon-wrapper svg {
            color: #FFFFFF;
        }

        .work-process-new .process-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0A2540;
            margin: 0 0 12px 0;
        }

        .work-process-new .process-card p {
            font-size: 14px;
            line-height: 1.6;
            color: #4A5568;
            margin: 0 0 20px 0;
        }

        .work-process-new .process-card .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0A2540;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

            .work-process-new .process-card .learn-more i {
                font-size: 12px;
                transition: all 0.3s ease;
            }

            .work-process-new .process-card .learn-more:hover {
                color: #0A2540;
                gap: 12px;
                opacity: 0.7;
            }

@media (max-width: 1200px) {
    .work-process-new .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .work-process-new {
        padding: 50px 0;
    }

        .work-process-new .section-header h2 {
            font-size: 28px;
        }

        .work-process-new .process-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .work-process-new .process-card {
            padding: 30px 20px;
        }
}

/* ---------- INDUSTRIES SECTION (MOVEX INDUSTRIES) ---------- */
.movex-industries-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0px;
    background: radial-gradient(circle at top left, #dbeafe 0%, transparent 30%), radial-gradient(circle at bottom right, #fee2e2 0%, transparent 30%), #ffffff;
}

    .movex-industries-section::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        top: -250px;
        right: -200px;
        background: radial-gradient(circle, rgba(225, 29, 46, 0.12) 0%, transparent 70%);
    }

    .movex-industries-section::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        bottom: -220px;
        left: -180px;
        background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    }

.movex-container {
    position: relative;
    z-index: 2;
    max-width: 1450px;
    margin: auto;
    padding: 30px 20px;
}

.movex-header {
    text-align: center;
    margin-bottom: 80px;
}

.movex-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
    color: #0b1f3a;
    letter-spacing: -2px;
}

    .movex-title span {
        background: linear-gradient(90deg, #e11d2e, #2563eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }

.movex-subtitle {
    max-width: 760px;
    margin: 24px auto 0;
    color: #334155;
    font-size: 18px;
    line-height: 1.9;
}

.movex-header::after {
    content: "";
    width: 130px;
    height: 5px;
    border-radius: 100px;
    background: linear-gradient(90deg, #e11d2e, #2563eb);
    display: block;
    margin: 32px auto 0;
}

.movex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 28px;
}

.movex-card-link {
    display: block;
    text-decoration: none;
    border-radius: 34px;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

    .movex-card-link:hover {
        transform: translateY(-12px) scale(1.02);
    }

        .movex-card-link:hover .movex-card {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), 0 0 35px rgba(225, 29, 46, 0.12);
        }

            .movex-card-link:hover .movex-card img {
                transform: scale(1.12);
                filter: brightness(0.92);
            }

            .movex-card-link:hover .movex-card::after {
                left: 120%;
            }

.movex-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #0f172a;
    cursor: pointer;
    transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    width: 100%;
}

    .movex-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 1s ease;
        filter: brightness(0.72);
    }

    .movex-card::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to top, rgba(2, 6, 23, 0.96) 8%, rgba(2, 6, 23, 0.35) 45%, rgba(2, 6, 23, 0.05) 100%);
    }

    .movex-card::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -40%;
        width: 60%;
        height: 250%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: rotate(25deg);
        transition: 0.9s ease;
        z-index: 2;
        pointer-events: none;
    }

.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.wide-card {
    grid-column: span 2;
}

.tall-card {
    grid-row: span 2;
}

.movex-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
    pointer-events: none;
}

    .movex-overlay h3 {
        color: #fff;
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 6px;
        font-weight: 700;
    }

    .movex-overlay p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 13px;
        line-height: 1.6;
    }

.large-card .movex-overlay h3 {
    font-size: 28px;
}

.large-card .movex-overlay p {
    font-size: 14px;
}

.tall-card .movex-overlay h3 {
    font-size: 26px;
}

.tall-card .movex-overlay p {
    font-size: 13px;
}

@media (max-width: 1200px) {
    .movex-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .movex-title {
        font-size: 48px;
    }
}

@media (max-width: 700px) {
    .movex-grid {
        grid-template-columns: 1fr;
    }

    .large-card,
    .wide-card,
    .tall-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .movex-title {
        font-size: 34px;
    }

    .movex-overlay h3 {
        font-size: 22px;
    }

    .large-card .movex-overlay h3 {
        font-size: 24px;
    }

    .tall-card .movex-overlay h3 {
        font-size: 22px;
    }

    .movex-industries-section {
        padding: 80px 15px;
    }
}

/* ---------- PRICING SECTION (Our Value) ---------- */
.ep-price-section .our-presence-img {
    width: 100%;
}
