.elementor-2615 .elementor-element.elementor-element-93fcffa{margin-top:127px;margin-bottom:0px;padding:0em 0em 5em 0em;}.elementor-2615 .elementor-element.elementor-element-18166d74 > .elementor-element-populated{margin:-7em 0em 0em 0em;--e-column-margin-right:0em;--e-column-margin-left:0em;padding:0px 0px 0px 0px;}.elementor-2615 .elementor-element.elementor-element-7506e1da{--display:flex;}@media(max-width:1024px){.elementor-2615 .elementor-element.elementor-element-93fcffa{padding:0em 0em 1em 0em;}}/* Start custom CSS for html, class: .elementor-element-6b0ba11a */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Poppins,sans-serif;
}

.hero-quote{
    background:#f6ad08;
    padding:80px 0;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.hero-content{
    flex:1;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    margin-bottom:20px;
}

.breadcrumb a{
    color:#000;
}

.hero-content h1{
    font-size:68px;
    font-weight:700;
    line-height:1.05;
    color:#000;
    margin-bottom:25px;
}

.hero-content p{
    max-width:600px;
    line-height:1.9;
    color:#333;
    font-size:20px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s;
}

.hero-btn:hover{
    background:#fff;
    color:#111;
}

.quote-card{
    width:420px;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.quote-heading{
    background:#343a40;
    color:#fff;
    padding:18px 25px;
    font-weight:700;
    font-size:22px;
}

.fluent-form-area{
    padding:25px;
}

/* Fluent Forms Styling */

.fluent-form-area input,
.fluent-form-area textarea,
.fluent-form-area select{

    width:100%;
    border:1px solid #ddd;
    border-radius:4px;
    padding:14px 15px;
    margin-bottom:18px;
    font-size:15px;

}

.fluent-form-area textarea{
    height:140px;
    resize:none;
}

.fluent-form-area button,
.fluent-form-area input[type=submit]{

    background:#f6ad08;
    color:#111;
    border:none;
    padding:16px 35px;
    border-radius:35px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;

}

.fluent-form-area button:hover,
.fluent-form-area input[type=submit]:hover{

    background:#111;
    color:#fff;

}

@media(max-width:992px){

.container{
    flex-direction:column;
}

.hero-content{
    text-align:center;
}

.hero-content p{
    margin:auto auto 30px;
}

.quote-card{
    width:100%;
    max-width:500px;
}

.hero-content h1{
    font-size:50px;
}

}

@media(max-width:576px){

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.hero-btn{
    padding:15px 28px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-54603105 */.products-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* Product Card */
.product-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:15px;
    display:flex;
    gap:15px;
    min-height:180px;
    transition:all .3s ease;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

/* Product Image */
.product-image{
    width:140px;
    min-width:140px;
    height:140px;
    background:#f7f7f7;
    border-radius:10px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;      /* Image cut nahi hogi */
    object-position:center;
    display:block;
    transition:.3s;
}

.product-card:hover .product-image img{
    transform:scale(1.05);
}

/* Stock Badge */
.stock{
    position:absolute;
    top:0;
    left:0;
    background:#f6b100;
    color:#111;
    font-size:10px;
    font-weight:700;
    padding:6px 10px;
    border-radius:10px 0 10px 0;
    z-index:2;
}

/* Content */
.product-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    font-size:18px;
    font-weight:700;
    line-height:1.4;
    margin:0 0 10px;
    color:#222;
}

.product-content p{
    font-size:13px;
    color:#666;
    line-height:1.7;
    margin:0;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.product-content a{
    margin-top:auto;
    color:#ff5533;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.product-content a:hover{
    color:#000;
}

/* =========================
   TABLET
========================= */

@media (max-width:992px){

    .products-row{
        grid-template-columns:repeat(2,1fr);
    }

    .product-card{
        min-height:170px;
    }

    .product-image{
        width:130px;
        min-width:130px;
        height:130px;
    }

    .product-content h3{
        font-size:17px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:600px){

    .products-row{
        grid-template-columns:1fr;
        gap:18px;
    }

    .product-card{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:15px;
        min-height:auto;
    }

    .product-image{
        width:100%;
        min-width:100%;
        height:220px;
        padding:15px;
    }

    .product-image img{
        width:100%;
        height:100%;
        object-fit:contain;   /* Mobile par bhi image cut nahi hogi */
    }

    .stock{
        font-size:11px;
        padding:6px 10px;
    }

    .product-content{
        width:100%;
    }

    .product-content h3{
        font-size:18px;
        margin-top:12px;
    }

    .product-content p{
        font-size:14px;
        -webkit-line-clamp:4;
    }

    .product-content a{
        margin-top:15px;
        display:inline-block;
        font-size:15px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5171a57b */.fc-process{
    padding:80px 20px;
    background:#fff;
}

.fc-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
}

.fc-heading h2{
    color:#0d2d4a;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    line-height:1.2;
}

.fc-heading p{
    color:#666;
    font-size:17px;
}

.fc-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.fc-card{
    background:#fff;
    border:2px solid #00c8e0;
    border-radius:16px;
    padding:35px 25px;
    text-align:center;
    transition:.3s ease;
}

.fc-card:hover{
    transform:translateY(-6px);
    background:#0d2d4a;
}

.fc-card:hover h3,
.fc-card:hover p{
    color:#fff;
}

.fc-icon{
    font-size:55px;
    margin-bottom:20px;
}

.fc-card h3{
    color:#0d2d4a;
    font-size:22px;
    margin-bottom:12px;
    font-weight:700;
}

.fc-card p{
    color:#555;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:1024px){
    .fc-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .fc-heading h2{
        font-size:32px;
    }

    .fc-grid{
        grid-template-columns:1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d11e5bb */.fc-custom-boxes{
    padding:80px 20px;
    background:#eef9fb;
}

.fc-wrap{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.fc-content{
    flex:1;
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(13,45,74,.08);
}

.fc-content h2{
    font-size:42px;
    line-height:1.2;
    color:#d4af37;
    font-weight:800;
    margin-bottom:20px;
}

.fc-content h2 span{
    display:inline-block;
    width:80px;
    height:4px;
    background:#00c8e0;
    margin-left:15px;
    border-radius:10px;
    vertical-align:middle;
}

.fc-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.fc-btn{
    display: inline-block;
    padding: 14px 30px;
    background: #d4af37;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.fc-btn:hover{
    background:#0d2d4a;
}

.fc-image{
    flex:1;
    text-align:center;
}

.fc-image img{
    max-width:100%;
    height:auto;
}

@media(max-width:991px){

    .fc-wrap{
        flex-direction:column;
    }

    .fc-content{
        padding:30px;
    }

    .fc-content h2{
        font-size:32px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-67c90d0c */@media (max-width: 768px){

    #homefaqs-section{
        padding:25px 12px;
    }

    #homefaqs-section .homefaqs-title{
        font-size:22px;
        line-height:1.3;
        margin-bottom:20px;
    }

    #homefaqs-section .homefaqs-grid{
        grid-template-columns:1fr !important;
        gap:12px;
    }

    #homefaqs-section .homefaqs-item{
        width:100%;
    }

    #homefaqs-section .homefaqs-question{
        font-size:14px;
        padding:14px 12px;
        line-height:1.4;

        /* IMPORTANT FIX */
        white-space:normal;
        word-break:break-word;
    }

    #homefaqs-section .homefaqs-icon{
        font-size:20px;
        flex-shrink:0;
    }

    #homefaqs-section .homefaqs-answer p{
        font-size:13px;
        padding:0 12px 12px;
    }

    #homefaqs-section .homefaqs-item.active .homefaqs-answer{
        max-height:900px;
    }
}

@media (max-width: 480px){

    #homefaqs-section .homefaqs-title{
        font-size:20px;
    }

    #homefaqs-section .homefaqs-question{
        font-size:13px;
        padding:12px 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-70dc15ba */.fc-cta{
    max-width:1200px;
    margin:50px auto;
    background:#0d2d4a;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 60px;
    position:relative;
}

.fc-cta-content{
    width:55%;
    padding:60px 0;
}

.fc-cta-content h2{
    color:#ffffff;
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.fc-cta-content p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
    margin-bottom:30px;
    font-size:16px;
    max-width:600px;
}

.fc-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.fc-btn-primary,
.fc-btn-secondary{
    padding:14px 32px;
    text-decoration:none;
    border-radius:6px;
    font-weight:700;
    transition:.3s ease;
    display:inline-block;
}

/* GOLD BUTTON */
.fc-btn-primary{
    background:#D4AF37;
    color:#ffffff;
    border:1px solid #D4AF37;
}

.fc-btn-primary:hover{
    background:#c29a22;
    border-color:#c29a22;
    color:#ffffff;
}

/* OUTLINE BUTTON */
.fc-btn-secondary{
    background:transparent;
    color:#ffffff;
    border:1px solid #D4AF37;
}

.fc-btn-secondary:hover{
    background:#D4AF37;
    color:#ffffff;
}

.fc-cta-image{
    width:40%;
    text-align:right;
    align-self:flex-end;
}

.fc-cta-image img{
    max-width:100%;
    height:auto;
    display:block;
    max-height:380px;
    object-fit:contain;
    margin-left:auto;
}

/* TABLET */
@media(max-width:991px){

    .fc-cta{
        flex-direction:column;
        padding:40px 30px;
        text-align:center;
    }

    .fc-cta-content,
    .fc-cta-image{
        width:100%;
    }

    .fc-buttons{
        justify-content:center;
    }

    .fc-cta-content h2{
        font-size:34px;
    }

    .fc-cta-image{
        margin-top:25px;
    }

    .fc-cta-image img{
        margin:auto;
        max-height:320px;
    }
}

/* MOBILE */
@media(max-width:767px){

    .fc-cta{
        padding:35px 20px;
    }

    .fc-cta-content h2{
        font-size:28px;
    }

    .fc-cta-content p{
        font-size:15px;
    }

    .fc-btn-primary,
    .fc-btn-secondary{
        width:100%;
        text-align:center;
    }

    .fc-buttons{
        flex-direction:column;
    }

    .fc-cta-image img{
        max-height:260px;
    }
}/* End custom CSS */