/* ===========================================
------------------- Homepage -----------------
==============================================*/
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background-image: url('../../../../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
}
.hero-wrapper{
    position: relative;
    z-index: 3;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 31, 38, .15);
    border: 1px solid rgba(212, 31, 38, .4);
    color: #c3c3c3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 100px;
    margin-bottom: 18px;
}
/* .hero-eyebrow.reveal{
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center left;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-eyebrow.reveal.active{
    opacity: 1;
    transform: scaleY(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform-origin: 0% 50%;
    transition-delay: 1.2s;
} */
.hero-wrapper h1 {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1.13;
    max-width: 550px;
    margin-bottom: 18px;
}
/* .hero-wrapper h1.reveal{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-wrapper h1.reveal.active{
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.8s ease, transform 0.8s ease;
} */
.hero-wrapper p {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.75;
    max-width: 470px;
    margin-bottom: 30px;
}
/* .hero-wrapper p.reveal{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-wrapper p.reveal.active{
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
} */
.hero-buttons {
    display: flex;
    gap: 10px;
}
/* .hero-buttons a.reveal{
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-buttons a.reveal.active{
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;    
    transition-delay: 0.6s;
    transform-origin: 0% 100%;
}
.hero-buttons a.outline-btn.reveal.active{
    transition-delay: 1s
} */
/* ===========================================
---------------- Homepage End ----------------
==============================================*/


/* ===========================================
----------------  About Us -------------------
==============================================*/

.about-us-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* About Us Image */
.about-img-wrappper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 45, 107, .2);
}
/* .about-img-wrappper.reveal{
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-img-wrappper.reveal.active{
    opacity: 1;
    transform: translateX(0px);
    transition: opacity 0.8s ease, transform 0.8s ease;
} */
.about-img-wrappper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-exp {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 14px;
    padding: 15px 20px;
    box-shadow: 0 8px 24px rgba(212, 31, 38, .45);
}
.about-num {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}
.about-exp-tex{
    font-size: 11px;
    font-weight: 600;
    opacity: .9;
}

/* About us Content */
/* .about-us-content.reveal{
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-us-content.reveal.active{
    opacity: 1;
    transform: translateX(0px);
    transition: opacity 0.8s ease, transform 0.8s ease;
} */
.about-desc {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.78;
    max-width: 580px;
}
.browse-parts{
    margin-top: 25px;
}
@media (max-width: 991.98px) {
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================================
---------------  About Us End-----------------
==============================================*/


/* ===========================================
---------------  Product Category  -----------
==============================================*/
.categories-section{
    background: var(--gray-50);
}
.sec-sub.text-center {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.78;
    max-width: 580px;
    margin: 0 auto;
    word-break: auto-phrase;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    padding-top: 50px;
}
a.cat-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(27, 45, 107, .08);
    transition: transform .25s, box-shadow .25s;
    display: block;
}
.cat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(27, 45, 107, .17);
}
.cat-thumb {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.cat-card:hover .cat-thumb img {
    transform: scale(1.08);
}
.cat-thumb .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 30, 77, .6) 0%, transparent 55%);
}
.cat-body {
    position: absolute;
    bottom: 0;
    padding: 18px;
}
.cat-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem;
}
.cat-body .arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #a6a6a6;
    margin-top: 5px;
}
/* ===========================================
------------  Product Category End  ----------
==============================================*/



/* ===========================================
-----------------  Why Choose Us -------------
==============================================*/
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    padding-top: 50px;
}
.why-box {
    background-color: #f8f9fb;
    border-radius: 10px;
    padding: 50px;
    border: 1px solid #f1f1f1;
    text-align: center;
    transition:all 0.5s;
}
.why-box:hover{
    transform:translateY(-8px);
    background:#fff;
    box-shadow:inset 0px 0px 30px #00b5ff14;
    border:1px solid #00b5ff3b;
}
.why-icon {
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
    box-shadow: 0 8px 24px rgba(27, 45, 107, .25);
}
.why-box h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.why-box p{
    color: var(--gray-600);
    font-size:15px;
    margin: 0px;
    line-height: 1.6;
}

/* ===========================================
--------------  Why Choose Us End ------------
==============================================*/





/* ===========================================
---------------  Benefits Block -------------
==============================================*/

.Benefits-section {
    background-color: var(--primary-color);
    padding: 30px 0px;
}
.benifits-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.benefit-box {
    display: flex;
    align-items:center;
    gap: 10px;
    min-width: 200px;
    flex: 1;
}
.benefit-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.benrft-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    font-family: var(--primary-font);
    margin:0px;
}
.benrft-content p{
    font-size:12px;
    font-family: var(--primary-font);
    color:#fff;
    opacity:0.8;
    margin:0px;
}



div#edit-inner {
    display: flex;
}
div#edit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
div#newsletter_section_form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

#newsletter_section_wrapper  {
    position: relative;
    padding: 4rem 1.5rem;
    background-image: url('../../../../images/about.webp');
    background-size: cover;
    background-position: center;
}
#newsletter_section_wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0a0a0ad1;
}
#newsletter_section_wrapper .newsletter_section_inner  {
    position: relative;
}
h2.newsletter_section_title {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
h2.newsletter_section_title span {
    display: block;
}
p.newsletter_section_text {
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    margin-top: .6rem;
    max-width: 420px;
}
.newsletter_section_email_input {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .3);
    outline: none;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    padding: 10px;
    width: 360px;
    border-radius: 5px;
    color: #fff;
    margin: 0px;
}
.newsletter_section_submit_btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--secondary-color);
    color: #fff;
    font-family: var(--primary-font) !important;
    font-weight: 700 !important;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(212, 31, 38, .45);
    transition: background .2s, transform .2s, box-shadow .2s;
    text-decoration: none;
    height: unset !important;
    margin: 0px;
}
.newsletter_section_submit_btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 31, 38, .5);
    color: #fff;
    text-decoration: none;
    border: none;
}
.newsletter_section_submit_btn:focus,
.newsletter_section_submit_btn:focus-visible{
    background: var(--secondary-dark);
    box-shadow: 0 12px 30px rgba(212, 31, 38, .5);
    color: #fff;
}

@media (max-width:1200px){
    .benefit-box {
        margin: 0 auto;
        flex: none;
    }
}

@media (max-width:991px){
    #edit-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    #newsletter_section_wrapper {
        padding: 30px 0px;
    }
    .newsletter_section_input_wrap.js-form-item.form-item.js-form-type-email.form-item-email.js-form-item-email.form-no-label {
        margin: 0px;
    }
}


@media (max-width:771px) {

    /* Overall */
    .section-space {
        padding: 30px 0px;
    }
    h2.section-title {
        font-size: 28px;
    }
    .title-tagline p {
        font-size: 10px;
    }
    h3.section-subtitle {
        font-size: 16px;
    }
    /* hero */
    .hero-wrapper {
        text-align: center;
    }
    .hero-wrapper p {
        margin: 0 auto 20px;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    /* About Us */
    p.about-desc, p.sec-sub {
        font-size: 13px !important;
    }
    .about-img-wrappper img{
        height: 300px;
    }
    /* Category */
    .cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    /* Benefits */
    .benifits-wrapper {
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

}
@media (max-width:551px){
    .hero-wrapper h1 {
        font-size: 44px;
    }
    .hero-wrapper p {
        font-size: 14px;
    }
    /* category */
    .cat-grid {
        grid-template-columns: 1fr;
    }
    .cat-thumb {
        height: 200px;
    }
    /* why choose us */
    .why-choose-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .why-box {
        padding: 20px;
    }
}