@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", 'Inter', sans-serif;
    background-color: black;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.main {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: black;
}

.nav {
    width: 100%;
    height: 12vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    box-sizing: border-box;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: white;
    font-family: 'Azeret-TRIAL', Inter, sans-serif;
    width: 25%;
}

.nav-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: white;
    font-size: 16px;
    width: 50%;
    letter-spacing: -0.5px;
}

.navitm a{
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    white-space: nowrap;
    letter-spacing: -0.5px;
    color: white;
    font-size: 16px;
}

.right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 25%;
}

.nav-btn {
    background-color: white;
    color: black;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    letter-spacing: -0.5px;
    transition: opacity 0.3s ease;
}

.nav-btn:hover {
    opacity: 0.8;
}

.nav-mb {
    display: none;
}

.one {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.homepage {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.home-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    height: 40vh;
}

.home-heading {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    width: 60%;
    letter-spacing: -1px;
    background-image: linear-gradient(to right, #606060 10%, rgba(255, 255, 255, 1) 35%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-para {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    width: 60%;
    letter-spacing: -0.5px;
    line-height: 28px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 55%, #606060 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.home-btn1 {
    background-color: black;
    color: white;
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    padding: 15px 30px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    letter-spacing: -0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-btn2 {
    background-color: white;
    color: black;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    padding: 15px 30px;
    border: 0.5px solid white;
    cursor: pointer;
    letter-spacing: -0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img {
    width: 90%;
    height: 90vh;
    background: url('img/home-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
}

.two {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

.explore {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 0 60px;
    box-sizing: border-box;
}

.expl-heading {
    font-size: 36px;
    font-weight: normal;
    color: white;
    letter-spacing: -1.5px;
}

.products {
    width: 100%;
    height: 68vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff12;
    border-radius: 50px;
    padding: 12px 25px;
    box-sizing: border-box;
    gap: 15px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.expl-up {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    /* Changed from space-between */
    align-items: center;
    gap: 20px;
    /* Explicit gap */
    overflow: hidden;
    /* Hide extra items */
}

.p1,
.p2,
.p3 {
    width: calc(33.333% - 13.33px);
    /* 3 items minus gap */
    flex-shrink: 0;
    /* Don't shrink */
    height: 50vh;
    background-color: #e9e9e9 !important;
    border-radius: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    /* Stability */
}

.p1 {
    background: url('img/p1.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.p2 {
    background: url('img/p2.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.p3 {
    background: url('img/p3.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.p-space {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    box-sizing: border-box;
}

.tag-id {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid black;
    background-color: #ffffff20;
    font-size: 10px;
    font-weight: 400;
    font-size: 10px;
    color: black;
}

.expl-down {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.expl-navigation {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
}

.left-arrow,
.right-arrow {
    padding: 16px;
    border: 1px solid #ffffff30;
    background-color: transparent;
    color: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.left-arrow:hover,
.right-arrow:hover {
    border-color: #ffffff;
}

.see-more {
    margin-left: 10px;
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid #ffffff30;
    background-color: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.see-more:hover {
    border-color: #ffffff;
}

.three {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    margin-top: 30px;
}

.space {
    width: 100%;
    height: 102vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    margin-top: 2vh;
    padding: 0 60px;
    box-sizing: border-box;
}

.space-up {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2vh;
}

.space-heading {
    font-size: 36px;
    font-weight: normal;
    color: white;
    letter-spacing: -1.5px;
}

.space-para {
    width: 38%;
    font-size: 14px;
    font-weight: 400;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 55%, #606060 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.space-down {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

.space-section {
    width: 100%;
    height: 18vh;
    border-radius: 30px;
    border: 0.5px solid;
    border-color: #ffffff33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 70px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(-240deg, rgba(115, 115, 115, 0.5) 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 30%, rgba(115, 115, 115, 0.5) 49%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.5) 85%, rgba(115, 115, 115, 0.5) 100%);
}

/* .space-section:nth-child(2){
    background: linear-gradient(240deg,rgba(115, 115, 115, 0.5) 0%,rgba(0, 0, 0, 0.5) 20%,rgba(0, 0, 0, 0.5) 30%,rgba(115, 115, 115, 0.5) 49%,rgba(0, 0, 0, 0.5) 70%,rgba(0, 0, 0, 0.5) 85%,rgba(115, 115, 115, 0.5) 100%);
}
.space-section:nth-child(4){
    background: linear-gradient(240deg,rgba(115, 115, 115, 0.5) 0%,rgba(0, 0, 0, 0.5) 20%,rgba(0, 0, 0, 0.5) 30%,rgba(115, 115, 115, 0.5) 49%,rgba(0, 0, 0, 0.5) 70%,rgba(0, 0, 0, 0.5) 85%,rgba(115, 115, 115, 0.5) 100%);
} */

.space-name {
    font-size: 35px;
    letter-spacing: -1px;
    color: white;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
}

.space-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.188);
    background-color: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.space-arrow:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.space-arrow svg {
    height: 12px;
    width: auto;
}

.space-arrow:hover svg path {
    fill-opacity: 0.7;
}

.space-section:hover {
    box-shadow: #e9e9e933 0px 0px 10px 0px;
}


.four {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 0 60px;
    box-sizing: border-box;
}

.stories {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2vh;
}

/* --- Header Section --- */
.story-up {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2vh;
    color: white;
}

.story-heading {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1px;
    text-align: center;
}

.story-para {
    width: 38%;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 55%, #606060 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.slash {
    color: #737373;
}

/* --- Scrollable Container Logic --- */
.story-down {
    width: 100%;
    height: 60vh;
    /* Desktop Height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    width: 100%;
    height: 100%;
    align-items: center;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    padding: 0 10px;
    /* Internal cushion */
    box-sizing: border-box;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-container.active {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* --- CARD STYLES --- */
.story {
    flex-shrink: 0;
    width: 38%;
    /* Desktop: Fits 2.5 images */
    height: 95%;
    border-radius: 50px;
    background-color: #ffffff10;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;

    opacity: 0.6;

    position: relative;
    z-index: 1;
    user-select: none;
    -webkit-user-drag: none;
}

.story.loaded {
    opacity: 1;
}

.story:hover {
    box-shadow: #e9e9e933 0px 0px 20px 0px;
    transform: scale(1.02);
    opacity: 1;
}

.story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.story img.revealed {
    opacity: 1;
    transform: scale(1);
}

.story:hover img {
    transform: scale(1.1);
}

/* --- FADES --- */
.fade-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
    height: 100%;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
    opacity: 0;
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
    opacity: 1;
}

/* =========================================
   RESPONSIVENESS UPDATES
   ========================================= */

/* 1. TABLET / SMALL LAPTOP (Up to 1024px) */
/* Covers 820x1180px */
@media screen and (max-width: 1024px) {
    .story-down {
        /* FIX: Remove outer padding so fades touch the screen edge */
        padding: 0 !important;
        height: 40vh;
        min-height: 400px;
        max-height: 500px;
    }

    /* .slider-container {
        padding: 0 30px;
    } */

    .story {
        width: 48%;
        border-radius: 30px;
        opacity: 0.8;
    }

    .fade-overlay {
        width: 80px;
    }
}

/* 2. MOBILE (Phones < 600px) */
@media screen and (max-width: 600px) {
    .story-down {
        padding: 0 !important;
        height: 35vh;
        min-height: 300px;
    }

    /* .slider-container {
        padding: 0 30px; 
    } */

    .story {
        width: 80%;
        height: 90%;
        border-radius: 25px;
        opacity: 1;
    }

    .fade-overlay {
        width: 40px;
    }
}




.five {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    margin-top: 30px;
    padding: 0 60px;
    box-sizing: border-box;
}

.contact {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;

}

.contact-left {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    padding: 50px 70px 40px 70px;
    box-sizing: border-box;
}

.contact-right {
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('img/bm.png');
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

.ph-fade {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0) 30%);
    z-index: 1;
}

.contact-left-up {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.contact-left-down {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.contact-heading {
    font-size: 50px;
    font-weight: 500;
    letter-spacing: -1.5px;
    background-image: linear-gradient(to right, #606060 10%, rgba(255, 255, 255, 1) 35%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 60px;
}

.contact-para {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 55%, #606060 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    line-height: 22px;
}

.contact-btns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.contact-btn-one {
    background-color: black;
    color: white;
    font-size: 18px;
    font-weight: 400;
    border-radius: 4px;
    padding: 20px 40px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    letter-spacing: -0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-btn-two {
    background-color: white;
    color: black;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    padding: 20px 40px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    letter-spacing: -0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-term {
    width: 100%;
    font-size: 10px;
    font-weight: 400;
    color: #737373;
    text-align: left;
    letter-spacing: -0.5px;
}

.six {
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 0 60px;
    box-sizing: border-box;
}

.footer {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.footer-up {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    width: 50%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.footer-head {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
}

.footer-para {
    font-size: 30px;
    font-weight: 400;
    text-align: left;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 55%, #606060 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
    width: 65%;
    font-family: 'Instrument Serif', serif;
}

.footer-print {
    font-size: 70px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.5px;
    line-height: 25px;
    font-family: 'Azeret-TRIAL', Inter, sans-serif;
}

.footer-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.footer-btn {
    --angle: -240deg;
    width: 280px;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    border-radius: 4px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(var(--angle), rgba(102, 102, 102, 1) 0%, rgba(0, 0, 0, 1) 22%, rgba(0, 0, 0, 1) 76%, rgba(102, 102, 102, 1) 100%);
    background-clip: padding-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.fba {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.fbb {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.btn-text {
    font-size: 24px;
    font-weight: 400;
    color: white;
    letter-spacing: -0.5px;
    padding-right: 5px;
    box-sizing: border-box;
}

/* Ensure the icon can be targeted easily */
.btn-icon svg {
    display: block;
}

.footer-right {
    width: 50%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-links {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
    /* padding-right: 50px;
    box-sizing: border-box; */
    gap: 20px;
}

/* --- TOP SECTION --- */
.footer-links-up {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 100px;
}

.footer-link-section {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    text-align: left;
    gap: 12px;
}

.footer-link-head {
    font-size: 22px;
    font-weight: 600;
    color: white;
    letter-spacing: -1.5px;
}

.footer-link-item {
    font-size: 20px;
    font-weight: 400;
    color: #ffffffc9;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-item:hover {
    color: white;
    cursor: pointer;
}

.footer-links-down {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link-section-one {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
    gap: 12px;
}

.footer-link-head-one {
    font-size: 22px;
    font-weight: 600;
    color: white;
    letter-spacing: -1.5px;
}

.footer-link-item-one {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #ffffffc9;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.underline {
    position: absolute;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: #ffffffc9;
    width: 0%;
}


.footer-down {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-txt {
    font-size: 14px;
    font-weight: 400;
    color: #737373;
    letter-spacing: -0.5px;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-link {
    cursor: pointer;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link svg path {
    fill: #737373;
    transition: fill 0.3s ease;
}

.social-link:hover svg path {
    fill: white;
}



@media (max-width: 850px) {
    .nav {
        display: none;
    }

    .nav-mb {
        width: 100%;
        height: 18vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;

    }

    .above-mb {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }

    .below-mb {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 20px;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .nav-items-mb {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 22px;
        overflow: hidden;
    }

    .navitm-mb a{
        text-decoration: none;
        white-space: nowrap;
        letter-spacing: -0.5px;
        color: white;
        font-size: 14px;
    }

    .nav-btn-mb {
        background-color: white;
        color: black;
        font-size: 18px;
        font-weight: 500;
        border-radius: 4px;
        padding: 15px 30px;
        border: none;
        cursor: pointer;
        letter-spacing: -0.5px;
        transition: opacity 0.3s ease;
    }

    .logo-mb {
        font-size: 33px;
        font-weight: bold;
        color: white;
        font-family: 'Azeret-TRIAL', Inter, sans-serif;
        width: 50%;
    }

    .right-mb {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 50%;
        height: 100%;
    }

    .home-text {
        height: 50vh;
    }

    .home-heading {
        font-size: 34px;
        width: 80%;
    }

    .home-para {
        font-size: 16px;
        width: 85%;
    }
    

    .home-btns {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        width: 100%;
    }

    .home-btn1,
    .home-btn2 {
        font-size: 16px;
        width: 70%;
    }

    .home-img {
        width: 90%;
        height: 50vh;
        border-radius: 20px;
    }

    /* --- Explore Section (Mobile Fix) --- */
    .explore {
        height: auto;
        padding: 0 20px;
        margin-top: 20px;
    }

    .expl-heading {
        font-size: 28px;
    }

    .products {
        height: auto;
        padding: 20px;
        gap: 20px;
        border-radius: 30px;
    }

    .expl-up {
        width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .p1,
    .p2,
    .p3 {
        width: 100%;
        flex-shrink: 0;
        height: 40vh;
        border-radius: 20px;
    }

    .expl-down {
        margin-top: 10px;
        justify-content: center;
    }

    .expl-navigation {
        width: 40%;
        justify-content: space-between;
    }

    .see-more {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 40px;
    }

    /* --- Space Section (Visibility Fix) --- */
    .space {
        height: auto;
        padding: 0 20px;
        margin-top: 30px;
        /* Ensure it's not hidden by overflow or fixed height issues */
        overflow: visible;
    }

    .space-up {
        height: auto;
        margin-bottom: 20px;
    }

    .space-heading {
        font-size: 28px;
    }

    .space-para {
        width: 80%;
        font-size: 14px;
    }

    .space-down {
        height: auto;
        gap: 15px;
    }

    .space-section {
        height: 12vh;
        padding: 0 20px;
        border-radius: 12px;
        gap: 10px;
    }

    .space-name {
        font-size: 20px;
        padding-left: 10px;
    }

    .space-arrow {
        padding: 8px 12px;
    }

    /* --- Stories Section (Inspiration) --- */
    .four {
        padding: 0 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .story-heading {
        font-size: 28px;
    }

    .story-para {
        width: 90%;
        font-size: 14px;
    }

    /* --- Contact Section (Centered + Shadow Fix) --- */
    .five {
        padding: 0 20px;
        margin-top: 20px;
    }

    .contact {
        height: 70vh;
        flex-direction: column-reverse;
        border-radius: 30px;
    }

    .contact-left {
        width: 100%;
        padding: 10px;
        gap: 10px;
        height: 58%;
        justify-content: center;
        align-items: center;
        /* Center horizontally */
    }

    .contact-right {
        width: 100%;
        height: 42%;
        position: relative;
    }

    .ph-fade {
        /* Shadow below image -> Vertical linear gradient from top transparent to bottom dark */
        background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0) 90%);
        width: 100%;
        height: 100%;
    }

    .contact-heading {
        font-size: 35px;
        line-height: 1.2;
        text-align: center;
        width: 80%;
        /* Center text */
    }
    .contact-heading>br{
        display: none;
    }

    .contact-para {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        /* Center text */
    }
    .contact-para>br{
        display: none;
    }   

    .contact-btns {
        width: 90%;
        flex-direction: column;
        gap: 10px;
    }

    .contact-btn-one,
    .contact-btn-two {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    .contact-term {
        font-size: 9px;
        text-align: center;
        width: 100%;
    }
    .contact-left-up{
        justify-content: center;
        align-items: center;
    }
    .contact-left-down{
        justify-content: center;
        margin-top: 0;
    }

    /* --- Footer Section --- */
    .six {
        padding: 0 20px;
        margin-top: 20px;
    }

    .footer {
        height: auto;
        gap: 30px;
    }

    .footer-up {
        height: auto;
        flex-direction: column;
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-left {
        gap: 20px;
    }

    .footer-para {
        width: 100%;
        font-size: 24px;
        line-height: 1.3;
    }

    .footer-print {
        font-size: 32px;
    }

    .footer-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .footer-btn {
        width: 100%;
        height: 70px;
    }

    .btn-text {
        font-size: 20px;
    }

    .footer-links-up {
        justify-content: flex-start;
        gap: 30px;
    }

    .footer-link-section {
        align-items: flex-start;
        gap: 8px;
    }

    .footer-link-head,
    .footer-link-head-one {
        font-size: 18px;
    }

    .footer-link-item,
    .footer-link-item-one {
        font-size: 16px;
    }

    .footer-link-section-one {
        align-items: flex-start;
        text-align: left;
        gap: 8px;
    }

    .footer-links-down {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-down {
        flex-direction: column-reverse;
        gap: 15px;
        padding: 20px 0;
        height: auto;
        text-align: center;
    }

    .socials {
        gap: 15px;
    }

}

@media (max-width: 380px) {
    .nav-mb {
        height: 25vh;
    }

    .logo-mb {
        font-size: 28px;
    }

    .nav-btn-mb {
        padding: 12px 25px;
        font-size: 16px;
    }

    .below-mb {
        gap: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navitm-mb a{
        font-size: 12px;
    }

    .home-text {
        height: 50vh;
    }

    .home-heading {
        font-size: 28px;
        width: 90%;
    }

    .home-para {
        font-size: 14px;
        width: 90%;
    }
    .contact-left-up{
        gap: 5px;
    }
    .contact-para{
        width: 90%;
    }
    .home-img{
        margin-top: 20px;
    }
}