/* ==========================================
   EXPORT PAGE
   JABB TECH HUB
========================================== */

/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    line-height:1.7;
}

.section-padding{
    padding:90px 8%;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{

    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;

}

.section-title h2{

    font-size:42px;
    margin:15px 0;
    color:#fff;

}

.section-title p{

    color:#ccc;
    max-width:700px;
    margin:auto;
    font-size:17px;

}

/* =========================
   BUTTONS
========================= */

.btn-primary{

    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    transition:.4s;

}

.btn-primary:hover{

    background:#fff;
    transform:translateY(-5px);

}

.btn-secondary{

    display:inline-block;
    border:2px solid #d4af37;
    color:#d4af37;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    margin-left:15px;
    transition:.4s;

}

.btn-secondary:hover{

    background:#d4af37;
    color:#000;

}

/* =========================
   HERO SECTION
========================= */

.export-hero{

    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;

    background:url("../images/export-bg.jpg")
    center center/cover no-repeat;

}

.export-hero .overlay{

    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.70);

}

.hero-content{

    position:relative;
    z-index:10;
    width:90%;
    max-width:900px;

}

.hero-subtitle{

    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:16px;

}

.hero-content h1{

    font-size:65px;
    margin:20px 0;
    line-height:1.2;

}

.hero-content p{

    font-size:20px;
    color:#ddd;
    margin-bottom:40px;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

}

/* =========================
   ABOUT EXPORT
========================= */

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-image{

    overflow:hidden;
    border-radius:20px;

}

.about-image img{

    width:100%;
    display:block;
    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.about-content span{

    color:#d4af37;
    text-transform:uppercase;
    letter-spacing:2px;

}

.about-content h2{

    font-size:42px;
    margin:20px 0;

}

.about-content p{

    color:#ccc;
    margin-bottom:20px;

}

.export-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;

}

.export-features div{

    background:#111;
    padding:18px;
    border-left:4px solid #d4af37;
    border-radius:10px;
    transition:.4s;

}

.export-features div:hover{

    transform:translateY(-8px);

}

.export-features i{

    color:#d4af37;
    margin-right:10px;

}

/* =========================
   EXPORT STATS
========================= */

.export-stats{

    background:#111;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.stat-box{

    background:#181818;
    border-radius:18px;
    text-align:center;
    padding:45px 25px;
    transition:.4s;
    border:1px solid rgba(212,175,55,.15);

}

.stat-box:hover{

    transform:translateY(-12px);
    border-color:#d4af37;

}

.stat-box i{

    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;

}

.stat-box h2{

    font-size:45px;
    color:#fff;

}

.stat-box p{

    color:#bbb;
    margin-top:10px;

}

/* =========================
   PRODUCTS
========================= */

.products{

    background:#0b0b0b;

}

.products-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;

}

.product-card{

    background:#141414;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(212,175,55,.12);

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 15px 35px rgba(212,175,55,.18);

}

.product-card img{

    width:100%;
    height:240px;
    object-fit:cover;

}

.product-card h3{

    padding:25px;
    text-align:center;
    color:#fff;

}

/* ==========================================
   EXPORT SERVICES
========================================== */

.export-services{
    background:#111;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-top:50px;
}

.service-card{
    background:#181818;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    transition:all .4s ease;
    border:1px solid rgba(212,175,55,.15);
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:#d4af37;
    transition:.4s;
}

.service-card:hover::before{
    left:0;
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.18);
}

.service-card i{
    font-size:55px;
    color:#d4af37;
    margin-bottom:25px;
}

.service-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#fff;
}

.service-card p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.8;
}


/* ==========================================
   PRODUCT CATALOGUE
========================================== */

.product-catalog{
    background:#0b0b0b;
}

.catalog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:22px;
    margin-top:45px;
}

.catalog-item{
    background:#161616;
    color:#fff;
    text-align:center;
    padding:22px;
    border-radius:12px;
    border:1px solid rgba(212,175,55,.15);
    font-weight:600;
    transition:.35s;
    cursor:default;
}

.catalog-item:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-8px);
}


/* ==========================================
   PRODUCT CARD IMPROVEMENTS
========================================== */

.product-card{
    position:relative;
}

.product-card::after{

    content:"Premium Export Quality";

    position:absolute;
    top:20px;
    right:-45px;

    background:#d4af37;
    color:#000;

    padding:8px 45px;

    transform:rotate(45deg);

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;
}

.product-card img{
    transition:.45s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card h3{
    transition:.3s;
}

.product-card:hover h3{
    color:#d4af37;
}


/* ==========================================
   SECTION SPACING
========================================== */

.export-services,
.product-catalog{
    position:relative;
}

.export-services::after,
.product-catalog::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:120px;

    height:3px;

    background:#d4af37;

    border-radius:20px;

}


/* ==========================================
   SMALL ANIMATIONS
========================================== */

.service-card,
.catalog-item,
.product-card{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .catalog-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .catalog-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-card{
        padding:35px 25px;
    }

}

@media(max-width:480px){

    .catalog-grid{
        grid-template-columns:1fr;
    }

    .product-card::after{
        display:none;
    }

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-export{
    background:#111;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    margin-top:50px;
}

.why-card{
    background:#181818;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    border:1px solid rgba(212,175,55,.15);
    transition:all .4s ease;
}

.why-card:hover{
    transform:translateY(-12px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.18);
}

.why-card i{
    font-size:55px;
    color:#d4af37;
    margin-bottom:20px;
}

.why-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#ccc;
    line-height:1.8;
}


/* ==========================================
   EXPORT PROCESS
========================================== */

.export-process{
    background:#0b0b0b;
}

.timeline{
    position:relative;
    max-width:1000px;
    margin:60px auto 0;
    padding-left:40px;
}

.timeline::before{
    content:"";
    position:absolute;
    left:18px;
    top:0;
    width:4px;
    height:100%;
    background:#d4af37;
    border-radius:20px;
}

.timeline-item{
    position:relative;
    margin-bottom:45px;
    padding:25px 25px 25px 70px;
    background:#181818;
    border-radius:15px;
    border:1px solid rgba(212,175,55,.15);
    transition:.35s ease;
}

.timeline-item:hover{
    transform:translateX(10px);
    border-color:#d4af37;
    box-shadow:0 12px 30px rgba(212,175,55,.15);
}

.timeline-item::before{
    content:"";
    position:absolute;
    left:-33px;
    top:35px;
    width:22px;
    height:22px;
    background:#d4af37;
    border:4px solid #0b0b0b;
    border-radius:50%;
}

.step{
    position:absolute;
    top:20px;
    right:20px;
    background:#d4af37;
    color:#000;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.timeline-item h3{
    color:#fff;
    font-size:24px;
    margin-bottom:12px;
}

.timeline-item p{
    color:#cfcfcf;
    line-height:1.8;
}


/* ==========================================
   PROCESS ANIMATION
========================================== */

.timeline-item{
    animation:slideUp .8s ease both;
}

.timeline-item:nth-child(1){animation-delay:.1s;}
.timeline-item:nth-child(2){animation-delay:.2s;}
.timeline-item:nth-child(3){animation-delay:.3s;}
.timeline-item:nth-child(4){animation-delay:.4s;}
.timeline-item:nth-child(5){animation-delay:.5s;}
.timeline-item:nth-child(6){animation-delay:.6s;}
.timeline-item:nth-child(7){animation-delay:.7s;}
.timeline-item:nth-child(8){animation-delay:.8s;}

@keyframes slideUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .timeline{
        padding-left:25px;
    }

    .timeline::before{
        left:10px;
    }

    .timeline-item{
        padding:25px 20px 25px 50px;
    }

    .timeline-item::before{
        left:-24px;
    }

    .step{
        position:relative;
        display:inline-block;
        top:0;
        right:0;
        margin-bottom:15px;
    }

}

@media(max-width:480px){

    .timeline{
        padding-left:18px;
    }

    .timeline::before{
        left:7px;
    }

    .timeline-item{
        padding:20px 15px 20px 40px;
    }

    .timeline-item::before{
        left:-19px;
        width:18px;
        height:18px;
    }

    .timeline-item h3{
        font-size:20px;
    }

}

/* ==========================================
   COUNTRIES WE SERVE
========================================== */

.countries{
    background:#111;
}

.countries-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:50px;
}

.country-card{
    background:#181818;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    border:1px solid rgba(212,175,55,.15);
    transition:all .4s ease;
}

.country-card:hover{
    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.15);
}

.country-card i{
    font-size:50px;
    color:#d4af37;
    margin-bottom:20px;
}

.country-card h3{
    color:#fff;
    font-size:22px;
}


/* ==========================================
   FAQ
========================================== */

.faq{
    background:#0b0b0b;
}

.faq-container{
    max-width:900px;
    margin:50px auto 0;
}

.faq-item{
    background:#181818;
    border-left:4px solid #d4af37;
    border-radius:10px;
    padding:25px;
    margin-bottom:20px;
    transition:.35s;
}

.faq-item:hover{
    transform:translateX(8px);
    box-shadow:0 10px 30px rgba(212,175,55,.15);
}

.faq-item h3{
    color:#fff;
    margin-bottom:12px;
    font-size:22px;
}

.faq-item p{
    color:#ccc;
    line-height:1.8;
}


/* ==========================================
   EXPORT CTA
========================================== */

.export-cta{
    background:linear-gradient(rgba(0,0,0,.88),rgba(0,0,0,.88)),
               url("../images/export-cta.jpg") center/cover;
    padding:100px 8%;
    text-align:center;
}

.cta-content{
    max-width:850px;
    margin:auto;
}

.cta-content h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.cta-content p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/* ==========================================
   FOOTER
========================================== */

.footer{
    background:#050505;
    padding:70px 8% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h2,
.footer h3{
    color:#fff;
    margin-bottom:20px;
}

.footer p,
.footer li{
    color:#bdbdbd;
    line-height:1.9;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#d4af37;
}

.footer-contact i{
    color:#d4af37;
    margin-right:10px;
}

.footer hr{
    border:none;
    height:1px;
    background:#222;
    margin:50px 0 25px;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    color:#888;
}


/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#f1c84b;
}


/* ==========================================
   GLOBAL ANIMATIONS
========================================== */

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}

@keyframes zoomIn{

    from{
        opacity:0;
        transform:scale(.9);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

.country-card,
.faq-item,
.cta-content{
    animation:zoomIn .8s ease;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .countries-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .countries-grid{
        grid-template-columns:1fr;
    }

    .cta-content h2{
        font-size:36px;
    }

    .cta-content p{
        font-size:16px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

}

@media(max-width:480px){

    .section-title h2{
        font-size:30px;
    }

    .country-card h3{
        font-size:20px;
    }

    .faq-item h3{
        font-size:18px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

}

/* ==========================
   BACK TO TOP BUTTON
========================== */

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#d4af37;

    color:#000;

    font-size:20px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

}


.back-top.show{

    opacity:1;

    visibility:visible;

}


.back-top:hover{

    background:#fff;

    transform:translateY(-5px);

}