/* ===========================
   HERO SECTION
=========================== */

.exp-hero {
    position: relative;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.exp-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(45%);
}

.exp-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.45), rgba(0,0,0,0.8));
    mix-blend-mode: multiply;
}

/* floating shapes */
.exp-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: float 8s ease-in-out infinite alternate;
}

.s1 { width: 280px; height: 280px; top: 20%; left: 10%; background: #ff4747; }
.s2 { width: 380px; height: 380px; top: 60%; right: 5%; background: #3f8cff; animation-duration: 10s; }
.s3 { width: 240px; height: 240px; top: 10%; right: 20%; background: #ffd447; animation-duration: 11s; }

@keyframes float {
    from { transform: translateY(0px); }
    to   { transform: translateY(-35px); }
}

.exp-hero-content {
    position: absolute;
    text-align: center;
    max-width: 800px;
    color: #fff;
    padding: 20px;
}

.exp-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.exp-hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
}



/* ===========================
   MASTER WRAPPER
=========================== */
.exp-wrapper {
    margin-top: 80px;
}



/* ===========================
   EACH STEP SECTION
=========================== */
.exp-block {
    padding: 110px 8%;
    position: relative;
    overflow: hidden;
}

.exp-block.light {
    background: #ffffff;
}

.exp-block.dark {
    background: #111111;
    color: #fff;
}

/* angled top and bottom */
.exp-block.light::before,
.exp-block.dark::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    background: inherit;
    transform: skewY(-3deg);
    top: -60px;
}

.exp-block.light::after,
.exp-block.dark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 120px;
    background: inherit;
    transform: skewY(-3deg);
    bottom: -60px;
}



/* ===========================
   FLEX LAYOUT
=========================== */
.exp-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.exp-flex.reverse {
    flex-direction: row-reverse;
}



/* ===========================
   TEXT
=========================== */
.exp-text {
    flex: 1;
}

.exp-step {
    font-size: 80px;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    top: -15px;
    left: 0;
}

.exp-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.exp-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.exp-text ul {
    margin-top: 20px;
    margin-left: 18px;
}

.exp-text ul li {
    margin-bottom: 8px;
    font-size: 17px;
}



/* ===========================
   IMAGE
=========================== */
.exp-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.exp-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    transform: translateZ(0);
    transition: 0.3s ease;
}

.exp-image img:hover {
    transform: scale(1.05) rotateY(6deg);
}



/* ===========================
   PARALLAX ANIMATION
=========================== */
.parallax-img {
    transform: translateY(40px);
    transition: 0.7s ease-out;
}



/* ===========================
   FADE-UP
=========================== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 950px) {

    .exp-hero-content h1 {
        font-size: 32px;
    }

    .exp-flex,
    .exp-flex.reverse {
        flex-direction: column;
    }

    .exp-step {
        font-size: 60px;
    }

    .exp-image img {
        max-width: 100%;
    }
}
