*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* CONTAINER */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 25px;
}

/* NAVBAR */

.navbar{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #eee;
}

.navbar-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

/* LOGO */

.logo img{
    width:170px;
    display:block;
}

/* DESKTOP MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-menu li a{
    color:#111;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#7d5aa9;
}

/* BUTTON */

.quote-btn{
    background:#000;
    color:#fff;
    padding:14px 24px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.quote-btn:hover{
    background:#7d5aa9;
}

/* TOGGLE */

.menu-toggle{
    width:45px;
    height:45px;
    background:#7d5aa9;
    border-radius:10px;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.menu-toggle i{
    color:#fff;
    font-size:20px;
}

/* =========================
        MOBILE SIDEBAR
========================= */

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100vh;
    background:#fff;
    z-index:99999;
    padding:25px;
    transition:0.4s ease;
    box-shadow:0 0 40px rgba(0,0,0,0.15);
    overflow-y:auto;
}

.mobile-sidebar.active{
    left:0;
}

/* OVERLAY */

.sidebar-overlay{
    position:fixed;
    width:100%;
    height:100vh;
    background:rgba(0,0,0,0.5);
    top:0;
    left:0;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
}

.sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* SIDEBAR TOP */

.sidebar-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:40px;
}

.sidebar-logo img{
    width:150px;
}

/* CLOSE */

.close-sidebar{
    width:42px;
    height:42px;
    background:#7d5aa9;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.close-sidebar i{
    color:#fff;
    font-size:20px;
}

/* SIDEBAR MENU */

.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sidebar-menu li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border-radius:12px;
    background:#f7f7f7;
    color:#111;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.sidebar-menu li a:hover{
    background:#7d5aa9;
    color:#fff;
    transform:translateX(5px);
}

/* SIDEBAR BUTTON */

.sidebar-btn{
    width:100%;
    margin-top:35px;
    background:#000;
    color:#fff;
    padding:16px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.sidebar-btn:hover{
    background:#7d5aa9;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .nav-menu{
        display:none;
    }

    .desktop-btn{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

}

@media(max-width:768px){

    .navbar-flex{
        min-height:75px;
    }

    .logo img{
        width:130px;
    }

    .mobile-sidebar{
        width:280px;
    }

}
/* ===================================
            HERO SECTION
=================================== */






/* form section  */

/* =========================
   FOOTER
========================= */
.cryptic-footer{
    width:100%;
    background:#fff;
    font-family:'Poppins', sans-serif;
    color:#333;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container{
    max-width:1400px;
    margin:auto;
    padding:55px 60px 45px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:70px;
}

/* =========================
   LOGO
========================= */
.footer-logo{
    width:165px;
    background:#f5f5f5;
    padding:10px 14px;
    border-radius:14px;
    margin-bottom:18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

.footer-col h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

/* =========================
   LINE
========================= */
.footer-line{
    width:125px;
    height:3px;
    background:#000;
    margin-bottom:26px;
    border-radius:10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p{
    font-size:17px;
    line-height:1.7;
    font-weight:400;
    max-width:320px;
    color:#333;
}

/* =========================
   LISTS
========================= */
.footer-col ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-col ul li{
    margin-bottom:20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a{
    color:#333;
    text-decoration:none;
    font-size:17px;
    font-weight:400;
    transition:0.3s ease;
    position:relative;
}

.footer-col ul li a::before{
    content:"›";
    margin-right:8px;
    font-size:18px;
    color:#000;
}

.footer-col ul li a:hover{
    color:#000;
    padding-left:4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i{
    margin-right:10px;
    font-size:16px;
    color:#000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.12);
    padding:22px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p,
.footer-bottom span{
    font-size:16px;
    margin:0;
    color:#333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
        padding:50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:45px 25px;
    }

    .footer-about p{
        max-width:100%;
        font-size:15px;
    }

    .footer-about h2,
    .footer-col h3{
        font-size:21px;
    }

    .footer-col ul li{
        margin-bottom:16px;
    }

    .footer-col ul li a{
        font-size:15px;
    }

    .footer-bottom{
        padding:20px 25px;
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom p,
    .footer-bottom span{
        font-size:14px;
    }

    .footer-logo{
        width:150px;
    }

}




/* =========================
   FOOTER
========================= */
.cryptic-footer{
    width:100%;
    background:#fff;
    font-family:'Poppins', sans-serif;
    color:#333;
    overflow:hidden;
}

/* =========================
   CONTAINER
========================= */
.footer-container{
    max-width:1400px;
    margin:auto;
    padding:55px 60px 45px;
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:70px;
}

/* =========================
   LOGO
========================= */
.footer-logo{
    width:165px;
    background:#f5f5f5;
    padding:10px 14px;
    border-radius:14px;
    margin-bottom:18px;
}

/* =========================
   HEADINGS
========================= */
.footer-about h2{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

.footer-col h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    color:#000;
}

/* =========================
   LINE
========================= */
.footer-line{
    width:125px;
    height:3px;
    background:#000;
    margin-bottom:26px;
    border-radius:10px;
}

/* =========================
   PARAGRAPH
========================= */
.footer-about p{
    font-size:17px;
    line-height:1.7;
    font-weight:400;
    max-width:320px;
    color:#333;
}

/* =========================
   LISTS
========================= */
.footer-col ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-col ul li{
    margin-bottom:20px;
}

/* =========================
   LINKS
========================= */
.footer-col ul li a{
    color:#333;
    text-decoration:none;
    font-size:17px;
    font-weight:400;
    transition:0.3s ease;
    position:relative;
}

.footer-col ul li a::before{
    content:"›";
    margin-right:8px;
    font-size:18px;
    color:#000;
}

.footer-col ul li a:hover{
    color:#000;
    padding-left:4px;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-links li a i{
    margin-right:10px;
    font-size:16px;
    color:#000;
}

/* =========================
   BOTTOM BAR
========================= */
.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.12);
    padding:22px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p,
.footer-bottom span{
    font-size:16px;
    margin:0;
    color:#333;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:50px;
        padding:50px 40px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
        padding:45px 25px;
    }

    .footer-about p{
        max-width:100%;
        font-size:15px;
    }

    .footer-about h2,
    .footer-col h3{
        font-size:21px;
    }

    .footer-col ul li{
        margin-bottom:16px;
    }

    .footer-col ul li a{
        font-size:15px;
    }

    .footer-bottom{
        padding:20px 25px;
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom p,
    .footer-bottom span{
        font-size:14px;
    }

    .footer-logo{
        width:150px;
    }

}

/*  */

/* =========================
   GALLERY SECTION
========================= */



/*  */

.img-banner{
    width:100%;
    height:570px;
    overflow:hidden;
}

.img-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TABLET */

@media(max-width:991px){

    .img-banner{
        height:350px;
    }

}

/* MOBILE */

@media(max-width:600px){

    .img-banner{
        height:150px;
    }

}


/*  */


/* =========================================
GALLERY SECTION
========================================= */
.cryptic-gallery{
    width:100%;
    padding:70px 40px;
    background:linear-gradient(180deg,#f8f8f8 0%,#efefef 100%);
    position:relative;
    overflow:hidden;
}

.cryptic-gallery::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:rgba(91,33,182,.08);
    border-radius:50%;
}

.cryptic-gallery::after{
    content:'';
    position:absolute;
    bottom:-140px;
    left:-100px;
    width:300px;
    height:300px;
    background:rgba(0,0,0,.04);
    border-radius:50%;
}

.cryptic-gallery-top{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:2;
}

.cryptic-gallery-top span{
    font-size:18px;
    font-weight:700;
    letter-spacing:5px;
    color:#5b21b6;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:10px;
}

.cryptic-gallery-top h2{
    font-size:60px;
    font-weight:900;
    line-height:1.1;
    color:#111;
    margin:0;
}

.cryptic-gallery-top h2 strong{
    color:#5b21b6;
}

.cryptic-line{
    width:130px;
    height:6px;
    background:linear-gradient(90deg,#5b21b6,#8b5cf6);
    border-radius:50px;
    margin:24px auto 0;
    position:relative;
}

.cryptic-line::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:35px;
    height:35px;
    background:#fff;
    border:4px solid #5b21b6;
    border-radius:50%;
}

/* GRID */

.cryptic-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    position:relative;
    z-index:2;
}

/* CARD */

.cryptic-gallery-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    transition:.45s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:1px solid rgba(255,255,255,.7);
}

.cryptic-gallery-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(91,33,182,.18);
}

/* IMAGE */

.cryptic-gallery-thumb{
    position:relative;
    width:100%;
    height:300px;
    overflow:hidden;
}

.cryptic-gallery-thumb::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.55),transparent 60%);
}

.cryptic-gallery-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.cryptic-gallery-card:hover img{
    transform:scale(1.12);
}

/* PLAY BUTTON */

.cryptic-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:92px;
    height:92px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border:2px solid rgba(255,255,255,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3;
    transition:.4s;
}

.cryptic-gallery-card:hover .cryptic-play{
    transform:translate(-50%,-50%) scale(1.12);
    background:#000;
}

.cryptic-play::before{
    content:'';
    border-left:24px solid #fff;
    border-top:15px solid transparent;
    border-bottom:15px solid transparent;
    margin-left:6px;
}

/* CONTENT */

.cryptic-gallery-content{
    padding:28px;
    position:relative;
}

.cryptic-gallery-content::before{
    content:'';
    position:absolute;
    top:0;
    left:28px;
    width:70px;
    height:4px;
    background:#5b21b6;
    border-radius:30px;
}

.cryptic-gallery-content h3{
    font-size:28px;
    font-weight:800;
    color:#111;
    margin-bottom:14px;
    margin-top:14px;
    line-height:1.3;
}

.cryptic-gallery-content p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin:0;
}

/* HOVER GLOW */

.cryptic-gallery-card::before{
    content:'';
    position:absolute;
    inset:-2px;
    background:linear-gradient(135deg,#5b21b6,#8b5cf6,#ffffff);
    opacity:0;
    transition:.5s;
    z-index:-1;
    border-radius:30px;
}

.cryptic-gallery-card:hover::before{
    opacity:1;
}

/* RESPONSIVE */

/* =========================================
        TABLET VIEW
========================================= */

@media(max-width:991px){

    .cryptic-gallery{
        padding:60px 22px;
    }

    .cryptic-gallery::before{
        width:240px;
        height:240px;
        top:-90px;
        right:-90px;
    }

    .cryptic-gallery::after{
        width:220px;
        height:220px;
        bottom:-100px;
        left:-80px;
    }

    .cryptic-gallery-top{
        margin-bottom:45px;
    }

    .cryptic-gallery-top span{
        font-size:16px;
        letter-spacing:4px;
    }

    .cryptic-gallery-top h2{
        font-size:46px;
        line-height:1.2;
    }

    .cryptic-line{
        width:110px;
        height:5px;
        margin-top:20px;
    }

    .cryptic-line::before{
        width:28px;
        height:28px;
    }

    .cryptic-gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .cryptic-gallery-card{
        border-radius:22px;
    }

    .cryptic-gallery-thumb{
        height:260px;
    }

    .cryptic-gallery-content{
        padding:24px 20px;
    }

    .cryptic-gallery-content h3{
        font-size:24px;
        line-height:1.4;
    }

    .cryptic-gallery-content p{
        font-size:15px;
        line-height:1.7;
    }

    .cryptic-play{
        width:78px;
        height:78px;
    }

    .cryptic-play::before{
        border-left:20px solid #fff;
        border-top:13px solid transparent;
        border-bottom:13px solid transparent;
    }

}

/* =========================================
            MOBILE VIEW
========================================= */

@media(max-width:767px){

    .cryptic-gallery{
        padding:50px 16px;
        border-radius:0;
    }

    .cryptic-gallery::before{
        width:180px;
        height:180px;
        top:-70px;
        right:-70px;
    }

    .cryptic-gallery::after{
        width:180px;
        height:180px;
        bottom:-70px;
        left:-70px;
    }

    .cryptic-gallery-top{
        margin-bottom:35px;
    }

    .cryptic-gallery-top span{
        font-size:13px;
        letter-spacing:3px;
        margin-bottom:8px;
    }

    .cryptic-gallery-top h2{
        font-size:30px;
        line-height:1.35;
    }

    .cryptic-line{
        width:85px;
        height:4px;
        margin-top:18px;
    }

    .cryptic-line::before{
        width:22px;
        height:22px;
        border:3px solid #5b21b6;
    }

    .cryptic-gallery-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .cryptic-gallery-card{
        border-radius:18px;
        box-shadow:0 8px 25px rgba(0,0,0,.08);
    }

    .cryptic-gallery-card:hover{
        transform:translateY(-6px);
    }

    .cryptic-gallery-thumb{
        height:220px;
    }

    .cryptic-gallery-thumb img{
        object-fit:cover;
    }

    .cryptic-gallery-content{
        padding:20px 18px;
    }

    .cryptic-gallery-content::before{
        left:18px;
        width:55px;
        height:3px;
    }

    .cryptic-gallery-content h3{
        font-size:21px;
        margin-top:12px;
        margin-bottom:10px;
    }

    .cryptic-gallery-content p{
        font-size:14px;
        line-height:1.7;
    }

    .cryptic-play{
        width:65px;
        height:65px;
    }

    .cryptic-play::before{
        border-left:18px solid #fff;
        border-top:11px solid transparent;
        border-bottom:11px solid transparent;
        margin-left:4px;
    }

}

/* =========================================
        SMALL MOBILE VIEW
========================================= */

@media(max-width:480px){

    .cryptic-gallery{
        padding:45px 14px;
    }

    .cryptic-gallery-top h2{
        font-size:24px;
    }

    .cryptic-gallery-top span{
        font-size:12px;
        letter-spacing:2px;
    }

    .cryptic-gallery-thumb{
        height:200px;
    }

    .cryptic-gallery-content{
        padding:18px 16px;
    }

    .cryptic-gallery-content h3{
        font-size:19px;
    }

    .cryptic-gallery-content p{
        font-size:13px;
    }

    .cryptic-play{
        width:58px;
        height:58px;
    }

    .cryptic-play::before{
        border-left:16px solid #fff;
        border-top:9px solid transparent;
        border-bottom:9px solid transparent;
    }

}

.cryptic-gallery{
    padding:60px 0;
}

.cryptic-gallery-grid{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.cryptic-gallery-card{
    height:320px;
    border-radius:25px;
    overflow:hidden;
    background:#000;
}

.cryptic-gallery-card iframe,
.cryptic-gallery-card video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border:none;
}
/*  */