
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
        }

        .middle-new {
            position: relative;
            background-color: #e3e3db;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-blend-mode: overlay;
            box-shadow: 0 0 40px 10px var(--temple-gold);
        }

        .middle-new::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
    url("Images/old-wall.png"),
    url("Images/asfalt-dark.png");
            background-blend-mode: multiply;
            opacity: 0.6;
            mix-blend-mode: multiply;
            pointer-events: none;
            z-index: 1;
        }

        .corner {
            position: absolute;
            width: 43vw;
            max-width: 350px;
            min-width: 150px;
            height: auto;
            object-fit: contain;
            mix-blend-mode: darken;
            pointer-events: none;
            z-index: 2;
        }

        .top-left { top: 0; left: 0; transform: rotate(0deg) scaleY(-1); }
        .top-right { top: 0; right: 0; transform: rotate(180deg); }
        .bottom-left { bottom: 0; left: 0; }
        .bottom-right { bottom: 0; right: 0; transform: rotate(180deg) scaleY(-1); }

        @media (max-width: 600px) {
            .corner {
                width: 45vw;
                max-width: 240px;
            }
        }

        @media (min-width: 601px) and (max-width: 992px) {
            .corner {
                width: 32vw;
                max-width: 260px;
            }
        }

        .section-middle {
            max-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3;
            position: relative;
        }

        .museum-art-wrapper {

            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .museum-titel {
            font-size: 60px;
            color: white;
            text-align: center;
            margin-bottom: 30px;
        }

        .museum-titel h1 {
            font-weight: 800;
            line-height: 1.1;
            font-size: 3.3rem;
            color: #000;
        }

        .responsive-heading {
            margin-top: 2em;
        }

        @media (max-width: 768px) {
            .responsive-heading {
                padding-right: 1.1em;
                padding-left: 1.1em;
                margin-top: 3.3em;
            }
        }

        @media (max-width: 1200px) {
            .museum-titel h1 { font-size: 2.9rem; }
        }

        @media (max-width: 992px) {
            .museum-titel h1 { font-size: 2.3rem; }
        }

        @media (max-width: 768px) {
            .museum-titel h1 { font-size: 1.8rem; }
        }

        @media (max-width: 480px) {
            .museum-titel h1 { font-size: 1.7rem; }
        }

        .museum-container {
            max-width: 1400px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .museum-collumn {
            display: inline-block;
            height: 100%;
            display: flex;
            margin-bottom: 20px;
        }

        .museum-collumn img {
            object-fit: cover;
            width: 100%;
            height: auto;
              box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 30px 60px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .museum-collumn img:hover {
            transform: scale(1.03);
        }

        /* Layout for 5 images */
        .five-images .museum-collumn:nth-child(1),
        .five-images .museum-collumn:nth-child(5) {
            width: 18%;
        }

        .five-images .museum-collumn:nth-child(2),
        .five-images .museum-collumn:nth-child(4) {
            width: 22%;
        }

        .five-images .museum-collumn:nth-child(3) {
            width: 20%;
        }

        /* Layout for 4 images */
        .four-images .museum-collumn {
            width: 23%;
        }

        .museum-view-more {
            font-size: 18px;
            color: black;
            text-align: center;
            font-weight: 600;
            margin-top: 30px;
            cursor: pointer;
        }

        .museum-view-more a {
            color: inherit;
            text-decoration: none;
        }

        .museum-view-more:hover {
            color: var(--temple-gold);
        }

        .museum-view-more .fa-chevron-right {
            font-size: 12px;
            margin-left: 5px;
        }

        .content-text {
            font-size: 1rem;

            max-width: 800px;
            text-align: center;
            margin: auto;
            margin-bottom: 40px;
            color: black;

            padding:15px;
        }
@media (min-width: 769px) {
    .content-text {
        font-size: 1.1rem; /* bigger on desktop */
    }
}
        .museum-scroll {
            display: flex;
            margin-top: 50px;
            color: white;
        }

        .museum-scroll,
        .museum-titel span {
            display: block;
            text-align: center;
            margin-top: 30px;
        }

        .museum-titel span .fa-chevron-right {
            font-size: 12px;
        }

        /* Animation classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
        }

        .zoom-in {
            opacity: 0;
            transform: scale(0.9);
        }

/* SECTION LAYOUT */
.dual-image-section {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    position: relative;
}

/* TEXT CENTER */
.dual-content {
    flex: 1;
    max-width: 700px;
    text-align: center;
}

.dual-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
}

.dual-content p {
    font-size: 1rem;
    margin-top: 20px;

}@media (min-width: 769px) {
    .dual-content p {
        font-size: 1.1rem; /* bigger on desktop */
    }
}

/* SIDE IMAGES */
.dual-img {
    width: 25%;
    min-width: 200px;
    display: flex;
    justify-content: center;
}

.dual-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 30px 60px rgba(0, 0, 0, 0.2);
    /* rotation effect like your example */
    transform: rotate(-4deg);
    transition: 0.4s ease;
}

.dual-img.right img {
    transform: rotate(4deg);
}

/* hover correction */
.dual-img img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* New container for images (mobile only) */
.dual-images-container {
    display: none; /* Hidden on desktop */
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    .dual-image-section {
        flex-direction: column;
        gap: 30px;
    }

    /* Hide the individual image divs from desktop layout */
    .dual-image-section > .dual-img {
        display: none;
    }

    /* Show the images container */
    .dual-images-container {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
        margin-top: 10px;
    }

    /* Style images inside the container */
    .dual-images-container .dual-img {
        width: 70%;
        min-width: 150px;
        display: block;
    }

    /* keep rotation but smaller for mobile */
    .dual-images-container .dual-img img {
        transform: rotate(-3deg);
    }

    .dual-images-container .dual-img.right img {
        transform: rotate(3deg);
    }

    /* Adjust content width on mobile */
    .dual-content {
        width: 100%;
    }
}/* New paragraph styling */
.dual-content-subtext {
    font-size: 1rem;
    margin-top: 20px;
    color: #666;
    line-height: 1.6;
}

/* Buttons container */
.dual-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Base button styling */
.dual-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
/* Make the third image smaller */
.dual-img.third {
  width: 18%;        /* smaller than 25% */
  min-width: 160px;  /* keep it responsive */
}

.dual-img.third img {
  transform: rotate(0deg); /* no rotation for Moy Yat image */
}

/* WhatsApp button */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
}
/* Golden button */
.golden-btn {
    background-color: #FFD700; /* Golden color */
    color: #1a1a1a; /* Dark text for contrast */
    border: 2px solid #e6c200;
}

.golden-btn:hover {
    background-color: #FFC107; /* Slightly brighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

/* Hub button */
.hub-btn {
    background-color: #c9a467;
    color: white;
}

.hub-btn:hover {
    background-color: #9c0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
}

/* Button icons */
.dual-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dual-content-subtext {
        font-size: 0.95rem;
        margin-top: 15px;
    }

    .dual-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
    }

    .dual-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .dual-content-subtext {
        font-size: 0.9rem;
    }

    .dual-btn {
        font-size: 0.9rem;
        padding: 12px 18px;
    }
}

.timeline-text {
    font-size: 1rem;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    color: black;
    padding: 15px;
    line-height: 1.6;
}

.timeline-list {
    max-width: 800px;
    margin: 20px auto 40px;
    padding-left: 20px;
    color: black;
    text-align:left;
    font-size: 1rem;
    line-height: 1.7;
    list-style-type: disc;
}

.timeline-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-list li strong {
    font-weight: 700;
}

