/* ===================================
   DeliverDeals v1
   style.css
=================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#1f2937;
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1180px;
    margin:auto;
}

/* =====================
   HEADER
===================== */

header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#2563eb;
    letter-spacing:.5px;
    
}
.logo img{

    height:75px;

    width:auto;

    display:block;

}

nav ul{
    display:flex;
    gap:35px;
}

nav a{
    font-size:17px;
    font-weight:600;
    color:#334155;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#2563eb;
}

/* =====================
   HERO
===================== */

.hero{

    padding:90px 0;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1e40af
    );

    color:#fff;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

}

.badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    margin-bottom:20px;

    backdrop-filter:blur(10px);

}

.hero h1{

    font-size:56px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.hero p{

    font-size:18px;

    color:#e2e8f0;

    margin-bottom:35px;

}

.buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#14b8a6;

    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#0d9488;

    transform:translateY(-2px);

}

.btn-secondary{

    border:2px solid rgba(255,255,255,.35);

    padding:14px 28px;

    border-radius:40px;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;

    color:#2563eb;

}

.hero-card{

    background:#fff;

    color:#1f2937;

    border-radius:18px;

    padding:35px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.hero-card h3{

    margin-bottom:20px;

    color:#2563eb;

    font-size:24px;

}

.hero-card ul li{

    padding:10px 0;

    border-bottom:1px solid #e5e7eb;

    font-size:16px;

}

.hero-card ul li:last-child{

    border:none;

}

/* =====================
   SECTION TITLE
===================== */

section{

    padding:80px 0;

}

section h2{

    text-align:center;

    font-size:38px;

    color:#0f172a;

    margin-bottom:18px;

}

section p{

    color:#64748b;

}


/* =====================
   ABOUT SECTION
===================== */

.about{
    background:#ffffff;
}

.about .container{
    max-width:900px;
    text-align:center;
}

.about p{
    font-size:18px;
    margin-top:20px;
}

/* =====================
   SERVICES
===================== */

.services{
    background:#f1f5f9;
}

.service-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#ffffff;
    padding:35px 30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    transition:.35s ease;
    border:1px solid #e2e8f0;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(37,99,235,.15);
}

.card h3{
    color:#2563eb;
    font-size:22px;
    margin-bottom:15px;
}

.card p{
    color:#64748b;
    font-size:15px;
}

/* =====================
   INDUSTRIES
===================== */

.industries{
    background:#ffffff;
}

.industry-list{
    margin-top:40px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.industry-list span{
    background:#2563eb;
    color:#ffffff;
    padding:12px 22px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.industry-list span:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* =====================
   CTA SECTION
===================== */

.cta{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    text-align:center;
    color:#ffffff;
}

.cta h2{
    color:#ffffff;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    color:#cbd5e1;
    font-size:17px;
}

/* =====================
   FOOTER
===================== */

footer{
    background:#020617;
    color:#cbd5e1;
    padding:60px 0 20px;
}

.footer{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.footer h3{
    color:#ffffff;
    margin-bottom:15px;
    font-size:26px;
}

.footer h4{
    color:#ffffff;
    margin-bottom:15px;
}

.footer ul li{
    margin-bottom:12px;
}

.footer a{
    color:#cbd5e1;
    transition:.3s;
}

.footer a:hover{
    color:#60a5fa;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:42px;
}

.service-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

header .container{
    flex-direction:column;
    height:auto;
    padding:18px 0;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:15px;
}

.hero{
    padding:70px 0;
}

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    text-align:center;
}

.service-grid{
    grid-template-columns:1fr;
}

section{
    padding:60px 0;
}

section h2{
    font-size:30px;
}

.industry-list{
    gap:12px;
}

.industry-list span{
    font-size:14px;
    padding:10px 18px;
}

}