/* ===============================
   Compass CRM
================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --primary:#0d6efd;
    --secondary:#1f2937;
    --accent:#f4b400;
    --light:#f8f9fa;
    --white:#ffffff;
    --text:#444;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:15px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.7;
}

/* Links */

a{
    text-decoration:none;
    transition:.3s;
}

/* Section spacing */

section{
    padding:80px 0;
}

/* Titles */

.section-title{
    font-size:2.2rem;
    font-weight:700;
    color:var(--secondary);
}

.section-subtitle{
    color:#777;
    margin-bottom:50px;
}

/* Buttons */

.btn-primary{
    background:var(--primary);
    border:none;
    padding:12px 30px;
    border-radius:40px;
    transition:.3s;
}

.btn-primary:hover{
    background:#0b5ed7;
    transform:translateY(-2px);
}

.btn-warning{
    border-radius:40px;
}

/* Cards */

.card{
    border:none;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
}

/* Hero */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    color:#fff;
    background:
    linear-gradient(rgba(13,110,253,.75),rgba(31,41,55,.85)),
    url('../images/hero.jpg') center center/cover;
}

.hero h1{
    font-size:3.3rem;
    font-weight:700;
}

.hero p{
    font-size:1.2rem;
    margin:20px 0;
}

/* Icons */

.service-icon{
    width:80px;
    height:80px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto;
    margin-bottom:20px;
}

/* Footer */

footer{
    background:var(--secondary);
    color:#fff;
    padding:60px 0 20px;
}

footer a{
    color:#ddd;
}

footer a:hover{
    color:var(--accent);
}

/* Responsive */

@media(max-width:768px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:2.2rem;
}

.section-title{
    font-size:1.8rem;
}

}