/* ==========================================================
   Fast Click Solutions
   site.css
========================================================== */

:root {
    --primary: #2563EB;
    --secondary: #0F172A;
    --light: #F8FAFC;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #DC2626;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #334155;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar {
    background: rgba(15,23,42,.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    transition: .3s;
}

.navbar-brand {
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-link {
    color: #fff !important;
    margin-left: 18px;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0;
        height: 2px;
        background: var(--warning);
        transition: .3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* ==========================================================
   HERO
========================================================== */

.hero-section {
    background: linear-gradient(135deg,#0F172A,#2563EB);
    position: relative;
    overflow: hidden;
}

.hero-image {
    animation: heroFloat 5s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes heroFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================================
   BACKGROUND CIRCLES
========================================================== */

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    animation: floatCircle 8s ease-in-out infinite;
}

.circle1 {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -100px;
}

.circle2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -70px;
}

.circle3 {
    width: 120px;
    height: 120px;
    top: 35%;
    right: 20%;
}

@keyframes floatCircle {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================================
   SECTION
========================================================== */

section {
    padding: 90px 0;
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn {
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: .3s;
}

    .btn:hover {
        transform: translateY(-4px);
    }

.btn-primary {
    background: var(--primary);
    border: none;
}

    .btn-primary:hover {
        background: #1d4ed8;
    }

/* ==========================================================
   CARDS
========================================================== */

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.card-body {
    padding: 30px;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: .5s;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card i {
    transition: .3s;
}

.card:hover i {
    transform: scale(1.15);
}

/* ==========================================================
   FOOTER
========================================================== */

footer {
    background: var(--secondary);
}

    footer h4,
    footer h5 {
        color: #fff;
    }

    footer p,
    footer small {
        color: rgba(255,255,255,.8);
    }

    footer a {
        color: rgba(255,255,255,.85);
        text-decoration: none;
        transition: .3s;
    }

        footer a:hover {
            color: var(--warning);
        }

/* ==========================================================
   WHATSAPP BUTTON
========================================================== */

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    z-index: 9999;
    transition: .3s;
}

    .whatsapp:hover {
        transform: scale(1.1);
        color: white;
    }

/* ==========================================================
   BACK TO TOP
========================================================== */

#topBtn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    display: none;
    z-index: 9999;
    transition: .3s;
}

    #topBtn:hover {
        transform: translateY(-4px);
    }

/* ==========================================================
   BADGES
========================================================== */

.badge {
    border-radius: 50px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:991px) {

    .hero-section {
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .circle {
        display: none;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 15px;
    }

    .nav-link {
        margin: 10px 0;
    }

    .card-body {
        padding: 25px;
    }
}

@media (max-width:576px) {

    section {
        padding: 70px 0;
    }

    h1.display-3 {
        font-size: 2.4rem;
    }

    .btn {
        width: 100%;
    }

    .whatsapp {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

    #topBtn {
        width: 50px;
        height: 50px;
    }
}
