/* ===========================
   JABB TECH HUB
   PREMIUM BLACK & GOLD STYLE
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#ffffff;
    line-height:1.7;
}

/* Container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*======================================
        HEADER / NAVIGATION
======================================*/


.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 8%;

    background:rgba(0,0,0,.95);

    backdrop-filter:blur(10px);

    z-index:999;

}


/* Logo */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}


.logo img{

    width:55px;

    height:55px;

    object-fit:contain;

}


.logo span{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

}

/* Navigation */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(0,0,0,.95);
    backdrop-filter:blur(10px);
    z-index:999;
}

.logo h2{
    color:#D4AF37;
    font-size:32px;
    font-weight:700;
}

.logo span{
    color:#ffffff;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:30px;
}

.nav-links li a{
    color:#ffffff;
    text-decoration:none;
    font-weight:500;
    transition:.4s;
}

.nav-links li a:hover{
    color:#D4AF37;
}

/* Buttons */

.btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.gold-btn{
    background:#D4AF37;
    color:#000;
}

.gold-btn:hover{
    background:#FFD700;
    transform:translateY(-4px);
}

.dark-btn{
    border:2px solid #D4AF37;
    color:#D4AF37;
    margin-left:15px;
}

.dark-btn:hover{
    background:#D4AF37;
    color:#000;
}

/* Hero Section */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:150px 8%;
    background:#000;
}

.hero-content{
    width:50%;
}

.hero-content h1{
    font-size:65px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content span{
    color:#D4AF37;
}

.hero-content p{
    font-size:20px;
    margin-bottom:35px;
    color:#cccccc;
}

.hero-image{
    width:45%;
}

.hero-image img{
    width:100%;
}

/* Section Title */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#D4AF37;
    letter-spacing:3px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
}

.section-title p{
    color:#bbbbbb;
}

/*======================================
        ABOUT SECTION
======================================*/

.about{
    padding:100px 8%;
    background:#0b0b0b;
}

.about .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    border:3px solid #D4AF37;
}

.about-content{
    flex:1;
}

.about-content h5{
    color:#D4AF37;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:45px;
    margin-bottom:20px;
}

.about-content p{
    color:#cccccc;
    margin-bottom:30px;
}

/*======================================
        SERVICES SECTION
======================================*/

.services{
    padding:100px 8%;
    background:#050505;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-box{
    background:#111;
    padding:35px;
    text-align:center;
    border-radius:15px;
    transition:.4s;
    border:1px solid #222;
}

.service-box:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 0 30px rgba(212,175,55,.35);
}

.service-box i{
    font-size:50px;
    color:#D4AF37;
    margin-bottom:20px;
}

.service-box h3{
    margin-bottom:15px;
}

.service-box p{
    color:#bbbbbb;
}

/*======================================
        WHY CHOOSE US
======================================*/

.why-us{
    padding:100px 8%;
    background:#0b0b0b;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-box{
    text-align:center;
    padding:35px;
}

.why-box i{
    font-size:55px;
    color:#D4AF37;
    margin-bottom:20px;
}

.why-box h3{
    margin-bottom:15px;
}

.why-box p{
    color:#cccccc;
}

/*======================================
        COMPANY STATS
======================================*/

.stats{
    background:#D4AF37;
    color:#000;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    padding:70px 8%;
}

.stat-box h2{
    font-size:50px;
    margin-bottom:10px;
}

.stat-box p{
    font-weight:600;
}

/*======================================
        EXPORT SECTION
======================================*/

.export{
    padding:100px 8%;
    background:#050505;
}

.export-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.export-content p{
    color:#cccccc;
    margin-bottom:30px;
}

.export-content ul{
    list-style:none;
    margin-bottom:35px;
}

.export-content ul li{
    padding:12px;
    color:#fff;
    border-bottom:1px solid #222;
}

.export-content ul li::before{
    content:"✔";
    color:#D4AF37;
    margin-right:10px;
}

/*======================================
        PORTFOLIO SECTION
======================================*/

.portfolio{
    padding:100px 8%;
    background:#0b0b0b;
}

.portfolio-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.portfolio-box{
    background:#111;
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #222;
}

.portfolio-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(212,175,55,.35);
}

.portfolio-box img{
    width:100%;
    display:block;
}

.portfolio-content{
    padding:25px;
}

.portfolio-content h3{
    color:#D4AF37;
    margin-bottom:10px;
}

.portfolio-content p{
    color:#ccc;
}

/*======================================
        TESTIMONIALS
======================================*/

.testimonials{
    padding:100px 8%;
    background:#050505;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-box{
    background:#111;
    padding:35px;
    border-left:4px solid #D4AF37;
    border-radius:12px;
}

.testimonial-box p{
    color:#ddd;
    margin-bottom:20px;
    font-style:italic;
}

.testimonial-box h4{
    color:#D4AF37;
}

/*================ CALL TO ACTION ================*/

.cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta p {
    max-width: 650px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta .btn {
    display: inline-block;
}
/*======================================
        CONTACT SECTION
======================================*/

.contact{
    padding:100px 8%;
    background:#0b0b0b;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info p{
    margin:18px 0;
    color:#ddd;
}

.contact-info i{
    color:#D4AF37;
    margin-right:12px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:none;
    background:#1a1a1a;
    color:#fff;
    border-radius:8px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid #D4AF37;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/*======================================
        FOOTER
======================================*/

.footer{
    background:#000;
    padding:70px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    color:#D4AF37;
    margin-bottom:20px;
}

.footer-box p,
.footer-box li{
    color:#ccc;
    margin-bottom:12px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
}

.footer-box ul li a:hover{
    color:#D4AF37;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    display:inline-flex;
    width:45px;
    height:45px;
    justify-content:center;
    align-items:center;
    margin-right:10px;
    border-radius:50%;
    background:#111;
    color:#D4AF37;
    transition:.4s;
}

.social-icons a:hover{
    background:#D4AF37;
    color:#000;
}

.footer-bottom{
    border-top:1px solid #222;
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#999;
}
/* ======================================================
   FOOTER LINK HOVER ANIMATION
====================================================== */


.footer-links ul li a {

    transition:.3s ease;

}


.footer-links ul li a:hover {

    color:#d4af37;

    padding-left:10px;

}

/*======================================
    WHATSAPP FLOATING BUTTON
======================================*/

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.4);
}

/*======================================
    BACK TO TOP BUTTON
======================================*/

.scroll-top{
    position:fixed;
    left:25px;
    bottom:25px;
    width:55px;
    height:55px;
    background:#D4AF37;
    color:#000;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:22px;
    transition:.4s;
}

.scroll-top:hover{
    transform:translateY(-5px);
}

/*======================================
    SIMPLE ANIMATIONS
======================================*/

.service-box,
.portfolio-box,
.testimonial-box,
.why-box{
    transition:all .4s ease;
}

.hero-content,
.about-content,
.export-content{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ======================================================
   NAVBAR PREMIUM HOVER EFFECT
====================================================== */


.navbar ul li a {

    position:relative;

    transition:.3s ease;

}


.navbar ul li a::after {

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#d4af37;

    transition:.3s ease;

}



.navbar ul li a:hover::after,
.navbar ul li a.active::after {

    width:100%;

}



.navbar ul li a:hover {

    color:#d4af37;

}
/* ======================================================
   PREMIUM FOOTER LINK ANIMATION
====================================================== */


.footer-links ul {

    list-style:none;

    padding:0;

}


.footer-links ul li {

    margin-bottom:12px;

}



.footer-links ul li a {

    color:#ffffff;

    text-decoration:none;

    display:inline-block;

    position:relative;

    transition:
    all .35s ease;

}



/* Gold underline animation */

.footer-links ul li a::after {

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:#d4af37;

    transition:.35s ease;

}



.footer-links ul li a:hover::after {

    width:100%;

}



/* Link movement + color */

.footer-links ul li a:hover {

    color:#d4af37;

    transform:translateX(10px);

}

/* ======================================
   ABOUT PAGE HEADER SUPPORT
====================================== */


.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:flex-start;

    align-items:center;

    padding:20px 8%;

    background:rgba(0,0,0,.95);

    backdrop-filter:blur(10px);

    z-index:999;

    gap:30px;

}


.header .logo{

    display:flex;

    align-items:center;

    gap:12px;

}


.header .logo img{

    width:55px;

}


.header .navbar ul{

    display:flex;

    list-style:none;

    gap:30px;

}


.header .navbar ul li a{

    color:#fff;

    text-decoration:none;

    font-weight:500;

    position:relative;

    transition:.3s ease;

}


.header .navbar ul li a:hover,
.header .navbar ul li a.active{

    color:#D4AF37;

}


.header .navbar ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#D4AF37;

    transition:.3s ease;

}


.header .navbar ul li a:hover::after,
.header .navbar ul li a.active::after{

    width:100%;

}

/* =====================================
   PREMIUM FOOTER
===================================== */


.footer{

    background:
    linear-gradient(
        135deg,
        #000,
        #111,
        #1a1a1a
    );

    padding:80px 8% 20px;

    border-top:
    1px solid rgba(212,175,55,.3);

}



.footer-container{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:40px;

}



.footer-box h2{

    color:#fff;

    font-size:32px;

}


.footer-box h2 span{

    color:#d4af37;

}



.footer-box h3{

    color:#d4af37;

    margin-bottom:20px;

}



.footer-box p,
.footer-box li{

    color:#bbb;

    line-height:1.8;

}



.footer-box ul{

    list-style:none;

    padding:0;

}



.footer-box ul li{

    margin-bottom:10px;

}



.footer-box ul li a{

    color:#bbb;

    text-decoration:none;

    transition:.3s;

}



.footer-box ul li a:hover{

    color:#d4af37;

    padding-left:8px;

}




.footer-contact i{

    color:#d4af37;

    margin-right:10px;

}




.footer-social{

    margin-top:25px;

}



.footer-social a{

    display:inline-flex;

    width:40px;

    height:40px;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:1px solid #d4af37;

    color:#d4af37;

    margin-right:10px;

    transition:.3s;

}



.footer-social a:hover{

    background:#d4af37;

    color:#000;

    transform:translateY(-5px);

}




.footer-bottom{

    text-align:center;

    margin-top:50px;

    padding-top:20px;

    border-top:

    1px solid rgba(255,255,255,.1);

}



.footer-bottom p{

    color:#888;

}



/* Responsive */

@media(max-width:900px){


.footer-container{

    grid-template-columns:
    repeat(2,1fr);

}


}



@media(max-width:600px){


.footer-container{

    grid-template-columns:1fr;

    text-align:center;

}



.footer-social a{

    margin:5px;

}


}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: 300x;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.support-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-image img {
    width: 100%;
    max-width: 600px;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

