*{
    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:640px;
    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:140px;
    }

}


/*  */
/* =========================
   FOOTER CONTACT FORM
========================= */

.footer-contact-sec{
    width:100%;
    padding:50px 40px;
    background:#000;
    position:relative;
    overflow:hidden;
}

/* CONTAINER */

.footer-contact-wrap{
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:stretch;
}

/* BOTH SIDE SAME HEIGHT */

.footer-contact-left,
.footer-contact-right{
    height:100%;
}

/* LEFT CARD */

.footer-contact-left{
    background:#fff;
    border-radius:38px;
    padding:55px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
    transition:.4s ease;
}

.footer-contact-left:hover{
    transform:translateY(-6px);
}

.footer-contact-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:170px;
    height:48px;
    background:#000;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:28px;
    text-transform:uppercase;
}

.footer-contact-left h2{
    font-size:58px;
    line-height:1.08;
    color:#000;
    margin-bottom:22px;
    font-weight:800;
}

.footer-contact-left p{
    color:#555;
    font-size:16px;
    line-height:1.9;
    margin-bottom:0px;
}

/* INFO */

.footer-contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:35px;
}

.footer-info-box{
    display:flex;
    align-items:center;
    gap:20px;
    background:#f5f5f5;
    border-radius:24px;
    padding:22px;
    transition:.35s ease;
}

.footer-info-box:hover{
    transform:translateY(-6px);
    background:#efefef;
}

.footer-info-box i{
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:18px;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.footer-info-box h4{
    color:#000;
    font-size:20px;
    margin-bottom:6px;
    font-weight:700;
}

.footer-info-box a,
.footer-info-box p{
    color:#444;
    font-size:15px;
    text-decoration:none;
    line-height:1.7;
    word-break:break-word;
}

/* RIGHT CARD */

.footer-contact-right{
    display:flex;
}

.footer-form{
    width:100%;
    background:#fff;
    border-radius:38px;
    padding:55px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:.4s ease;
}

.footer-form:hover{
    transform:translateY(-6px);
}

/* FORM GRID */

.footer-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-bottom:22px;
}

.footer-field{
    width:100%;
}

.footer-field input,
.footer-field textarea{
    width:100%;
    border:none;
    outline:none;
    background:#f3f3f3;
    border:2px solid transparent;
    border-radius:18px;
    padding:18px 22px;
    color:#000;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    transition:.3s;
}

.footer-field input{
    height:64px;
}

.footer-field textarea{
    height:190px;
    resize:none;
}

.footer-field input:focus,
.footer-field textarea:focus{
    border-color:#000;
    background:#fff;
    box-shadow:0 0 0 4px rgba(0,0,0,.05);
}

.footer-field input::placeholder,
.footer-field textarea::placeholder{
    color:#888;
}

/* BUTTON */

.footer-submit-btn{
    margin-top:28px;
    border:none;
    outline:none;
    padding:19px 40px;
    background:#000;
    color:#fff;
    border-radius:18px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    cursor:pointer;
    transition:.35s ease;
}

.footer-submit-btn:hover{
    transform:translateY(-5px);
    background:#222;
}

/* =========================
        TABLET VIEW
========================= */

@media(max-width:1100px){

    .footer-contact-sec{
        padding:60px 24px;
    }

    .footer-contact-wrap{
        grid-template-columns:1fr;
        gap:28px;
    }

    .footer-contact-left,
    .footer-form{
        padding:42px 34px;
        border-radius:30px;
    }

    .footer-contact-left h2{
        font-size:46px;
        line-height:1.2;
    }

    .footer-contact-left p{
        font-size:15px;
        line-height:1.8;
    }

    .footer-contact-info{
        margin-top:28px;
        gap:18px;
    }

    .footer-info-box{
        padding:20px;
        border-radius:20px;
    }

    .footer-info-box i{
        width:56px;
        height:56px;
        min-width:56px;
        font-size:20px;
    }

    .footer-info-box h4{
        font-size:18px;
    }

    .footer-info-box a,
    .footer-info-box p{
        font-size:14px;
    }

    .footer-form-grid{
        gap:18px;
    }

}

/* =========================
        MOBILE VIEW
========================= */

@media(max-width:768px){

    .footer-contact-sec{
        padding:48px 16px;
    }

    .footer-contact-wrap{
        gap:22px;
    }

    .footer-contact-left,
    .footer-form{
        padding:28px 20px;
        border-radius:24px;
    }

    .footer-contact-tag{
        width:auto;
        padding:0 18px;
        height:40px;
        font-size:11px;
        letter-spacing:1px;
        margin-bottom:18px;
    }

    .footer-contact-left h2{
        font-size:32px;
        line-height:1.3;
        margin-bottom:16px;
    }

    .footer-contact-left p{
        font-size:14px;
        line-height:1.8;
    }

    .footer-contact-info{
        gap:16px;
        margin-top:24px;
    }

    .footer-info-box{
        padding:16px;
        border-radius:18px;
        gap:14px;
        align-items:flex-start;
    }

    .footer-info-box i{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:14px;
        font-size:18px;
    }

    .footer-info-box h4{
        font-size:16px;
        margin-bottom:4px;
    }

    .footer-info-box a,
    .footer-info-box p{
        font-size:13px;
        line-height:1.7;
    }

    .footer-form-grid{
        grid-template-columns:1fr;
        gap:16px;
        margin-bottom:16px;
    }

    .footer-field input,
    .footer-field textarea{
        border-radius:14px;
        padding:15px 16px;
        font-size:14px;
    }

    .footer-field input{
        height:56px;
    }

    .footer-field textarea{
        height:160px;
    }

    .footer-submit-btn{
        width:100%;
        padding:16px;
        border-radius:14px;
        font-size:14px;
        margin-top:20px;
    }

}

/* =========================
      SMALL MOBILE VIEW
========================= */

@media(max-width:480px){

    .footer-contact-sec{
        padding:40px 14px;
    }

    .footer-contact-left,
    .footer-form{
        padding:24px 16px;
        border-radius:20px;
    }

    .footer-contact-left h2{
        font-size:26px;
    }

    .footer-contact-left p{
        font-size:13px;
    }

    .footer-info-box{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .footer-info-box i{
        margin-bottom:4px;
    }

    .footer-field input,
    .footer-field textarea{
        font-size:13px;
    }

}

/* =========================
        TOP CONTACT
========================= */

.top-contact{
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

.top-contact i{
    flex-shrink:0;
}

.top-contact span{
    white-space:nowrap;
}
/* =========================================
GALLERY SECTION
========================================= */

.contact-map-sec{
    width:100%;
    background:#efefef;
    padding:55px 45px;
    position:relative;
    overflow:hidden;
}

.contact-main-wrap{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
    position:relative;
}

/* LEFT SOCIAL */

.social-fixed{
    width:80px;
    height:315px;
    background:#fff;
    position:absolute;
    left:45px;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
}

.social-fixed a{
    color:#000;
    font-size:19px;
    transition:.3s;
}

.social-fixed a:hover{
    transform:scale(1.1);
}

/* CONTACT BOX */

.contact-info-box{
    width:530px;
    background:#333;
    padding:48px 42px;
    border-radius:8px;
    position:relative;
    z-index:3;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:35px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.icon-box{
    min-width:62px;
    width:62px;
    height:62px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    color:#222;
    font-size:27px;
}

.contact-content h3{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-content p{
    color:#fff;
    font-size:16px;
    line-height:1.9;
    font-weight:400;
}

/* MAP */

.map-box{
    width:680px;
    height:360px;
    overflow:hidden;
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(0%);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .contact-main-wrap{
        flex-direction:column;
    }

    .contact-info-box{
        width:100%;
    }

    .map-box{
        width:100%;
    }

    .social-fixed{
        display:none;
    }
}

@media(max-width:768px){

    .contact-map-sec{
        padding:40px 18px;
    }

    .contact-info-box{
        padding:35px 22px;
    }

    .contact-item{
        gap:15px;
    }

    .icon-box{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .icon-box i{
        font-size:22px;
    }

    .contact-content h3{
        font-size:17px;
    }

    .contact-content p{
        font-size:14px;
        line-height:1.8;
    }

    .map-box{
        height:300px;
    }
}