/* =========================
   RESET
========================= */

*{
    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;
}

/* =========================
   SECTION
========================= */

.milestone-section{
    position:relative;
    padding:20px 0px;
    background:#f8f9fb;
    overflow:hidden;
}

.milestone-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(0,0,0,.05),transparent 70%);
    top:-200px;
    left:-200px;
}

.milestone-section::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,rgba(0,0,0,.05),transparent 70%);
    bottom:-200px;
    right:-200px;
}

/* =========================
   HEADER
========================= */

.milestone-header{
    text-align:center;
    max-width:1200px;
    margin:auto;
    margin-bottom:80px;
}

.milestone-header span{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#666;
    margin-bottom:12px;
}

.milestone-header h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.milestone-header p{
   font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 0.3px;
}

/* =========================
   TIMELINE
========================= */

.timeline-wrapper{
    position:relative;
    margin-top:70px;
}

.timeline-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:#000;
}

/* =========================
   GRID
========================= */

.milestone-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    align-items:stretch;
}

/* =========================
   CARD
========================= */

.milestone-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:35px 25px;
    border:1px solid #e9e9e9;

    display:flex;
    flex-direction:column;



    box-shadow:
    0 10px 25px rgba(0,0,0,.05),
    0 5px 10px rgba(0,0,0,.03);

    transition:.35s ease;
}

.milestone-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.12),
    0 10px 20px rgba(0,0,0,.08);
}

/* =========================
   DOT
========================= */

.timeline-dot{
    position:absolute;
    top:-50px;
    left:50%;
    transform:translateX(-50%);

    width:24px;
    height:24px;
    border-radius:50%;

    background:#000;
    border:4px solid #fff;

    box-shadow:0 0 0 6px rgba(0,0,0,.08);
}

.timeline-dot::after{
    content:'';
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:22px;
    width:2px;
    height:35px;
    background:#000;
}

/* =========================
   ICON
========================= */

.icon-box{
    width:95px;
    height:95px;

    background:#000;
    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;
}

.icon-box i{
    font-size:42px;
    color:#fff !important;
}

/* =========================
   YEAR
========================= */

.year{
    display:inline-block;

    background:#000;
    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;
    text-align:center;
    font-weight:700;

    margin-bottom:20px;
}

/* =========================
   TITLE
========================= */

.milestone-card h3{
    font-size:22px;
    color:#111;
    font-weight:700;
    margin-bottom:15px;
    text-align: center;
}

.milestone-card h3::after{
    content:'';
    display:block;

    width:60px;
    height:3px;

    background:#000;

    margin:15px auto 0;
    border-radius:20px;
}

/* =========================
   DESCRIPTION
========================= */

.milestone-card p{
       font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 0.3px;
}

/* =========================
   BUTTON (OPTIONAL)
========================= */

.milestone-btn{
    margin-top:auto;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px){

    .milestone-grid{
        grid-template-columns:repeat(3,1fr);
        row-gap:70px;
    }

    .timeline-line{
        display:none;
    }

    .timeline-dot{
        display:none;
    }
}

@media(max-width:992px){

    .milestone-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .milestone-header h2{
        font-size:40px;
    }

    .milestone-card{
        min-height:450px;
    }
}

@media(max-width:768px){

    .milestone-section{
        padding:20px 0px;
    }

    .milestone-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .milestone-header h2{
        font-size:34px;
    }

    .milestone-header p{
        font-size:16px;
    }

    .milestone-card{
        min-height:auto;
        padding:30px 20px;
    }

    .icon-box{
        width:80px;
        height:80px;
    }

    .icon-box i{
        font-size:34px;
    }
}
/* CONTAINER */

.container{
    width:100%;
    max-width:1450px;
    margin:auto;
    padding:0 15px;
}

/* 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
=================================== */

/* ===================================
            HERO SECTION
=================================== */

.hero-slider{
    width:100%;
    position:relative;
    overflow:hidden;
}

.slider{
    width:100%;
    height:90vh;
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

/* IMAGE */

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

/* CONTENT */

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    max-width:1400px;
    padding:0 40px;
    z-index:2;
}

.hero-box{
    background:#6f47a8;
    max-width:650px;
    padding:60px;
    clip-path:polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.hero-box h1{
    color:#fff;
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
    text-transform:uppercase;
}

.hero-box h2{
    color:#ffcc29;
    font-size:40px;
    font-weight:600;
}

/* ARROWS */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.45);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:5;
    transition:0.3s;
}

.arrow:hover{
    background:#6f47a8;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}

/* DOTS */

.dots{
    display:none;
}

/* ===================================
        TABLET VIEW
=================================== */

@media(max-width:991px){

    .slider{
        height:55vh;
        min-height:420px;
    }

    .slide{
        position:absolute;
        inset:0;
    }

    .slide img{
        width:100%;
        height:100%;
        object-fit:contain;   /* IMAGE FULL SHOW */
        object-position:center;
        background:#000;
    }

    .slide-content{
        padding:0 30px;
    }

    .hero-box{
        max-width:480px;
        padding:35px;
    }

    .hero-box h1{
        font-size:40px;
        line-height:1.2;
        margin-bottom:15px;
    }

    .hero-box h2{
        font-size:26px;
    }

    .arrow{
        width:46px;
        height:46px;
        font-size:18px;
        display: none;
    }

    .prev{
        left:12px;
    }

    .next{
        right:12px;
    }

}

/* ===================================
        MOBILE VIEW
=================================== */

@media(max-width:767px){

    .hero-slider{
        overflow:hidden;
    }

    .slider{
        height:22vh;
        min-height:200px;
    }

    .slide{
        position:absolute;
        inset:0;
        width:100%;
        height:60%;
        height:180px !important;
    }

    .slide img{
        width:100%;
        height:100%;
        object-fit:contain;   /* FULL IMAGE SHOW */
        object-position:center;
        background:#000;
        display:block;
        height:180px;
    }

    .slide-content{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
        width:100%;
        padding:0 15px;
        z-index:2;
    }

    .hero-box{
        max-width:100%;
        padding:20px 18px;
        clip-path:none;
        border-radius:12px;
        background:rgba(111,71,168,0.90);
    }

    .hero-box h1{
        font-size:22px;
        line-height:1.3;
        margin-bottom:10px;
    }

    .hero-box h2{
        font-size:15px;
        line-height:1.4;
    }

    .arrow{
        width:38px;
        height:38px;
        font-size:14px;
        top:auto;
        bottom:12px;
        transform:none;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

}

/* ===================================
        SMALL MOBILE VIEW
=================================== */

@media(max-width:480px){

    .slider{
        height:36vh;
        min-height:260px;
    }

    .slide img{
        object-fit:contain;
        object-position:center;
    }

    .slide-content{
        padding:0 12px;
    }

    .hero-box{
        padding:16px 14px;
    }

    .hero-box h1{
        font-size:18px;
    }

    .hero-box h2{
        font-size:13px;
    }

    .arrow{
        width:34px;
        height:34px;
        font-size:12px;
    }

}
/* ================================
   MANUFACTURING SECTION
================================ */


/* SECTION */

.cm-manufacturing-section{
    width:100%;
    padding:20px 3%;
    background:#fff;
    overflow:hidden;
    position:relative;
}

.cm-container{
    max-width:1450px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* =========================
   LEFT CONTENT
========================= */

.cm-content{
    width:48%;
}

.cm-subtitle{
    display:inline-block;

    color:#000;
    border-radius:50px;
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
    text-transform:uppercase;
        font-size: 40px;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
       font-family: 'Plus Jakarta Sans', sans-serif;
}

.cm-content h2{
    font-size:30px;
    line-height:1.15;
    font-weight:600;
    color:#000;
    margin-bottom:30px;
       font-family: 'Plus Jakarta Sans', sans-serif;
}

.cm-content h2 span{
    color:#000;
}

.cm-content p{
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
    letter-spacing: 0.3px;
}

/* =========================
   FEATURES
========================= */

.cm-features{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.cm-feature{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    padding:18px 22px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.cm-feature:hover{
    transform:translateY(-8px);
}

.cm-feature i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#6c4cff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.cm-feature span{
    font-size:15px;
    font-weight:600;
    color:#222;
}

/* =========================
   RIGHT IMAGE
========================= */

.cm-collage{
    width:52%;
}

.cm-big-image{
    position:relative;
    width:100%;

}

/* MAIN IMAGE */

.cm-big-image > img{
    position:absolute;
    inset:0;
    width:100%;
    margin-top: -230px;
    object-fit:cover;
    object-position:center center;
    display:block;
    transition:0.7s;
}

.cm-big-image:hover > img{
    transform:scale(1.05);
}

/* =========================
   OVERLAY
========================= */


/* LOGO */




/* MINI TAGS */

.cm-mini-box{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.cm-mini-box span{
    padding:12px 22px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
    border-radius:50px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

/* 
 */
/* ==========================================
        RESPONSIVE TABLET VIEW
========================================== */

/* ==========================================
        TABLET VIEW
========================================== */

@media (max-width: 991px){

    .cm-manufacturing-section{
        padding:70px 5%;
    }

    .cm-container{
        flex-direction:column;
        align-items:center;
        gap:50px;
    }

    /* =========================
            IMAGE
    ========================= */

    .cm-collage{
        width:100%;
        order:1;
    }

    .cm-big-image{
        position:relative;
        width:100%;
        min-height:520px;
        border-radius:30px;
        overflow:hidden;
        box-shadow:0 20px 60px rgba(0,0,0,0.15);
    }

    .cm-big-image > img{
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        margin-top:0;
        border-radius:30px;
        transition:0.6s;
    }

    /* =========================
            CONTENT
    ========================= */

    .cm-content{
        width:100%;
        order:2;
        text-align:center;
    }

    .cm-subtitle{
        display:block;
        font-size:34px;
        line-height:1.3;
        margin-bottom:18px;
    }

    .cm-content h2{
        font-size:42px;
        line-height:1.25;
        margin-bottom:22px;
    }

    .cm-content p{
        font-size:17px;
        line-height:1.95;
        color:#444;
        margin-bottom:18px;
        text-align:justify;
        text-justify:inter-word;
    }

    /* =========================
            FEATURES
    ========================= */

    .cm-features{
        display:flex;
        justify-content:center;
        gap:18px;
        flex-wrap:wrap;
        margin-top:35px;
    }

    .cm-feature{
        width:calc(50% - 10px);
        display:flex;
        align-items:center;
        gap:14px;
        padding:18px;
        border-radius:20px;
        background:#fff;
        box-shadow:0 12px 30px rgba(0,0,0,0.08);
    }

    .cm-feature i{
        width:48px;
        height:48px;
        min-width:48px;
        border-radius:50%;
        font-size:17px;
    }

    .cm-feature span{
        font-size:15px;
        line-height:1.5;
        text-align:left;
    }

}




/* ==========================================
            MOBILE VIEW
========================================== */

@media (max-width: 767px){

    .cm-manufacturing-section{
        padding:55px 5%;
    }

    .cm-container{
        gap:35px;
    }

    /* =========================
            IMAGE
    ========================= */

    .cm-collage{
        width:100%;
    }

    .cm-big-image{
        width:100%;
        min-height:340px;
        border-radius:24px;
        overflow:hidden;
        box-shadow:0 15px 40px rgba(0,0,0,0.15);
    }

    .cm-big-image > img{
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center;
        margin-top:0;
        border-radius:24px;
    }

    /* =========================
            CONTENT
    ========================= */

    .cm-content{
        width:100%;
        text-align:center;
    }

    .cm-subtitle{
        font-size:24px;
        line-height:1.4;
        margin-bottom:14px;
    }

    .cm-content h2{
        font-size:30px;
        line-height:1.3;
        margin-bottom:18px;
    }

    .cm-content p{
        font-size:15px;
        line-height:1.9;
        color:#444;
        margin-bottom:16px;

        /* JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* =========================
            FEATURES
    ========================= */

    .cm-features{
        flex-direction:column;
        gap:16px;
        margin-top:28px;
    }

    .cm-feature{
        width:100%;
        padding:16px 18px;
        border-radius:18px;
        gap:14px;
        background:#fff;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .cm-feature i{
        width:46px;
        height:46px;
        min-width:46px;
        font-size:16px;
    }

    .cm-feature span{
        font-size:14px;
        line-height:1.5;
        text-align:left;
    }

}




/* ==========================================
        SMALL MOBILE VIEW
========================================== */

@media (max-width: 480px){

    .cm-manufacturing-section{
        padding:15px 3%;
        margin-top:-80px;
    }

    .cm-big-image{
        min-height:280px;
        border-radius:20px;
    }

    .cm-big-image > img{
        border-radius:20px;
    }

    .cm-subtitle{
        font-size:20px;
        line-height:1.4;
    }

    .cm-content h2{
        font-size:20px;
        line-height:1.35;
    }

    .cm-content p{
        font-size:14px;
        line-height:1.8;

        /* PERFECT JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    .cm-feature{
        padding:14px 15px;
        border-radius:16px;
    }

    .cm-feature i{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:15px;
    }

    .cm-feature span{
        font-size:13px;
    }

}
/* product section  */
/* =========================
   PRODUCTS SECTION
========================= */
/* ==========================================
            PRODUCT SECTION
========================================== */

.cm-product-section{
    width:100%;
    padding:20px 20px;
    position:relative;
    background:#f7f5ff;
    overflow:hidden;
}

/* ==========================================
            CONTAINER
========================================== */

.cm-product-container{
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* ==========================================
                HEADING
========================================== */

.cm-product-heading{
    text-align:center;
    margin-bottom:20px;
}

.cm-product-heading h2{
    font-size:40px;
    line-height:1.2;
    color:#000;
    font-weight:600;
    margin-bottom:10px;
    font-family:'Poppins',sans-serif;
}

.cm-product-heading p{
    color:#444;
    font-size:18px;
    font-weight:400;
    font-family:'Poppins',sans-serif;
    line-height:1.8;

    /* JUSTIFY */
    text-align:justify;
    text-justify:inter-word;
}

/* ==========================================
            CATEGORY BUTTONS
========================================== */

.cm-category-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.cm-category-btn{
    padding:14px 34px;
    border:none;
    border-radius:0px;
    background:#fff;
    color:#000;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s ease;
    font-family:'Poppins',sans-serif;
    box-shadow:0 8px 25px rgba(125,90,169,0.12);
    border:2px solid #ece5ff;
}

.cm-category-btn:hover{
    background:#000;
    color:#fff;
    border-color:#000;
    transform:translateY(-3px);
}

/* ==========================================
                PRODUCT GRID
========================================== */

.cm-product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ==========================================
                PRODUCT CARD
========================================== */

.cm-product-card{
    background:#fff;
    overflow:hidden;
    padding:22px;
    transition:0.4s ease;
    border:2px solid #eee;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    position:relative;
}

.cm-product-card:hover{
    transform:translateY(-10px);
    border-color:#000;
    box-shadow:0 18px 40px rgba(125,90,169,0.18);
}

/* IMAGE */

.cm-product-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    display:block;
    transition:0.4s;
}

.cm-product-card:hover img{
    transform:scale(1.04);
}

/* ==========================================
                    HIDE
========================================== */

.cm-hide{
    display:none;
}

/* ==========================================
                TABLET VIEW
========================================== */

@media (max-width: 991px){

    .cm-product-section{
        padding:70px 4%;
    }

    /* HEADING */

    .cm-product-heading{
        margin-bottom:35px;
    }

    .cm-product-heading h2{
        font-size:34px;
        line-height:1.3;
        margin-bottom:14px;
    }

    .cm-product-heading p{
        font-size:16px;
        line-height:1.8;
        padding:0 20px;
        text-align:justify;
        text-justify:inter-word;
    }

    /* CATEGORY BUTTON */

    .cm-category-wrapper{
        gap:16px;
        margin-bottom:40px;
    }

    .cm-category-btn{
        padding:13px 28px;
        font-size:15px;
    }

    /* PRODUCT GRID */

    .cm-product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    /* CARD */

    .cm-product-card{
        padding:20px;
    }

    .cm-product-card img{
        height:280px;
    }

}

/* ==========================================
                MOBILE VIEW
========================================== */

@media (max-width: 767px){

    .cm-product-section{
        padding:55px 5%;
    }

    /* HEADING */

    .cm-product-heading{
        margin-bottom:28px;
    }

    .cm-product-heading h2{
        font-size:28px;
        line-height:1.35;
        margin-bottom:12px;
    }

    .cm-product-heading p{
        font-size:15px;
        line-height:1.9;
        padding:0;

        /* JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* CATEGORY BUTTONS */

    .cm-category-wrapper{
        gap:12px;
        margin-bottom:30px;
        justify-content:center;
    }

    .cm-category-btn{
        padding:12px 20px;
        font-size:14px;
        width:auto;
    }

    /* PRODUCT GRID */

    .cm-product-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    /* CARD */

    .cm-product-card{
        padding:18px;
    }

    .cm-product-card img{
        width:100%;
        height:250px;
    }

}

/* ==========================================
            SMALL MOBILE VIEW
========================================== */

@media (max-width: 480px){

    .cm-product-section{
        padding:45px 4%;
    }

    /* HEADING */

    .cm-product-heading h2{
        font-size:24px;
        line-height:1.4;
    }

    .cm-product-heading p{
        font-size:14px;
        line-height:1.8;

        /* PERFECT JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* CATEGORY BUTTONS */

    .cm-category-wrapper{
        gap:10px;
    }

    .cm-category-btn{
        width:100%;
        padding:12px 16px;
        font-size:14px;
    }

    /* CARD */

    .cm-product-card{
        padding:16px;
    }

    .cm-product-card img{
        height:220px;
    }

}
/* product section  */

     /* ===================================
           ECOSYSTEM SECTION
        =================================== */

        .ca-ecosystem-section{
            width:100%;
            overflow:hidden;
            padding:30px 0 0;
            position:relative;
            background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #f7f7f7 100%
            );
        }

        /* CONTAINER */

        .ca-ecosystem-container{
            width:90%;
            max-width:1250px;
            margin:auto;
            text-align:center;
        }

        /* SMALL TITLE */

        .ca-small-title{
 display: inline-block;
    color: #000;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
        }

        /* MAIN TITLE */

        .ca-main-title{
         display: inline-block;
    color: #000;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
        }

        /* SUB TITLE */

        .ca-sub-title{
            font-size:30px;
            font-weight:500;
            color:#333;
            margin-bottom:30px;
             font-family: 'Poppins', sans-serif;
        }

        /* DESCRIPTION */

        .ca-description{
            width:100%;
            max-width:1050px;
            margin:auto;
          font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
    letter-spacing: 0.3px;
        }

        /* BUTTON */

        .ca-explore-btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:10px;
            margin-top:20px;
            padding:14px 34px;
            background:#000;
            color:#fff;
            text-decoration:none;
            border-radius:10px;
            font-size:15px;
            font-weight:600;
            letter-spacing:1px;
            transition:0.4s ease;
            box-shadow:
            0 12px 35px rgba(255,122,0,0.25);
               font-family: 'Poppins', sans-serif;
        }

        .ca-explore-btn:hover{
            transform:translateY(-5px);
            box-shadow:
            0 16px 40px rgba(255,122,0,0.35);
        }

        /* ===================================
           LOGO SLIDER
        =================================== */
.ca-logo-slider{
    width:100%;
    margin-top:50px;
    background:#fff;
    overflow:hidden;
    position:relative;
    border-top:3px solid #000;
    border-bottom:3px solid #000;
    padding:8px 0;
}

/* LEFT RIGHT FADE */

.ca-logo-slider::before,
.ca-logo-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:140px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.ca-logo-slider::before{
    left:0;
    background:linear-gradient(to right,#fff 0%,transparent 100%);
}

.ca-logo-slider::after{
    right:0;
    background:linear-gradient(to left,#fff 0%,transparent 100%);
}

/* TRACK */

.ca-logo-track{
    display:flex;
    align-items:center;
    gap:25px;
    width:max-content;
    animation:caMarquee 40s linear infinite;
}

/* ITEM */

.ca-logo-item{
    width:210px;
    height:100px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

/* IMAGE */

.ca-logo-item img{
    max-width:170px;
    max-height:80px;

    width:auto;
    height:auto;

    object-fit:contain;

    /* ORIGINAL COLOR */
    filter:none;

    opacity:1;

    transition:0.4s ease;
}

/* HOVER */

.ca-logo-item:hover img{
    transform:scale(1.08);
}

/* ANIMATION */

@keyframes caMarquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .ca-logo-slider{
        padding:16px 0;
        margin-top:40px;
    }

    .ca-logo-track{
        gap:18px;
        animation:caMarquee 28s linear infinite;
    }

    .ca-logo-item{
        width:150px;
        height:80px;
    }

    .ca-logo-item img{
        max-width:120px;
        max-height:60px;
    }

    .ca-logo-slider::before,
    .ca-logo-slider::after{
        width:60px;
    }

}


/*  */

/* ==========================================
                TABLET VIEW
========================================== */

@media (max-width: 991px){

    .ca-ecosystem-section{
        padding:70px 0 0;
    }

    /* CONTAINER */

    .ca-ecosystem-container{
        width:92%;
    }

    /* SMALL TITLE */

    .ca-small-title{
        font-size:34px;
        line-height:1.3;
        margin-bottom:14px;
        display:block;
    }

    /* MAIN TITLE */

    .ca-main-title{
        font-size:36px;
        line-height:1.3;
        margin-bottom:18px;
        display:block;
    }

    /* SUB TITLE */

    .ca-sub-title{
        font-size:24px;
        line-height:1.5;
        margin-bottom:24px;
    }

    /* DESCRIPTION */

    .ca-description{
        max-width:100%;
        font-size:17px;
        line-height:1.95;
        padding:0 10px;
        text-align:justify;
        text-justify:inter-word;
    }

    /* BUTTON */

    .ca-explore-btn{
        margin-top:28px;
        padding:14px 30px;
        font-size:14px;
        border-radius:10px;
    }

    /* ==========================================
                    LOGO SLIDER
    ========================================== */

    .ca-logo-slider{
        margin-top:45px;
        padding:14px 0;
    }

    .ca-logo-track{
        gap:22px;
        animation:caMarquee 30s linear infinite;
    }

    .ca-logo-item{
        width:180px;
        height:90px;
    }

    .ca-logo-item img{
        max-width:145px;
        max-height:70px;
    }

    .ca-logo-slider::before,
    .ca-logo-slider::after{
        width:90px;
    }

}




/* ==========================================
                MOBILE VIEW
========================================== */

@media (max-width: 767px){

    .ca-ecosystem-section{
        padding:55px 0 0;
    }

    /* CONTAINER */

    .ca-ecosystem-container{
        width:92%;
    }

    /* SMALL TITLE */

    .ca-small-title{
        font-size:24px;
        line-height:1.4;
        margin-bottom:10px;
        display:block;
    }

    /* MAIN TITLE */

    .ca-main-title{
        font-size:28px;
        line-height:1.4;
        margin-bottom:16px;
        display:block;
    }

    /* SUB TITLE */

    .ca-sub-title{
        font-size:20px;
        line-height:1.5;
        margin-bottom:18px;
    }

    /* DESCRIPTION */

    .ca-description{
        width:100%;
        font-size:15px;
        line-height:1.9;
        padding:0 2px;

        /* JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* BUTTON */

    .ca-explore-btn{
        margin-top:24px;
        padding:13px 24px;
        font-size:13px;
        border-radius:8px;
        gap:8px;
    }

    /* ==========================================
                    LOGO SLIDER
    ========================================== */

    .ca-logo-slider{
        padding:14px 0;
        margin-top:35px;
    }

    .ca-logo-track{
        gap:18px;
        animation:caMarquee 24s linear infinite;
    }

    .ca-logo-item{
        width:140px;
        height:75px;
    }

    .ca-logo-item img{
        max-width:110px;
        max-height:55px;
    }

    .ca-logo-slider::before,
    .ca-logo-slider::after{
        width:55px;
    }

}




/* ==========================================
            SMALL MOBILE VIEW
========================================== */

@media (max-width: 480px){

    .ca-ecosystem-section{
        padding:45px 0 0;
    }

    /* SMALL TITLE */

    .ca-small-title{
        font-size:20px;
        line-height:1.4;
    }

    /* MAIN TITLE */

    .ca-main-title{
        font-size:20px;
        line-height:1.4;
    }

    /* SUB TITLE */

    .ca-sub-title{
        font-size:18px;
        line-height:1.5;
    }

    /* DESCRIPTION */

    .ca-description{
        font-size:14px;
        line-height:1.85;

        /* PERFECT JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* BUTTON */

    .ca-explore-btn{
        width:auto;
        padding:12px 20px;
        font-size:12px;
    }

    /* LOGO */

    .ca-logo-track{
        gap:15px;
    }

    .ca-logo-item{
        width:120px;
        height:70px;
    }

    .ca-logo-item img{
        max-width:95px;
        max-height:50px;
    }

    .ca-logo-slider::before,
    .ca-logo-slider::after{
        width:40px;
    }

}
/* =========================
   MOBILE RESPONSIVE
========================= */

.ca-industries-section{
    width:100%;
    padding:30px 0;
    background:#efefef;
    overflow:hidden;
    position:relative;
}

.ca-container{
    width:100%;
    max-width:1340px;
    margin:auto;
}

/* HEADING */

.ca-heading{
   display: inline-block;
    color: #000;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.ca-heading span{
    color:#000;
}

/* ==============================
   SLIDER
============================== */

.ca-slider-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
}

.ca-slider{
    display:flex;
    transition:1s ease;
}

.ca-slide{
    min-width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* IMAGE */

.ca-slide-image{
    width:55%;
    position:relative;
}

.ca-slide-image img{
    width:100%;
   
    object-fit:cover;
    border-radius:26px;
    display:block;
}

/* CONTENT */

.ca-slide-content{
    width:45%;
}

.ca-slide-content h2{
    font-size:40px;
    color:#000;
    font-weight:500;
    margin-bottom:28px;
        font-family: 'Poppins', sans-serif;
}

.ca-slide-content p{
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
    letter-spacing: 0.3px;
}

/* ==============================
   DOTS
============================== */

.ca-dots{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    margin-top:50px;
}

.ca-dot{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.4s;
    font-size:15px;
    font-weight:600;
}

.ca-dot.active{
    background:#000;
    color: #fff;
}

/* ==============================
   ARROW BUTTON
============================== */

.ca-arrow{
    position:absolute;
    right:30px;
    bottom:30px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#7d5aa9;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    cursor:pointer;
    transition:.4s;
    z-index:5;
}

.ca-arrow:hover{
    transform:translateY(-5px);
}

/* ==============================
   RESPONSIVE
============================== */

/* ==========================================
                TABLET VIEW
========================================== */

@media (max-width: 991px){

    .ca-industries-section{
        padding:70px 4%;
    }

    .ca-container{
        width:100%;
    }

    /* ==============================
            HEADING
    ============================== */

    .ca-heading{
        font-size:34px;
        line-height:1.3;
        margin-bottom:40px;
        text-align:center;
        display:block;
    }

    /* ==============================
            SLIDE
    ============================== */

    .ca-slide{
        flex-direction:column;
        gap:45px;
    }

    /* IMAGE */

    .ca-slide-image{
        width:100%;
    }

    .ca-slide-image img{
        width:100%;
        height:480px;
        object-fit:cover;
        border-radius:28px;
        box-shadow:0 18px 45px rgba(0,0,0,0.12);
    }

    /* CONTENT */

    .ca-slide-content{
        width:100%;
        text-align:center;
    }

    .ca-slide-content h2{
        font-size:38px;
        line-height:1.3;
        margin-bottom:20px;
    }

    .ca-slide-content p{
        font-size:17px;
        line-height:1.95;

        /* JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* ==============================
            DOTS
    ============================== */

    .ca-dots{
        margin-top:40px;
        gap:14px;
    }

    .ca-dot{
        width:40px;
        height:40px;
        font-size:14px;
    }

    /* ==============================
            ARROW
    ============================== */

    .ca-arrow{
        width:50px;
        height:50px;
        font-size:25px;
        right:20px;
        bottom:20px;
    }

}




/* ==========================================
                MOBILE VIEW
========================================== */

@media (max-width: 767px){

    .ca-industries-section{
        padding:55px 5%;
    }

    /* ==============================
            HEADING
    ============================== */

    .ca-heading{
        font-size:26px;
        line-height:1.4;
        margin-bottom:30px;
        text-align:center;
        display:block;
    }

    /* ==============================
            SLIDE
    ============================== */

    .ca-slide{
        flex-direction:column;
        gap:30px;
    }

    /* IMAGE */

    .ca-slide-image{
        width:100%;
    }

    .ca-slide-image img{
        width:100%;
        height:260px;
        object-fit:cover;
        border-radius:22px;
        box-shadow:0 12px 35px rgba(0,0,0,0.12);
    }

    /* CONTENT */

    .ca-slide-content{
        width:100%;
        text-align:center;
    }

    .ca-slide-content h2{
        font-size:28px;
        line-height:1.35;
        margin-bottom:16px;
    }

    .ca-slide-content p{
        font-size:15px;
        line-height:1.9;

        /* JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* ==============================
            DOTS
    ============================== */

    .ca-dots{
        margin-top:30px;
        gap:10px;
    }

    .ca-dot{
        width:36px;
        height:36px;
        font-size:13px;
    }

    /* ==============================
            ARROW
    ============================== */

    .ca-arrow{
        width:46px;
        height:46px;
        font-size:22px;
        right:12px;
        bottom:12px;
    }

}




/* ==========================================
            SMALL MOBILE VIEW
========================================== */

@media (max-width: 480px){

    .ca-industries-section{
        padding:45px 4%;
    }

    /* HEADING */

    .ca-heading{
        font-size:22px;
        line-height:1.45;
    }

    /* IMAGE */

    .ca-slide-image img{
        height:220px;
        border-radius:18px;
    }

    /* CONTENT */

    .ca-slide-content h2{
        font-size:24px;
        line-height:1.4;
    }

    .ca-slide-content p{
        font-size:14px;
        line-height:1.85;

        /* PERFECT JUSTIFY */
        text-align:justify;
        text-justify:inter-word;
    }

    /* DOT */

    .ca-dot{
        width:32px;
        height:32px;
        font-size:12px;
    }

    /* ARROW */

    .ca-arrow{
        width:42px;
        height:42px;
        font-size:20px;
    }

}
/* ==============================
   SECTION
============================== */
/* ================= FAQ SECTION ================= */

.cas-faq-section{
    width:100%;
    padding:30px 20px;
    background:#fff;
    font-family:'Poppins', sans-serif;
}

.cas-container{
    max-width:1300px;
    margin:auto;
}

.cas-faq-heading{
    text-align:center;
    margin-bottom:40px;
}

.cas-faq-heading h2{
   display: inline-block;
    color: #000;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* FAQ ITEM */

.cas-faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.cas-faq-item{
    background:#e9e9e9;
    border:1px solid #bdbdbd;
    border-radius:14px;
    overflow:hidden;
    transition:0.4s ease;
}

.cas-faq-question{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    cursor:pointer;
    padding:14px 14px;
}

.cas-faq-left{
    display:flex;
    align-items:center;
    gap:16px;
}

.cas-faq-icon{
    width:22px;
    height:22px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    flex-shrink:0;
    transition:0.4s ease;
}

.cas-faq-question h3{
    font-size:28px;
    font-weight:600;
    color:#000;
    text-align:left;
    line-height:1.4;
    font-family: 'Poppins', sans-serif;
}

/* ANSWER */

.cas-faq-answer{
    max-height:0;
    overflow:hidden;
    background:#fff;
    transition:max-height 0.5s ease, padding 0.5s ease;
    padding:0 24px;
    font-family: 'Poppins', sans-serif;
}

.cas-faq-answer p{
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 450;
    line-height: 2;
    color: #333;
    margin-bottom: 14px;
    text-align: justify;
    letter-spacing: 0.3px;
}

/* ACTIVE */

.cas-faq-item.active .cas-faq-answer{
    max-height:300px;
    padding:0 24px;
}

.cas-faq-item.active .cas-faq-icon i{
    transform:rotate(180deg);
}

/* RESPONSIVE */

@media(max-width:768px){

    .cas-faq-heading h2{
        font-size:24px;
    }

    .cas-faq-question{
        padding:18px;
    }

    .cas-faq-question h3{
        font-size:18px;
    }

    .cas-faq-answer p{
        font-size:16px;
        line-height:1.7;
    }

}

/*  */


/* cta */
/* ================= COUNTER SECTION ================= */

.cas-counter-section{
    width:100%;
    padding:40px 20px;
    background:#000;
    font-family:'Poppins', sans-serif;
}

.cas-counter-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.cas-counter-box{
    flex:1;
    text-align:center;
}

.cas-counter-box h2{
    font-size:68px;
    font-weight:700;
    color:#fff;
    line-height:1;
    margin-bottom:12px;
}

.cas-counter-box p{
    font-size:28px;
    font-weight:600;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:768px){

    .cas-counter-container{
        flex-direction:column;
        gap:40px;
    }

    .cas-counter-box h2{
        font-size:48px;
    }

    .cas-counter-box p{
        font-size:22px;
    }

}
/* cta */



/* form section  */

/* ================= CONTACT SECTION ================= */

.cas-contact-section{
    width:100%;
    padding:30px 20px;
    background:#f5f5f5;
    font-family:'Poppins', sans-serif;
}

.cas-contact-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:stretch;
}

/* ================= FORM BOX ================= */

.cas-contact-form-box{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.cas-contact-heading{
    margin-bottom:30px;
}

.cas-contact-heading h2{
    font-size:42px;
    font-weight:700;
    color:#000;
    margin-bottom:10px;
    font-family:'Poppins', sans-serif;
}

.cas-contact-heading p{
    font-size:17px;
    color:#333;
    line-height:1.7;
     font-family:'Poppins', sans-serif;
}

/* ================= FORM ================= */

.cas-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.cas-input-group{
    display:flex;
    flex-direction:column;
}

.cas-input-group label{
    font-size:16px;
    font-weight:600;
    color:#111;
    margin-bottom:10px;
}

.cas-input-group label span{
    color:red;
}

.cas-input-group input,
.cas-input-group select,
.cas-input-group textarea{
    width:100%;
    border:1px solid #cfcfcf;
    border-radius:10px;
    padding:15px 16px;
    font-size:16px;
    font-family:'Poppins', sans-serif;
    outline:none;
    transition:0.3s ease;
    background:#fff;
    color:#000;
}

.cas-input-group select option {
    color:#000;
    background:#fff;
}

.cas-input-group input:focus,
.cas-input-group select:focus,
.cas-input-group textarea:focus{
    border-color:#7c58b5;
    box-shadow:0 0 0 4px rgba(124,88,181,0.12);
}

.cas-full-width{
    margin-top:22px;
}

.cas-input-group textarea{
    height:150px;
    resize:none;
}

/* ================= BUTTON ================= */

.cas-submit-btn{
    margin-top:25px;
    padding:15px 40px;
    border:none;
    background:#000;
    color:#fff;
    font-size:17px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s ease;
}

.cas-submit-btn:hover{
    transform:translateY(-3px);
    background:#68429f;
}

/* ================= MAP ================= */

.cas-map-box{
    width:100%;
    height:100%;
    min-height:750px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.cas-map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .cas-contact-container{
        grid-template-columns:1fr;
    }

    .cas-map-box{
        min-height:450px;
    }

}

@media(max-width:768px){

    .cas-contact-form-box{
        padding:25px;
    }

    .cas-contact-heading h2{
        font-size:32px;
    }

    .cas-form-grid{
        grid-template-columns:1fr;
    }

}







/* 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;
    }

}

.validation-error{
    display:block;
    margin-top:8px;
    color:#dc3545;
    font-size:13px;
}