﻿/*==========================
        HERO SECTION
===========================*/

.hero-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 40px 0 80px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        width: 700px;
        height: 700px;
        left: -260px;
        top: -250px;
        border-radius: 50%;
        background: rgba(212,160,23,.05);
    }

    .hero-section::after {
        content: '';
        position: absolute;
        width: 650px;
        height: 650px;
        right: -220px;
        top: -120px;
        border-radius: 50%;
        background: rgba(212,160,23,.08);
    }

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 40px;
    padding: 10px 22px;
    font-weight: 700;
    color: #444;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

    .hero-badge i {
        color: #d4a017;
    }

.hero-title {
    margin-top: 30px;
    font-size: 58px;
    line-height: 1.3;
    font-weight: 900;
    color: #202020;
}

    .hero-title span {
        color: #d4a017;
    }

.hero-desc {
    margin-top: 25px;
    line-height: 2;
    color: #777;
    font-size: 18px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.hero-btn-primary {
    background: #d4a017;
    color: #fff;
    text-decoration: none;
    padding: 17px 34px;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .35s;
}

    .hero-btn-primary:hover {
        color: #fff;
        background: #bd8f10;
        transform: translateY(-4px);
    }

.hero-btn-secondary {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    padding: 17px 34px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .35s;
}

    .hero-btn-secondary:hover {
        border-color: #d4a017;
        color: #d4a017;
    }

.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 45px;
    flex-wrap: wrap;
}

    .hero-mini-stats div {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 120px;
    }

        .hero-mini-stats div:not(:last-child)::after {
            content: "";
            position: absolute;
            left: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 45px;
            background: #e6e6e6;
        }

    .hero-mini-stats strong {
        display: block;
        font-size: 34px;
        font-weight: 800;
        color: #d4a017;
        line-height: 1;
        margin-bottom: 8px;
    }

    .hero-mini-stats span {
        display: block;
        font-size: 14px;
        color: #666;
        font-weight: 500;
        text-align: center;
        white-space: nowrap;
    }

@media(max-width:768px) {

    .hero-mini-stats {
        justify-content: center;
        gap: 25px;
    }

        .hero-mini-stats div {
            min-width: 100px;
        }

            .hero-mini-stats div:not(:last-child)::after {
                display: none;
            }

        .hero-mini-stats strong {
            font-size: 28px;
        }
}

.hero-security {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-weight: 600;
}

    .hero-security i {
        color: #d4a017;
        font-size: 22px;
    }

/*=====================
      IMAGE
======================*/

.hero-image-wrapper {
    position: relative;
    min-height: 680px;
}

.hero-circle {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle,#fff7df 0%,#fff 70%);
    right: 20px;
    top: -20px;
}

.hero-laptop {
    position: absolute;
    width: 720px;
    right: 0;
    top: 40px;
    z-index: 3;
    filter: drop-shadow(0 35px 70px rgba(0,0,0,.20));
}

.hero-mobile {
    position: absolute;
    width: 230px;
    bottom: 20px;
    right: 80px;
    z-index: 5;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,.18));
}



/*======================
    FLOATING CARDS
=======================*/

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    box-shadow: 0 25px 45px rgba(0,0,0,.08);
    z-index: 10;
    animation: floating 5s ease-in-out infinite;
}

    .floating-card i {
        width: 55px;
        height: 55px;
        border-radius: 15px;
        background: #fff7df;
        color: #d4a017;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .floating-card h6 {
        margin: 0;
        font-weight: 800;
    }

    .floating-card small {
        color: #777;
    }

.card-one {
    top: 260px;
    left: -20px;
}

.card-two {
    top: 80px;
    right: -20px;
}

.card-three {
    bottom: 90px;
    right: -40px;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}