@media (max-width:768px){

/* =========================
   HIDE DESKTOP MENU
========================= */

.nav-links,
.flex.items-center.gap-10{
    display:none;
}

/* =========================
   MOBILE NAVBAR
========================= */

.nav-container{
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-image{
    height:50px;
    margin-left:0;
}

/* =========================
   MENU BUTTON
========================= */

.mobile-menu-btn{
    width:45px;
    height:45px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,0.2);

    background:rgba(255,255,255,0.08);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:5px;

    cursor:pointer;

    z-index:1002;
}

.mobile-menu-btn span{
    width:18px;
    height:2px;

    background:#fff;

    border-radius:10px;
}

/* =========================
   FULL SCREEN MENU
========================= */

.mobile-menu{
    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:#050505;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:22px;

    transform:translateX(100%);

    transition:0.4s ease;

    z-index:1001;
}

/* OPEN MENU */

.mobile-menu.active{
    transform:translateX(0);
}

/* =========================
   MENU LINKS
========================= */

.mobile-menu a{
    color:#fff;

    text-decoration:none;

    font-size:18px;

    letter-spacing:3px;
}

/* =========================
   CONTACT
========================= */

.mobile-contact{
    margin-top:40px;

    display:flex;
    flex-direction:column;

    align-items:center;

    gap:12px;
}

.mobile-contact a{
    font-size:14px;

    color:#d6d6d6;
}

/* =========================
   SOCIAL ICONS
========================= */

.mobile-social{
    margin-top:35px;

    display:flex;

    gap:18px;
}

.mobile-social a{
    width:45px;
    height:45px;

    border:1px solid #c5a059;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#c5a059;

    font-size:18px;
}

/* =========================
   HERO TEXT
========================= */

.hero-content{
    padding:0 25px;

    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-title{
    font-size:46px;
}

/* =========================
   FEEDBACK CARD
========================= */

.feedback-card{
    width:calc(100% - 30px);

    max-width:320px;

    right:50%;

    transform:translateX(50%);

    bottom:90px;
}

/* =========================
   HIDE RIGHT SOCIAL BAR
========================= */

.social-sidebar-right{
    display:none;
}

}
.mobile-menu-close{
    position:absolute;

    top:25px;
    right:25px;

    width:42px;
    height:42px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,0.2);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    background:rgba(255,255,255,0.05);
}

@media (max-width:768px){

/* HIDE SOCIAL BAR IN HOME */
.social-sidebar-right{
    display:none !important;
}

/* CENTER HERO CONTENT */
.hero-content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;

    justify-content:center !important;
    align-items:center !important;

    text-align:center;

    padding:0 25px !important;

    z-index:20;
}

/* TITLE */
.hero-title{
    font-size:48px !important;
    line-height:1.05 !important;

    max-width:320px;

    margin:0 auto !important;
}

.hero-title span{
    display:block;
    margin-top:10px;

    font-size:0.5em;
}

/* FEEDBACK CARD */
.feedback-card{
    position:absolute !important;

    left:50% !important;
    right:auto !important;

    transform:translateX(-50%) !important;

    bottom:85px !important;

    width:calc(100% - 30px) !important;
    max-width:320px !important;

    padding:14px 18px !important;
}

/* SLIDER BUTTONS */
.controls-row{
    position:absolute !important;

    left:50% !important;
    right:auto !important;

    transform:translateX(-50%) !important;

    bottom:28px !important;

    gap:14px;
}

/* SMALLER DOTS */
.shape-btn{
    width:10px;
    height:10px;
}

/* NAVBAR */
.nav-container{
    padding:18px 20px !important;
}

/* LOGO */
.logo-image{
    height:50px !important;
    margin-left:0 !important;
}

/* MENU BUTTON */
.mobile-menu-btn{
    margin-right:0 !important;
}

}

/* mobile navbar end */
/* next */

/* =========================================================
   ABOUT SECTION MOBILE RESPONSIVE
   DOES NOT AFFECT DESKTOP
========================================================= */

@media (max-width:768px){

/* SECTION */
.about-section{
    padding:70px 22px;
    overflow:hidden;
}

/* DECORATOR IMAGE */
.about-decorator-container{
    margin-bottom:25px;
}

.about-decorator-img{
    width:120px;
}

/* HEADING */
.about-heading{
    font-size:28px;
    line-height:1.4;
    letter-spacing:2px;

    margin-bottom:18px;
}

/* SUBHEADING */
.about-subheading{
    font-size:13px;
    line-height:1.8;

    letter-spacing:2px;

    margin-bottom:35px;

    padding:0 10px;
}

/* DESCRIPTION */
.about-description{
    font-size:14px;
    line-height:1.9;

    margin-bottom:18px;

    padding:0 5px;
}

/* BUTTON */
.about-btn{
    margin-top:35px;

    padding:15px 35px;

    font-size:10px;
    letter-spacing:3px;
}

/* IMAGE FRAME AREA */
.premium-frame-container{
    margin-top:45px;
}

.image-frame{
    width:100%;
    max-width:100%;

    padding:10px;
    padding-bottom:28px;

    border-radius:8px;
}

/* IMAGE */
.frame-image{
    width:100%;
    height:auto;
    display:block;
}

/* BUTTONS */
.frame-btn{
    width:46px;
    height:46px;
}

.btn-up{
    top:-22px;
}

.btn-down{
    bottom:-22px;
}

/* ARROWS */
.arrow-svg{
    width:18px;
    height:18px;
}

/* REMOVE HOVER SCALE FOR MOBILE */
.about-section:hover .about-decorator-img{
    transform:none;
}

.about-btn:hover{
    letter-spacing:3px;
}

.frame-btn:hover{
    transform:translateX(-50%);
}
.about-description{
    text-align:justify;

    
}

}


@media (max-width:768px){

/* SECTION */
.gallery-section{
    padding:0 0 20px !important;

    overflow:hidden;
}

/* TITLE */
.gallery-title-wrapper{
    margin-bottom:25px !important;

    padding:0 20px;
}

.gallery-subtitle{
    font-size:13px !important;

    letter-spacing:3px !important;

    margin-bottom:12px !important;
}

.gallery-title-wrapper h2{
    font-size:22px !important;

    line-height:1.5 !important;

    margin-top:10px !important;
}

/* HORIZONTAL SWIPE */
.gallery-grid{
    display:flex !important;

    overflow-x:auto;

    gap:14px !important;

    padding:0 15px 10px;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;
}

/* HIDE SCROLLBAR */
.gallery-grid::-webkit-scrollbar{
    display:none;
}

/* CARD WIDTH */
.gallery-link{
    min-width:260px;

    max-width:260px;

    flex:none;

    scroll-snap-align:center;
}

/* CARD */
.gallery-card{
    padding:8px !important;

    border-radius:8px;
}

/* IMAGE */
.gallery-img-box{
    height:230px !important;
}

.gallery-card img{
    width:100%;
    height:100%;

    object-fit:cover;
}

/* REMOVE HOVER */
.gallery-card:hover{
    transform:none !important;
    box-shadow:none !important;
}

.gallery-card:hover img{
    transform:none !important;
}

/* CONTENT */
.gallery-content{
    padding:16px 5px 8px !important;
}

.gallery-content h3{
    font-size:16px !important;

    letter-spacing:2px !important;

    margin-bottom:10px !important;
}

.gallery-content p{
    font-size:13px !important;

    line-height:1.6 !important;

    text-align:justify;

    color:#000 !important;
}

}
@media (max-width:768px){

.gallery-content p{
   font-family:'Inter', sans-serif !important;

    font-size:15px !important;

    line-height:1.8 !important;

    font-weight:400 !important;

    letter-spacing:0;

    color:#111 !important;

    text-align:justify !important;
    text-align-last:left !important;
    hyphens:auto !important;
}

}


/* =========================================================
   WHY CHOOSE US - MOBILE RESPONSIVE
   DOES NOT AFFECT DESKTOP
========================================================= */

@media (max-width:768px){

.hero-feature-section{
    height:auto !important;

    padding:70px 0 0;

    background-position:center;

    display:block;
}

/* =========================
   HEADING AREA
========================= */

.main-heading-wrapper{
    margin:0 !important;

    padding:0 22px 40px;

    text-align:center;
}

.main-heading-wrapper h2{
    font-family:'Inter', sans-serif;

    font-size:26px !important;

    letter-spacing:3px !important;

    line-height:1.4;

    margin-bottom:20px;

    font-weight:600;
    margin-top: -50px;
}

.main-heading-wrapper p{
    font-family:'Inter', sans-serif;

    font-size:15px !important;

    line-height:1.6 !important;

    font-weight:400;

    text-align:justify !important;

    text-align-last:left;

    hyphens:auto;

    color:#f5f5f5;

    
}

/* =========================
   GLASS GRID
========================= */

.bottom-glass-grid{
    position:relative !important;

    display:grid;

    grid-template-columns:1fr 1fr !important;

    background:rgba(0,0,0,0.45);

    border-top:none;
}

/* =========================
   BOX
========================= */

.glass-box{
    padding:22px 15px !important;

    border-right:1px solid rgba(255,255,255,0.08);

    border-bottom:1px solid rgba(255,255,255,0.08);

    flex-direction:column;

    align-items:flex-start;

    gap:10px;
}

/* REMOVE EXTRA RIGHT BORDER */
.glass-box:nth-child(2),
.glass-box:nth-child(4){
    border-right:none;
}

/* =========================
   ICON
========================= */

.icon{
    font-size:24px;

    margin:0;
}

/* =========================
   CONTENT
========================= */

.box-content h3{
    font-family:'Inter', sans-serif;

    font-size:13px !important;

    letter-spacing:1.5px !important;

    margin-bottom:8px;

    line-height:1.5;
}

.box-content p{
   font-family:'Inter', sans-serif;

    font-size:15px !important;

    line-height:1.5!important;

    color:rgba(255,255,255,0.88);

    text-align:justify !important;

    text-align-last:left;

    word-spacing:-2px;

    letter-spacing:0;

    hyphens:auto;
}

}


/* =========================================================
   PORTFOLIO SECTION MOBILE RESPONSIVE
   DOES NOT AFFECT DESKTOP
========================================================= */

@media (max-width:768px){

.portfolio-section{
    padding:60px 0 30px;

    overflow:hidden;
}

/* =========================
   HEADER
========================= */

.portfolio-header{
    margin-bottom:30px;
    padding:0 20px;
}

.portfolio-header h2{
    font-family:'Inter', sans-serif;

    font-size:26px !important;

    line-height:1.5;

    font-weight:500;

    letter-spacing:0.5px;

    margin-top:10px;
    margin-bottom:15px;
}

.portfolio-header .line{
    width:45px;
    margin-top:0;
}

/* =========================
   TRACK
========================= */

.carousel-track{
    margin-bottom:18px;

    overflow:hidden;
}

/* =========================
   ANIMATION SPEED
========================= */

.row-move-left{
    animation:scrollLeftInfinite 45s linear infinite;
}

.row-move-right{
    animation:scrollRightInfinite 45s linear infinite;
}

/* =========================
   LANDSCAPE CARDS
========================= */

.carousel-card.landscape{
    width:260px !important;

    height:170px !important;

    padding:0 8px;
}

/* =========================
   PORTRAIT CARDS
========================= */

.carousel-card.portrait{
    width:180px !important;

    height:260px !important;

    padding:0 8px;
}

/* =========================
   IMAGES
========================= */

.carousel-card img{
    border-radius:8px;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.12);

    border:none;
}

/* REMOVE HEAVY HOVER */
.carousel-card:hover img{
    transform:none;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.12);
}

}
@media (max-width:768px){

.portfolio-section{
    padding-top:0 !important;
    padding-bottom:0 !important;

    margin-top:0 !important;
    margin-bottom:0 !important;
}

.portfolio-header{
    margin-bottom:20px !important;
}

.carousel-track{
    margin-bottom:10px !important;
}

}

/* =========================================================
   CLIENTS MARQUEE MOBILE RESPONSIVE
   DOES NOT AFFECT DESKTOP
========================================================= */

@media (max-width:768px){

.clients-marquee-section{
    padding:20px 0 10px !important;

    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */

.marquee-container{
    position:relative;

    padding:80px 0 20px;
}

/* =========================
   CENTER GLASS BADGE
========================= */

.center-badge{
    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    z-index:20;
}

.badge-circle{
    width:120px !important;
    height:120px !important;

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.5);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.12);
}

.badge-circle p{
    font-size:10px !important;

    letter-spacing:1px;

    line-height:1.5;
}

.badge-circle span{
    font-size:16px !important;

    margin-top:3px;
}

/* =========================
   LOGO TRACK
========================= */

.marquee-track{
    gap:18px !important;

    animation:scrollRightToLeft 20s linear infinite;
}

/* =========================
   LOGO CARD
========================= */

.client-logo{
    width:110px !important;
    height:70px !important;

    border-radius:10px;

    padding:10px;
}

.client-logo img{
    max-width:75px !important;

    width:100%;
    height:auto;
}

/* REMOVE HOVER SCALE */
.client-logo:hover img{
    transform:none;
}

/* =========================
   DOTS
========================= */

.marquee-dots{
    margin-top:20px !important;

    gap:6px;
}

.dot{
    width:5px;
    height:5px;
}

.dot.active{
    width:16px;
}

/* =========================
   SMOOTHER MOBILE SCROLL
========================= */

@keyframes scrollRightToLeft{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-50% - 9px));
    }
}

}

/* =========================================================
   STATS SECTION MOBILE RESPONSIVE
   DOES NOT AFFECT DESKTOP
========================================================= */

@media (max-width:768px){

.stats-section{
    padding:20px 15px !important;

    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */

.stats-container{
    width:100% !important;

    opacity:1 !important;

    padding:35px 20px !important;

    border-top-right-radius:50px !important;

    border-bottom-left-radius:20px;

    display:flex;

    flex-direction:column;

    gap:30px;

    white-space:normal !important;

    transition:none !important;
}

/* REMOVE OPEN ANIMATION ISSUE */
.stats-container.roll-open{
    width:100% !important;
}

/* =========================
   ITEMS
========================= */

.stat-item{
    min-width:auto;

    text-align:center;
}

/* NUMBER */
.stat-item h2{
    font-family:'Inter', sans-serif;

    font-size:34px !important;

    font-weight:700;

    margin-bottom:10px;

    letter-spacing:1px;
}

/* TEXT */
.stat-item p{
    font-family:'Inter', sans-serif;

    font-size:13px !important;

    letter-spacing:2px;

    line-height:1.6;

    color:rgba(255,255,255,0.9);

    margin:0;
}

}


/* =========================
   MOBILE CSS ONLY
   ========================= */
@media (max-width:768px){

/* MAIN SECTION */
.split-cta-section{
    padding:55px 20px !important;
    background:#fcfcfc;
    overflow:hidden;
}

/* CONTAINER */
.split-container{
    display:flex !important;
    flex-direction:column !important;
    gap:35px !important;
}

/* LEFT SIDE */
.split-left{
    position:relative !important;
    top:0 !important;
}

.split-title{
    font-size:34px !important;
    line-height:1.2 !important;
    letter-spacing:-1px !important;
    text-align:left !important;
}

.split-title strong{
    display:block;
    margin-top:5px;
}

.split-tagline{
    font-family:'Inter',sans-serif !important;
    font-size:15px !important;
    line-height:1.8 !important;
    color:#111 !important;
    margin-top:22px !important;
    max-width:100% !important;
    text-align:left !important;
}

/* RIGHT SIDE */
.split-right{
    border-left:none !important;
    padding-left:0 !important;
    gap:0 !important;
    width:100%;
}

/* ROWS */
.action-row{
    padding:18px 0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:15px;
}

.action-row:hover{
    padding-left:0 !important;
}

/* TEXT */
.action-label{
    font-size:17px !important;
    font-weight:600 !important;
    letter-spacing:0 !important;
}

.action-sub{
    font-size:13px !important;
    margin-top:4px !important;
    color:#666 !important;
    line-height:1.5;
}

/* FIRST BIG BUTTON */
.action-row:first-child{
    padding:20px 0 !important;
}

.action-row:first-child .action-label{
    font-size:22px !important;
    line-height:1.3;
}

.action-row:first-child .action-sub{
    font-size:14px !important;
}

/* ICON CIRCLE */
.action-arrow-box{
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    font-size:14px !important;
    border-radius:50%;
}

/* REMOVE EXTRA HOVER EFFECT MOBILE */
.action-row:hover .action-arrow-box i{
    transform:none !important;
}

}



/* ============================= */
/* FAQ SECTION MOBILE CSS ONLY  */
/* ============================= */

@media (max-width:768px){

    #dh-luxury-faq-unique{
        padding:40px 16px !important;
    }

    #dh-luxury-faq-unique .dh-luxury-grid{
        grid-template-columns:1fr !important;
        gap:25px !important;
    }

    /* IMAGE TOP */
    #dh-luxury-faq-unique .dh-image-column{
        order:-1;
        margin-top:0 !important;
        margin-bottom:10px;
    }

    #dh-luxury-faq-unique .dh-image-frame{
        max-width:220px !important;
        margin:auto;
    }

    /* SUBTITLE */
    #dh-luxury-faq-unique .dh-subtitle{
        font-size:11px !important;
        letter-spacing:3px !important;
        text-align:center;
        margin-bottom:8px;
    }

    /* TITLE */
    #dh-luxury-faq-unique .dh-main-title{
        font-size:28px !important;
        line-height:1.3 !important;
        text-align:center;
        margin-bottom:28px !important;
    }

    /* FAQ BOX */
    #dh-luxury-faq-unique .dh-premium-box{
        border-radius:14px;
        overflow:hidden;
        margin-bottom:14px !important;
        box-shadow:0 3px 12px rgba(0,0,0,0.05);
    }

    #dh-luxury-faq-unique .dh-premium-box:hover{
        transform:none !important;
    }

    /* HEADER */
    #dh-luxury-faq-unique .dh-box-header{
        padding:18px 16px !important;
        align-items:flex-start;
        gap:12px;
    }

    /* NUMBER */
    #dh-luxury-faq-unique .dh-q-number{
        font-size:13px !important;
        margin-right:0 !important;
        min-width:24px;
        margin-top:2px;
    }

    /* QUESTION */
    #dh-luxury-faq-unique .dh-q-text{
        font-family:'Inter',sans-serif;
        font-size:15px !important;
        line-height:1.6 !important;
        font-weight:600 !important;
        color:#111 !important;
         text-align:justify !important;

    }

    /* PLUS ICON */
    #dh-luxury-faq-unique .dh-plus-icon{
        width:16px;
        height:16px;
        margin-top:4px;
        flex-shrink:0;
    }

    /* CONTENT */
    #dh-luxury-faq-unique .dh-box-content{
        padding:0 16px 0 52px !important;
    }

    #dh-luxury-faq-unique .dh-box-content p{
        font-family:'Inter',sans-serif;
        font-size:14px !important;
        line-height:1.8 !important;
        color:#222 !important;

        text-align:justify !important;

        padding-bottom:20px !important;
    }

    /* ACTIVE BOX */
    #dh-luxury-faq-unique .dh-premium-box.dh-active{
        box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }

}

/* =============================== */
/* FOOTER MOBILE CSS ONLY */
/* =============================== */

@media (max-width:768px){

    .madmaze-footer{
        padding:45px 18px 30px !important;
    }

    /* LOGO */

    .footer-logo{
        margin-bottom:20px !important;
    }

    .footer-logo img{
        width:180px !important;
    }

    /* DESCRIPTION */

    .footer-description{
        font-family:'Inter',sans-serif;

        font-size:14px !important;

        line-height:1.8 !important;

        color:#d2d2d2 !important;

        text-align:justify !important;

        margin-bottom:28px !important;

        padding:0 5px;
    }

    /* SOCIAL ICONS */

    .social-links{
        gap:12px !important;
        margin-bottom:30px !important;

        flex-wrap:wrap;
    }

    .social-links a{
        width:44px !important;
        height:44px !important;

        font-size:16px !important;

        border-radius:50%;

        background:rgba(255,255,255,0.06);

        border:1px solid rgba(255,255,255,0.08);

        backdrop-filter:blur(10px);
    }

    .social-links a:hover{
        transform:none !important;
    }

    /* MENU */

    .footer-nav{
        gap:14px 22px !important;

        margin-bottom:30px !important;

        justify-content:center;
    }

    .footer-nav a{
        font-size:14px !important;

        letter-spacing:0.3px;

        color:#e5e5e5 !important;
    }

    .footer-nav a .arrow{
        font-size:12px;
    }

    /* DIVIDER */

    .footer-divider{
        margin-bottom:20px !important;
    }

    /* BOTTOM */

    .footer-bottom{
        flex-direction:column !important;

        text-align:center;

        gap:10px !important;
    }

    .footer-bottom p{
        font-size:12px !important;

        line-height:1.7;

        color:#9f9f9f;

        /* text-align: justify !important; */
    }

    .legal-links{
        font-size:12px;
    }

    .legal-links a{
        color:#bdbdbd !important;
    }

    /* REMOVE EXTRA GLOW SIZE */

    .madmaze-footer::before{
        width:250px;
        height:250px;
        top:-120px;
        left:-100px;
    }

    .madmaze-footer::after{
        width:220px;
        height:220px;
        bottom:-120px;
        right:-80px;
    }

}