/*==================================================
    HIT AUCTION WEBSITE
    PART 1 - HEADER
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#2596BE;
    --primary-dark:#1b7d9f;
    --secondary:#FFC107;
    --dark:#081b29;
    --white:#ffffff;
    --text:#333333;
    --light:#f7f9fc;
    --border:#e5e7eb;

}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    width:100%;
    font-family:'Poppins',sans-serif;
   
    overflow-x:hidden;
   

}

a{

    text-decoration:none;
    transition:.3s;

}

img{
    max-width:100%;
    height:auto;
}

/*==========================
TOP BAR
==========================*/

.top-bar{

    background:#8b0000;
    color:#fff;
    font-size:14px;
    padding:8px 0;

}

.top-bar span{

    font-weight:500;

}

.top-bar .social-link{

    color:#fff;
    margin-left:12px;
    font-size:17px;
    display:inline-block;

}

.top-bar .social-link:hover{

    color:var(--secondary);
    transform:translateY(-2px);

}

.phone{

    margin-left:20px;
    font-weight:600;

}

/*==========================
HEADER
==========================*/

.main-header{

    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.navbar{

    padding:16px 0;

}
/* Header Logo */

.navbar-brand{
    padding:0;
}

.navbar-brand img{
    width:auto;
    height:65px;
    max-width:220px;
    object-fit:contain;
    display:block;
}

.navbar-nav{

    align-items:center;

}

.nav-item{

    margin:0 4px;

}

.nav-link{

    color:#333 !important;
    font-weight:600;
    font-size:16px;
    padding:14px 16px !important;
    position:relative;

}

.nav-link:hover{

    color:var(--primary) !important;

}

.nav-link.active{

    color:var(--primary) !important;

}

/* Animated underline */

.nav-link::after{

    content:"";
    position:absolute;
    left:50%;
    bottom:4px;
    width:0;
    height:3px;
    background:var(--primary);
    transition:.3s;
    transform:translateX(-50%);
    border-radius:20px;

}

.nav-link:hover::after{

    width:70%;

}

.nav-link.active::after{

    width:70%;

}

/*==========================
BUTTONS
==========================*/

.login-btn{

    background:#fff;
    color:var(--primary);
    border:2px solid var(--primary);
    padding:10px 24px;
    border-radius:8px;
    font-weight:600;
    margin-right:10px;
    transition:.3s;

}

.login-btn:hover{

    background:var(--primary);
    color:#fff;

}

.register-btn{

    background:var(--primary);
    color:#fff;
    padding:10px 26px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;

}

.register-btn:hover{

    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-2px);

}

/*==========================
DROPDOWN
==========================*/

.dropdown-menu{

    border:none;
    border-radius:12px;
    box-shadow:0 12px 25px rgba(0,0,0,.12);
    padding:12px 0;

}

.dropdown-item{

    padding:10px 22px;
    font-weight:500;

}

.dropdown-item:hover{

    background:var(--primary);
    color:#fff;

}

/*==========================
MOBILE MENU
==========================*/

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

.navbar-toggler-icon{

    width:2rem;
    height:2rem;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.top-bar{

text-align:center;

}

.phone{

display:block;
margin-top:8px;
margin-left:0;

}

.navbar-collapse{

padding-top:20px;

}

.navbar-nav{

text-align:center;

}

.nav-link{

padding:14px 0 !important;

}

.login-btn{

display:block;
margin:15px 0 10px;

}

.register-btn{

display:block;

}

}

@media(max-width:576px){

.navbar-brand img{

height:52px;

}

.top-bar{

font-size:13px;

}

.top-bar .social-link{

margin:0 5px;

}

.phone{

font-size:13px;

}

}

/*==================================================
    HIT AUCTION WEBSITE
    PART 2 - HOME PAGE
==================================================*/


/*==========================
HERO SECTION
==========================*/
/*================ HERO =================*/

.hero-section{
    position:relative;
    height:500px;
    background:url("../images/hero-bg.jpg") center center no-repeat;
    background-size:cover;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:0;
    padding-bottom:0;
}

.hero-tag{
    display:inline-block;
    background:#2596BE;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
}

.hero-desc{
    color:#fff;
    font-size:20px;
    line-height:30px;
    margin:15px auto;
    max-width:700px;
}

.hero-buttons{
    margin-top:20px;
}

.hero-stats{

    display:flex;

    justify-content:center;

    gap:40px;

    margin-top:30px;

}

.stat-box h2{

    color:#fff;

    font-size:40px;

    font-weight:700;

    margin:0;

}

.stat-box p{

    color:#ddd;

    margin-top:8px;

}

@media(max-width:768px){

.hero-title{

font-size:40px;

}

.hero-desc{

font-size:16px;

line-height:28px;

}

.hero-stats{

flex-direction:column;

gap:20px;

}

}

.btn-main{

    background:#2596BE;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-main:hover{

    background:#19799d;

    color:#fff;

    transform:translateY(-3px);

}

.btn-outline-main{

    border:2px solid #fff;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

}

.btn-outline-main:hover{

    background:#fff;

    color:#000;

}


/*==========================
COMMON SECTION
==========================*/

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:#081b29;

}

.section-title p{

    color:#777;

    font-size:18px;

    margin-top:15px;

}


/*==========================
AUCTION CARD
==========================*/

.auction-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.auction-card:hover{

    transform:translateY(-8px);

}

.auction-image{

    height:220px;

    overflow:hidden;

}

.auction-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.auction-card:hover img{

    transform:scale(1.08);

}

.auction-body{

    padding:25px;

}

.auction-title{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.auction-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    color:#777;

}

.auction-info i{

    color:#2596BE;

}

.auction-footer{

    margin-top:20px;

}

.view-btn{

    width:100%;

    display:block;

    background:#2596BE;

    color:#fff;

    text-align:center;

    padding:13px;

    border-radius:8px;

    font-weight:600;

}

.view-btn:hover{

    background:#081b29;

    color:#fff;

}


/*==========================
STATISTICS
==========================*/

.stats-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.stats-card:hover{

    transform:translateY(-6px);

}

.stats-card i{

    font-size:45px;

    color:#2596BE;

    margin-bottom:18px;

}

.stats-card h3{

    font-size:40px;

    font-weight:700;

    color:#081b29;

}

.stats-card p{

    color:#666;

    margin:0;

}


/*==========================
FEATURES
==========================*/

.feature-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    width:90px;

    height:90px;

    background:#2596BE;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:38px;

    margin:auto;

    margin-bottom:25px;

}

.feature-box h4{

    font-weight:700;

    margin-bottom:15px;

}

.feature-box p{

    color:#666;

    line-height:28px;

}


/*==========================
DOWNLOAD APP
==========================*/

.download-section{

    background:#081b29;

    color:#fff;

    padding:90px 0;

    text-align:center;

}

.download-section h2{

    font-size:42px;

    font-weight:700;

}

.download-section p{

    color:#ccc;

    margin:20px auto;

    max-width:700px;

}

.store-buttons{

    margin-top:35px;

}

.store-buttons img{

    height:60px;

    margin:10px;

}


/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.hero{

min-height:560px;

}

.hero h1{

font-size:45px;

line-height:60px;

}

.section{

padding:70px 0;

}

}

@media(max-width:768px){

.hero{

text-align:center;

}

.hero h1{

font-size:34px;

line-height:48px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

justify-content:center;

}

.section-title h2{

font-size:32px;

}

.auction-image{

height:180px;

}

}

@media(max-width:576px){

.hero{

min-height:500px;

}

.btn-main,
.btn-outline-main{

width:100%;

text-align:center;

}

.store-buttons img{

height:50px;

}

}

/*================ FOOTER ================*/

.footer{
    width:100%;
    background:#14072d;
    color:#fff;
   
    margin:0;
}

.footer-logo{
    height:60px;
    margin-bottom:10px;
}

.powered{
    margin:10px 0;
    color:#bbb;
    font-size:16px;
}

.company-name{
    color:#36b9ff;
    margin-bottom:8px;
    font-size:22px;
}

.footer h4{
    font-size:22px;
    margin-bottom:15px;
    font-weight:600;
}

.footer p{
    margin-bottom:8px;
    line-height:1.5;
}

.footer ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer ul li{
    margin-bottom:8px;
}

.footer ul li a{
    color:#fff;
    text-decoration:none;
}

.footer ul li a:hover{
    color:#36b9ff;
}

.store-btn{
    width:150px;
    margin-bottom:10px;
}

.contact-list li{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
}

.contact-list i{
    color:#36b9ff;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    color:#fff;
    font-size:22px;
}

.footer-social a:hover{
    color:#36b9ff;
}

.footer-line{
    margin:20px 0 10px;
    border-color:rgba(255,255,255,.15);
}

.footer-bottom{
    padding-top:5px;
    font-size:14px;
}

.footer-bottom a{
    color:#fff;
    text-decoration:none;
    margin-left:10px;
}

.footer-bottom a:hover{
    color:#36b9ff;
}

@media(max-width:768px){

.footer{
    text-align:center;
}

.footer-social{
    justify-content:center;
    margin-top:15px;
}

.contact-list li{
    justify-content:center;
}

.footer-bottom .text-md-end{
    margin-top:10px;
}

}