/* =========================================================
   first-pune-automation-roadshow.css
   Page-specific styles for /first-pune-automation-roadshow
   Split out of the old monolithic style.css. Rule order is
   unchanged from the original file.
   ========================================================= */

/* ---------------------------------------------------------
   Moved out of first-pune-automation-roadshow.php (was an inline <style> block)
   --------------------------------------------------------- */

    .objective-card {
        height: 100%;
        padding: 25px;
        border-radius: 10px;
        background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
        border: 1px solid rgba(255,255,255,0.08);
        transition: all 0.3s ease;
    }

        .objective-card:hover {
            transform: translateY(-6px);
            border-color: #0d6efd;
            box-shadow: 0 12px 35px rgba(13,110,253,0.25);
        }

        .objective-card h5 {
            margin-bottom: 12px;
        }




    .gallery-img-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        cursor: pointer;
    }

        .gallery-img-wrapper img {
            transition: transform 0.5s ease;
        }

        .gallery-img-wrapper:hover img {
            transform: scale(1.1);
        }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.25);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

        .overlay i {
            color: #fff;
            font-size: 2rem;
        }

    .gallery-img-wrapper:hover .overlay {
        opacity: 1;
    }

    .gallery-item {
        display: none;
    }

        .gallery-item[data-folder="inauguration"] {
            display: block;
        }





    .event-card {
        background: #04305a;
        border: 1px solid rgb(135 109 3);
        padding: 30px;
        height: 100%;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #fecc00;
            opacity: 0.5;
            transition: 0.3s;
        }

        .event-card:hover {
            transform: translateY(-5px);
            border-color: #fecc00;
            box-shadow: 0 0 25px rgb(48 25 102 / 55%);
            transform: translateY(-3px);
        }

            .event-card:hover::before {
                opacity: 1;
                box-shadow: 0 0 10px var(--neon-purple);
            }

    .event-icon {
        font-size: 2.5rem;
        color: #fecc00;
        margin-bottom: 20px;
    }



    .section-title {
        font-weight: 700;
        margin-bottom: 15px;
    }

        .section-title span {
            color: #0d6efd;
        }

    .section-text {
        color: #555;
        margin-bottom: 20px;
    }

    .custom-list {
        list-style: none;
        padding-left: 0;
    }

        .custom-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            font-weight: 500;
        }

            .custom-list li::before {
                content: "✔";
                position: absolute;
                left: 0;
                color: #0d6efd;
                font-weight: 700;
            }

    .feedback-box {
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

        .feedback-box h3 {
            margin-bottom: 25px;
            font-weight: 700;
        }

    .feedback-item {
        margin-bottom: 20px;
    }

        .feedback-item p {
            font-style: italic;
            color: #333;
        }

        .feedback-item span {
            display: block;
            margin-top: 8px;
            font-size: 14px;
            color: #666;
        }


    .roadshow-timeline {
        background: radial-gradient(circle at top, #1a1f2b, #000);
    }

    .main-title {
        font-weight: 800;
        color: #fff;
    }

    .subtitle {
        color: #adb5bd;
        max-width: 700px;
        margin: 0 auto;
    }

    .box-title {
        color: #fff;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .timeline-box {
        padding: 35px;
        border-radius: 14px;
        background: linear-gradient(145deg, rgba(13,110,253,0.15), rgba(13,110,253,0.05));
        border: 1px solid rgba(13,110,253,0.35);
    }

    .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }

    .step {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #0d6efd;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 20px;
    }



    .expo-highlight {
        padding: 35px;
        border-radius: 14px;
        background: linear-gradient(145deg, rgba(13,110,253,0.15), rgba(13,110,253,0.05));
        border: 1px solid rgba(13,110,253,0.35);
    }

    .expo-row {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        color: #fff;
        margin-bottom: 18px;
    }

        .expo-row i {
            color: #69b5ff;
            font-size: 18px;
            margin-top: 3px;
        }

    .expo-tagline {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px dashed rgba(255,255,255,0.3);
        color: #fff;
        font-weight: 600;
    }
