:root {
            --primary-black: #111111;
            --secondary-dark: #1E1E1E;
            --industrial-gold: #F3B917;
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --body-font: 'Poppins', sans-serif;
            --heading-font: 'Oswald', sans-serif;
        }

        body {
            font-family: var(--body-font);
            background-color: var(--white);
            color: #333333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: var(--heading-font);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* 1. शीर्ष सूचना पट्टी (Top Info Bar) */
        .top-bar {
            background-color: var(--primary-black);
            color: var(--white);
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 2px solid var(--industrial-gold);
        }
        .top-bar i {
            color: var(--industrial-gold);
            margin-right: 6px;
        }
        .top-bar .info-item {
            margin-right: 20px;
            display: inline-block;
        }

        /* 2. हेडर नेविगेशन (Header Navigation) */
        .navbar {
            background-color: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white) !important;
        }
        .navbar-brand span {
            color: var(--industrial-gold);
        }
        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            padding: 10px 15px !important;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--industrial-gold) !important;
        }
        
        
        .navbar-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s;
}


footer a,
footer a:visited {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #f4b400; /* your yellow theme color */
    text-decoration: none;
}

footer .fa-map-marker-alt,
footer .fa-phone-alt,
footer .fa-envelope,
footer .fa-whatsapp {
    color: #f4b400;
}


.navbar-nav li a:hover {
    color: #f3b917;
}
/* 3. हीरो सेक्शन (Hero Section) */
    .hero-section {
    background:
        linear-gradient(
            rgba(17, 17, 17, 0.85),
            rgba(30, 30, 30, 0.9)
        ),
        url('../images/hero-fasteners.jpg');

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 100px 0;
    margin-top: -1px;
}
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero-title span {
            color: var(--industrial-gold);
        }
        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #dddddd;
            border-left: 4px solid var(--industrial-gold);
            padding-left: 15px;
        }
        .yellow-banner-tag {
            background-color: var(--industrial-gold);
            color: var(--primary-black);
            padding: 12px 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 30px;
            border-radius: 4px;
            font-size: 1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .btn-outline-white {
            border: 2px solid var(--white);
            color: var(--white);
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 4px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        .btn-outline-white:hover {
            background-color: var(--white);
            color: var(--primary-black);
        }
        .hero-right-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }
        .hero-right-box h3 {
            color: var(--industrial-gold);
            margin-bottom: 20px;
        }
        .hero-right-box ul li {
            margin-bottom: 12px;
            font-size: 1.1rem;
            list-style: none;
            position: relative;
            padding-left: 25px;
        }
        .hero-right-box ul li::before {
            content: "\\";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--industrial-gold);
        }

        /* 4. विशेषताएँ अनुभाग (Features Section) */
        .features-section {
           padding:20px 0 10px 0;
            background-color: var(--light-gray);
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }
        .feature-card {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 6px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-bottom: 3px solid var(--industrial-gold);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--industrial-gold);
            margin-bottom: 15px;
        }
        .feature-card h5 {
            font-weight: 600;
            color: var(--primary-black);
            margin-bottom: 0;
        }

        /* सामान्य अनुभाग शीर्षक */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-black);
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background-color: var(--industrial-gold);
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        /* 5. हमारे उत्पाद (Our Products) */
     .products-section {
    padding: 30px 0 80px;
}
        .product-card {
            background: var(--white);
            border: 1px solid #e1e1e1;
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        .product-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        .product-img-container {
            height: 200px;
            background-color: #fafafa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        .product-img-container img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: all 0.5s ease;
        }
        .product-card:hover .product-img-container img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 20px;
            text-align: center;
            background-color: var(--white);
            border-top: 1px solid #f0f0f0;
        }
        .product-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-black);
            margin-bottom: 15px;
        }
        .btn-spec {
            background-color: var(--secondary-dark);
            color: var(--white);
            border: none;
            padding: 8px 16px;
            font-size: 0.85rem;
            text-transform: uppercase;
            border-radius: 4px;
            transition: all 0.3s ease;
            width: 100%;
        }
        .btn-spec:hover {
            background-color: var(--industrial-gold);
            color: var(--primary-black);
        }

        /* 6. तकनीकी विशिष्टताएँ (Technical Specifications) */
        .tech-section {
            background-color: var(--secondary-dark);
            color: var(--white);
            padding: 80px 0;
        }
        .tech-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 30px;
            border-radius: 6px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .tech-box:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--industrial-gold);
        }
        .tech-box h4 {
            color: var(--industrial-gold);
            font-size: 1.4rem;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }
        .tech-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .tech-list li {
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
        }
        .tech-list li i {
            color: var(--industrial-gold);
            font-size: 0.8rem;
            margin-right: 10px;
        }

        /* 7. सामग्री और फिनिश (Material & Finish) */
        .material-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        .material-column {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 6px;
            height: 100%;
        }
        .material-column h4 {
            color: var(--primary-black);
            font-weight: 700;
            margin-bottom: 20px;
            border-left: 4px solid var(--industrial-gold);
            padding-left: 10px;
        }
        .finish-wrapper {
            background-color: var(--primary-black);
            color: var(--white);
            padding: 40px;
            border-radius: 8px;
            margin-top: 40px;
        }
        .finish-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 4px;
            display: inline-block;
            margin: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            font-weight: 500;
        }

        /* 8. गुणवत्ता आश्वासन अनुभाग (Quality Assurance) */
        .quality-section {
            padding: 80px 0;
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&q=80&w=1920') center center/cover;
            position: relative;
        }
        .quality-card {
            background: rgba(255, 255, 255, 0.96);
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .gold-badge {
            background-color: var(--industrial-gold);
            color: var(--primary-black);
            padding: 25px;
            text-align: center;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.8rem;
            line-height: 1.2;
            font-family: var(--heading-font);
            box-shadow: 0 10px 20px rgba(243, 185, 23, 0.3);
        }
        .standard-tags span {
            background: var(--primary-black);
            color: var(--white);
            padding: 8px 20px;
            margin-right: 10px;
            font-weight: 600;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 10px;
        }

        /* 9. जिन उद्योगों को हम सेवाएं प्रदान करते हैं (Industries) */
        .industry-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        .industry-card {
            background: var(--white);
            padding: 30px 20px;
            text-align: center;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            height: 100%;
        }
        .industry-card:hover {
            background-color: var(--primary-black);
            color: var(--white);
            transform: translateY(-5px);
        }
        .industry-card:hover h5 {
            color: var(--white);
        }
        .industry-card i {
            font-size: 2.5rem;
            color: var(--industrial-gold);
            margin-bottom: 15px;
        }
        .industry-card h5 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0;
        }

        /* 10. थोक कोटेशन का अनुरोध करें (RFQ Form) */
        .rfq-section {
            padding: 80px 0;
        }
        .rfq-form-wrapper {
            background: var(--secondary-dark);
            padding: 50px;
            border-radius: 8px;
            color: var(--white);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        .rfq-form-wrapper h3 {
            color: var(--industrial-gold);
            font-weight: 700;
            margin-bottom: 30px;
        }
        .form-control, .form-select {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white);
            padding: 12px;
            border-radius: 4px;
        }
        .form-control:focus, .form-select:focus {
            background-color: rgba(255, 255, 255, 0.08);
            border-color: var(--industrial-gold);
            color: var(--white);
            box-shadow: none;
        }
        .form-label {
            font-weight: 500;
            font-size: 0.9rem;
            color: #cccccc;
        }
        .btn-submit-gold {
            background-color: var(--industrial-gold);
            color: var(--primary-black);
            font-weight: 700;
            font-size: 1.1rem;
            padding: 15px 40px;
            border: none;
            text-transform: uppercase;
            width: 100%;
            border-radius: 4px;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        .btn-submit-gold:hover {
            background-color: var(--white);
            color: var(--primary-black);
        }

        /* 11. पादलेख (Footer) */
        footer {
            background-color: var(--primary-black);
            color: #b1b1b1;
            padding: 70px 0 20px 0;
            font-size: 0.9rem;
            border-top: 4px solid var(--industrial-gold);
        }
        footer h5 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5::after {
            content: '';
            width: 30px;
            height: 2px;
            background-color: var(--industrial-gold);
            position: absolute;
            bottom: 0;
            left: 0;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 12px;
        }
        footer ul li a {
            color: #b1b1b1;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        footer ul li a:hover {
            color: var(--industrial-gold);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 20px;
            margin-top: 50px;
            font-size: 0.85rem;
        }

        /* Responsive Improvements */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .hero-section { padding: 60px 0; }
            .rfq-form-wrapper { padding: 30px; }
        }
.developer-credit a{
    color:#b5b5b5;
    text-decoration:none;
    font-size:14px;
    transition:all .3s ease;
}

.developer-credit a:hover{
    color:#f3b917;
}

.whatsapp-icon{
    color:#25D366;
    margin-right:6px;
    font-size:16px;
}
.ticker-wrap{
    overflow:hidden;
    width:100%;
    white-space:nowrap;
}

.ticker{
    display:inline-block;
    animation:ticker-scroll 18s linear infinite;
}

.ticker span{
    display:inline-block;
    color:#f3b917;
    margin-right:50px;
    font-size:14px;
    font-weight:600;
}

.ticker span i{
    margin-right:8px;
}

@keyframes ticker-scroll{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}
/* TOP BAR */
.top-bar{
background:#111111;
color:#fff;
padding:8px 0;
border-bottom:2px solid #f3b917;
font-size:13px;
}

.top-bar .info-item{
color:#fff;
text-decoration:none;
margin-right:15px;
transition:.3s;
}

.top-bar .info-item:hover

.top-bar .fa-whatsapp{
color:#25D366 !important;
}

.top-bar .gmail-icon{
color:#EA4335 !important;
}

.top-bar .map-icon{
color:#EA4335 !important;
}

.top-bar .info-item:hover .fa-whatsapp{
color:#25D366 !important;
}

.top-bar .info-item:hover .gmail-icon,
.top-bar .info-item:hover .map-icon{
color:#EA4335 !important;
}

/* BUTTON */
.btn-cta-gold{
display:inline-block !important;
background:#f3b917 !important;
color:#111111 !important;
padding:12px 20px !important;
border:2px solid #f3b917 !important;
border-radius:4px !important;
text-decoration:none !important;
font-weight:600 !important;
text-transform:uppercase !important;
}

.btn-cta-gold:hover{
background:transparent !important;
color:#f3b917 !important;
}

/* MOBILE */
@media(max-width:991px){

.top-bar{
    display:block !important;
}

.hero-title{
    font-size:2.3rem !important;
}

.hero-section{
    padding:60px 0 !important;
}

.btn-cta-gold{
    width:100%;
    text-align:center;
    margin-top:15px;
}


}

.gmail-icon{
    color:#EA4335 !important;
    display:inline-block !important;
    font-size:14px !important;
    margin-right:4px;
}
.hero-title{
    font-size:4.2rem;
    font-weight:700;
    line-height:1.1;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-title span{
    display:block;
    color:#f3b917;
}

.hero-subtitle{
    font-size:1.35rem;
    margin-bottom:25px;
    color:#f5f5f5;
}

.hero-right-box ul{
    list-style:none;
    padding-left:0;
}

.hero-right-box ul li{
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
}

.hero-right-box ul li:before{
    content:"✓";
    color:#f3b917;
    font-weight:bold;
    position:absolute;
    left:0;
}

.btn-outline-white{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.btn-outline-white:hover{
    background:#fff;
    color:#111;
}
/* ABOUT SECTION */
#about{
    background:#fff;
   padding:0;
    margin-top:-20px;
}

#about .section-title{
    margin-bottom:35px;
}

#about .section-title h2{
    font-family: var(--heading-font);
    font-size:3rem;
    font-weight:700;
    letter-spacing:2px;
    color:#111;
    text-transform:uppercase;
    margin-bottom:8px;
}

#about .about-subtitle{
    color:#777;
    font-size:18px;
    margin-top:10px;
    letter-spacing:1px;
}

#about .lead{
    font-size:1.15rem;
    line-height:1.9;
    color:#444;
    font-weight:400;
    margin-bottom:15px; /* was too large */
}

#about strong{
    color:#f3b917;
    font-weight:700;
}

#about .about-highlight{
    color:#111;
    font-size:1.3rem;
    font-weight:700;
    letter-spacing:1px;
    margin-top:10px;
    margin-bottom:0;
}

/* Mobile */
@media (max-width:768px){

    #about{
        padding:60px 0 30px;
    }

    #about .section-title h2{
        font-size:2.3rem;
    }

    #about .lead{
        font-size:1rem;
        line-height:1.8;
    }

    #about .about-highlight{
        font-size:1.1rem;
    }

}
.about-subtitle{
    font-size:22px;
    font-weight:700;
    color:#111;
    text-align:center;
    margin-top:0;
    margin-bottom:20px;
}
.about-divider{
    width:120px;
    height:4px;
    background:#f3b917;
    margin:30px auto 20px;
    border-radius:10px;
}



/* ABOUT US Heading */
#about .section-title h2{
    position:relative;
    margin-bottom:15px;
}

/* Yellow line below ABOUT US */
#about .section-title h2::after{
    content:'';
    display:block;
    width:70px;
    height:4px;
    background:#f3b917;
    margin:12px auto 0;
    border-radius:5px;
}

/* Subtitle */
.about-subtitle{
    font-size:22px;
    font-weight:700;
    color:#666;
    margin-top:5px;
    margin-bottom:20px;
}

/* Remove any line under subtitle */
.about-subtitle::after{
    display:none !important;
}
/* PRODUCTS INTRO */

.product-intro{
    text-align:center;
    max-width:900px;
    margin:15px auto 35px;
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.product-categories{
    text-align:center;
    margin-bottom:50px;
}


.products-section .section-title h2{
    position:relative;
    display:inline-block;
}

.products-section .section-title{
    text-align:center;
}

.products-section .section-title h2::after{
    content:'';
    display:block;
    width:70px;
    height:4px;
    background:#f3b917;
    margin:12px auto 0;
    border-radius:5px;
}
.cat-badge{
    display:inline-block;
    background:#f3b917;
    color:#111;
    padding:10px 20px;
    margin:6px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.cat-badge:hover{
    background:#111;
    color:#fff;
}

@media(max-width:768px){

    .product-intro{
        font-size:16px;
        padding:0 15px;
    }

    .cat-badge{
        padding:8px 16px;
        font-size:13px;
    }

}

/* Reduce gap below heading */
.products-section .section-title{
    margin-bottom:20px !important;
}

/* Move yellow category badges upward */
.product-categories{
    margin-top:0 !important;
    padding-top:0 !important;
    text-align:center;
}

/* Optional: tighter spacing */
.cat-badge{
    margin:5px 6px;
}
.product-categories{
    text-align:center;
    margin-bottom:30px;
}



.cat-badge{
    display:inline-block;
    background:#f3b917;
    color:#111;
    padding:10px 20px;
    margin:5px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.cat-badge:hover{
    background:#111;
    color:#fff;
}

.cat-badge.active{
    background:#111;
    color:#fff;
}

/* ==========================
   TESTIMONIAL SECTION
========================== */

.testimonial-section{
    background:#000;
    padding:80px 0;
}

.testimonial-section .section-title h2{
    color:#fff;
}

.testimonial-header{
    text-align:center;
    margin-bottom:40px;
}

.rating-score{
    color:#f3b917;
    font-size:3rem;
    font-family:var(--heading-font);
    margin-bottom:10px;
}

.rating-stars{
    font-size:30px;
    margin-bottom:10px;
}

.testimonial-header p{
    color:#bdbdbd;
    margin:0;
}

/* SWIPER */

.testimonialSwiper{
    width:100%;
    overflow:hidden;
    padding:10px 5px 50px;
}

.swiper-wrapper{
    align-items:stretch;
}

.swiper-slide{
    height:auto;
}

/* CARD */

.testimonial-card{
    background:#111;
    border:1px solid #f3b917;
    border-radius:12px;
    padding:25px;
    min-height:220px;
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(243,185,23,.25);
}

.testimonial-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.testimonial-top h5{
    color:#fff;
    font-family:var(--heading-font);
    margin:0;
    font-size:1.3rem;
}

.testimonial-top span{
    color:#f3b917;
    font-size:18px;
}

.testimonial-card p{
    color:#fff;
    line-height:1.9;
    margin:0;
}

/* Pagination */

.swiper-pagination-bullet{
    background:#f3b917 !important;
}

.swiper-pagination-bullet-active{
    background:#f3b917 !important;
}

/* Mobile */

@media(max-width:768px){

    .rating-score{
        font-size:2.2rem;
    }

    .testimonial-card{
        min-height:auto;
    }

}
.btn-load-more{

background:#f3b917;
color:#111111;

border:none;

padding:14px 35px;

font-weight:700;

text-transform:uppercase;

border-radius:5px;

transition:.3s;

font-family:var(--heading-font);

letter-spacing:1px;


}

.btn-load-more:hover{

background:#111111;

color:#ffffff;

border:1px solid #f3b917;


}

.btn-load-more:disabled{

background:#666;

color:#fff;

cursor:not-allowed;


}
.btn-load-more-wrapper{
    margin-top:20px;
    margin-bottom:30px;
}

/* =========================
SCROLL TO TOP BUTTON
========================= */

#scrollTopBtn{
    position:fixed;
    right:25px;
    bottom:25px;

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:rgba(255, 193, 7, 0.85);
    backdrop-filter:blur(10px);

    color:#111;
    font-size:20px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:all .3s ease;

   z-index:99999;

    box-shadow:
    0 8px 25px rgba(0,0,0,.15);
}

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

#scrollTopBtn:hover{
    transform:translateY(-5px);
    background:#ffc107;
}

/* Mobile */

@media(max-width:768px){

    #scrollTopBtn{
        width:50px;
        height:50px;
        right:15px;
        bottom:15px;
    }

}
.product-search{
    position:relative;
    max-width:500px;
    margin:25px auto 35px;
}

.product-search input{
    width:100%;
    height:55px;

    border:2px solid #ffc107;
    border-radius:50px;

    padding:0 55px 0 20px;

    font-size:16px;
    outline:none;

    transition:.3s;
}

.product-search input:focus{
    box-shadow:0 0 15px rgba(255,193,7,.3);
}

.product-search i{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);

    color:#ffc107;
    font-size:18px;
}