/* Home.css - LAKUM Artspace */

/* ===== UNIVERSAL FONT FAMILY ===== */
* {
    font-family: 'Greta Arabic', 'Greta Text Arabic', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body {
    font-family: 'Greta Arabic', 'Greta Text Arabic', -apple-system, BlinkMacSystemFont, sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f6f6eb;
}

/* Font is now managed globally via greta-arabic.css */

.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    background: #f6f6eb;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo li {
    list-style: none;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}

.logo p {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #555;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.logo img {
    width: 100px;
}

.MenuHeader ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    color: #000;
    padding: 0;
}

.MenuHeader li {
    cursor: pointer;
}

.MenuHeader ul li a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

/* ----- Hide icons by default ----- */

.ri-menu-line,
.ri-close-line {
    display: none;
}

.HomeContainer img {
    width: 100%;
    height: auto;
    /* keeps proportions, avoids distortion */
    display: block;
    /* removes small white gaps from inline images */
    max-width: 100%;
    /* prevents the image from overflowing */
}

.LandingPageCover {
    position: relative;
    width: 100%;
    height: 90.5vh;
    /* adjust height as needed */
    background: linear-gradient( rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('assest/img-4.png');
    /* replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.titleLandingPage h4 {
    font-size: 36px;
    margin-bottom: 20px;
}

.buttonLandingPage button {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttonLandingPage a {
    text-decoration: none;
    color: #000;
}

.buttonLandingPage button:hover {
    background-color: #ddd;
}

.banner {
    background-color: #f6f6eb;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0px;
    gap: 40px;
    flex-wrap: wrap;
    /* allows stacking on smaller screens */
}

.banner .bannerText {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.bannerText h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-left: 100px;
}

.banner .bannerImage {
    flex: 1;
    height: 50%;
}

.banner .bannerImage img {
    width: 100%;
    height: 50%;
}

.numberCount {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 50px 100px;
    flex-wrap: wrap;
    text-align: center;
}

.numberCount div {
    flex: 1;
    min-width: 150px;
}

.numberCount a {
    display: block;
    font-size: 36px;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
}

.numberCount p {
    font-size: 18px;
    line-height: 1.4;
    color: #555;
}

.bannnerArtPaceGallary {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    /* top/bottom spacing */
    background-color: #f6f6eb;
    /* optional, can remove or change */
    flex-direction: column;
    gap: 20px;
}

.bannnerArtPaceGallary .Higlight {
    font-size: 48px;
    /* big highlight text */
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #8a8a8a;
    line-height: 1.2;
}

.bannnerArtPaceGallary p:not(.Higlight) {
    font-size: 24px;
    /* smaller subtitle */
    color: #555;
    line-height: 1.4;
}

.ForOurClient {
    width: 100%;
}

.titleForOurClient {
    margin-left: 100px;
}

.titleForOurClient h4 {
    font-size: 24px;
    font-weight: 400;
}

/* For large tablets and smaller desktops */

@media (max-width: 1024px) {
    .titleForOurClient {
        margin-left: 80px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .titleForOurClient h4 {
        font-size: 22px;
    }
}

/* Common tablet widths */

@media (max-width: 768px) {
    .titleForOurClient {
        margin-left: 50px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .titleForOurClient h4 {
        font-size: 22px;
    }
}

/* Smaller tablets / large phones */

@media (max-width: 540px) {
    .titleForOurClient {
        margin-left: 30px;
    }
    .titleForOurClient h4 {
        font-size: 17px;
    }
}

@media (max-width: 490px) {
    .titleForOurClient {
        margin-left: 20px;
    }
    .titleForOurClient h4 {
        font-size: 16px;
    }
}

/* Small phones */

@media (max-width: 430px) {
    .titleForOurClient {
        margin-left: 15px;
    }
    .titleForOurClient h4 {
        font-size: 15px;
    }
}

@media (max-width: 414px) {
    .titleForOurClient {
        margin-left: 12px;
    }
    .titleForOurClient h4 {
        font-size: 15px;
    }
}

@media (max-width: 412px) {
    .titleForOurClient {
        margin-left: 152px;
    }
    .titleForOurClient h4 {
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .titleForOurClient {
        margin-left: 10px;
    }
    .titleForOurClient h4 {
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .titleForOurClient {
        margin-left: 8px;
    }
    .titleForOurClient h4 {
        font-size: 15px;
    }
}

.infiniteSlider {
    width: 99vw;
    overflow: hidden;
    background: #f6f6eb;
    padding: 20px 0;
}

.sliderTrack {
    display: flex;
    white-space: nowrap;
    transition: transform 0.1s linear;
}

.slide {
    flex: 0 0 auto;
    margin-right: 60px;
    /* spacing between logos */
}

.slide img {
    height: 80px;
    object-fit: contain;
}

.upcomingEvent {
    padding: 20px 300px;
    display: flex;
    flex-direction: column;
}

.titleupcomingEvent h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.imgHeader1 {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.imgHeader1 img {
    width: 100%;
    height: 250px;
    display: block;
}

/* Overlay Cover */

.COVER {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: #f6f6eb;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left align content */
    justify-content: flex-end;
    /* stick content toward bottom */
    padding: 20px 40px;
    color: black;
    box-sizing: border-box;
}

/* Date */

.COVER .date {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.COVER .date p {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 500;
    font-size: 40px;
    margin: 0;
}

/* Title */

.COVER .titleCover {
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 5px 0;
}

/* Time */

.COVER .time {
    color: rgb(248, 166, 58);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-top: 5px;
}

/* Date range */

.COVER .dateCover {
    color: rgb(150, 150, 150);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin-top: 5px;
}

.upcomingEvent {
    padding: 20px 300px;
    display: flex;
    flex-direction: column;
}

.titleupcomingEvent h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.imgHeader {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.imgHeader img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Overlay Cover */

.COVER {
    position: absolute;
    bottom: 0;
    left: 400px;
    /* starts 400px from left side */
    width: calc(100% - 400px);
    /* keep full width minus 400px */
    height: 80%;
    background: #f6f6eb;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left align content */
    justify-content: flex-end;
    /* stick content toward bottom */
    padding: 20px 40px;
    color: black;
    box-sizing: border-box;
}

.COVER .date p {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 500;
    font-size: 40px;
    margin: 0;
}

/* Title */

.COVER .titleCover {
    font-size: 28px;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 500;
    margin: 5px 0;
}

/* Time */

.COVER .time {
    color: rgb(248, 166, 58);
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-top: 5px;
}

/* Date range */

.COVER .dateCover {
    color: rgb(150, 150, 150);
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin-top: 5px;
}

/* Columns */

.aboutUs {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    margin-left: 100px;
    margin-top: 50px;
    flex-wrap: wrap;
    /* allows items to stack on smaller screens */
}

.textAboutUs {
    max-width: 45%;
    flex: 1 1 300px;
    /* makes it shrink/grow responsively */
}

.titleAboutUs h4 {
    font-size: 28px;
}

.paragraphAboutUs p {
    font-size: 20px;
    line-height: 1.7;
}

.imgAboutUs {
    margin-top: 50px;
}

.imgAboutUs img {
    width: 100%;
    max-width: 800px;
    margin-right: 50px;
    flex: 1 1 600px;
    /* makes image responsive */
}

.bannerText p {
    font-size: 22px;
    line-height: 1.6;
    color: #333;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 80%;
    padding-left: 100px;
}

/* Container */

.upcomingContianer {
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-left: 200px;
    align-items: center;
}

.upcomingContianer .upcomingContianer1 {
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.upcomingEventAboutUs1 {
    width: 100%;
    display: flex;
    justify-content: left;
    margin-top: 10px;
    box-sizing: border-box;
}

.upcomingEventAboutUs {
    width: 320px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 20px;
}

/* ====== Default (desktop 1024px+) ====== */

.upcomingContianerAboutUs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin: 80px auto;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.upcomingEventAboutUsPage {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
}

.ComingEventContainerAboutUsPage {
    position: relative;
    max-width: 550px;
    width: 100%;
}

.imgHeaderAboutUsPage img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.COVERAboutUsPageLukum {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    background: #f6f6eb;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 15px;
    box-sizing: border-box;
    z-index: 2;
}

/* Left column */

.COVERAboutUsPageLukum .leftColumnPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.COVERAboutUsPageLukum .leftColumnPage .dateAboutUs p {
    font-weight: 300;
    font-size: 30px;
    margin: 0;
    font-family: 'Atyp Kido TRIAL', sans-serif;
}

.COVERAboutUsPageLukum .leftColumnPage .dateAboutUs .pnumber {
    font-size: 50px;
    margin: 0;
    font-family: 'Atyp Kido TRIAL', sans-serif;
}

/* Right column */

.COVERAboutUsPageLukum .rightColumnPage {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.COVERAboutUsPageLukum .rightColumnPage .titleCoverAboutUsLakum p {
    font-size: 26px;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 300;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Set the number of lines to show */
    -webkit-box-orient: vertical;
}

.COVERAboutUsPageLukum .rightColumnPage .timeAboutUsLAKUM p {
    color: rgb(248, 166, 58);
    font-size: 18px;
    margin: 0;
}

.COVERAboutUsPageLukum .rightColumnPage .dateCoverAboutUsLAKUM p {
    color: rgb(150, 150, 150);
    font-size: 14px;
    margin: 0;
}

.ComingEventContainerAboutUs {
    position: relative;
    width: 150px;
    margin-left: 0px;
}

.ComingEventContainerAboutUs1 {
    position: relative;
    width: 100%;
    max-width: 900px;
}

/* Image */

.imgHeaderAboutUs img {
    width: 350px;
    height: 200px;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.imgHeaderAboutUs1 img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.imgHeaderAboutUsPage img {
    width: 350px;
    height: 200px;
    object-fit: cover;
    display: block;
    z-index: 1;
}

.imgHeaderAboutUsPage img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* Overlay */

.COVERAboutUs1 {
    position: absolute;
    bottom: 0;
    left: 200px;
    width: 100%;
    height: 50%;
    background: #f6f6eb;
    display: flex;
    flex-direction: row;
    gap: 0px;
    padding: 10px;
    box-sizing: border-box;
    z-index: 2;
    margin-left: 0px;
}

.COVERAboutUs1 .leftColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding-left: 20px;
}

/* Left column: date only */

.COVERAboutUs .leftColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 80px;
    padding-left: 20px;
}

.COVERAboutUs1 .dateAboutUs p {
    font-weight: 300;
    font-size: 30px;
    margin: 0;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    line-height: 20px;
    padding-top: 10px;
}

.COVERAboutUs .dateAboutUs p {
    font-weight: 300;
    font-size: 30px;
    margin: 0;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    line-height: 20px;
    padding-top: 10px;
}

.COVERAboutUs .dateAboutUs .pnumber {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 300;
    font-size: 50px;
    margin: 0;
    line-height: 25px;
}

/* Right column: stacked content */

.COVERAboutUs .rightColumn {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
    padding-left: 0px;
}

/* Title */

.COVERAboutUs .titleCoverAboutUs p {
    font-size: 23px;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Set the number of lines to show */
    -webkit-box-orient: vertical;
    font-weight: 300;
    margin: 0;
    padding-top: 0px;
}

.cuttingParagraph {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Set the number of lines to show */
    -webkit-box-orient: vertical;
    font-weight: 300;
}

/* Time */

.COVERAboutUs .timeAboutUs p {
    color: rgb(248, 166, 58);
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
}

/* Date range */

.COVERAboutUs .dateCoverAboutUs p {
    color: rgb(150, 150, 150);
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin: 0;
}

/* Button */

.buttonDiscoverMoreDriveYourSoulComing button {
    padding: 10px 10px;
    font-size: 13px;
    background-color: transparent;
    border: #727272 solid 1px;
    color: black;
    font-weight: 300;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonDiscoverMoreDriveYourSoulComing a {
    text-decoration: none;
    color: #000;
}

.buttonDiscoverMoreDriveYourSoul button {
    padding: 10px 20px;
    font-size: 15px;
    background-color: transparent;
    border: #727272 solid 1px;
    color: black;
    font-weight: 300;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.buttonDiscoverMoreDriveYourSoul button:hover {
    background-color: #727272;
    color: white;
}

.upcomingEvents {
    display: flex;
    flex-wrap: wrap;
    /* allow items to wrap to next line */
    gap: 0px;
    justify-content: left;
    margin: 0px;
}

.eventItem {
    flex: 1 1 300px;
    /* responsive width (min 300px, grow if space) */
    max-width: 650px;
    /* never exceed this */
    text-align: center;
    font-family: 'Atyp Kido TRIAL', sans-serif;
}

.imgWrapper {
    position: relative;
}

.imgWrapper img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.dateBox {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #fff;
    color: #000;
    padding: 30px 100px;
    font-size: 25px;
    text-align: center;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 300;
}

.titleBox {
    margin-top: 10px;
    font-size: 25px;
    font-weight: 300;
}

.buttonDiscoverMore {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.buttonDiscoverMore button {
    padding: 15px 40px;
    font-size: 20px;
    background-color: transparent;
    border: #727272 solid 1px;
    color: black;
    font-weight: 300;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer {
    margin-top: 30px;
    background: transparent;
    color: #fff;
    padding: 40px 20px;
    font-family: "Atyp Kido TRIAL";
}

.FOOTER1 {
    margin-top: 30px;
    background: transparent;
    color: #fff;
    padding: 40px 20px;
    font-family: "Atyp Kido TRIAL";
    border-top: 1px solid #ccc;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-logo img {
    width: 100px;
}

.MenuFooter ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    color: #000;
}

.MenuFooter a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    font-size: 14px;
}

.MenuFooter ul li:hover {
    color: #ff9800;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff9800;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

.bannerAhmedMatter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* full width */
    max-width: 1400px;
    /* limit max width for large screens */
    height: 400px;
    /* allow height to adjust */
    margin: auto;
    margin-top: 50px;
    gap: 20px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #000;
}

.bannerleftside {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 50px;
}

.bannerleftside .date p {
    font-size: 20px;
    margin: 0;
    font-family: "Atyp Kido TRIAL";
    color: #fff;
}

.bannerleftside .name h2 {
    font-size: 45px;
    font-family: "Atyp Kido TRIAL";
    font-weight: 400;
    margin: 0;
    color: #fff;
}

.bannerleftside .year p {
    font-size: 35px;
    font-family: "Atyp Kido TRIAL";
    font-weight: 400;
    margin: 0;
    color: #fff;
}

.bannerrightside {
    flex: 1 1 400px;
    height: 400px;
    background-image: url("assest/img-3.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.driveyoursoul {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    gap: 15px;
}

/* Titles and highlight text */

.driveyoursoul .titledriveyoursoul h4 {
    font-family: "Atyp Kido TRIAL";
    font-style: italic;
    font-weight: 400;
    font-size: 40px;
    color: #6e6e6e;
    margin: 0;
}

.driveyoursoul .higlightdriveyoursoul p {
    font-family: "Atyp Kido TRIAL";
    font-weight: 400;
    font-size: 30px;
    color: #6e6e6e;
    margin: auto;
}

/* Button */

.buttonDiscoverMoreDriveYourSoul button {
    padding: 10px 20px;
    font-size: 15px;
    background-color: transparent;
    border: #727272 solid 1px;
    color: #6e6e6e;
    font-weight: 300;
    font-family: "Atyp Kido TRIAL";
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonDiscoverMoreDriveYourSoul a {
    text-decoration: none;
    color: black;
}

.buttonDiscoverMoreDriveYourSoul button:hover {
    background-color: #727272;
    color: white;
}

.upComingExhibitions .line {
    width: 80%;
    border-top: solid 0.5px #d1d1d1;
    margin: 10px auto;
}

/* Section title */

.upComingExhibitions .titleExhibitions h4 {
    font-family: "Atyp Kido TRIAL";
    font-weight: 300;
    margin-left: 180px;
}

/* Banner container */

.bannerDrivenYourSoul {
    width: 100%;
    height: 500px;
    display: flex;
    background-color: #edecdf;
    gap: 80px;
    flex-direction: row;
    /* wrap on smaller screens */
}

/* Left side image */

.bannerleftsideDrivenYourSoul {
    background-image: url("assest/img-3.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
    height: 500px;
    ;
}

/* Right side text */

.bannerrightsideDrivenYourSoul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    padding: 20px;
}

/* Date */

.bannerrightsideDrivenYourSoul .datebanner p {
    font-size: 30px;
    margin: 0;
    font-family: "Atyp Kido TRIAL";
    font-weight: 300;
}

/* Name */

.bannerrightsideDrivenYourSoul .namebanner h2 {
    font-size: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Set the number of lines to show */
    -webkit-box-orient: vertical;
    margin: 0;
    font-family: "Atyp Kido TRIAL";
    font-weight: 300;
}

/* Year */

.bannerrightsideDrivenYourSoul .yearbanner p {
    font-size: 40px;
    margin: 0;
}

.buttonDiscoverMoreDriveYourSoulCoverBanner button {
    padding: 20px 40px;
    font-size: 18px;
    background-color: transparent;
    border: #727272 solid 1px;
    color: black;
    font-weight: 300;
    font-family: "Atyp Kido TRIAL";
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonDiscoverMoreDriveYourSoulCoverBanner a {
    text-decoration: none;
    color: #000;
}

.buttonDiscoverMoreDriveYourSoulCoverBanner button:hover {
    background-color: #727272;
    color: white;
}

/* Button */

.buttonDiscoverMoreDriveYourSoulCover button {
    padding: 10px 0px;
    font-size: 15px;
    background-color: transparent;
    border: #727272 solid 1px;
    color: black;
    font-weight: 300;
    font-family: "Atyp Kido TRIAL";
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buttonDiscoverMoreDriveYourSoulCover a {
    text-decoration: none;
    color: #000;
}

.buttonDiscoverMoreDriveYourSoul button:hover {
    background-color: #727272;
    color: white;
}

.ContainerYourown {
    margin-top: 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(assest/img-4.png);
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* flex for centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.titleYourown h4 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.HiglihtAhmedMatter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.HiglihtAhmedMatter h4 {
    font-size: 40px;
    font-weight: 400;
    color: #8a8a8a;
    font-family: "Atyp Kido TRIAL";
    margin: 10px 0;
}

.HiglihtAhmedMatter h4 span {
    font-weight: 600;
    font-size: 40px;
}

.HiglihtAhmedMatter button {
    font-size: 20px;
    padding: 15px 25px;
    background: transparent;
    border: 1px solid #8a8a8a;
    color: #969696;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s all ease;
}

.HiglihtAhmedMatter a {
    text-decoration: none;
    color: #000;
}

.HiglihtAhmedMatter button:hover {
    background: #8a8a8a;
    color: #fff;
}

.buttonDiscoverMoreYourown button {
    padding: 12px 28px;
    font-size: 1.1rem;
    border: 1px solid #a8a8a0;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttonDiscoverMoreYourown button:hover {
    background: #333;
    color: #fff;
}

.footer-logo img {
    width: 100px;
}

.ahmedmatter {
    position: relative;
    background-image: url("assest/img-3.JPG");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
    height: 50vh;
    /* full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    /* prevent overflow on small screens */
}

/* Dark overlay */

.ahmedmatter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* adjust darkness */
    z-index: 1;
}

/* Text above overlay */

.dateAhmedmaater,
.nameAhmedmatter,
.yearahmedmatter {
    position: relative;
    z-index: 2;
    margin: 5px 0;
}

.LeftText {
    flex: 1;
    min-width: 250px;
}

.LeftText p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 80px;
    color: #333;
    font-family: "Atyp Kido TRIAL";
}

.imgRightSpaceVenum {
    flex: 1;
    min-width: 450px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.imgRightSpaceVenum img {
    width: 60%;
    /* scale down to container width */
    height: 50%;
    /* maintain aspect ratio */
    object-fit: cover;
    /* optional: crop if needed */
}

.ahmedHiglight {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    font-family: "Atyp Kido TRIAL";
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    padding: 0 20px;
    color: #333;
}

.EXHIBITIONPREVIUSCONTAINER h4 {
    font-size: 20px;
}

.ContainerSlide {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.ContainerSlide1 {
    display: flex;
    justify-content: left;
    margin-top: 50px;
}

.slider-container1 {
    width: 100%;
    max-width: 1525px;
    overflow: hidden;
    position: relative;
}

.slider-container {
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.card {
    flex: 0 0 calc(33.33% - 13.3px);
    /* 3 cards visible with gap */
    height: auto;
    background: #333;
    overflow: hidden;
    user-select: none;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Navigation buttons */

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.nav.prev {
    left: 15px;
}

.nav.next {
    right: 15px;
}

/* Base desktop styles (already provided) */

.LukumContiner {
    margin-top: 150px;
}

.LukumContiner .title h4 {
    font-size: 30px;
    font-family: "Atyp Kido TRIAL", sans-serif;
    font-weight: 600;
    text-align: left;
    margin-left: 100px;
}

/* ===== Gallery Section ===== */

.pastExhibitLukum {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    /* Centers all image groups */
    align-items: flex-start;
    /* Aligns items neatly at the top */
}

/* ===== Image Groups ===== */

.pastExhibitLukum .imgleft,
.pastExhibitLukum .imgright,
.pastExhibitLukum .imgMiddle {
    flex: 1 1 350px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* aligns text left inside */
}

/* ===== Image Styling ===== */

.pastExhibitLukum img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    /* optional for smoother edges */
}

/* ===== Paragraph Styling ===== */

.pastExhibitLukum p,
.pastExhibitLukum .imgMiddle p {
    font-size: 30px;
    font-family: "Atyp Kido TRIAL", sans-serif;
    font-weight: 400;
    text-align: left;
    margin-top: 20px;
}

/* ---------------- Container ---------------- */

.ComingEventContainerLAKUM {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 80px;
    box-sizing: border-box;
}

/* Image Header */

.imgHeaderLakum {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.imgHeaderLakum img {
    width: 100%;
    height: 800px;
    /* desktop height */
    object-fit: cover;
    display: block;
}

/* Overlay Cover */

.COVERLAKUM {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 30%;
    height: 100%;
    background: rgba(233, 235, 217, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding: 20px;
    text-align: left;
}

.COVERLAKUM .titleCOVERLAKUM p {
    font-size: 45px;
    max-width: 100%;
    font-weight: 500;
    text-align: left;
    margin-top: auto;
    margin-left: 30px;
    overflow: hidden;
    display: -webkit-box;
    /* Set the number of lines to show */
    -webkit-box-orient: vertical;
}

.COVERLAKUM .date p {
    font-size: 30px;
    margin-top: -30px;
    margin-left: 30px;
}

.COVERLAKUM .paragraphCOVERLAKUM p {
    font-size: 25px;
    line-height: 1.4;
    color: #897272;
    margin-top: 20px;
    margin-left: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    /* Set the number of lines to show */
    -webkit-box-orient: vertical;
    padding: 0 10px;
    font-weight: 500;
}

/* Button at bottom-left */

.buttonDiscoverMoreLAKUMLEFT {
    position: absolute;
    /* relative to image */
    bottom: 80px;
    left: 20px;
    width: 300px;
    z-index: 10;
}

.buttonDiscoverMoreLAKUMLEFT button {
    width: 100%;
    padding: 20px 15px;
    font-size: 30px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttonDiscoverMore a {
    text-decoration: none;
}

.buttonDiscoverMoreLAKUMLEFT button:hover {
    background-color: #333;
}

/* Container */

.previousEventContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    gap: 30px;
}

/* Title */

.titlePreviousEventWrapper {
    display: flex;
    align-items: left;
    text-align: left;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.titlePreviousEventWrapper h4 {
    text-align: left;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: bold;
    margin: 0;
}

.spaceImageBackground {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* LEFT SIDE — CONTENT + IMG1 */

.leftContent {
    width: 50%;
}

.leftContent h4 {
    margin-bottom: 10px;
}

.leftContent p {
    line-height: 1.6;
}

/* IMG1 UNDER CONTENT */

.img1 img {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}

/* RIGHT SIDE — IMG2 STARTS FROM TITLE HEIGHT */

.rightImage {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.rightImage img {
    width: 90%;
    border-radius: 10px;
}

.hrLineContainer {
    flex-grow: 1;
}

.hrLineContainer hr {
    width: 100%;
    border: none;
    border-top: 2px solid #000;
    margin: 0;
}

/* Landing Page */

.LandingPageCover {
    height: 100vh;
    width: 100%;
}

.titleLandingPage h4 {
    font-size: 70px;
    font-family: "Atyp Kido TRIAL";
}

.buttonLandingPage button {
    font-size: 30px;
    font-family: "Atyp Kido TRIAL";
    padding: 20px 50px;
}

/* Rows */

.PhotoEventRow {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: center;
}

.PhotoEventRow img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.PhotoEventRow11 img {
    width: 100%;
    max-width: 450px;
    height: 350px;
    transition: transform 0.3s ease;
}

.PhotoEventRow111 img {
    width: 100%;
    max-width: 450px;
    height: 500px;
    transition: transform 0.3s ease;
}

.PhotoEventRow1 img {
    width: 450px;
    height: 100px;
    transition: transform 0.3s ease;
}

.PhotoEventRow2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    height: 400px;
}

.PhotoEventRow2 img {
    position: absolute;
    bottom: 0;
    left: 0px;
    max-width: 450px;
    height: 360px;
}

.PhotoEventRow222 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    height: 400px;
}

.PhotoEventRow222 img {
    position: absolute;
    bottom: 0;
    left: 0px;
    max-width: 450px;
    height: 330px;
}

.PhotoEventRow222 p {
    position: relative;
    top: 75px;
    left: 50px;
    width: 100%;
}

.PhotoEventRow33 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 80px;
    margin-top: -45px;
}

.PhotoEventRow33 img {
    width: 100%;
    max-width: 350px;
    height: 450px;
    transition: transform 0.3s ease;
}

.PhotoEventRow22 p,
.PhotoEventRow2 p {
    position: relative;
    top: 75px;
    width: 100%;
}

.VideoContainer {
    width: 100%;
    height: 60vh;
    /* يمكنك تعديلها حسب الحاجة */
    overflow: hidden;
    position: relative;
}

.VideoContainer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* يغطي الحاوية مع المحافظة على نسبة العرض والارتفاع */
    display: block;
}

.PhotoEventRow p {
    margin-top: 8px;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #333;
    text-align: left;
    width: 70%;
    font-size: 20px;
}

.PhotoEventRow span {
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Set the number of lines to show */
    -webkit-box-orient: vertical;
}

.PhotoEventRow p {
    text-align: left;
    font-size: 30px;
}

.buttonDiscoverMoreLAKUM button {
    padding: 10px 20px;
    font-size: 20px;
    border: 1px solid #727272;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.previousEventContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    /* spacing from top */
    margin: 0 auto;
}

/* Title */

.titlePreviousEventWrapper h4 {
    font-size: 30px;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-weight: 400;
    text-align: left;
    margin: 0;
    /* remove default margins */
    padding-left: 20px;
    /* spacing from left */
    margin-bottom: 20px;
}

.hrLine {
    margin-left: 300px;
}

.hrLine hr {
    width: 60%;
    background: black;
    border-top: solid 0.5px #d1d1d1;
    margin: 10px auto;
}

.PhotoEventColumn {
    display: flex;
    flex-direction: column;
    padding-top: 0px;
    padding-left: 40px;
    gap: 50px;
    flex-wrap: wrap;
}

/* Paragraph + arrow flex */

.PhotoEventColumn p {
    display: flex;
    align-items: center;
    gap: 10px;
    /* space between text and arrow */
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin-top: 10px;
}

/* Arrow styling */

.PhotoEventColumn i {
    font-size: 20px;
    border-radius: 50%;
    border: 1px solid #000;
    padding: 5px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Default (desktop/laptop large screens) */

.ExploreCoverLakum {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    /* hero look */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-radius: 0;
}

.CoverImageLakum h4 {
    font-size: 70px;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Atyp Kido TRIAL";
}

.CoverImage button {
    padding: 20px 50px;
    font-size: 30px;
    border: 1px solid #a8a8a0;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Calendar Container */

/* Calendar Container */

.calendarContainer {
    display: flex;
    gap: 30px;
    padding: 40px 10%;
    flex-wrap: wrap;
    justify-content: center;
    background: #f6f6eb;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Sidebar */

.monthsSidebar {
    overflow: auto;
    /* or your default behavior */
    flex: 0 0 150px;
    background: #f6f6eb;
    border-radius: 15px;
    padding: 20px 0;
}

.monthsSidebar ul {
    list-style: none;
}

.monthsSidebar li {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    border-radius: 0 10px 10px 0;
}

.monthsSidebar li:hover,
.monthsSidebar li.active {
    border-left: 3px solid #444;
    background-color: #f6f6eb;
    color: #999;
}

/* Events List as 2 Columns */

/* Event Item */

.eventItem {
    display: none;
    /* hide by default, show with JS */
    width: 100%;
    max-width: 650px;
    text-align: center;
    background: #f6f6eb;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.eventItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */

.imgWrapperCalender {
    position: relative;
    width: 100%;
}

.imgWrapperCalender img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.eventItem:hover .imgWrapperCalender img {
    transform: scale(1.05);
}

/* Date Box */

.dateBoxCalender {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #999;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

/* Title Box */

.titleBox {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: left;
}

/* Upcoming Events */

.upcomingEventCalender {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.imgHeader1Calender {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.imgHeader1Calender img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.imgHeader1Calender:hover img {
    transform: scale(1.03);
}

.COVERCalender {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    border-radius: 0 0 15px 0;
}

.COVERCalender .dateCalender p {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #a8a8a0;
}

.COVERCalender .titleCalender {
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.COVERCalender .timeCalender {
    font-size: 16px;
    color: #999;
}

.COVERCalender .dateCoverCalender {
    font-size: 14px;
    color: #999;
}

.buttonDiscoverMoreCalender button {
    padding: 8px 25px;
    font-size: 14px;
    border: none;
    background-color: #999;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.buttonDiscoverMoreCalender button:hover {
    background-color: #555;
}

.contact-form {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    font-family: 'Atyp Kido TRIAL', sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

/* === Icon inside input === */

.input-icon {
    position: relative;
    width: 100%;
}

/* Icon inside fields */

.input-icon i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    /* perfect vertical center */
    color: #999;
    font-size: 15px;
    pointer-events: none;
}

/* Input + Textarea */

.input-icon input,
.input-icon textarea {
    width: 100%;
    padding: 12px 12px 12px 38px;
    /* leave space for icon on left */
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
    resize: none;
    box-sizing: border-box;
    line-height: 1.4;
    /* fix text alignment */
}

/* Textarea specific */

.input-icon textarea {
    min-height: 120px;
    /* adjust height */
    display: block;
}

/* Submit button */

.ButtonFormRow {
    width: 100%;
    padding: 14px;
    background-color: #969696;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button[type="submit"]:hover {
    background-color: #727272;
}

#generic_price_table {
    background-color: #f6f6eb;
    padding: 60px 200px;
    /* left and right space */
    box-sizing: border-box;
}

.price-heading {
    text-align: left;
    margin-bottom: 50px;
}

.price-heading h1 {
    font-size: 36px;
    font-weight: 700;
    color: #444;
}

/* Flex container */

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Top row: 3 columns */

.top-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

/* Bottom row: 2 columns */

.bottom-row {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

/* Cards */

.generic_content {
    background-color: #f6f6eb;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

/* Widths */

.top-row .generic_content {
    width: 32%;
}

.bottom-row .generic_content {
    width: 48%;
}

.generic_head_price {
    background-color: #f6f6eb;
    padding: 60px 20px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
}

.generic_head_content .head_bg {
    border-style: solid;
    border-width: 50px 20px 20px 20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    width: 100%;
    border-color: #f6f6eb transparent transparent #f6f6eb;
}

.generic_head_content .head span {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #525252;
    position: relative;
    z-index: 1;
}

.generic_price_tag .price {
    display: block;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-top: 12px;
    color: #414141;
}

.generic_feature_list {
    padding: 20px;
    flex-grow: 1;
}

.generic_feature_list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.generic_feature_list ul li {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 16px;
    padding: 10px 0;
    color: #555;
    line-height: 1.5em;
}

.generic_feature_list ul li:hover {
    border-left: 5px solid #aaa;
    padding-left: 10px;
    transition: all 0.3s ease-in-out;
}

.generic_price_btn {
    margin: 20px 0 32px;
}

.generic_price_btn a {
    border: 1px solid #333;
    color: #555;
    border-radius: 50px;
    display: inline-block;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 15px;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.generic_content:hover .generic_price_btn a {
    background-color: #525252;
    color: #fff;
}

.generic_img {
    width: 100%;
    height: 200px;
    /* adjust size */
    overflow: hidden;
}

.currency-icon {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.price-img {
    width: 40px;
    /* adjust size */
    height: 40px;
    border-radius: 6px;
    margin-left: 10px;
    vertical-align: middle;
    object-fit: cover;
}

.generic_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* keeps image proportion while filling */
    display: block;
    border-bottom: 1px solid #eee;
}

/* Responsive */

@media (max-width: 992px) {
    .calendarContainer {
        flex-direction: column;
        gap: 20px;
    }
    .monthsSidebar {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .monthsSidebar ul {
        display: flex;
        gap: 15px;
    }
    .eventsList {
        width: 100%;
    }
    .COVERCalender {
        width: 80%;
        height: auto;
        padding: 15px 20px;
        bottom: 10px;
        right: 10px;
    }
}

/* ===========================
   🔹 RESPONSIVE FOR 1044PX (Medium Laptops / Tablets)
   =========================== */

@media (min-width: 2560px) {
    /* ========== HEADER ========== */
    .headerContainer {
        padding: 40px 180px;
        justify-content: space-between;
    }
    .logo img {
        width: 220px;
    }
    .MenuHeader ul {
        gap: 60px;
    }
    .MenuHeader ul li a {
        font-size: 22px;
    }
    /* ========== BANNER SECTION ========== */
    .banner {
        flex-direction: row;
        align-items: center;
        padding: 120px 200px;
        gap: 100px;
    }
    .bannerText h2 {
        font-size: 64px;
    }
    .bannerText p {
        font-size: 26px;
        line-height: 1.8;
    }
    .bannerImage {
        width: 50%;
    }
    .bannerImage img {
        width: 100%;
        border-radius: 14px;
    }
    /* ========== ABOUT US =====a===== */
    .aboutUs {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 60px;
        margin-left: 220px;
        margin-right: 220px;
    }
    .textAboutUs {
        max-width: 40%;
    }
    .titleAboutUs h4 {
        font-size: 34px;
    }
    .paragraphAboutUs p {
        font-size: 26px;
        line-height: 1.8;
    }
    .upComingExhibitions .line {
        width: 80%;
        /* wider line for large screen */
        border-top: solid 1px #d1d1d1;
        /* slightly thicker for visibility */
        margin: 20px auto;
        /* more spacing */
    }
    /* Section title */
    .upComingExhibitions .titleExhibitions h4 {
        font-family: "Atyp Kido TRIAL";
        font-weight: 300;
        font-size: 60px;
        /* enlarge font for ultra-wide screens */
        text-align: left;
        /* center the title */
        margin-left: 50;
        /* remove left margin for centering */
    }
    /* ========== DRIVE YOUR SOUL ========== */
    .bannerAhmedMatter {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 2200px;
        /* larger max width for 2560px screens */
        height: 700px;
        /* taller banner for large screen */
        margin: auto;
        margin-top: 80px;
        gap: 40px;
        padding: 0px;
        box-sizing: border-box;
        background-color: #000;
    }
    .bannerleftside {
        flex: 1 1 600px;
        /* more space for text */
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-left: 100px;
        margin-top: 150px;
        /* proportional margin for large screen */
    }
    .bannerleftside .date p {
        font-size: 40px;
        margin: 0;
        font-family: "Atyp Kido TRIAL";
        color: #fff;
    }
    .bannerleftside .name h2 {
        font-size: 70px;
        font-family: "Atyp Kido TRIAL";
        font-weight: 400;
        margin: 0;
        color: #fff;
    }
    .bannerleftside .year p {
        font-size: 60px;
        font-family: "Atyp Kido TRIAL";
        font-weight: 400;
        margin: 0;
        color: #fff;
    }
    .bannerrightside {
        flex: 1 1 800px;
        /* larger image area */
        height: 700px;
        /* match banner height */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .driveyoursoul {
        padding: 80px 40px;
        /* more spacing */
        gap: 25px;
        /* increase gap between elements */
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 60px;
        /* scale up title */
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 45px;
        /* scale up highlighted text */
    }
    .driveyoursoul .buttonDiscoverMoreDriveYourSoul button {
        padding: 20px 40px;
        /* bigger button */
        font-size: 20px;
        /* larger font for button */
    }
    .upcomingContianerAboutUs {
        gap: 60px;
        /* more space between items */
        max-width: 2000px;
        /* expand container for ultra-wide screens */
        margin: 100px auto;
        /* add more top/bottom spacing */
    }
    .upcomingEventAboutUsPage {
        padding: 20px 40px;
        /* increase padding for large screens */
    }
    .ComingEventContainerAboutUsPage {
        max-width: 700px;
        /* allow bigger images/cards */
    }
    .imgHeaderAboutUsPage img {
        max-height: 450px;
        /* larger images */
    }
    .COVERAboutUs {
        margin-left: 0px;
    }
    .COVERAboutUsPageLukum {
        width: 100%;
        /* slightly wider overlay */
        gap: 30px;
        padding: 25px;
    }
    .COVERAboutUsPageLukum .leftColumnPage .dateAboutUs p {
        font-size: 40px;
        /* scale up dates */
    }
    .COVERAboutUsPageLukum .leftColumnPage .dateAboutUs .pnumber {
        font-size: 70px;
        /* larger day numbers */
    }
    .COVERAboutUsPageLukum .rightColumnPage .titleCoverAboutUsLakum p {
        font-size: 40px;
        /* scale up title */
    }
    .COVERAboutUsPageLukum .rightColumnPage .timeAboutUsLAKUM p {
        font-size: 24px;
    }
    .COVERAboutUsPageLukum .rightColumnPage .dateCoverAboutUsLAKUM p {
        font-size: 20px;
    }
    .bannerDrivenYourSoul {
        width: 100%;
        height: 900px;
        /* taller for large screens */
        display: flex;
        background-color: #edecdf;
        gap: 120px;
        /* increase space between left and right */
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    /* Left side image */
    .bannerleftsideDrivenYourSoul {
        background-image: url("assest/img-3.JPG");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 50%;
        height: 900px;
        /* match container height */
    }
    /* Right side text */
    .bannerrightsideDrivenYourSoul {
        width: 50%;
        /* take remaining half */
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 60px;
        /* more padding for large screens */
        text-align: left;
    }
    /* Date */
    .bannerDrivenYourSoul .bannerrightsideDrivenYourSoul .datebanner p {
        font-size: 60px;
        margin: 0;
        font-family: "Atyp Kido TRIAL";
        font-weight: 300;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* Set the number of lines to show */
        -webkit-box-orient: vertical;
    }
    /* Name */
    .bannerrightsideDrivenYourSoul .namebanner h2 {
        font-size: 120px;
        margin: 0;
        font-family: "Atyp Kido TRIAL";
        font-weight: 300;
    }
    /* Year */
    .bannerrightsideDrivenYourSoul .yearbanner p {
        font-size: 80px;
        margin: 0;
        font-family: "Atyp Kido TRIAL";
        font-weight: 300;
    }
    /* Paragraph */
    .bannerrightsideDrivenYourSoul .paragraphbanner p {
        font-size: 80px;
        line-height: 1.3;
        color: #333;
        font-family: "Atyp Kido TRIAL";
        font-weight: 300;
        max-width: 1000px;
        /* wider max width for large screen */
    }
    /* Buttons */
    .buttonDiscoverMoreDriveYourSoulCoverBanner button {
        padding: 30px 60px;
        font-size: 24px;
    }
    .buttonDiscoverMoreDriveYourSoulCover button {
        padding: 15px 0;
        font-size: 20px;
    }
    /* ========== UPCOMING EVENTS ========== */
    .upcomingEvents {
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px;
        padding: 120px 200px;
    }
    .eventItem {
        width: 28%;
    }
    .eventItem img {
        height: 400px;
        border-radius: 0px;
    }
    .titleBox {
        font-size: 24px;
    }
    .dateBox {
        font-size: 18px;
    }
    .titleupcomingEvent h3 {
        font-size: 46px;
    }
    /* ========== FOOTER ========== */
    /* ========== CONTACT PAGE ========== */
    .contact-form {
        width: 60%;
        padding: 60px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 18px;
        padding: 16px 22px;
    }
    .ButtonFormRow {
        font-size: 18px;
        padding: 16px 36px;
    }
    /* ========== LANDING PAGE ========== */
    .LandingPageCover {
        height: 100vh;
        padding: 0 200px;
    }
    .titleLandingPage h4 {
        font-size: 64px;
    }
    .buttonLandingPage button {
        padding: 20px 50px;
        font-size: 20px;
    }
}

@media (max-width: 1680px) {
    .slider-track {
        gap: 50px;
    }
    .card {
        flex: 0 0 26%;
        height: 330px;
    }
    .nav {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    /* ===== Logo & Menu ===== */
    .logo a {
        font-size: 32px;
    }
    .logo p {
        font-size: 18px;
    }
    .MenuHeader ul li a {
        font-size: 22px;
    }
    /* ===== About Us Section ===== */
    .aboutUs {
        padding: 55px;
        gap: 50px;
    }
    .titleAboutUs h4 {
        font-size: 42px;
    }
    .paragraphAboutUs p {
        font-size: 22px;
        line-height: 1.7;
    }
    .imgAboutUs img {
        width: 100%;
        max-width: 650px;
    }
    /* ===== Banner ===== */
    .banner,
    .bannerAhmedMatter {
        padding: 55px 55px;
        gap: 45px;
    }
    .bannerText h2 {
        font-size: 44px;
    }
    .bannerText p {
        font-size: 22px;
        line-height: 1.7;
    }
    .paragraphbanner {
        text-align: left;
        margin: 0;
    }
    /* ===== Events ===== */
    .upcomingEvents,
    .upcomingContianer,
    .upcomingContianer1 {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
    .eventItem {
        flex: 1 1 calc(33.33% - 30px);
        max-width: 460px;
    }
    .titleBox,
    .dateBox,
    .titleupcomingEvent h3,
    .titleupcomingEventCalender h3 {
        font-size: 24px;
    }
    .dateBox {
        padding: 10px 24px;
        font-size: 16px;
    }
    .eventOverlay {
        flex-direction: row;
        gap: 30px;
        width: 100%;
        padding: 25px 30px;
    }
    .eventImageWrapper img {
        height: 330px;
        width: 100%;
        object-fit: cover;
    }
    .PhotoEventRow {
        flex-direction: row;
    }
    .PhotoEventColumn {
        max-width: 500px;
        gap: 30px;
        padding-left: 18px;
    }
    .PhotoEventColumn p {
        font-size: 20px;
        text-align: left;
    }
    .PhotoEventColumn i {
        display: inline-block;
    }
    /* ===== Previous Events ===== */
    .titlePreviousEventContainer,
    .titlePreviousEventWrapper {
        flex-direction: row;
        gap: 25px;
        text-align: left;
    }
    .titlePreviousEventContainer h4,
    .titlePreviousEventWrapper h4 {
        font-size: 26px;
    }
    .hrLine {
        display: block;
    }
    /* ===== COVER LAKUM ===== */
    .COVERLAKUM {
        width: 550px;
        padding: 35px;
        bottom: 40px;
        right: 55px;
        border-radius: 14px;
    }
    .COVERLAKUM .titleCOVERLAKUM p {
        font-size: 34px;
    }
    .COVERLAKUM .date p {
        font-size: 22px;
    }
    .COVERLAKUM .paragraphCOVERLAKUM p {
        font-size: 18px;
    }
    .buttonDiscoverMoreLAKUM,
    .buttonDiscoverMoreLAKUMLEFT {
        width: 260px;
        border-radius: 12px;
    }
    .buttonDiscoverMoreLAKUM button,
    .buttonDiscoverMoreLAKUMLEFT button {
        font-size: 18px;
        padding: 14px 30px;
    }
    /* ===== Images & Headers ===== */
    .imgHeaderLakum img,
    .imgHeaderAboutUs1 img {
        width: 100%;
        height: auto;
        border-radius: 14px;
    }
    .ExploreCoverLakum {
        height: 90vh;
    }
    .CoverImageLakum h4 {
        font-size: 44px;
    }
    .CoverImage button {
        font-size: 1.15rem;
        padding: 14px 30px;
    }
    /* ===== Drive Your Soul Banner ===== */
    .driveyoursoul {
        padding: 60px 50px;
        gap: 35px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 44px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 24px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 18px;
        padding: 12px 28px;
    }
    /* ===== Landing Page ===== */
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 46px;
    }
    .buttonLandingPage button {
        font-size: 20px;
        padding: 16px 30px;
        width: auto;
        margin: 0;
    }
    /* ===== Footer ===== */
    .footer-container {
        flex-direction: row;
        text-align: left;
    }
    .MenuFooter ul {
        flex-direction: row;
        gap: 35px;
    }
    .MenuFooter ul li {
        font-size: 18px;
    }
    .social-icons {
        justify-content: flex-start;
    }
    /* ===== Forms ===== */
    .contact-form {
        max-width: 1000px;
        padding: 30px 50px;
    }
    .form-row {
        flex-direction: row;
        gap: 30px;
    }
    .form-group {
        flex: 1;
    }
    .input-icon input,
    .input-icon textarea {
        font-size: 17px;
    }
    .input-icon i {
        font-size: 18px;
        left: 16px;
    }
    .input-icon textarea {
        min-height: 160px;
    }
    .ButtonFormRow {
        padding: 18px;
        font-size: 20px;
    }
    /* ===== Price Tables ===== */
    #generic_price_table {
        padding: 90px 70px;
    }
    .generic_head_price {
        padding: 60px 25px 25px;
    }
    .generic_head_content .head span {
        font-size: 30px;
    }
    .generic_price_tag .price {
        font-size: 30px;
    }
    .generic_feature_list ul li {
        font-size: 18px;
    }
    .generic_price_btn a {
        font-size: 18px;
        padding: 14px 30px;
    }
    .generic_img {
        height: 290px;
    }
}

@media (max-width: 1536px) {
    .slider-track {
        gap: 45px;
    }
    .card {
        flex: 0 0 28%;
        height: 300px;
    }
    .nav {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    /* ===== Logo & Menu ===== */
    .logo a {
        font-size: 30px;
    }
    .logo p {
        font-size: 16px;
    }
    .MenuHeader ul li a {
        font-size: 20px;
    }
    /* ===== About Us Section ===== */
    .aboutUs {
        padding: 50px;
        gap: 45px;
    }
    .titleAboutUs h4 {
        font-size: 38px;
    }
    .paragraphAboutUs p {
        font-size: 20px;
        line-height: 1.65;
    }
    .imgAboutUs img {
        width: 100%;
        max-width: 600px;
    }
    /* ===== Banner ===== */
    .banner,
    .bannerAhmedMatter {
        padding: 50px 50px;
        gap: 40px;
    }
    .bannerText h2 {
        font-size: 40px;
    }
    .bannerText p {
        font-size: 20px;
        line-height: 1.65;
    }
    .paragraphbanner {
        text-align: left;
        margin: 0;
    }
    /* ===== Events ===== */
    .upcomingEvents,
    .upcomingContianer,
    .upcomingContianer1 {
        flex-direction: row;
        align-items: flex-start;
        gap: 25px;
    }
    .eventItem {
        flex: 1 1 calc(33.33% - 25px);
        max-width: 420px;
    }
    .titleBox,
    .dateBox,
    .titleupcomingEvent h3,
    .titleupcomingEventCalender h3 {
        font-size: 22px;
    }
    .dateBox {
        padding: 8px 22px;
        font-size: 15px;
    }
    .eventOverlay {
        flex-direction: row;
        gap: 25px;
        width: 100%;
        padding: 20px 25px;
    }
    .eventImageWrapper img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
    .PhotoEventRow {
        flex-direction: row;
    }
    .PhotoEventColumn {
        max-width: 450px;
        gap: 25px;
        padding-left: 15px;
    }
    .PhotoEventColumn p {
        font-size: 18px;
        text-align: left;
    }
    .PhotoEventColumn i {
        display: inline-block;
    }
    /* ===== Previous Events ===== */
    .titlePreviousEventContainer,
    .titlePreviousEventWrapper {
        flex-direction: row;
        gap: 20px;
        text-align: left;
    }
    .titlePreviousEventContainer h4,
    .titlePreviousEventWrapper h4 {
        font-size: 24px;
    }
    .hrLine {
        display: block;
    }
    /* ===== COVER LAKUM ===== */
    .COVERLAKUM {
        width: 500px;
        padding: 30px;
        bottom: 35px;
        right: 50px;
        border-radius: 12px;
    }
    .COVERLAKUM .titleCOVERLAKUM p {
        font-size: 30px;
    }
    .COVERLAKUM .date p {
        font-size: 20px;
    }
    .COVERLAKUM .paragraphCOVERLAKUM p {
        font-size: 16px;
    }
    .buttonDiscoverMoreLAKUM,
    .buttonDiscoverMoreLAKUMLEFT {
        width: 240px;
        border-radius: 10px;
    }
    .buttonDiscoverMoreLAKUM button,
    .buttonDiscoverMoreLAKUMLEFT button {
        font-size: 16px;
        padding: 12px 28px;
    }
    /* ===== Images & Headers ===== */
    .imgHeaderLakum img,
    .imgHeaderAboutUs1 img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .ExploreCoverLakum {
        height: 85vh;
    }
    .CoverImageLakum h4 {
        font-size: 40px;
    }
    .CoverImage button {
        font-size: 1.05rem;
        padding: 12px 28px;
    }
    /* ===== Drive Your Soul Banner ===== */
    .driveyoursoul {
        padding: 50px 40px;
        gap: 30px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 40px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 22px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 16px;
        padding: 10px 26px;
    }
    /* ===== Landing Page ===== */
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 42px;
    }
    .buttonLandingPage button {
        font-size: 18px;
        padding: 14px 26px;
        width: auto;
        margin: 0;
    }
    /* ===== Footer ===== */
    .footer-container {
        flex-direction: row;
        text-align: left;
    }
    .MenuFooter ul {
        flex-direction: row;
        gap: 30px;
    }
    .MenuFooter ul li {
        font-size: 17px;
    }
    .social-icons {
        justify-content: flex-start;
    }
    /* ===== Forms ===== */
    .contact-form {
        max-width: 900px;
        padding: 25px 40px;
    }
    .form-row {
        flex-direction: row;
        gap: 25px;
    }
    .form-group {
        flex: 1;
    }
    .input-icon input,
    .input-icon textarea {
        font-size: 15px;
    }
    .input-icon i {
        font-size: 16px;
        left: 14px;
    }
    .input-icon textarea {
        min-height: 140px;
    }
    .ButtonFormRow {
        padding: 16px;
        font-size: 18px;
    }
    /* ===== Price Tables ===== */
    #generic_price_table {
        padding: 80px 60px;
    }
    .generic_head_price {
        padding: 50px 20px 20px;
    }
    .generic_head_content .head span {
        font-size: 26px;
    }
    .generic_price_tag .price {
        font-size: 26px;
    }
    .generic_feature_list ul li {
        font-size: 16px;
    }
    .generic_price_btn a {
        font-size: 16px;
        padding: 12px 26px;
    }
    .generic_img {
        height: 260px;
    }
}

@media (max-width: 1440px) {
    /* ====== HEADER ====== */
    .headerContainer {
        padding: 18px 40px;
        justify-content: space-between;
    }
    .logo img {
        width: 130px;
    }
    .MenuHeader ul {
        gap: 18px;
    }
    .MenuHeader ul li a {
        font-size: 15px;
    }
    /* Burger icons */
    .ri-menu-line {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
    .ri-close-line {
        display: none;
    }
    .COVERAboutUs {
        margin-left: 0px;
    }
    /* ====== BANNER SECTION ====== */
    .banner {
        flex-direction: row;
        align-items: center;
        padding: 40px 50px;
        gap: 30px;
    }
    .bannerText {
        width: 100%;
        text-align: center;
    }
    .bannerText h2 {
        font-size: 30px;
    }
    .bannerText p {
        font-size: 17px;
        line-height: 1.5;
    }
    .bannerImage {
        width: 80%;
    }
    .bannerImage img {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }
    /* ====== ABOUT US ====== */
    .aboutUs {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-left: 0;
        /* removed fixed 200px to be responsive */
        justify-content: center;
    }
    .textAboutUs {
        max-width: 50%;
        flex: 1 1 300px;
    }
    .titleAboutUs h4 {
        font-size: 28px;
        margin: 0;
    }
    .paragraphAboutUs p {
        font-size: 24px;
        line-height: 1.7;
        margin: 10px 0;
    }
    .imgAboutUs {
        flex: 1 1 600px;
        max-width: 600px;
    }
    .imgAboutUs img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        margin-right: 0;
        /* remove fixed margin */
    }
    /* ====== DRIVE YOUR SOUL ====== */
    .driveyoursoul {
        padding: 80px 40px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 28px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 20px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        padding: 12px 26px;
        font-size: 15px;
    }
    /* ====== UPCOMING EVENTS ====== */
    .upcomingEvents {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 40px;
    }
    .eventItem {
        flex: 1 1 300px;
        max-width: 550px;
        text-align: center;
        font-family: 'Atyp Kido TRIAL', sans-serif;
    }
    .eventItem img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 0px;
    }
    .titleBox {
        margin-top: 10px;
        font-size: 25px;
        font-weight: 300;
    }
    .dateBox {
        position: absolute;
        bottom: 0;
        right: 0;
        background: #fff;
        color: #000;
        padding: 0 20px;
        font-size: 18px;
        text-align: center;
        font-weight: 300;
    }
    /* ====== LUKUM / PAST EXHIBITS ====== */
    .LukumContiner {
        margin-left: 0;
    }
    .LukumContiner .title h4 {
        font-size: 30px;
        font-family: 'Atyp Kido TRIAL', sans-serif;
        font-weight: 400;
    }
    .pastExhibitLukum {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
        /* reduced from 100px */
        padding: 0 50px;
    }
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgright,
    .pastExhibitLukum .imgMiddle {
        flex: 1 1 350px;
        max-width: 450px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .pastExhibitLukum img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
    }
    .pastExhibitLukum p {
        font-size: 18px;
        text-align: left;
        margin-top: 20px;
    }
    .titlePreviousEventWrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .titlePreviousEventWrapper h4 {
        font-size: 30px;
        font-family: 'Atyp Kido TRIAL', sans-serif;
        font-weight: 400;
        text-align: left;
        margin: 10px 0 30px 0;
    }
    /* ====== PHOTO EVENTS ====== */
    .PhotoEventColumn {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 50px 40px;
    }
    .PhotoEventRow img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 10px;
    }
    .PhotoEventColumn p {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Atyp Kido TRIAL', sans-serif;
        font-size: 18px;
        font-weight: 400;
        margin-top: 10px;
    }
    .PhotoEventColumn i {
        font-size: 20px;
        border-radius: 50%;
        border: 1px solid #000;
        padding: 5px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .deleteImge img,
    .deleteImge i,
    .deleteImge span {
        display: none;
    }
    /* ====== NUMBER COUNT ====== */
    .numberCount {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 50px 40px;
    }
    .numberCount a {
        font-size: 30px;
    }
    .numberCount p {
        font-size: 16px;
    }
    /* ====== CALENDAR PAGE ====== */
    .upcomingEventCalender {
        padding: 60px 40px;
    }
    .COVERCalender {
        width: 90%;
        padding: 30px;
    }
    .COVERCalender .titleCoverCalender {
        font-size: 20px;
    }
    .COVERCalender .dateCalender p {
        font-size: 16px;
    }
    .COVERCalender .timeCalender {
        font-size: 15px;
    }
    .buttonDiscoverMoreCalender button {
        padding: 10px 24px;
        font-size: 14px;
    }
    /* ====== FOOTER ====== */
    .FOOTER1 {
        padding: 60px 40px;
    }
    .footer-container {
        max-width: 1440px;
        gap: 40px;
    }
    .footer-logo img {
        width: 130px;
    }
    .MenuFooter ul {
        gap: 25px;
    }
    .MenuFooter a {
        font-size: 16px;
    }
    .social-icons a {
        font-size: 24px;
        margin: 0 12px;
    }
    .footer-bottom {
        font-size: 16px;
        padding-top: 20px;
    }
    /* ====== CONTACT PAGE ====== */
    .contact-form {
        width: 90%;
        padding: 30px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 15px;
    }
    .ButtonFormRow {
        font-size: 14px;
        padding: 12px 26px;
    }
    /* ====== SLIDER ====== */
    .slider-container {
        width: 95%;
        margin: 40px auto;
    }
    .slider-track {
        gap: 15px;
    }
    .card {
        flex: 0 0 46%;
    }
    .card img {
        height: 200px;
    }
    /* ====== LANDING PAGE ====== */
    .LandingPageCover {
        height: 85vh;
        padding: 0 50px;
    }
    .titleLandingPage h4 {
        font-size: 30px;
    }
    .buttonLandingPage button {
        padding: 12px 26px;
        font-size: 15px;
    }
}

@media (max-width: 1366px) {
    .LukumContiner .title h4 {
        margin-left: 0px;
        font-size: 28px;
    }
    .pastExhibitLukum {
        gap: 40px;
        margin-left: 120px;
    }
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgMiddle,
    .pastExhibitLukum .imgright {
        flex: 1 1 30%;
        max-width: 300px;
    }
    .pastExhibitLukum img {
        height: 300px;
    }
    .pastExhibitLukum p {
        font-size: 20px;
        text-align: center;
    }
    .upcomingContianerAboutUs {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin: 40px auto;
    }
    .ComingEventContainerAboutUsPage {
        max-width: 90%;
    }
    .COVERAboutUsPageLukum {
        width: 100%;
        flex-direction: row;
        gap: 12px;
        padding: 10px;
    }
    .COVERAboutUsPageLukum .rightColumnPage .titleCoverAboutUsLakum p {
        font-size: 20px;
    }
    .COVERAboutUsPageLukum .leftColumnPage .dateAboutUs .pnumber {
        font-size: 30px;
    }
    .pastExhibitLukum {
        gap: 50px;
        /* smaller gap on medium laptops */
    }
    .COVERLAKUM .titleCOVERLAKUM p {
        font-size: 30px;
        max-width: 250px;
        margin-left: 20px;
    }
    .COVERLAKUM .date p {
        font-size: 25px;
        margin-left: 20px;
        margin-top: -20px;
    }
    .COVERLAKUM .paragraphCOVERLAKUM p {
        font-size: 20px;
        margin-left: 15px;
        padding: 0 8px;
    }
    .pastExhibitLukum img {
        height: 350px;
        /* reduce image height */
    }
    .pastExhibitLukum p,
    .pastExhibitLukum .imgMiddle p {
        font-size: 24px;
        /* scale down text */
    }
    /* Hamburger menu */
    .ri-menu-line {
        display: block;
        /* show hamburger */
    }
    .ri-close-line {
        display: none;
        /* hide close icon initially */
    }
    /* Logo */
    .logo a {
        font-size: 20px;
    }
    .logo p {
        font-size: 14px;
    }
    /* Menu items */
    .MenuHeader ul li a {
        font-size: 16px;
    }
    /* About Us Section */
    .aboutUs {
        display: flex;
        gap: 30px;
    }
    .textAboutUs {
        max-width: 100%;
    }
    .titleAboutUs h4 {
        font-size: 15px;
    }
    .paragraphAboutUs p {
        width: 100%;
        font-size: 18px;
    }
    .imgAboutUs img {
        width: 50px;
        padding-top: 30px;
    }
    /* Banner Section */
    .bannerText h2 {
        font-size: 26px;
        text-align: left;
    }
    .bannerText p {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
    }
    .titleCOVERLAKUM p {
        font-size: 30px;
    }
    /* Events Section */
    .PhotoEventRow p {
        font-size: 18px;
    }
    .PhotoEventRow img {
        max-width: 100%;
        height: auto;
    }
    .PhotoEventColumn {
        flex: 1 1 100%;
        gap: 20px;
    }
    /* Upcoming Events Container */
    .upcomingContianer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .eventItem {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .titleBox {
        font-size: 18px;
    }
    .dateBox {
        font-size: 14px;
        padding: 10px 20px;
    }
    /* Banner Driven Your Soul */
    .bannerDrivenYourSoul {
        flex-direction: column;
        gap: 15px;
    }
    .bannerleftsideDrivenYourSoul,
    .bannerrightsideDrivenYourSoul {
        width: 100%;
    }
    .bannerrightsideDrivenYourSoul .datebanner p {
        font-size: 16px;
    }
    .bannerrightsideDrivenYourSoul .namebanner h2 {
        font-size: 18px;
    }
    .bannerrightsideDrivenYourSoul .yearbanner p {
        font-size: 14px;
    }
    .bannerrightsideDrivenYourSoul .paragraphbanner p {
        font-size: 14px;
    }
    /* Cover & Buttons */
    .COVER,
    .COVERAboutUs,
    .COVERCalender {
        width: 95%;
        padding: 15px;
        margin: 0 auto;
    }
    .buttonDiscoverMore button,
    .buttonDiscoverMoreLAKUM button,
    .buttonDiscoverMoreDriveYourSoul button,
    .buttonLandingPage button {
        font-size: 14px;
        padding: 8px 15px;
    }
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    .imgHeaderLakum img {
        height: 400px;
    }
    .imgHeaderAboutUs img {
        display: block;
        width: 100%;
        height: auto;
    }
    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .MenuFooter ul {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    .MenuFooter ul li {
        font-size: 14px;
    }
    /* Forms */
    .contact-form {
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .form-group {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
    .input-icon input,
    .input-icon textarea {
        padding: 10px 10px 10px 30px;
        font-size: 14px;
    }
    .input-icon i {
        font-size: 14px;
        left: 8px;
    }
    .input-icon textarea {
        min-height: 100px;
    }
    .ButtonFormRow {
        font-size: 14px;
        padding: 10px 12px;
    }
    /* Landing Page Cover */
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 24px;
        text-align: center;
        line-height: 1.3;
        padding: 0 10px;
    }
    .buttonLandingPage button {
        font-size: 14px;
        padding: 10px 18px;
        width: 100%;
        margin: 10px auto;
        display: block;
    }
    /* Price tables */
    .generic_head_price {
        padding: 30px 15px 15px;
    }
    .generic_head_content .head span {
        font-size: 18px;
    }
    .generic_price_tag .price {
        font-size: 20px;
    }
    .generic_feature_list ul li {
        font-size: 14px;
    }
    .generic_price_btn a {
        font-size: 14px;
        padding: 10px 18px;
    }
    /* Space Section */
    .SpaceVENUMContainer .titleSpaceVenum h4 {
        font-size: 18px;
    }
    .LeftText p {
        font-size: 14px;
    }
    /* Adjust any columns to stack */
    .pastExhibitLukum {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgMiddle,
    .pastExhibitLukum .imgright {
        max-width: 95%;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pastExhibitLukum img {
        height: auto;
    }
    /* Event Column */
    .PhotoEventColumn {
        width: 100%;
        max-width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .PhotoEventRow {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    /* Calendar */
    .COVERCalender .dateCalender p {
        font-size: 18px;
    }
    .COVERCalender .titleCoverCalender {
        font-size: 16px;
    }
    .COVERCalender .timeCalender {
        font-size: 14px;
    }
    .COVERCalender .dateCoverCalender {
        font-size: 12px;
    }
    .buttonDiscoverMoreCalender button {
        font-size: 12px;
        padding: 6px 10px;
    }
    * Menu */ .Menu {
        display: none;
        /* hidden by default */
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #f9f9f9;
        padding: 15px 0;
        z-index: 10;
    }
    .Menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .ri-menu-line {
        display: block;
    }
    .ri-close-line {
        display: none;
        /* initially hidden, will show on click via JS */
    }
    /* About Us Section */
    .aboutUs {
        flex-direction: row;
        /* stack content */
        align-items: center;
        text-align: left;
        justify-content: ;
        padding: 60px 50px;
        gap: 30px;
    }
    .textAboutUs {
        max-width: 50%;
    }
    .titleAboutUs h4 {
        font-size: 26px;
    }
    .paragraphAboutUs p {
        width: 100%;
        font-size: 18px;
    }
    .imgAboutUs {
        margin-top: -50px;
        width: 100%;
    }
    .imgAboutUs img {
        width: 100%;
        padding-top: 50px;
        border-radius: 0px;
    }
    /* Banner */
    .banner {
        flex-direction: row;
        text-align: left;
        padding: 0px;
    }
    .bannerText {
        max-width: 100%;
        text-align: left;
    }
    .bannerText h2 {
        font-size: 32px;
        text-align: left;
    }
    .bannerText p {
        font-size: 18px;
        text-align: left;
    }
    /* Number Count Section */
    .numberCount {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        padding: 30px;
    }
    .numberCount a {
        font-size: 32px;
    }
    .numberCount p {
        font-size: 18px;
    }
    /* Upcoming Events */
    .upcomingEvents {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    .eventItem {
        width: 28%;
        /* 2 items per row */
        max-width: 500px;
    }
    .titleBox {
        font-size: 22px;
    }
    .dateBox {
        padding: 10px 35px;
        font-size: 14px;
    }
    .upcomingEvent {
        padding: 25px 35px;
    }
    .titleupcomingEvent h3 {
        font-size: 30px;
        text-align: left;
    }
    /* Banner Ahmed Matter */
    .bannerAhmedMatter {
        flex-direction: row;
        height: auto;
        padding: 20px;
    }
    .bannerleftside {
        padding-left: 20px;
        text-align: left;
    }
    .bannerleftside .date p {
        font-size: 42px;
    }
    .bannerleftside .name h2 {
        font-size: 30px;
    }
    .bannerleftside .year p {
        font-size: 22px;
    }
    .bannerrightside {
        width: 50%;
        height: auto;
        margin-top: 0;
    }
    /* Drive Your Soul Section */
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 32px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 26px;
    }
    .driveyoursoul .buttonDiscoverMoreDriveYourSoul button {
        padding: 16px 28px;
        font-size: 18px;
    }
    /* Covers */
    .COVER,
    .COVER1 {
        margin-left: 0;
        width: 100%;
        height: auto;
        padding: 20px;
    }
    .COVERAboutUs {
        left: 0;
        width: 100%;
        height: 70%;
        padding: 20px;
    }
    .COVERAboutUs .dateAboutUs p {
        font-size: 32px;
    }
    .COVERAboutUs .titleCoverAboutUs p {
        font-size: 24px;
    }
    .COVERAboutUs .timeAboutUs p {
        font-size: 18px;
    }
    .COVERAboutUs .dateCoverAboutUs p {
        font-size: 14px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 16px;
        padding: 10px 18px;
    }
    /* Photos & Events */
    .PhotoEventColumn {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .PhotoEventRow img {
        width: 100%;
        max-width: 450px;
        height: auto;
    }
    .PhotoEventRowLong p {
        font-size: 18px;
    }
    /* Past Exhibits */
    /* Lukum Container Title */
    /* Header Image */
    .imgHeader1 {
        position: relative;
        width: 100%;
        justify-content: center;
    }
}

/* 📱 Mobile (iPhone 375px and similar) */

@media (max-width: 1920px) and (min-width: 1367px) {
    .bannerDrivenYourSoul {
        height: 500px;
        gap: 60px;
    }
    .bannerleftsideDrivenYourSoul {
        height: 500px;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .PhotoEventColumn {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .bannerAhmedContainer {
        flex-direction: row;
        /* side by side */
        height: 500px;
        /* taller for big screens */
    }
    .banner-text h2 {
        font-size: 50px;
    }
    .banner-text .year {
        font-size: 50px;
    }
    .banner-text .date {
        font-size: 25px;
    }
    .pastExhibit {
        flex-direction: row;
        gap: 50px;
    }
    .pastExhibit .imgleft,
    .pastExhibit .imgright {
        max-width: 400px;
    }
    .pastExhibit .imgMiddle {
        max-width: 500px;
    }
    .pastExhibit .imgleft img,
    .pastExhibit .imgright img {
        height: 400px;
    }
    .pastExhibit .imgMiddle img {
        height: 550px;
    }
    .bannerAhmedContainer {
        flex-direction: row;
        /* side by side */
        height: 400px;
    }
    .banner-image {
        flex: 1;
    }
    .banner-text {
        flex: 1;
        padding: 40px;
        text-align: left;
    }
    .banner-text .date {
        font-size: 25px;
    }
    .banner-text h2 {
        font-size: 50px;
    }
    .banner-text .year {
        font-size: 50px;
    }
    .bannerrightsideDrivenYourSoul {
        width: 50%;
        padding: 20px;
        gap: 10px;
        text-align: left;
    }
    .bannerrightsideDrivenYourSoul .datebanner p {
        font-size: 30px;
    }
    .bannerrightsideDrivenYourSoul .namebanner h2 {
        font-size: 35px;
    }
    .bannerrightsideDrivenYourSoul .yearbanner p {
        font-size: 20px;
    }
    .bannerrightsideDrivenYourSoul .paragraphbanner p {
        font-size: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* Set the number of lines to show */
        -webkit-box-orient: vertical;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 15px;
        padding: 10px 20px;
    }
    .card {
        flex: 0 0 calc(33.33% - 13.3px);
        height: auto;
    }
    .slider-container {
        width: 100%;
    }
    .nav {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    .yearahmedmatter p {
        font-size: 60px;
    }
    .dateAhmedmaater p {
        font-size: 30px;
    }
    .ahmedHiglight {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .ContainerSlide1 {
        margin-top: 45px;
        justify-content: center;
    }
    .slider-container1,
    .slider-container {
        width: 95%;
        max-width: 100%;
        overflow: hidden;
    }
    .slider-track {
        gap: 18px;
    }
    .card {
        flex: 0 0 calc(33.33% - 12px);
        /* 3 cards visible */
        height: auto;
    }
    .card img {
        height: 100%;
        object-fit: cover;
    }
    /* Navigation buttons */
    .nav {
        width: 50px;
        height: 50px;
        font-size: 26px;
        background: rgba(0, 0, 0, 0.6);
    }
    .nav.prev {
        left: 15px;
    }
    .nav.next {
        right: 15px;
    }
    .ri-menu-line {
        display: block;
        /* hamburger visible by default */
        font-size: 26px;
        cursor: pointer;
        /* makes it clickable */
    }
    .ri-close-line {
        display: none;
        /* hidden by default */
        font-size: 26px;
        color: #000;
        cursor: pointer;
        z-index: 1001;
    }
    .MenuHeader ul {
        position: fixed;
        /* overlay content completely */
        top: 0;
        /* start from top of viewport */
        right: 0;
        width: 100%;
        height: 100vh;
        /* full screen */
        background: #f9f9f9;
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        /* space for header/logo */
        display: none;
        z-index: 999;
        /* above all content */
        overflow-y: auto;
        /* scroll if menu is taller than viewport */
    }
    /* Show menu */
    .MenuHeader ul.active {
        display: flex;
    }
    /* Menu items */
    .MenuHeader ul li {
        margin: 16px 0;
    }
    .MenuHeader ul li a {
        font-size: 18px;
        text-decoration: none;
        color: #fffafa;
    }
    .logo img {
        width: 130px;
    }
    .headerContainer {
        padding: 15px 20px;
    }
    .calendarContainer {
        flex-direction: column;
        align-items: center;
    }
    .monthsSidebar {
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .logo img {
        width: 100px;
    }
    .monthsSidebar li {
        border-left: none;
        border-bottom: 2px solid transparent;
    }
    .monthsSidebar li.active {
        border-bottom: 2px solid #000;
    }
    .imgWrapperCalender img {
        width: 80%;
    }
    .bannerAhmedContainer {
        flex-direction: column;
        /* stack for smaller tablets */
        height: auto;
    }
    .banner-text {
        text-align: center;
        padding: 30px;
    }
    .banner-text h2 {
        font-size: 36px;
    }
    .banner-text .year {
        font-size: 32px;
    }
    .banner-text .date {
        font-size: 20px;
    }
    .banner-image {
        height: 350px;
    }
    .pastExhibit {
        gap: 30px;
        padding: 60px 20px;
    }
    .pastExhibit p {
        font-size: 22px;
    }
    .pastExhibit .imgleft,
    .pastExhibit .imgright,
    .pastExhibit .imgMiddle {
        flex: 1 1 calc(50% - 30px);
        /* 2 columns */
        max-width: none;
    }
    .pastExhibit .imgleft img,
    .pastExhibit .imgright img,
    .pastExhibit .imgMiddle img {
        height: auto;
        max-height: 350px;
    }
    .bannerAhmedContainer {
        flex-direction: row;
        height: 300px;
    }
    .banner-text {
        padding: 30px;
    }
    .banner-text .date {
        font-size: 20px;
    }
    .banner-text h2 {
        font-size: 40px;
    }
    .banner-text .year {
        font-size: 40px;
    }
    .bannerrightsideDrivenYourSoul {
        width: 90%;
        padding: 15px;
        gap: 8px;
        text-align: center;
    }
    .bannerrightsideDrivenYourSoul .datebanner p {
        font-size: 16px;
    }
    .bannerrightsideDrivenYourSoul .namebanner h2 {
        font-size: 22px;
    }
    .bannerrightsideDrivenYourSoul .yearbanner p {
        font-size: 16px;
    }
    .bannerrightsideDrivenYourSoul .paragraphbanner p {
        font-size: 14px;
        line-height: 1.4;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 13px;
        padding: 8px 16px;
    }
    .imgHeaderAboutUs img {
        width: 250px;
        height: 250px;
    }
    .imgHeaderAboutUs1 img {
        width: 250px;
        height: 250px;
    }
    .COVERAboutUs {
        width: 100%;
        /* was 0% before, fixing */
        height: 80%;
        margin-left: 0px;
        gap: 15px;
        padding: 10px;
    }
    .COVERAboutUs .rightColumn {
        width: 100%;
        /* was 0% before, fixing */
    }
    .COVERAboutUs .titleCoverAboutUs p {
        font-size: 24px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        /* Set the number of lines to show */
        -webkit-box-orient: vertical;
    }
    .COVERAboutUs .timeAboutUs p {
        font-size: 16px;
    }
    .COVERAboutUs .dateCoverAboutUs p {
        font-size: 12px;
    }
    .COVERAboutUs .dateAboutUs p {
        font-size: 32px;
    }
    .HiglihtAhmedMatter h4,
    .HiglihtAhmedMatter h4 span {
        font-size: 40px;
    }
    .HiglihtAhmedMatter button {
        font-size: 20px;
        padding: 15px 25px;
    }
    .Space {
        height: 50vh;
        width: 100%;
    }
    .nameSpace {
        position: relative;
        z-index: 2;
        margin: 5px 0;
    }
    .nameSpace p {
        font-size: 30px;
        margin: 0;
    }
    .nameSpace p span {
        font-weight: 600;
    }
    .CollectionSpace p {
        font-size: 20px;
    }
    .CollectionSpace p {
        font-size: 20px;
        padding: 10px 20px;
    }
    .SpaceVENUMContent {
        gap: 20px;
    }
    .LeftText p {
        font-size: 16px;
        margin-bottom: 50px;
    }
    .imgRightSpaceVenum img {
        width: 80%;
    }
    /* Title */
    .titlePreviousEventWrapper {
        margin-left: 90px;
    }
    .titlePreviousEventWrapper h4 {
        font-size: 28px;
        padding-top: 70px;
    }
    /* Columns */
    .ColumnContainer {
        display: grid;
        /* use grid layout */
        grid-template-columns: repeat(2, 1fr);
        /* 4 equal columns per row */
        gap: 20px;
        /* space between images */
        width: 100%;
        justify-items: center;
        /* centers items horizontally in their column */
        align-items: start;
        /* aligns items to the top */
        padding: 20px 0;
    }
    .PhotoEventColumn {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding-top: 30px;
    }
    /* Rows (images + text) */
    .PhotoEventRow img,
    .PhotoEventRow1 img,
    .PhotoEventRow11 img,
    .PhotoEventRow111 img,
    .PhotoEventRow2 img,
    .PhotoEventRow222 img,
    .PhotoEventRow33 img {
        width: 300px;
        height: 300px;
        max-width: 100%;
        object-fit: cover;
    }
    /* Text + icons */
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .MenuFooter ul {
        flex-direction: column;
        gap: 20px;
        line-height: 30px;
    }
    .footer-logo p {
        max-width: 100%;
    }
    .MenuFooter a {
        text-decoration: none;
        color: #000;
        cursor: pointer;
        font-size: 18px;
    }
    .upcomingEventAboutUsPage {
        width: 380px;
    }
    .COVERAboutUsPageLukum {
        width: 85%;
        padding: 12px;
        gap: 12px;
    }
    .titleCoverAboutUsLakum p {
        font-size: 28px;
    }
    .pnumber {
        font-size: 50px;
    }
    .driveyoursoul {
        padding: 30px 15px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 36px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 26px;
    }
    .titleLandingPage h4 {
        font-size: 55px;
    }
    .buttonLandingPage button {
        font-size: 25px;
        padding: 18px 40px;
    }
    .COVERAboutUs1 {
        padding: 8px 10px;
    }
    .COVERAboutUs1 .dateAboutUs p {
        font-size: 15px;
    }
    .COVERAboutUs1 .dateAboutUs .pnumber {
        font-size: 22px;
    }
    .COVERAboutUs1 .titleCoverAboutUs p {
        font-size: 17px;
    }
    .COVERAboutUs1 .timeAboutUs p {
        font-size: 13px;
    }
    .COVERAboutUs1 .dateCoverAboutUs p {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        /* prevent horizontal scroll */
    }
    .nameSpace {
        position: relative;
        z-index: 2;
        margin: 5px 0;
        padding: 0;
        /* remove extra padding */
    }
    .ColumnContainer {
        display: grid;
        /* use grid layout */
        grid-template-columns: repeat(2, 1fr);
        /* 4 equal columns per row */
        gap: 20px;
        /* space between images */
        width: 100%;
        justify-items: center;
        /* centers items horizontally in their column */
        align-items: start;
        /* aligns items to the top */
        padding: 20px 0;
    }
    .nameSpace p {
        font-size: 30px;
        margin: 0;
    }
    .nameSpace p span {
        font-weight: 600;
    }
    .headerContainer {
        padding: 12px 16px;
    }
    /* Logo smaller */
    .logo a {
        font-size: 22px;
    }
    .logo p {
        font-size: 12px;
    }
    /* Hide menu by default */
    .headerContainer .MenuHeader ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff5e6;
        padding: 15px 0;
        margin: 0;
        /* remove margin */
        border-radius: 0px;
        gap: 5px;
        z-index: 1000;
    }
    /* Show menu when active via JS */
    .MenuHeader ul.active {
        display: flex;
    }
    /* Hamburger / close icons */
    .ri-menu-line,
    .ri-close-line {
        display: block;
    }
    /* Menu items styling */
    .MenuHeader ul li {
        list-style: none;
        text-align: center;
        margin: 0;
        /* remove margin */
    }
    .MenuHeader ul li a {
        font-size: 16px;
        color: #000;
        text-decoration: none;
        display: block;
        width: 100%;
        padding: 8px 0;
        margin: 0;
        /* remove margin */
    }
    /* Banner adjustments */
    .bannerAhmedContainer {
        flex-direction: column;
        height: auto;
        padding: 0;
        /* remove left space */
        margin: 0;
        /* remove left space */
    }
    .banner-image {
        width: 100%;
        height: auto;
    }
    .banner-text {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        /* remove horizontal padding */
    }
    .banner-text h2 {
        font-size: 36px;
    }
    .banner-text .year {
        font-size: 32px;
    }
    .banner-text .date {
        font-size: 20px;
    }
    .SpaceVENUMContent {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        /* remove left space */
        margin: 0;
        /* remove left space */
    }
    .LeftText,
    .imgRightSpaceVenum {
        min-width: 100%;
        padding: 0;
        margin: 0;
    }
    .LeftText p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .imgRightSpaceVenum img {
        width: 100%;
    }
    .MenuHeader ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #f6f6eb;
        position: absolute;
        top: 60px;
        left: 0;
        /* changed from right:10% to left:0 to fix spacing */
        width: 100%;
        /* full width */
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .ri-menu-line {
        display: block;
    }
    .LukumContiner .title h4 {
        margin-left: 0;
        font-size: 24px;
        text-align: center;
    }
    /* Container adjustments */
    .pastExhibitLukum {
        display: flex;
        flex-wrap: wrap;
        /* allows wrapping if needed */
        gap: 30px;
        /* smaller gap for laptops */
        margin-left: 80px;
        justify-content: flex-start;
    }
    /* Each blog/image box */
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgright,
    .pastExhibitLukum .imgMiddle {
        flex: 1 1 30%;
        /* 3-column layout */
        max-width: 300px;
        /* prevents oversized blocks */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Images */
    .pastExhibitLukum img {
        width: 100%;
        height: 500px;
        /* proportional to laptop screen */
        object-fit: cover;
        border-radius: 8px;
    }
    .pastExhibitLukum p {
        font-size: 16px;
        margin-left: 0;
        margin-right: 0;
    }
    .footer-logo img {
        width: 80px;
    }
    .footer-logo h2 {
        font-size: 20px;
    }
    .MenuFooter ul {
        flex-direction: column;
        gap: 8px;
        padding: 0;
        margin: 0;
    }
    .MenuFooter a {
        font-size: 13px;
    }
    .social-icons a {
        font-size: 18px;
        margin: 0 6px;
    }
    .footer-bottom {
        font-size: 12px;
    }
    .COVERAboutUsPageLukum {
        width: 100%;
        /* changed from 95% to 100% */
        padding: 10px;
        gap: 10px;
        margin: 0;
        /* remove left spacing */
    }
}

@media (max-width: 820px) {
    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        /* prevent horizontal scroll */
    }
    .flex-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    /* Title */
    .LukumContiner .title h4 {
        margin-left: 0;
        font-size: 24px;
        text-align: center;
    }
    .ContainerSlide1 {
        margin-top: 40px;
        justify-content: center;
    }
    .slider-container1,
    .slider-container {
        width: 95%;
        max-width: 100%;
        overflow: hidden;
    }
    .slider-track {
        gap: 18px;
    }
    #generic_price_table {
        padding: 60px 50px;
    }
    .top-row {
        flex-wrap: nowrap;
    }
    .card {
        flex: 0 0 calc(50% - 9px);
        /* show 2 cards */
        height: auto;
    }
    .card img {
        height: 100%;
        object-fit: cover;
    }
    /* Navigation buttons */
    .nav {
        width: 50px;
        height: 50px;
        font-size: 26px;
        background: rgba(0, 0, 0, 0.6);
    }
    .nav.prev {
        left: 12px;
    }
    .nav.next {
        right: 12px;
    }
    /* Container */
    /* Container adjustments */
    /* Text under images */
    .pastExhibitLukum p,
    .pastExhibitLukum .imgMiddle p {
        font-size: 18px;
        text-align: center;
        margin-top: 10px;
    }
    .upcomingEventAboutUsPage {
        width: 320px;
    }
    .titleCoverAboutUsLakum p {
        font-size: 24px;
    }
    .pnumber {
        font-size: 45px;
    }
    .COVERAboutUsPageLukum {
        flex-direction: column;
        align-items: flex-start;
        width: 95%;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 32px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 24px;
    }
    .banner {
        flex-direction: column;
        /* Stack image and text vertically */
        align-items: flex-start;
        /* Align text to left */
        justify-content: center;
        padding: 40px 30px;
        /* Reduce padding for tablet size */
        gap: 35px;
    }
    .bannerText p {
        font-size: 20px;
        /* Readable size for 820px width */
        width: 100%;
        /* Use full width */
        padding-left: 0;
        line-height: 1.5;
        text-align: left;
    }
    .banner .bannerImage {
        width: 100%;
        height: auto;
        /* Adjust image naturally */
    }
    .banner .bannerImage img {
        width: 100%;
        height: auto;
        /* Keep proper proportions */
        object-fit: cover;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 14px;
        padding: 8px 16px;
    }
    .titleLandingPage h4 {
        font-size: 45px;
        text-align: center;
    }
    .buttonLandingPage button {
        font-size: 22px;
        padding: 16px 35px;
        display: block;
        margin: 20px auto;
    }
    .previousEventContainer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 10px;
    }
    .PhotoEventColumn {
        width: 100%;
        max-width: 340px;
        /* keeps it centered and not too wide */
        gap: 15px;
    }
    .PhotoEventRow img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .PhotoEventRow p {
        font-size: 0.9rem;
        text-align: center;
    }
    .imgHeaderLakum img {
        height: 600px;
    }
    .previousEventContainer {
        padding: 20px 10px;
        gap: 20px;
    }
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 28px;
    }
    .buttonLandingPage button {
        font-size: 14px;
        padding: 10px 25px;
    }
    .titleForOurClient {
        margin-left: 60px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .titleForOurClient h4 {
        font-size: 20px;
    }
    /* ========== HEADER ========== */
    .headerContainer {
        padding: 15px 30px;
        justify-content: space-between;
    }
    .logo img {
        width: 120px;
    }
    .MenuHeader ul {
        gap: 12px;
    }
    .MenuHeader ul li a {
        font-size: 14px;
    }
    .ri-menu-line {
        display: block;
        font-size: 22px;
        cursor: pointer;
    }
    .ri-close-line {
        display: none;
    }
    /* ========== BANNER SECTION ========== */
    /* ========== ABOUT US ========== */
    .aboutUs {
        flex-direction: column;
        /* stack text and image vertically */
        align-items: center;
        gap: 20px;
        margin-left: 0;
        /* remove left margin for small screens */
        padding: 0 20px;
        /* optional: add some side padding */
    }
    .textAboutUs {
        max-width: 100%;
        text-align: center;
        /* center text */
    }
    .titleAboutUs h4 {
        font-size: 24px;
        /* slightly smaller for mobile */
    }
    .paragraphAboutUs p {
        font-size: 18px;
        /* scale text down */
        line-height: 1.6;
    }
    .imgAboutUs img {
        width: 100%;
        /* make image full width */
        margin-right: 0;
        /* remove right margin */
        border-radius: 10px;
        /* optional: add rounding for style */
    }
    /* ========== DRIVE YOUR SOUL ========== */
    .driveyoursoul {
        padding: 50px 20px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 22px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 16px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        padding: 10px 20px;
        font-size: 14px;
    }
    /* ========== UPCOMING EVENTS ========== */
    .upcomingEvents {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 40px 20px;
    }
    .eventItem {
        width: 100%;
        max-width: 400px;
    }
    .eventItem img {
        height: 200px;
        border-radius: 0px;
    }
    .titleBox {
        font-size: 16px;
    }
    .dateBox {
        font-size: 12px;
    }
    /* ========== PAST EXHIBIT ========== */
    .pastExhibitLukum {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 20px;
    }
    .pastExhibitLukum img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    .pastExhibitLukum p,
    .pastExhibitLukum .imgMiddle p {
        font-size: 16px;
    }
    .pastExhibitLukum .title h4 {
        font-size: 18px;
    }
    /* ========== PHOTO EVENTS ========== */
    .PhotoEventColumn {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .PhotoEventRow img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    .PhotoEventRow p,
    p {
        font-size: 15px;
    }
    /* ========== FOOTER ========== */
    .footer-container {
        padding: 40px 20px;
        text-align: center;
    }
    .footer-logo img {
        width: 100px;
    }
    .footer-logo p,
    .MenuFooter ul li {
        font-size: 12px;
    }
    .social-icons i {
        font-size: 16px;
        margin-right: 8px;
    }
    /* ========== LANDING PAGE ========== */
    .LandingPageCover {
        height: 75vh;
        padding: 0 20px;
    }
    .titleLandingPage h4 {
        font-size: 24px;
    }
    .buttonLandingPage button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ==================== Laptop Width 1267.5px ==================== */

@media (min-width: 768px) and (max-width: 1023px) {
    .card {
        flex: 0 0 calc(50% - 10px);
        height: auto;
    }
    .slider-container {
        width: 95%;
    }
    .nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    .nameAhmedmatter p {
        font-size: 40px;
    }
    .yearahmedmatter p {
        font-size: 20px;
    }
    .dateAhmedmaater p {
        font-size: 18px;
    }
    .ahmedHiglight {
        font-size: 16px;
    }
    .CollectionSpace p {
        font-size: 18px;
        padding: 8px 18px;
    }
    .Space {
        height: 45vh;
    }
    .CollectionSpace p {
        font-size: 18px;
        padding: 8px 18px;
    }
}

@media (max-width: 767px) {
    .upcomingContianerAboutUs {
        margin: 40px 20px;
        gap: 20px;
    }
    .ComingEventContainerAboutUsPage {
        max-width: 100%;
    }
    .COVERAboutUsPageLukum {
        width: 100%;
        flex-direction: column;
        padding: 10px;
        bottom: 0;
        left: 0;
    }
    .COVERAboutUsPageLukum .leftColumnPage {
        flex-direction: row;
        justify-content: flex-start;
        min-width: 50px;
        gap: 8px;
    }
    .COVERAboutUsPageLukum .leftColumnPage .dateAboutUs p {
        font-size: 20px;
    }
    .COVERAboutUsPageLukum .leftColumnPage .dateAboutUs .pnumber {
        font-size: 36px;
    }
    .COVERAboutUsPageLukum .rightColumnPage .titleCoverAboutUsLakum p {
        font-size: 18px;
    }
    .COVERAboutUsPageLukum .rightColumnPage .timeAboutUsLAKUM p {
        font-size: 14px;
    }
    .COVERAboutUsPageLukum .rightColumnPage .dateCoverAboutUsLAKUM p {
        font-size: 12px;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    /* Title adjustments */
    .LukumContiner .title h4 {
        margin-top: 50px;
        margin-left: 80px;
        /* smaller than desktop margin */
        font-size: 28px;
    }
    .card {
        flex: 0 0 calc(33.33% - 13.3px);
        height: auto;
    }
    /* Container adjustments */
    .pastExhibitLukum {
        display: flex;
        flex-wrap: wrap;
        /* allows wrapping if needed */
        gap: 30px;
        /* smaller gap for laptops */
        margin-left: 0px;
        justify-content: center;
    }
    /* Each blog/image box */
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgright,
    .pastExhibitLukum .imgMiddle {
        flex: 1 1 30%;
        /* 3-column layout */
        max-width: 300px;
        /* prevents oversized blocks */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Images */
    .pastExhibitLukum img {
        width: 100%;
        height: 500px;
        /* proportional to laptop screen */
        object-fit: cover;
        border-radius: 8px;
    }
    /* Text under images */
    .pastExhibitLukum p,
    .pastExhibitLukum .imgMiddle p {
        font-size: 18px;
        text-align: center;
        margin-top: 10px;
    }
    .upcomingContianerAboutUs {
        display: flex;
        flex-direction: row;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .previousEventContainer {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
    }
    .PhotoEventColumn {
        max-width: 400px;
    }
    .PhotoEventRow img {
        max-width: 100%;
    }
    .PhotoEventRow p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .upcomingContianer {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    .upcomingEventAboutUs {
        flex: 1 1 45%;
        /* 2 columns */
        max-width: 100%;
        margin-left: -200px;
    }
    .imgHeaderAboutUs img {
        width: 100%;
        height: auto;
    }
    .COVERAboutUs1 {
        left: 0;
        background-color: #f6f6eb70;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .upcomingContianer {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
    .imgHeaderAboutUs img {
        width: 100%;
        height: auto;
    }
    .COVERAboutUs1 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-left: 0;
        padding: 10px;
        flex-direction: column;
        /* stack date + info */
        align-items: flex-start;
    }
    .COVERAboutUs1 .leftColumn {
        padding-left: 10px;
        align-items: flex-start;
    }
    .COVERAboutUs1 .dateAboutUs p {
        font-size: 20px;
    }
    .COVERAboutUs1 .dateAboutUs .pnumber {
        font-size: 32px;
    }
    .upcomingContianerAboutUs {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .upcomingEventAboutUsPage {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .COVERAboutUsPageLukum {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px;
    }
    .leftColumnPage {
        text-align: left;
    }
    .dateAboutUs p {
        font-size: 14px;
    }
    .dateAboutUs .pnumber {
        font-size: 22px;
    }
    .titleCoverAboutUsLakum p {
        font-size: 16px;
    }
    .timeAboutUsLAKUM p,
    .dateCoverAboutUsLAKUM p {
        font-size: 12px;
    }
    .buttonDiscoverMoreDriveYourSoulComing button {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ---------- Responsive: Tablets & Mobiles (≤1024px) ---------- */

@media (max-width: 1200px) {
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 23px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 18px;
    }
    .driveyoursoul .buttonDiscoverMoreDriveYourSoul button {
        padding: 9px 18px;
        font-size: 14px;
    }
}

@media (max-width: 1866px) {
    .aboutUs {
        padding: 30px;
    }
    .titleAboutUs h4 {
        font-size: 24px;
    }
    .paragraphAboutUs p {
        font-size: 17px;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    /* Title adjustments */
    .ri-menu-line {
        display: none;
    }
}

@media (max-width: 1024px) {
    .Menu {
        display: none;
        /* hidden by default */
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #f9f9f9;
        padding: 15px 0;
        z-index: 10;
    }
    .aboutUs {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 60px 50px;
        gap: 30px;
    }
    .Menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    /* Show hamburger on iPad & smaller */
    .ri-menu-line {
        display: block;
    }
    .ri-close-line {
        display: none;
    }
    /* Show menu when active */
    .Menu.active {
        display: block;
    }
    .ri-close-line.active {
        display: block;
    }
    .ri-menu-line.hide {
        display: none;
    }
    #generic_price_table {
        padding: 60px 100px;
    }
    .top-row,
    .bottom-row {
        flex-wrap: nowrap;
    }
    .top-row .generic_content {
        width: 48%;
    }
    .bottom-row .generic_content {
        width: 48%;
    }
    .bottom-row {
        justify-content: center;
        /* center bottom row */
        gap: 30px;
        /* space between the two cards */
    }
    .textAboutUs {
        max-width: 100%;
    }
    .titleAboutUs h4 {
        font-size: 26px;
    }
    .paragraphAboutUs p {
        width: 100%;
        font-size: 18px;
    }
    .imgAboutUs img {
        width: 100%;
        padding-top: 30px;
    }
    .banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 10px;
    }
    .bannerText,
    .bannerImage {
        max-width: 100%;
    }
    .bannerText h2 {
        font-size: 28px;
    }
    .bannerText p {
        font-size: 20px;
    }
    .imgHeaderLakum img {
        height: 600px;
        /* smaller image height */
    }
    .COVERLAKUM {
        width: 40%;
        /* slightly wider overlay */
        padding: 15px;
    }
    .COVERLAKUM .titleCOVERLAKUM p {
        font-size: 50px;
        max-width: 250px;
        margin-left: 20px;
    }
    .COVERLAKUM .date p {
        font-size: 25px;
        margin-left: 20px;
        margin-top: -20px;
    }
    .COVERLAKUM .paragraphCOVERLAKUM p {
        font-size: 20px;
        margin-left: 15px;
        padding: 0 8px;
    }
    .buttonDiscoverMoreLAKUMLEFT {
        bottom: 60px;
        left: 15px;
        width: 250px;
    }
    .buttonDiscoverMoreLAKUMLEFT button {
        font-size: 24px;
        padding: 15px 10px;
    }
    .numberCount {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
        grid-template-rows: auto auto;
        /* 2 rows */
        gap: 30px;
        padding: 40px 30px;
    }
    /* make first column stack items 1+2, second column 3+4 */
    .numberCount>div:nth-child(1),
    .numberCount>div:nth-child(3) {
        grid-column: 1;
    }
    .numberCount>div:nth-child(2),
    .numberCount>div:nth-child(4) {
        grid-column: 2;
    }
    .numberCount a {
        font-size: 30px;
    }
    .numberCount p {
        font-size: 16px;
    }
    .bannnerArtPaceGallary .Higlight {
        font-size: 36px;
    }
    .bannnerArtPaceGallary p:not(.Higlight) {
        font-size: 20px;
    }
    .scrollTrack img {
        height: 50px;
    }
    .upcomingEvents {
        flex-direction: column;
        align-items: center;
    }
    .eventItem {
        width: 90%;
        /* use most of screen */
        max-width: 500px;
        /* but not too large */
    }
    .titleBox {
        font-size: 20px;
    }
    .dateBox {
        padding: 5px 30px;
        /* smaller date box */
        font-size: 12px;
    }
    .upcomingEvent {
        padding: 20px 40px;
    }
    .titleupcomingEvent h3 {
        font-size: 28px;
        text-align: center;
    }
    .upcomingEvents {
        gap: 15px;
        /* slightly smaller gap */
    }
    .upcomingEventslAKUM {
        gap: 15px;
        display: flex;
        flex-direction: column;
        /* slightly smaller gap */
    }
    .eventItem {
        flex: 1 1 45%;
        /* 2 items per row if space allows */
        max-width: 500px;
    }
    .titleBox {
        font-size: 22px;
    }
    .dateBox {
        padding: 5px 40px;
        font-size: 13px;
    }
    .COVER {
        margin-left: 200px;
        /* reduce margin */
        width: calc(100% - 200px);
    }
    .pastExhibit {
        padding-left: 50px;
        gap: 30px;
    }
    .pastExhibit p {
        font-size: 24px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 30px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 25px;
    }
    .driveyoursoul .buttonDiscoverMoreDriveYourSoul button {
        padding: 15px 25px;
        font-size: 18px;
    }
    .upcomingEventAboutUs {
        padding: 20px 50px;
    }
    .upcomingEventAboutUs1 {
        padding: 20px 50px;
    }
    .imgHeaderAboutUs img {
        width: 100%;
        height: 300px;
    }
    .COVERAboutUs {
        left: 0;
        width: 100%;
        height: 70%;
        padding: 15px 20px;
    }
    .COVERAboutUs .dateAboutUs p {
        font-size: 30px;
    }
    .COVERAboutUs .titleCoverAboutUs p {
        font-size: 22px;
    }
    .COVERAboutUs .timeAboutUs p {
        font-size: 16px;
    }
    .COVERAboutUs .dateCoverAboutUs p {
        font-size: 12px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 14px;
        padding: 8px 15px;
    }
    .bannerleftsideDrivenYourSoul,
    .bannerrightsideDrivenYourSoul {
        width: 100%;
        /* stack vertically */
    }
    .bannerleftsideDrivenYourSoul {
        height: 380px;
    }
    .bannerrightsideDrivenYourSoul .datebanner p {
        font-size: 24px;
    }
    .bannerrightsideDrivenYourSoul .namebanner h2 {
        font-size: 20px;
    }
    .bannerrightsideDrivenYourSoul .yearbanner p {
        font-size: 18px;
    }
    .upComingExhibitions .titleExhibitions h4 {
        margin-left: 50px;
    }
    .upcomingEventAboutUs {
        padding: 20px 50px;
    }
    .upcomingEventAboutUs1 {
        padding: 20px 50px;
    }
    .COVER {
        margin-left: -400px;
        /* remove margin for small screens */
        width: 100%;
        /* full width */
        height: auto;
        /* adjust height */
        padding: 15px 20px;
        background: #ffffff77;
    }
    .COVER1 {
        margin-left: -400px;
        /* remove margin for small screens */
        width: 100%;
        /* full width */
        height: auto;
        /* adjust height */
        padding: 15px 20px;
        background: #ffffff77;
    }
    .COVERAboutUs {
        left: 0;
        width: 100%;
        height: 70%;
        padding: 15px 20px;
    }
    .COVERAboutUs .dateAboutUs p {
        font-size: 30px;
    }
    .COVERAboutUs .titleCoverAboutUs p {
        font-size: 22px;
    }
    .COVERAboutUs .timeAboutUs p {
        font-size: 16px;
    }
    .COVERAboutUs .dateCoverAboutUs p {
        font-size: 12px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 14px;
        padding: 8px 15px;
    }
    .titleYourown h4 {
        font-size: 2.5rem;
    }
    .buttonDiscoverMoreYourown button {
        font-size: 1rem;
        padding: 10px 24px;
    }
    .MenuFooter {
        display: flex;
        margin-top: 20px;
        flex-wrap: wrap;
        max-width: 150px;
        text-align: center;
    }
    .MenuFooter ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .MenuFooter li {
        margin: 8px 0;
        font-size: 16px;
        cursor: pointer;
        color: #000;
    }
    .nameAhmedmatter p {
        font-size: 40px;
    }
    .yearahmedmatter p {
        font-size: 20px;
    }
    .ahmedHiglight {
        font-size: 16px;
        line-height: 1.5;
        margin: 30px auto;
    }
    .COVERLAKUM {
        width: 45%;
        /* make overlay wider */
        height: 80%;
        padding: 15px 20px;
    }
    .COVERLAKUM .titleCOVERLAKUM p {
        font-size: 26px;
    }
    .COVERLAKUM .date p {
        font-size: 18px;
    }
    .COVERLAKUM .paragraphCOVERLAKUM p {
        font-size: 16px;
        padding-left: 20px;
    }
    .buttonDiscoverMoreLAKUM {
        position: absolute;
        /* stack inside the cover instead of absolute */
        margin-top: 20px;
        text-align: center;
    }
    .buttonDiscoverMoreLAKUM button {
        font-size: 16px;
        padding: 8px 16px;
        color: #333;
        /* adjust for readability */
        border-color: #333;
    }
    .buttonDiscoverMoreLAKUMLEFT {
        position: absolute;
        /* stack inside the cover instead of absolute */
        margin-top: 20px;
        text-align: center;
    }
    .buttonDiscoverMoreLAKUMLEFT button {
        font-size: 16px;
        padding: 8px 16px;
        color: #333;
        /* adjust for readability */
        border-color: #333;
    }
    .titlePreviousEventContainer h4 {
        font-size: 26px;
        margin-left: 0px;
        padding-top: 50px;
    }
    .hrLine {
        display: none;
    }
    .hrLine hr {
        width: 80%;
    }
    .PhotoEventColumn {
        flex-direction: column;
        /* stack events vertically */
        padding-left: 20px;
        gap: 30px;
    }
    .PhotoEventRow img {
        width: 100%;
        /* full width of container */
        height: auto;
        max-width: 500px;
    }
    .PhotoEventRow {
        position: relative;
    }
    .PhotoEventRow p {
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }
    /* Move the arrow inside the paragraph on left */
    .PhotoEventColumn i {
        position: static;
        /* remove absolute positioning */
        margin-left: 0;
        color: #000;
        /* adjust color if needed */
    }
    .titlePreviousEventContainer h4 {
        font-size: 28px;
    }
    .hrLine {
        margin-left: 50px;
    }
    .previousEventContainer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .PhotoEventColumn {
        padding-left: 20px;
        gap: 30px;
    }
    .PhotoEventRow img {
        height: auto;
        width: 90%;
    }
    .calendarContainer {
        flex-direction: column;
        align-items: center;
    }
    .monthsSidebar {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin-bottom: 20px;
    }
    .monthsSidebar li {
        border-left: none;
        border-bottom: 2px solid transparent;
    }
    .monthsSidebar li.active {
        border-bottom: 2px solid #000;
    }
    .eventsList {
        width: 100%;
    }
    .PhotoEventColumn {
        flex: 1 1 45%;
        max-width: 600px;
    }
    .pastExhibitLukum {
        flex-direction: row;
        /* keep row layout */
        flex-wrap: nowrap;
        /* allow wrapping to next line */
        justify-content: center;
        /* reduce padding */
        gap: 20px;
        /* space between images */
    }
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgMiddle,
    .pastExhibitLukum .imgright {
        flex: 1 1 45%;
        /* two images per row approx */
        max-width: 45%;
    }
    .pastExhibitLukum .imgleft img,
    .pastExhibitLukum .imgMiddle img,
    .pastExhibitLukum .imgright img {
        width: 100%;
        height: auto;
    }
    .pastExhibitLukum p {
        font-size: 17px;
        /* slightly smaller text */
    }
    .LukumContiner .title h4 {
        font-size: 24px;
        margin-left: 0px;
        /* shrink margin */
        text-align: center;
    }
    .imgHeader1 {
        position: relative;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .previousEventContainer {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
        padding: 20px;
    }
    .PhotoEventColumn {
        max-width: 400px;
    }
    .PhotoEventRow img {
        max-width: 100%;
    }
    .PhotoEventRow p {
        font-size: 0.9rem;
    }
    .HiglihtAhmedMatter h4,
    .HiglihtAhmedMatter h4 span {
        font-size: 30px;
    }
    .HiglihtAhmedMatter button {
        font-size: 18px;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .dateBoxCalender {
        padding: 10px 20px;
        font-size: 14px;
    }
    .titleBox {
        font-size: 16px;
    }
    .COVERCalender {
        width: 90%;
        padding: 10px 15px;
    }
    .COVERCalender .titleCalender {
        font-size: 18px;
    }
    .COVERCalender .dateCalender p {
        font-size: 18px;
    }
    .upcomingContianerAboutUs {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .COVERAboutUsPageLukum {
        width: 95%;
        padding: 10px;
        gap: 10px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    .card {
        flex: 0 0 100%;
        height: auto
    }
    .slider-container {
        width: 100%;
    }
    .nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .nameAhmedmatter p {
        font-size: 30px;
    }
    .yearahmedmatter p {
        font-size: 18px;
    }
    .dateAhmedmaater p {
        font-size: 16px;
    }
    .ahmedHiglight {
        font-size: 16px;
        padding: 0 15px;
    }
    .HiglihtAhmedMatter h4,
    .HiglihtAhmedMatter h4 span {
        font-size: 24px;
    }
    .HiglihtAhmedMatter button {
        font-size: 16px;
        padding: 10px 18px;
    }
}

/* Small tablets & mobiles (≤810px) */

/* -------------------- Tablet Devices (600px – 1024px) -------------------- */

@media (min-width: 600px) and (max-width: 1024px) {
    .previousEventContainer {
        flex-direction: column;
        /* stack columns */
        align-items: center;
        /* center content */
        gap: 20px;
        /* space between columns */
        padding: 20px 15px;
        /* smaller padding for tablet */
    }
    .PhotoEventColumn {
        width: 100%;
        /* full width */
        max-width: 360px;
        /* prevent too wide */
        display: flex;
        flex-direction: column;
        /* stack rows vertically */
        gap: 15px;
        /* spacing between rows */
        align-items: center;
        /* center content */
    }
    .PhotoEventRow {
        width: 100%;
        /* full width inside column */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .PhotoEventRow img {
        width: 100%;
        /* image fills row */
        max-width: 340px;
        /* limit image width */
        border-radius: 10px;
        margin: 0 auto;
    }
    .PhotoEventRow p {
        font-size: 0.9rem;
        /* readable on tablet */
        text-align: center;
        margin-top: 8px;
    }
}

/* iPad Responsive */

@media (min-width: 768px) and (max-width: 1024px) {
    .upcomingEventCalender {
        padding: 20px 50px;
        flex-direction: column;
        align-items: center;
    }
    .imgHeader1Calender {
        width: 100%;
        max-width: 700px;
        position: relative;
    }
    .COVERCalender {
        position: absolute;
        bottom: 0;
        left: 0;
        /* date on left */
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        border-radius: 10px 0 0 10px;
    }
    .ROWdate {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }
    .COVERCalender .dateCalender p {
        font-size: 30px;
    }
    .titledriveyoursoul h4 {
        font-size: 22px;
    }
    .higlightdriveyoursoul p {
        font-size: 16px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 14px;
        padding: 9px 18px;
    }
}

@media (max-width: 768px) {
    /* Upcoming Event */
    .upcomingEvent {
        padding: 20px 30px;
    }
    .ContainerSlide1 {
        margin-top: 40px;
        justify-content: center;
    }
    .slider-container1,
    .slider-container {
        width: 95%;
        max-width: 100%;
        overflow: hidden;
    }
    .slider-track {
        gap: 15px;
    }
    .card {
        flex: 0 0 calc(50% - 7.5px);
        /* 2 cards visible */
        height: auto;
    }
    .card img {
        height: 100%;
        object-fit: cover;
    }
    /* Navigation buttons */
    .nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
        background: rgba(0, 0, 0, 0.6);
    }
    .nav.prev {
        left: 10px;
    }
    .nav.next {
        right: 10px;
    }
    .titleupcomingEvent h3 {
        font-size: 25px;
        text-align: center;
    }
    .eventItem {
        flex: 1 1 90%;
        max-width: 500px;
    }
    .titleBox {
        font-size: 16px;
        /* unified with later duplicate */
    }
    .dateBox {
        padding: 5px 30px;
        font-size: 12px;
    }
    .dateBoxCalender {
        padding: 10px 15px;
        font-size: 14px;
    }
    .banner {
        flex-direction: column;
        /* Stack text and image vertically */
        align-items: flex-start;
        /* Align text to the left */
        justify-content: center;
        padding: 30px 20px;
        /* Reduce padding */
        gap: 30px;
    }
    .bannerText p {
        font-size: 18px;
        /* Smaller text for readability */
        width: 100%;
        /* Allow full width */
        padding-left: 0;
        text-align: left;
    }
    .banner .bannerImage {
        width: 100%;
        height: auto;
        /* Let the image adjust naturally */
    }
    .banner .bannerImage img {
        width: 100%;
        height: auto;
        /* Prevent image distortion */
        object-fit: cover;
    }
    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .footer-logo p {
        margin: auto;
    }
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
    .MenuFooter ul {
        justify-content: center;
    }
    /* Past Exhibit */
    .pastExhibit {
        flex-direction: column;
        /* stack images */
        padding-left: 0;
        padding-top: 50px;
        gap: 20px;
        align-items: center;
    }
    .pastExhibit p {
        font-size: 20px;
    }
    .pastExhibit .imgleft,
    .pastExhibit .imgMiddle,
    .pastExhibit .imgright {
        max-width: 90%;
    }
    /* Your Own */
    .ContainerYourown {
        height: 70vh;
        /* shorter height for mobile */
        width: 97%;
        padding: 15px;
    }
    .titleYourown h4 {
        font-size: 2rem;
    }
    .buttonDiscoverMoreYourown button {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    /* Previous Event */
    .titlePreviousEventContainer h4 {
        margin-left: 20px;
        font-size: 24px;
    }
    .hrLine {
        margin-left: 20px;
        margin-top: 10px;
        width: 50%;
    }
    .PhotoEventColumn {
        flex-direction: column;
        padding-left: 10px;
        gap: 20px;
    }
    .PhotoEventColumn i {
        display: inline;
        font-size: 12px;
        color: #000;
    }
    .PhotoEventRow img {
        width: 100%;
        height: auto;
    }
    .PhotoEventColumn p {
        font-size: 16px;
    }
    /* Calendar */
    .imgWrapperCalender img {
        width: 90%;
    }
    #generic_price_table {
        padding: 60px 50px;
    }
    .top-row,
    .bottom-row {
        flex-direction: column;
    }
    .top-row .generic_content,
    .bottom-row .generic_content {
        width: 100%;
    }
    .ExploreCoverLakum {
        height: 70vh;
        width: 95%;
        padding: 0 20px;
    }
    .CoverImageLakum h4 {
        font-size: 30px;
    }
    .CoverImage button {
        padding: 10px 22px;
        font-size: 1rem;
    }
    .upcomingContianer {
        display: flex;
        flex-direction: column;
    }
    .driveyoursoul {
        gap: 12px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 28px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 20px;
    }
    .titleLandingPage h4 {
        font-size: 40px;
        text-align: center;
    }
    .buttonLandingPage button {
        font-size: 20px;
        padding: 15px 30px;
    }
    .upcomingContianerAboutUs {
        display: flex;
        flex-direction: row;
        /* switch to column */
        align-items: center;
        /* center items in column */
        gap: 0px;
        /* keep original gap */
    }
    .upcomingEventAboutUsPage {
        flex: 1 1 100%;
        max-width: 50%;
    }
    .COVERAboutUsPageLukum {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px;
    }
    .leftColumnPage {
        text-align: left;
    }
    .dateAboutUs p {
        font-size: 14px;
    }
    .dateAboutUs .pnumber {
        font-size: 22px;
    }
    .titleCoverAboutUsLakum p {
        font-size: 16px;
    }
    .timeAboutUsLAKUM p,
    .dateCoverAboutUsLAKUM p {
        font-size: 12px;
    }
    .buttonDiscoverMoreDriveYourSoulComing button {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 400px) {
    .pastExhibit p {
        font-size: 18px;
    }
    .titleLandingPage h4 {
        font-size: 32px;
        text-align: center;
        line-height: 1.2;
    }
    .buttonLandingPage button {
        font-size: 18px;
        padding: 12px 28px;
        width: 85%;
        margin: 15px auto;
        display: block;
    }
}

@media (min-width: 1920px) {
    .ExploreCoverLakum {
        height: 100vh;
        width: 100%;
    }
    .CoverImageLakum h4 {
        font-size: 80px;
    }
    .CoverImage button {
        padding: 14px 32px;
        font-size: 1.2rem;
    }
    .ComingEventContainerAboutUsPage {
        position: relative;
        max-width: 550px;
        width: 100%;
    }
    .imgHeaderAboutUsPage img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: cover;
        display: block;
        z-index: 1;
    }
    .COVERAboutUsPageLukum {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 90%;
        background: #f6f6eb;
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 15px;
        box-sizing: border-box;
        z-index: 2;
    }
    /* Left column */
    .COVERAboutUsPageLukum .leftColumnPage {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 80px;
    }
    .COVERAboutUsPageLukum .leftColumnPage .dateAboutUs p {
        font-weight: 300;
        font-size: 30px;
        margin: 0;
        font-family: 'Atyp Kido TRIAL', sans-serif;
    }
    .COVERAboutUsPageLukum .leftColumnPage .dateAboutUs .pnumber {
        font-size: 50px;
        margin: 0;
        font-family: 'Atyp Kido TRIAL', sans-serif;
    }
    /* Right column */
    .COVERAboutUsPageLukum .rightColumnPage {
        display: flex;
        flex-direction: column;
        gap: 6px;
        justify-content: center;
    }
    .COVERAboutUsPageLukum .rightColumnPage .titleCoverAboutUsLakum p {
        font-size: 26px;
        font-family: 'Atyp Kido TRIAL', sans-serif;
        font-weight: 300;
        margin: 0;
    }
    .COVERAboutUsPageLukum .rightColumnPage .timeAboutUsLAKUM p {
        color: rgb(248, 166, 58);
        font-size: 18px;
        margin: 0;
    }
    .COVERAboutUsPageLukum .rightColumnPage .dateCoverAboutUsLAKUM p {
        color: rgb(150, 150, 150);
        font-size: 14px;
        margin: 0;
    }
}

/* 💻 Laptop/Desktop (above 1024px) */

@media (min-width: 1025px) {
    .titledriveyoursoul h4 {
        font-size: 28px;
    }
    .higlightdriveyoursoul p {
        font-size: 22px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 16px;
        padding: 12px 24px;
    }
    .upcomingEventAboutUsPage {
        width: 400px;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .upcomingContianerAboutUs {
        gap: 20px;
    }
    .COVERAboutUsPageLukum {
        padding: 12px;
        flex-direction: row;
    }
    .dateAboutUs p {
        font-size: 16px;
    }
    .dateAboutUs .pnumber {
        font-size: 24px;
    }
    .titleCoverAboutUsLakum p {
        font-size: 18px;
    }
    .timeAboutUsLAKUM p,
    .dateCoverAboutUsLAKUM p {
        font-size: 13px;
    }
}

@media (min-width: 376px) and (max-width: 767px) {
    .nameSpace p {
        font-size: 18px;
    }
    .nameSpace p span {
        font-size: 14px;
    }
}

/* ---------- Responsive: Small devices (375px) ---------- */

/* ✅ Responsive design for 414px width (mobile screens) */

@media (max-width: 540px) {
    .ExploreCoverLakum {
        max-width: 100%;
    }
    .logo a {
        font-size: 20px;
    }
    .logo p {
        font-size: 13px;
    }
    .MenuHeader ul li a {
        font-size: 16px;
    }
    .PhotoEventRow {
        width: 100%;
    }
    .aboutUs {
        padding: 25px;
        gap: 25px;
    }
    .pastExhibitLukum {
        display: flex;
        flex-direction: column;
        /* stack images vertically */
        gap: 20px;
        /* balanced spacing for tablets */
        justify-content: center;
        align-items: flex-start;
    }
    .pastExhibitLukum p {
        text-align: left;
    }
    /* Each image container */
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgright,
    .pastExhibitLukum .imgMiddle {
        flex: 1 1 100%;
        max-width: 100%;
        align-items: flex-start;
        order: unset;
    }
    /* Order setup */
    .pastExhibitLukum .imgMiddle {
        order: 2;
    }
    .pastExhibitLukum .imgMiddle p {
        text-align: left;
        font-size: 18px;
    }
    .pastExhibitLukum .imgright {
        order: 3;
    }
    /* Images general styling */
    .pastExhibitLukum img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }
    /* Fix imgleft height to 540px */
    .pastExhibitLukum .imgleft img {
        height: 540px;
        /* ✅ fixed height for imgleft */
        margin: 0;
    }
    /* Text styling */
    .pastExhibitLukum .imgleft p {
        font-size: 18px;
        text-align: left;
        width: 70%;
        margin-top: 12px;
    }
    .titleAboutUs h4 {
        font-size: 22px;
    }
    .paragraphbanner {
        text-align: left;
        margin-left: 60px;
    }
    .CollectionSpace p {
        font-size: 18px;
        padding: 5px 0px;
    }
    .paragraphAboutUs p {
        width: 100%;
        font-size: 15px;
        line-height: 1.5;
    }
    .LukumContiner {
        margin-left: 0px;
    }
    .buttonDiscoverMoreLAKUMLEFT {
        display: none;
    }
    .imgAboutUs img {
        width: 100%;
        max-width: 100%;
    }
    .bannerText h2 {
        font-size: 24px;
    }
    .PhotoEventRow p {
        font-size: 17px;
    }
    .PhotoEventRow img {
        max-width: 100%;
        height: auto;
    }
    .PhotoEventColumn {
        flex: 1 1 100%;
        gap: 25px;
        padding-left: 10px;
    }
    .titlePreviousEventWrapper {
        width: 100%;
    }
    .titlePreviousEventWrapper h4 {
        font-size: 22px;
        text-align: center;
    }
    .numberCount {
        gap: 25px;
        padding: 25px 20px;
    }
    .numberCount a {
        font-size: 26px;
    }
    .numberCount p {
        font-size: 15px;
    }
    .bannnerArtPaceGallary p:not(.Higlight) {
        font-size: 17px;
    }
    .scrollTrack img {
        height: 50px;
    }
    .upcomingEvents {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 20px;
    }
    .eventItem {
        width: 100%;
        max-width: 100%;
    }
    .titleBox {
        font-size: 20px;
    }
    .dateBox {
        padding: 12px 35px;
        font-size: 17px;
    }
    .upcomingEvent {
        padding: 20px 20px;
    }
    .titleupcomingEvent h3 {
        font-size: 22px;
        text-align: center;
    }
    .COVER .date p,
    .COVER .titleCover,
    .COVER .dateCover {
        font-size: 20px;
    }
    .COVER {
        width: 100%;
        padding: 20px 25px;
    }
    .imgHeaderAboutUs1 img {
        width: 300px;
        height: 300px;
    }
    .buttonDiscoverMore button {
        padding: 12px 22px;
        font-size: 16px;
    }
    .CoverImageLakum h4 {
        font-size: 32px;
    }
    .CoverImage button {
        padding: 14px 20px;
        font-size: 16px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .MenuFooter ul {
        flex-direction: column;
        gap: 18px;
    }
    .MenuFooter ul li {
        font-size: 14px;
    }
    .social-icons {
        justify-content: center;
    }
}

/* ---------- Responsive Design for 412px ---------- */

@media (max-width: 430px) {
    .COVERAboutUs {
        height: 100%;
    }
    .slider-container {
        display: flex;
        flex-direction: column;
    }
    .slider-track {
        gap: 30px;
        /* remove gap for full-width cards */
    }
    .card {
        flex: 0 0 95%;
        /* full width */
        height: auto;
        /* adjust height as needed */
    }
    .nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .LukumContiner {
        margin-left: -40px;
    }
    /* ===== MAIN CONTAINER ===== */
    .HomeContainer {
        width: 100%;
        padding: 0 0px;
        /* ensures spacing from left/right */
        box-sizing: border-box;
    }
    /* ===== LOGO ===== */
    .logo a {
        font-size: 20px;
    }
    .logo p {
        font-size: 13px;
    }
    /* ===== HEADER MENU ===== */
    .MenuHeader ul li a {
        font-size: 16px;
    }
    /* ===== ABOUT US ===== */
    .aboutUs {
        padding: 25px 15px;
        gap: 25px;
    }
    .titleAboutUs h4 {
        font-size: 22px;
        text-align: center;
    }
    .paragraphbanner {
        text-align: center;
        margin: 0 auto;
    }
    .bannerrightsideDrivenYourSoul .paragraphbanner p {
        text-align: center;
        margin: 0 auto;
        width: 100%;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /* Set the number of lines to show */
        -webkit-box-orient: vertical;
    }
    .paragraphAboutUs p {
        font-size: 16px;
        line-height: 1.5;
    }
    .imgAboutUs img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    /* ===== BANNER ===== */
    .bannerText h2 {
        font-size: 24px;
    }
    .bannerText p {
        font-size: 16px;
        line-height: 1.5;
    }
    /* ===== PHOTO EVENTS ===== */
    .PhotoEventRow img,
    .PhotoEventColumn img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .PhotoEventRow p,
    .PhotoEventColumn p {
        font-size: 18px;
        text-align: center;
    }
    /* ===== PREVIOUS EVENTS ===== */
    .previousEventContainer {
        display: flex;
        flex-direction: column;
        padding: 40px 15px;
    }
    .titlePreviousEventWrapper {
        margin-left: -30px;
    }
    .titlePreviousEventWrapper h4 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
    }
    .ColumnContainer {
        display: grid;
        grid-template-columns: 1fr;
        /* 2 columns side by side */
        gap: 40px;
        padding-left: 0px;
        padding-right: 5px;
    }
    /* ===== NUMBERS & BANNER ===== */
    .banner {
        padding: 20px 15px;
        gap: 20px;
    }
    .numberCount {
        gap: 20px;
        padding: 20px 15px;
    }
    .numberCount a {
        font-size: 26px;
    }
    .numberCount p {
        font-size: 15px;
    }
    /* ===== GALLERY ===== */
    .bannnerArtPaceGallary .Higlight {
        font-size: 28px;
    }
    .bannnerArtPaceGallary p:not(.Higlight) {
        font-size: 16px;
    }
    .scrollTrack img {
        height: 40px;
    }
    /* ===== UPCOMING EVENTS ===== */
    .upcomingEvents {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 15px;
    }
    .eventItem {
        width: 100%;
        max-width: 380px;
    }
    .titleupcomingEvent h3 {
        font-size: 20px;
        text-align: center;
    }
    .dateBox {
        font-size: 13px;
        padding: 5px 15px;
    }
    /* ===== COVER SECTIONS ===== */
    .COVER {
        width: 100%;
        margin: 0 auto;
        padding: 15px;
        background: rgba(255, 255, 255, 0.47);
    }
    .COVER .titleCover,
    .COVER .date p,
    .COVER .time,
    .COVER .dateCover {
        font-size: 17px;
        text-align: center;
    }
    /* ===== IMAGE HEADERS ===== */
    .imgHeaderAboutUs1 img {
        width: 240px;
        height: 240px;
        display: block;
        margin: 0 auto;
    }
    /* ===== BUTTONS ===== */
    .buttonDiscoverMore button,
    .CoverImage button,
    .buttonDiscoverMoreYourown button,
    .buttonDiscoverMoreDriveYourSoul button,
    .buttonDiscoverMoreCalender button {
        font-size: 14px;
        padding: 8px 16px;
    }
    .pastExhibitLukum {
        display: flex;
        flex-direction: column;
        /* stack images vertically */
        gap: 15px;
        /* small spacing between items */
        justify-content: center;
        align-items: flex-start;
        /* align everything to the left */
    }
    /* Each image container */
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgright,
    .pastExhibitLukum .imgMiddle {
        flex: 1 1 100%;
        max-width: 100%;
        align-items: flex-start;
        order: unset;
    }
    /* Fix order for layout */
    .pastExhibitLukum .imgMiddle {
        order: 2;
    }
    .pastExhibitLukum .imgright {
        order: 3;
    }
    /* Main images */
    .pastExhibitLukum img {
        width: 100%;
        height: auto;
        /* responsive height by default */
        object-fit: cover;
        border-radius: 8px;
    }
    /* Make the first (left) image fixed height = 430px */
    .pastExhibitLukum .imgleft img {
        height: 430px;
        /* ✅ fixed height for imgleft */
        margin: 0;
    }
    /* Text styling */
    .pastExhibitLukum .imgleft p {
        font-size: 18px;
        text-align: center;
        width: 95%;
        margin-top: 10px;
    }
    /* ===== FOOTER ===== */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    .MenuFooter ul {
        flex-direction: column;
        gap: 14px;
    }
    .MenuFooter ul li {
        font-size: 14px;
    }
    .social-icons {
        justify-content: center;
    }
    /* ===== FORMS ===== */
    .contact-form {
        padding: 12px;
    }
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    .input-icon input,
    .input-icon textarea {
        padding: 8px 8px 8px 28px;
        font-size: 14px;
    }
    .ButtonFormRow {
        font-size: 14px;
        padding: 12px;
    }
    /* ===== SPACE SECTION ===== */
    .Space {
        height: 35vh;
        width: 100%;
    }
    .nameSpace p {
        font-size: 18px;
    }
    .nameSpace p span {
        font-size: 15px;
    }
    .SpaceVENUMContainer .titleSpaceVenum h4 {
        font-size: 18px;
    }
    /* ===== LANDING PAGE ===== */
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 22px;
        text-align: center;
        padding: 0 12px;
    }
    /* ===== SLIDER ===== */
    .slider-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .card {
        width: 100%;
        height: 220px;
    }
    .nav {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
    /* ===== COMING EVENT CONTAINER ===== */
    .ComingEventContainerLAKUM {
        width: 100%;
        margin: 0 auto;
    }
    .LeftText p {
        font-size: 15px;
    }
}

@media (max-width: 414px) {
    /* ===== Global Fix ===== */
    html,
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .footer-bottom p {
        font-size: 12px;
    }
    .COVERAboutUs {
        height: 55%;
    }
    .LukumContiner {
        margin-left: -20px;
    }
    .slider-container {
        display: flex;
        flex-direction: column;
    }
    .pastExhibitLukum {
        flex-direction: column;
        /* stack images vertically */
        gap: 0px;
        /* smaller gap for mobile */
        justify-content: center;
        /* space from right edge */
        align-items: flex-start;
        /* align items to left */
    }
    .pastExhibitLukum .imgleft img {
        height: 300px;
        width: 350px;
        margin: 0px;
    }
    .pastExhibitLukum .imgleft,
    .pastExhibitLukum .imgright,
    .pastExhibitLukum .imgMiddle {
        flex: 1 1 100%;
        /* full width on mobile */
        max-width: 100%;
        /* remove desktop max-width */
        align-items: flex-start;
        /* align inner content left */
        order: unset;
        /* reset any order */
    }
    /* Optional: place the third image under the first */
    .pastExhibitLukum .imgMiddle {
        order: 2;
    }
    .pastExhibitLukum .imgright {
        order: 3;
    }
    .pastExhibitLukum img {
        width: 100%;
        /* full container width */
        height: auto;
        /* maintain aspect ratio */
        object-fit: cover;
        border-radius: 8px;
    }
    .pastExhibitLukum .imgleft p {
        font-size: 18px;
        text-align: center;
        width: 65%;
    }
    /* ===== Main Container ===== */
    .HomeContainer,
    .previousEventContainer,
    .upcomingEvents,
    .pastExhibitLukum,
    .ComingEventContainerLAKUM,
    .ExploreCoverLakum {
        width: 100%;
        margin: 0 auto;
        padding: 0px;
        box-sizing: border-box;
    }
    .aboutUs {
        padding: 25px;
        gap: 25px;
    }
    .titleAboutUs h4 {
        font-size: 22px;
    }
    .bannerText p {
        font-size: 15px;
        line-height: 1.5;
    }
    .banner {
        padding: 25px 20px;
        gap: 25px;
    }
    /* ===== Logo ===== */
    .logo a {
        font-size: 18px;
    }
    .logo p {
        font-size: 12px;
    }
    /* ===== Header Menu ===== */
    .MenuHeader ul li a {
        font-size: 14px;
    }
    /* ===== About Us ===== */
    .aboutUs {
        gap: 16px;
    }
    .titleAboutUs h4 {
        font-size: 20px;
    }
    .paragraphbanner {
        text-align: center;
        width: 96%;
        margin-left: -10px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .paragraphAboutUs p {
        font-size: 15px;
        line-height: 1.4;
    }
    .imgAboutUs img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    /* ===== Banner ===== */
    .bannerText h2 {
        font-size: 22px;
    }
    .bannerText p {
        font-size: 15px;
        line-height: 1.4;
    }
    /* ===== Photo Events ===== */
    .PhotoEventRow,
    .PhotoEventColumn {
        flex: 1 1 100%;
        gap: 12px;
    }
    .PhotoEventRow img {
        max-width: 100%;
        height: 100%;
    }
    .PhotoEventColumn img {
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }
    .PhotoEventRow p,
    .PhotoEventColumn p {
        font-size: 16px;
    }
    /* ===== Previous Events ===== */
    .titlePreviousEventWrapper h4 {
        font-size: 20px;
        text-align: center;
    }
    /* ===== Banner & Numbers ===== */
    .numberCount {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 16px;
    }
    .numberCount a {
        font-size: 22px;
    }
    .numberCount p {
        font-size: 14px;
    }
    /* ===== Gallery ===== */
    .bannnerArtPaceGallary .Higlight {
        font-size: 26px;
    }
    .bannnerArtPaceGallary p:not(.Higlight) {
        font-size: 15px;
    }
    .scrollTrack img {
        height: 35px;
    }
    /* ===== Upcoming Events ===== */
    .upcomingEvents {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 12px auto;
    }
    .eventItem {
        width: 100%;
    }
    .titleBox {
        font-size: 16px;
    }
    .dateBox {
        padding: 5px 15px;
        font-size: 12px;
    }
    .upcomingEvent {
        padding: 12px;
    }
    .titleupcomingEvent h3 {
        font-size: 18px;
        text-align: center;
    }
    .buttonDiscoverMoreDriveYourSoulComing {
        display: none;
    }
    /* ===== Cover Sections ===== */
    .COVER {
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.47);
        box-sizing: border-box;
    }
    .COVER .titleCover,
    .COVER .date p,
    .COVER .dateCover,
    .COVER .time {
        font-size: 15px;
    }
    /* ===== Images ===== */
    .imgHeaderAboutUs1 img {
        width: 200px;
        height: 200px;
    }
    /* ===== Buttons ===== */
    .buttonDiscoverMore button,
    .CoverImage button,
    .buttonDiscoverMoreYourown button,
    .buttonDiscoverMoreDriveYourSoul button,
    .buttonDiscoverMoreCalender button {
        font-size: 13px;
        padding: 7px 14px;
    }
    .CoverImageLakum h4 {
        font-size: 22px;
    }
    /* ===== Footer ===== */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .MenuFooter ul {
        flex-direction: column;
        gap: 12px;
    }
    .MenuFooter ul li {
        font-size: 13px;
    }
    .social-icons {
        justify-content: center;
    }
    /* ===== Landing Page ===== */
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 20px;
        padding: 0 10px;
    }
    /* ===== Slider ===== */
    .slider-container,
    .card {
        width: 100%;
    }
    .card {
        height: 200px;
    }
    .nav {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    /* ===== Forms ===== */
    .contact-form {
        padding: 10px;
    }
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    .input-icon input,
    .input-icon textarea {
        padding: 6px 6px 6px 25px;
        font-size: 13px;
    }
    .ButtonFormRow {
        font-size: 13px;
        padding: 10px;
    }
    .generic_feature_list ul li {
        font-size: 14px;
    }
    /* ===== Space Sections ===== */
    .Space {
        height: 30vh;
    }
    .nameSpace p {
        font-size: 16px;
    }
    .nameSpace p span {
        font-size: 14px;
    }
    .SpaceVENUMContainer .titleSpaceVenum h4 {
        font-size: 16px;
    }
    /* ===== Past Exhibits ===== */
    /* ===== Banner Left Side ===== */
    .bannerleftside .date p {
        font-size: 26px;
    }
    .bannerleftside .name h2 {
        font-size: 20px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .bannerleftside .year p {
        font-size: 16px;
    }
    .ColumnContainer {
        display: grid;
        grid-template-columns: 1fr;
        /* 2 columns side by side */
        gap: 40px;
        padding-left: 10px;
        padding-right: 5px;
    }
    .titleYourown h4 {
        font-size: 25px;
    }
}

@media (max-width: 390px) {
    .HomeContainer {
        width: 100%;
    }
    .logo a {
        font-size: 19px;
    }
    .logo p {
        font-size: 12px;
    }
    .MenuHeader ul li a {
        font-size: 15px;
    }
    .slider-track {
        margin-left: 5px;
        margin-right: 5px;
    }
    .aboutUs {
        padding: 22px;
        gap: 22px;
    }
    .titleAboutUs h4 {
        font-size: 21px;
    }
    .paragraphbanner {
        text-align: left;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 45px;
    }
    .paragraphAboutUs p {
        width: 100%;
        font-size: 15px;
        line-height: 1.5;
    }
    .imgAboutUs img {
        width: 100%;
        max-width: 100%;
    }
    .bannerText h2 {
        font-size: 23px;
    }
    .PhotoEventRow p {
        font-size: 18px;
    }
    .PhotoEventRow img {
        max-width: 100%;
        height: 100%;
    }
    .PhotoEventColumn {
        flex: 1 1 100%;
    }
    .titlePreviousEventWrapper {
        margin-bottom: 15px;
    }
    .titlePreviousEventWrapper h4 {
        font-size: 20px;
        text-align: center;
    }
    .bannerText p {}
    .banner {
        padding: 20px 18px;
        gap: 20px;
    }
    .numberCount {
        gap: 22px;
        padding: 22px 18px;
    }
    .numberCount a {
        font-size: 25px;
    }
    .numberCount p {
        font-size: 15px;
    }
    .bannnerArtPaceGallary .Higlight {
        font-size: 29px;
    }
    .bannnerArtPaceGallary p:not(.Higlight) {
        font-size: 17px;
    }
    .scrollTrack img {
        height: 42px;
    }
    .upcomingEvents {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin: 18px;
    }
    .eventItem {
        width: 100%;
        max-width: 350px;
    }
    .titleBox {
        font-size: 17px;
    }
    .dateBox {
        padding: 5px 18px;
        font-size: 12px;
    }
    .upcomingEvent {
        padding: 18px 18px;
    }
    .titleupcomingEvent h3 {
        font-size: 21px;
        text-align: center;
    }
    .EXHIBITIONPREVIUSCONTAINER h4 {
        font-size: 19px;
        margin-left: 20px;
    }
    .COVER {
        margin-left: -380px;
        width: 100%;
        padding: 18px 20px;
        background: #ffffff77;
    }
    .COVER .titleCover {
        font-size: 19px;
    }
    .COVER .date p,
    .COVER .time,
    .COVER .dateCover {
        font-size: 17px;
    }
    .COVER .time {
        color: rgb(255, 145, 0);
    }
    .imgHeaderAboutUs1 img {
        width: 260px;
        height: 260px;
    }
    .buttonDiscoverMore button {
        padding: 10px 22px;
        font-size: 15px;
    }
    .CoverImageLakum h4 {
        font-size: 31px;
    }
    .CoverImage button {
        padding: 12px 20px;
        font-size: 16px;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .MenuFooter ul {
        flex-direction: column;
        gap: 16px;
    }
    .MenuFooter ul li {
        font-size: 14px;
    }
    .bannerleftside .date p {
        font-size: 30px;
    }
    .bannerleftside .name h2 {
        font-size: 23px;
    }
    .bannerleftside .year p {
        font-size: 19px;
    }
    .driveyoursoul {
        padding: 22px 12px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 19px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 15px;
    }
    .driveyoursoul .buttonDiscoverMoreDriveYourSoul button {
        padding: 7px 13px;
        font-size: 13px;
    }
    .ahmedmatter {
        height: 62vh;
        max-width: 92%;
        padding: 10px 18px;
    }
    .nameAhmedmatter p {
        font-size: 27px;
    }
    .yearahmedmatter p {
        font-size: 15px;
    }
    .dateAhmedmaater p {
        font-size: 15px;
    }
    .ahmedHiglight {
        font-size: 15px;
        line-height: 1.5;
        margin: 20px auto;
        padding: 0 18px;
    }
    .buttonDiscoverMoreYourown button {
        font-size: 13px;
        padding: 8px 12px;
    }
    .LukumContiner .title h4 {
        font-size: 21px;
    }
    .LukumContiner {
        justify-content: center;
    }
    .pastExhibitLukum {
        flex-direction: column;
        gap: 18px;
    }
    .pastExhibitLukum img {
        width: 100%;
    }
    .pastExhibitLukum p {
        font-size: 16px;
        text-align: center;
    }
    .ExploreCoverLakum {
        height: 65vh;
        width: 90%;
    }
    .CoverImageLakum h4 {
        font-size: 26px;
    }
    .CoverImage button {
        padding: 9px 18px;
        font-size: 15px;
    }
    .upcomingEventCalender {
        padding: 10px;
    }
    .titleupcomingEventCalender h3 {
        font-size: 21px;
    }
    .COVERCalender {
        padding: 12px;
        margin-top: -45px;
    }
    .COVERCalender .titleCoverCalender {
        font-size: 19px;
    }
    .COVERCalender .timeCalender {
        font-size: 15px;
    }
    .buttonDiscoverMoreCalender button {
        font-size: 11px;
        padding: 5px 10px;
    }
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 22px;
        padding: 0 12px;
        margin-bottom: -100px;
    }
    .ColumnContainer {
        display: grid;
        grid-template-columns: 1fr;
        /* 2 columns side by side */
        gap: 40px;
        padding-left: 10px;
        padding-right: 5px;
    }
    .PhotoEventRow span {
        font-size: 12px;
        flex-direction: row;
        justify-content: flex-start;
    }
    .PhotoEventColumn {
        margin-top: -100px;
    }
    .PhotoEventColumn p {
        font-size: 14px;
        flex-wrap: wrap;
    }
    .PhotoEventColumn i {
        font-size: 10px;
    }
    .buttonLandingPage button {
        font-size: 13px;
        padding: 9px 22px;
    }
    .slider-container {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .card {
        flex: 0 0 100%;
        height: 220px;
    }
    .nav {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    .Space {
        height: 36vh;
        max-width: 100%;
    }
    .nameSpace p {
        font-size: 18px;
    }
    .nameSpace p span {
        font-size: 15px;
    }
    .contact-form {
        padding: 12px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .input-icon input,
    .input-icon textarea {
        padding: 8px 8px 8px 30px;
        font-size: 13px;
    }
    .ButtonFormRow {
        font-size: 14px;
        padding: 12px;
    }
    .generic_feature_list ul li {
        font-size: 15px;
    }
    .generic_price_btn a {
        padding: 11px 22px;
        font-size: 15px;
    }
    .SpaceVENUMContainer .titleSpaceVenum h4 {
        font-size: 19px;
    }
    .LeftText p {
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .slider-track {
        gap: 20px;
        /* no gap for full-width cards */
    }
    .card {
        flex: 0 0 90%;
        /* full width of container */
        height: 220px;
        /* adjust height for small screens */
    }
    .nav {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    /* ===== Logo & Menu ===== */
    .logo a {
        font-size: 18px;
    }
    .logo p {
        font-size: 11px;
    }
    .MenuHeader ul li a {
        font-size: 14px;
    }
    /* ===== About Us Section ===== */
    .aboutUs {
        padding: 20px;
        gap: 20px;
    }
    .titleAboutUs h4 {
        font-size: 20px;
    }
    .paragraphAboutUs p {
        font-size: 14px;
        line-height: 1.4;
    }
    .imgAboutUs img {
        width: 100%;
        max-width: 100%;
    }
    /* ===== Banner ===== */
    .banner,
    .bannerAhmedMatter {
        padding: 20px 15px;
        gap: 20px;
    }
    .bannerText h2 {
        font-size: 22px;
    }
    .bannerText p {
        font-size: 14px;
        line-height: 1.4;
    }
    .paragraphbanner {
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* ===== Events ===== */
    .upcomingEvents,
    .upcomingContianer,
    .upcomingContianer1 {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .eventItem {
        flex: 1 1 100%;
        max-width: 340px;
        width: 100%;
    }
    .titleBox,
    .dateBox,
    .titleupcomingEvent h3,
    .titleupcomingEventCalender h3 {
        font-size: 16px;
    }
    .dateBox {
        padding: 3px 15px;
        font-size: 11px;
    }
    .eventOverlay {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
        width: 95%;
        padding: 10px 15px;
    }
    .eventImageWrapper img {
        height: 180px;
        width: 100%;
        object-fit: cover;
    }
    .PhotoEventRow {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .PhotoEventColumn {
        flex: 1 1 100%;
        max-width: 320px;
        gap: 15px;
        padding-left: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .PhotoEventColumn p {
        font-size: 14px;
        text-align: center;
    }
    .PhotoEventColumn i {
        display: none;
    }
    /* ===== Previous Events ===== */
    .titlePreviousEventContainer,
    .titlePreviousEventWrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .titlePreviousEventContainer h4,
    .titlePreviousEventWrapper h4 {
        font-size: 1rem;
    }
    .hrLine {
        display: none;
    }
    /* ===== COVER LAKUM ===== */
    .COVERLAKUM {
        width: 90%;
        padding: 10px;
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        border-radius: 0;
    }
    .COVERLAKUM .titleCOVERLAKUM p {
        font-size: 20px;
    }
    .COVERLAKUM .date p {
        font-size: 14px;
    }
    .COVERLAKUM .paragraphCOVERLAKUM p {
        font-size: 12px;
    }
    .buttonDiscoverMoreLAKUM,
    .buttonDiscoverMoreLAKUMLEFT {
        width: 150px;
        border-radius: 0;
    }
    .buttonDiscoverMoreLAKUM button,
    .buttonDiscoverMoreLAKUMLEFT button {
        font-size: 12px;
        padding: 6px 15px;
        border-radius: 0;
    }
    /* ===== Images & Headers ===== */
    .imgHeaderLakum img,
    .imgHeaderAboutUs1 img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    .ExploreCoverLakum {
        height: 60vh;
        width: 100%;
    }
    .CoverImageLakum h4 {
        font-size: 25px;
    }
    .CoverImage button {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    /* ===== Drive Your Soul Banner ===== */
    .driveyoursoul {
        padding: 20px 10px;
        gap: 10px;
    }
    .driveyoursoul .titledriveyoursoul h4 {
        font-size: 22px;
    }
    .driveyoursoul .higlightdriveyoursoul p {
        font-size: 16px;
    }
    .buttonDiscoverMoreDriveYourSoul button {
        font-size: 13px;
        padding: 6px 12px;
    }
    /* ===== Landing Page ===== */
    .LandingPageCover {
        height: 100vh;
    }
    .titleLandingPage h4 {
        font-size: 20px;
        text-align: center;
    }
    .buttonLandingPage button {
        font-size: 14px;
        padding: 10px 18px;
        width: 100%;
        margin: 10px auto;
        display: block;
    }
    /* ===== Footer ===== */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .MenuFooter ul {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }
    .MenuFooter ul li {
        font-size: 13px;
    }
    .social-icons {
        justify-content: center;
    }
    /* ===== Forms ===== */
    .contact-form {
        max-width: 100%;
        margin: 20px auto;
        padding: 15px;
    }
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    .form-group {
        flex: 1 1 100%;
    }
    .input-icon input,
    .input-icon textarea {
        padding: 10px 10px 10px 34px;
        font-size: 12px;
    }
    .input-icon i {
        font-size: 13px;
        left: 8px;
    }
    .input-icon textarea {
        min-height: 90px;
    }
    .ButtonFormRow {
        padding: 10px;
        font-size: 14px;
    }
    /* ===== Price Tables ===== */
    #generic_price_table {
        padding: 40px 20px;
    }
    .generic_head_price {
        padding: 30px 10px 10px;
    }
    .generic_head_content .head span {
        font-size: 16px;
    }
    .generic_price_tag .price {
        font-size: 18px;
    }
    .generic_feature_list ul li {
        font-size: 13px;
    }
    .generic_price_btn a {
        font-size: 12px;
        padding: 8px 16px;
    }
    .generic_img {
        height: 160px;
    }
}

/* Explore Cover Lakum Section */

.ExploreCoverLakum {
    width: 100%;
    margin: 60px 0;
    padding: 0;
}

.CoverImage {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.CoverImage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.CoverImageLakum {
    position: relative;
    z-index: 2;
    color: white;
    margin-bottom: 30px;
}

.CoverImageLakum h4 {
    font-size: 48px;
    font-weight: 400;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    margin: 0;
}

.ExploreMoreButton {
    position: relative;
    z-index: 2;
    padding: 15px 40px;
    font-size: 18px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 400;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ExploreMoreButton:hover {
    background: white;
    color: #000;
}

@media (max-width: 768px) {
    .CoverImage {
        height: 400px;
    }
    .CoverImageLakum h4 {
        font-size: 32px;
    }
    .ExploreMoreButton {
        padding: 12px 30px;
        font-size: 16px;
    }
}