/* ===================================
   AutoParts Scam Tracker
   Main Stylesheet
   Version 1.0
=================================== */

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


/* ==========================
   Variables
========================== */

:root{

    --primary:#2563eb;
    --primary-hover:#1d4ed8;

    --dark:#111827;

    --text:#374151;

    --light:#f8fafc;

    --border:#e5e7eb;

    --white:#f8fbff;

}


/* ==========================
   Reset
========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--light);

    color:var(--text);

}


/* ==========================
   Links
========================== */

a{

    text-decoration:none;

}

a:hover{

    text-decoration:none;

}


/* ==========================
   Navbar
========================== */

.navbar{

    background:#fff !important;

    border-bottom:1px solid var(--border);

    padding:14px 0;

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

    color:var(--dark)!important;

}

.nav-link{

    color:var(--text)!important;

    font-weight:500;

    margin-left:10px;

    margin-right:10px;

}

.nav-link:hover{

    color:var(--primary)!important;

}


/* ==========================
   Buttons
========================== */

.btn{

    border-radius:10px;

    padding:10px 22px;

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-hover);

}

.btn-outline-primary{

    border:1px solid var(--primary);

}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #21252963;
    border-color: var(--bs-btn-hover-border-color);
}


/* ==========================
   Search Box
========================== */

.form-control{

    border-radius:8px;

    border:1px solid var(--border);

}

.form-control:focus{

    box-shadow:none;

    border-color:var(--primary);

}


/* ==========================
   Footer
========================== */

footer{

    border-top:1px solid var(--border);

    background:#fff;

}

/*====================================================
Footer
====================================================*/

.footer-dark{

    background:#3f424c;

    padding:30px 0;

    color:#ffffff;

    margin-top:0;

}

.footer-dark a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;

    font-size:16px;

}

.footer-dark a:hover{

    color:#dc3545;

}

.footer-dark span{

    margin:0 8px;

    color:#d0d0d0;

}

.footer-dark hr{

    border-color:rgba(255,255,255,.15);

    margin:20px 0;

}

.footer-dark p{

    color:#dcdcdc;

    font-size:15px;

}

@media(max-width:768px){

.footer-dark a{

display:inline-block;

margin:6px 0;

}

.footer-dark span{

display:none;

}

}

/* ==========================
   Hero Section
========================== */

/*.hero{
    padding:90px 0;
    background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
    border-bottom:1px solid var(--border);
}
.hero-title{
    font-size:56px;
    font-weight:700;
    line-height:1.15;
    color:var(--dark);
}

.hero-text{

    font-size:18px;
    color:#6b7280;
    max-width:700px;
    margin:auto;

}*/

.hero-section{

    background:url('../images/hero.jpg') center center/cover no-repeat;

    min-height:550px;

    position:relative;

}

.hero-overlay{

    background:rgba(0,0,0,.60);

    min-height:550px;

    display:flex;

    align-items:center;

}

.hero-section h1{

    font-weight:700;

}

.hero-section .btn{

    min-width:190px;

}

@media(max-width:768px){

.hero-section{

min-height:480px;

}

.hero-overlay{

min-height:480px;

}

.hero-section h1{

font-size:2rem;

}

.hero-section .btn{

width:100%;

margin-bottom:10px;

}

}

.search-input{

    height:60px;

    font-size:18px;

}


/* ==========================
   Statistics
========================== */

.stat-card{

    background:#fff;

    border-radius:15px;

    border:1px solid #e8edf5;

    text-align:center;

    padding:35px;

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.stat-card h2{

    font-size:52px;

    color:var(--primary);

    font-weight:700;

}

.stat-card p{

    margin-top:10px;

    font-size:18px;

}

/* ==========================
   Section Title
========================== */

.section-title{

    font-size:32px;

    font-weight:700;

    color:var(--dark);

}


/* ==========================
   Complaint Card
========================== */

.complaint-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:12px;

    padding:25px;

    height:100%;

    transition:.3s;

}

.complaint-card:hover{

    transform:translateY(-5px);

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}


.company-name{

    font-weight:700;

    color:var(--primary);

}


.category{

    font-size:14px;

    color:#6b7280;

}


.complaint-card h5{

    font-weight:600;

}


.complaint-card p{

    color:#6b7280;

    margin-top:12px;

}


.card-footer-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:20px;

    padding-top:15px;

    border-top:1px solid var(--border);

}
.company-logo{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2563eb;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    font-weight:700;

}
/*---css header navbar---*/
/*admin company table*/
.table td,
.table th{
    white-space: nowrap;
}

/*contact Us css*/
.contact-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-card h1 {
    color: #111827;
}

@media (max-width: 576px) {

    .contact-card {
        padding: 20px;
    }

}