/*
Theme Safe CSS
*/

/*--------------------------------------------------------------
# FONT FIX
--------------------------------------------------------------*/

@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/customfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*--------------------------------------------------------------
# GLOBAL
--------------------------------------------------------------*/

body {
    margin: 0;
    padding: 0;
    font-family: 'CustomFont', sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/*--------------------------------------------------------------
# HERO
--------------------------------------------------------------*/

.homepage-hero {
    position: relative;
    overflow: hidden;
}

.homepage-hero-video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*--------------------------------------------------------------
# SPLIDE FIX
--------------------------------------------------------------*/

.splide {
    visibility: visible !important;
}

.splide__track {
    overflow: hidden;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}








/* ===== RESET ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===== HERO BANNER ===== */

.manufacturing-banner{
    width:100%;
   

    background-image:

    url('	https://couchcruise.com/arcadian-new/img/bannnnn.jpg');

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    position:relative;
    overflow:hidden;
}

/* ===== CONTENT ===== */

.banner-content{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:70px 60px;
    position:relative;
    z-index:2;
}

.banner-left{
    max-width:700px;
}

/* ===== TITLE ===== */

.banner-left h1{
  
    line-height:1.05;
    font-weight:800;
    color:#1e293b;
    margin-bottom:30px;
   
}

/* ===== DESCRIPTION ===== */

.banner-left p{
    font-size:22px;
    line-height:1.7;
    color:#475569;
    margin-bottom:45px;
    max-width:650px;
}

/* ===== CERTIFICATION ===== */

.banner-certification a{
    display:inline-block;
    color:#0066ff;
    font-size:20px;
    font-weight:700;
    text-decoration:none;
    margin-bottom:12px;
}

.banner-certification a:hover{
    text-decoration:underline;
}

.banner-certification span{
    display:block;
    color:#1e293b;
    font-size:20px;
    line-height:1.6;
}

/* ===== LARGE DESKTOP ===== */

@media (min-width:1600px){

    .manufacturing-banner{
        min-height:560px;
    }

    .banner-left h1{
        font-size:90px;
    }
}

/* ===== TABLET ===== */

@media (max-width:991px){

    .manufacturing-banner{
        min-height:450px;

        background-position:70% center;
    }

    .banner-content{
        padding:60px 40px;
    }

    .banner-left h1{
        font-size:54px;
    }

    .banner-left p{
        font-size:20px;
    }

    .banner-certification a,
    .banner-certification span{
        font-size:18px;
    }
}

/* ===== MOBILE ===== */

@media (max-width:767px){

    .manufacturing-banner{

        min-height:auto;

        background-image:
        linear-gradient(to bottom,
        rgba(240,240,240,0.92),
        rgba(240,240,240,0.92)),
        url('YOUR-IMAGE.jpg');

        background-position:center;
    }

    .banner-content{
        padding:50px 22px;
    }

    .banner-left{
        max-width:100%;
    }

    .banner-left h1{
        font-size:42px;
        line-height:1.1;
        margin-bottom:22px;
    }

    .banner-left p{
        font-size:18px;
        line-height:1.7;
        margin-bottom:35px;
    }

    .banner-certification a{
        font-size:18px;
    }

    .banner-certification span{
        font-size:16px;
        line-height:1.7;
    }
}




/* =========================
   SECTION
========================= */

.manufacturing-services{
    background:#f5f5f5;
    padding:80px 0;
    font-family:Arial, sans-serif;
}

/* =========================
   HEADING
========================= */

.service-heading{
    margin-bottom:50px;
}

.service-heading h2{
    font-size:42px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:18px;
}

.heading-line{
    width:55px;
    height:3px;
    background:#86bc25;
    margin:auto;
    border-radius:10px;
}

/* =========================
   CARD
========================= */

.service-card{
    background:#fff;
    border-radius:6px;
    padding:28px 20px;
    text-align:center;
    height:100%;
    box-shadow:0 2px 12px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-5px);
}

/* =========================
   TITLE
========================= */

.service-card h3{
    font-size:24px;
    font-weight:600;
    color:#1f2937;
    margin-bottom:28px;
    min-height:58px;
}

/* =========================
   IMAGE
========================= */

.service-card img{
    width:100%;
    max-width:220px;
    height:190px;
    object-fit:contain;
    margin-bottom:30px;
}

/* =========================
   BUTTON
========================= */

.service-btn{
    display:block;
    width:100%;
    background:#d9ebfb;
    color:#0056b3;
    text-decoration:none;
    padding:14px 20px;
    border-radius:4px;
    font-size:18px;
    font-weight:600;
    transition:0.3s ease;
}

.service-btn:hover{
    background:#b8daf8;
    color:#003f85;
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .manufacturing-services{
        padding:70px 0;
    }

    .service-heading h2{
        font-size:34px;
    }

    .service-card{
        padding:24px 18px;
    }

    .service-card h3{
        font-size:22px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:767px){

    .manufacturing-services{
        padding:60px 0;
    }

    .service-heading{
        margin-bottom:35px;
    }

    .service-heading h2{
        font-size:28px;
        line-height:1.3;
    }

    .service-card{
        padding:22px 16px;
    }

    .service-card h3{
        font-size:20px;
        margin-bottom:20px;
        min-height:auto;
    }

    .service-card img{
        max-width:180px;
        height:160px;
        margin-bottom:22px;
    }

    .service-btn{
        font-size:16px;
        padding:12px 18px;
    }
}







    .ebook-section{
    position:relative;
    width:100%;
    overflow:hidden;
    background:linear-gradient(135deg,#021b52,#001132 70%);
    padding:60px 0;
}

/* Background Effects */
.ebook-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-200px;
    right:-150px;
    filter:blur(10px);
}

.ebook-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,136,0,0.08);
    border-radius:50%;
    bottom:-180px;
    left:-100px;
}

.kkcss {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
}

/* LEFT CONTENT */


.tag{
    display:inline-block;
    color:#f1f1f1;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-family: arial;
}

.ebook-content h1{
    color:#ffffff;
    font-size:60px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:25px;
}

.orange{
    color:#ff9d1f;
}

.blue{
    color:#1db8ff;
}

.ebook-content p{
    color:#d5d5d5;
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}
.mdscd.col-lg-6.col-md-6.col-sm-12 {
    float: right;
}
.nxns.col-lg-6.col-md-6.col-sm-12 {
    float: left;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 31px;
    background: #d2e825;
    color: #000;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    
    transition: 0.4s ease;
    
}

.download-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 35px rgba(255,140,0,0.45);
}

/* RIGHT IMAGE */
.ebook-image {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-circle{
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(0,140,255,0.25),transparent 70%);
    border-radius:50%;
    filter:blur(20px);
}

.ebook-image img {
    width: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.5));
    animation: floatBook 4s ease-in-out infinite;
}

@keyframes floatBook{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* Decorative Dots */
.ebook-section .container::before{
    content:"";
    position:absolute;
    top:40px;
    right:0;
    width:100px;
    height:100px;
    background-image:radial-gradient(#1db8ff 2px,transparent 2px);
    background-size:15px 15px;
    opacity:0.4;
}

/* RESPONSIVE */
@media(max-width:1200px){

    .ebook-content h1{
        font-size:50px;
    }

    .ebook-image img{
        width:300px;
    }
}

@media(max-width:991px){

    .container{
        flex-direction:column;
        text-align:center;
    }

    .ebook-content,
    .ebook-image{
        width:100%;
    }

    .ebook-content h1{
        font-size:42px;
    }

    .ebook-content p{
        margin:auto;
        margin-bottom:35px;
    }

    .ebook-image{
        margin-top:40px;
    }
}

@media(max-width:767px){

    .ebook-section{
        padding:70px 0;
    }

    .ebook-content h1{
        font-size:34px;
        line-height:1.35;
    }

    .ebook-content p{
        font-size:16px;
        line-height:1.8;
    }

    .download-btn{
        width:100%;
        padding:16px 20px;
        font-size:16px;
    }

    .ebook-image img{
        width:240px;
    }

    .image-circle{
        width:280px;
        height:280px;
    }
}

@media(max-width:480px){

    .ebook-content h1{
        font-size:28px;
    }

    .ebook-content p{
        font-size:15px;
    }

    .ebook-image img{
        width:210px;
    }
}



























