/* ==========================================
   SHRI SHYAM JI TRADING COMPANY
   Premium Theme
========================================== */

:root{
    --primary:#0A1F44;
    --secondary:#D4AF37;
    --light:#FFF8E8;
    --white:#ffffff;
    --dark:#111111;
    --text:#555555;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;
}

/* ===============================
   Navbar
================================ */

.navbar{
    padding:18px 0;
    transition:.4s;
    background:rgba(10,31,68,.85);
    backdrop-filter:blur(12px);
}

.company-name{
    font-family:'Cinzel',serif;
    font-weight:700;
    color:var(--secondary);
    margin:0;
}

.navbar-brand span{
    color:#fff;
}

.nav-link{
    color:#fff !important;
    font-weight:600;
    margin-left:18px;
    position:relative;
}

.nav-link::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:var(--secondary);
    transition:.4s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.btn-warning{
    background:var(--secondary);
    border:none;
    color:#000;
    font-weight:600;
}

.btn-warning:hover{
    background:#bf9927;
}

/* ===============================
 Hero
================================ */

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background:

    linear-gradient(

    rgba(10,31,68,.88),

    rgba(10,31,68,.88)

    ),

    url("../assets/images/hero-bg.jpg");

    background-size:cover;

    background-position:center;

}

.hero-top{

    color:var(--secondary);

    font-size:26px;

    margin-bottom:15px;

    letter-spacing:2px;

}

.hero-title{

    font-size:70px;

    color:#fff;

    font-family:'Cinzel',serif;

    font-weight:700;

}

.hero-sub{

    color:var(--secondary);

    margin-bottom:20px;

}

.hero-text{

    color:#ddd;

    font-size:18px;

    line-height:30px;

}

.hero-image{

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

/* ===============================
 Section Heading
================================ */

.section-title{

display:inline-block;

padding:8px 20px;

background:var(--secondary);

border-radius:30px;

color:#000;

font-weight:700;

margin-bottom:15px;

letter-spacing:1px;

}

/* ===============================
 Feature Boxes
================================ */

.feature-section{

margin-top:-70px;

position:relative;

z-index:10;

}

.feature-box{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

text-align:center;

transition:.4s;

}

.feature-box:hover{

transform:translateY(-10px);

}

.feature-box i{

font-size:45px;

color:var(--secondary);

margin-bottom:15px;

}

/* ===============================
 About
================================ */

#about{

padding:100px 0;

}

#about img{

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

#about h2{

font-size:42px;

font-weight:700;

margin-bottom:20px;

}

#about p{

color:#666;

line-height:30px;

}

#about li{

margin-bottom:10px;

font-weight:500;

}

/* ==========================================
   PRODUCTS SECTION
========================================== */

.products-section{
    background:#f8f9fa;
    padding:100px 0;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
    text-align:center;
}

.product-content h4{
    color:var(--primary);
    font-weight:700;
    margin-bottom:15px;
}

.product-content p{
    color:#666;
    margin-bottom:20px;
}

/* ==========================================
   COUNTER SECTION
========================================== */

.counter-section{
    background:linear-gradient(rgba(10,31,68,.92),rgba(10,31,68,.92)),
    url("../assets/images/counter-bg.jpg");
    background-size:cover;
    background-position:center;
    color:#fff;
    padding:90px 0;
}

.counter-section h2{
    color:var(--secondary);
    font-size:50px;
    font-weight:700;
}

.counter-section p{
    font-size:18px;
    margin-top:10px;
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.choose-card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.choose-card:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-10px);
}

.choose-card i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:20px;
}

.choose-card:hover h5,
.choose-card:hover p{
    color:#fff;
}

/* ==========================================
   GALLERY
========================================== */

.gallery-section{
    background:var(--light);
}

.gallery-img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
}

.gallery-img:hover{
    transform:scale(1.05);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

/* ==========================================
   CONTACT
========================================== */

.contact-section{
    background:var(--primary);
    color:#fff;
    padding:100px 0;
}

.contact-section h2{
    color:var(--secondary);
    margin-bottom:25px;
}

.contact-section p{
    font-size:18px;
    line-height:32px;
}

.contact-section .form-control{
    border:none;
    border-radius:12px;
    padding:15px;
    margin-bottom:18px;
}

.contact-section textarea{
    resize:none;
}

.contact-section .btn-warning{
    width:100%;
    padding:14px;
    border-radius:12px;
    font-size:18px;
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    background:#08152d;
    color:#ddd;
    padding:70px 0 20px;
}

.footer h3,
.footer h5{
    color:var(--secondary);
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--secondary);
    padding-left:8px;
}

.footer i{
    font-size:22px;
    color:#fff;
    margin-right:12px;
    transition:.3s;
}

.footer i:hover{
    color:var(--secondary);
}

.footer hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}

/* ==========================================
   FLOATING BUTTONS
========================================== */

.whatsapp-btn,
.call-btn{
    position:fixed;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#fff;
    z-index:9999;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.whatsapp-btn{
    right:20px;
    bottom:95px;
    background:#25D366;
}

.call-btn{
    right:20px;
    bottom:20px;
    background:#0d6efd;
}

.whatsapp-btn:hover,
.call-btn:hover{
    transform:scale(1.1);
    color:#fff;
}

/* ==========================================
   SCROLL TO TOP
========================================== */

#scrollTop{
    position:fixed;
    left:20px;
    bottom:20px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:var(--secondary);
    color:#000;
    font-size:22px;
    display:none;
    cursor:pointer;
    z-index:9999;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:992px){

.hero-title{
    font-size:46px;
}

.hero-sub{
    font-size:28px;
}

.hero-section{
    text-align:center;
    padding-top:120px;
}

.hero-image{
    margin-top:40px;
}

.navbar{
    background:var(--primary);
}

}

@media (max-width:768px){

.hero-title{
    font-size:36px;
}

.hero-text{
    font-size:16px;
}

.feature-box,
.choose-card{
    margin-bottom:20px;
}

.product-card img{
    height:220px;
}

.counter-section h2{
    font-size:38px;
    margin-top:20px;
}

.footer{
    text-align:center;
}

.footer .col-lg-4{
    margin-bottom:30px;
}

}

@media (max-width:576px){

.hero-title{
    font-size:30px;
}

.hero-sub{
    font-size:22px;
}

.hero-top{
    font-size:20px;
}

.btn-lg{
    width:100%;
    margin-bottom:12px;
}

.gallery-img{
    height:220px;
}

.contact-section{
    text-align:center;
}

}