/* ===================================
    Crafto - Startup
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
/* variable */
:root {     
    --base-color: #00ce9b;
    --alt-font: 'Manrope', sans-serif;
    --primary-font: 'Rubik', sans-serif;
    --dark-gray: #252840;
    --medium-gray: #868d98;
/* Logo Styling - Super Prominent & Enlarged */
.navbar-brand {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
.navbar-brand img {
    max-height: 80px !important;
    height: 80px !important;
    width: auto !important;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35));
}
.header-sticky .navbar-brand img.alt-logo {
    max-height: 72px !important;
    height: 72px !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.footer-logo img {
    max-height: 85px !important;
    height: 85px !important;
    width: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4));
}

/* reset */
body {
    font-size: 17px;
    line-height: 32px; 
}
a {
    color: #868d98;
} 
b, strong {
    font-weight: 600;
}
::-webkit-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
}
::-moz-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
:-ms-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
/* bg color */
.bg-gradient-emerald-blue-emerald-green {
    background-image:linear-gradient(50deg,#09afea 0,#19e089 100%);
}
.bg-gradient-black-green {
    background-image: linear-gradient(to right top, #1f2021, #1b1d1c, #1b1d1c, #222523, #333c37);
}
/* text color */
.text-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(to right top, #09afea, #19e089);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* button gradient */
.btn-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(to right, #09afea, #19e089, #09afea);
    background-size: 200% auto;
    color: var(--white);
}
/* btn */
.btn{
    font-weight: 500;
    text-transform: inherit;
}
.btn.btn-extra-large {
    font-size: 22px;
}
.btn.btn-large {
    font-size:17px;
}
.btn.btn-medium {
    font-size: 16px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 13px;
}
.btn.btn-large .btn-icon i {
    top: 1px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn.btn-link-gradient {
    padding: 0 0 3px;
}
/* header */
header .navbar-brand img {
    max-height: 30px;
}
.navbar .navbar-nav .nav-link {
    font-size: 17px;
    letter-spacing: .5px;
    padding: 10px 22px
}
.push-menu .close-menu {
    right: 30px;
    top: 30px;
}
/* newsletter style  */
.newsletter-style-02 input {
    font-size: 14px;
}
/* footer */
footer ul li {
    margin-bottom: 2px;
}
/* media query responsive */
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 17px;
    }
}

/* Header RFQ Button Theme Styling - Transparent on Desktop, Solid Visible on Mobile & Sticky */
.header-button {
    margin-left: 15px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}
.header-button .btn-rfq-header {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}
.header-button .btn-rfq-header:hover {
    background: #00ce9b !important;
    color: #ffffff !important;
    border-color: #00ce9b !important;
    box-shadow: 0 6px 20px rgba(0, 206, 155, 0.35) !important;
    transform: translateY(-2px);
}

/* Sticky Header Mode (Desktop Scrolled Down) */
.header-sticky .header-button .btn-rfq-header {
    background: #00ce9b !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 206, 155, 0.3) !important;
}
.header-sticky .header-button .btn-rfq-header:hover {
    background: #252840 !important;
    color: #ffffff !important;
}

/* Mobile & Tablet Header & Layout Responsiveness (< 992px) */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

section {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

@media (max-width: 991px) {
    /* Header Container Flex Alignment */
    header nav .container-fluid {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        height: 72px !important;
    }
    
    .navbar-brand {
        margin-right: auto !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .navbar-brand img {
        max-height: 48px !important;
        height: 48px !important;
        width: auto !important;
    }
    
    .header-sticky .navbar-brand img.alt-logo {
        max-height: 42px !important;
        height: 42px !important;
    }

    /* Keep Search, RFQ Button, and Mobile Menu Toggler cleanly on 1 line */
    header .col-auto.menu-order,
    header .col-auto.text-end {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-button {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    .header-button .btn-rfq-header {
        background: #00ce9b !important;
        color: #ffffff !important;
        border: none !important;
        padding: 6px 14px !important;
        font-size: 13px !important;
        border-radius: 20px !important;
        box-shadow: 0 3px 10px rgba(0, 206, 155, 0.35) !important;
        white-space: nowrap !important;
    }

    .header-button .btn-rfq-header:hover {
        background: #252840 !important;
        color: #ffffff !important;
    }

    /* Hero Slider Mobile Font & Spacing Fix */
    .swiper-slide h2 {
        font-size: 26px !important;
        line-height: 34px !important;
        margin-bottom: 18px !important;
    }

    .swiper-slide h1, .swiper-slide .text-uppercase {
        font-size: 13px !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
    }

    /* Hero Slider Buttons Spacing on Mobile */
    .swiper-slide .btn {
        margin: 4px 3px !important;
        padding: 10px 18px !important;
        font-size: 14px !important;
    }

    /* Swiper Pagination Dots Position on Mobile */
    .swiper-pagination-bullets {
        bottom: 15px !important;
    }

    /* Floating Contact Buttons Position on Mobile */
    .floating-whatsapp-btn {
        bottom: 15px !important;
        left: 15px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 22px !important;
        line-height: 44px !important;
    }

    .floating-call-btn {
        bottom: 68px !important;
        left: 15px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
        line-height: 44px !important;
    }
}

/* Smartphone Layout Fixes (< 576px) */
@media (max-width: 575px) {
    header nav .container-fluid {
        height: 62px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .navbar-brand img {
        max-height: 40px !important;
        height: 40px !important;
    }

    .header-button {
        margin-left: 4px !important;
        margin-right: 4px !important;
    }

    .header-button .btn-rfq-header {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }

    .swiper-slide h2 {
        font-size: 21px !important;
        line-height: 28px !important;
    }
}