﻿/*=========================================
            HERO SECTION
=========================================*/

.aidon-hero {
    background: linear-gradient(135deg,#fff5f5 0%,#ffffff 100%);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
}

    .aidon-hero:before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(255,0,0,.05);
        border-radius: 50%;
        top: -180px;
        right: -120px;
    }

    .aidon-hero:after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: rgba(255,0,0,.05);
        border-radius: 50%;
        left: -100px;
        bottom: -80px;
    }

.breadcrumb-area {
    margin-bottom: 25px;
    font-size: 15px;
}

    .breadcrumb-area a {
        color: #666;
        text-decoration: none;
    }

    .breadcrumb-area span {
        margin: 0 8px;
        color: #999;
    }

.product-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #ffe9e9;
    color: #ff0000;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.aidon-hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 17px;
    color: #666;
    line-height: 30px;
    margin-bottom: 35px;
}

.hero-buttons {
    margin-bottom: 35px;
}

.btn-red {
    display: inline-block;
    background: #ff0000;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 15px;
    text-decoration: none;
    transition: .35s;
    border: 2px solid #ff0000;
}

    .btn-red:hover {
        background: #d60000;
        border-color: #d60000;
        color: #fff !important;
        text-decoration: none;
    }

.btn-white {
    display: inline-block;
    background: #fff;
    color: #ff0000 !important;
    border: 2px solid #ff0000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

    .btn-white:hover {
        background: #ff0000;
        color: #fff !important;
        text-decoration: none;
    }

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

    .hero-features div {
        width: 48%;
        color: #444;
        font-weight: 500;
    }

    .hero-features i {
        color: #ff0000;
        margin-right: 8px;
    }

.hero-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
    animation: floatImage 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}


/*=========================================
            COUNTER
=========================================*/

.counter-section {
    background: #fff;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.counter-box {
    background: #fff;
    border-radius: 18px;
    text-align: center;
    padding: 35px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    margin-bottom: 30px;
}

    .counter-box:hover {
        transform: translateY(-8px);
    }

    .counter-box h2 {
        color: #ff0000;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .counter-box p {
        color: #666;
        font-size: 16px;
        margin: 0;
    }


/*=========================================
            OVERVIEW
=========================================*/

.overview-section {
    padding: 100px 0;
}

.overview-image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.section-title-small {
    color: #ff0000;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.overview-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.overview-section p {
    color: #666;
    line-height: 30px;
    margin-bottom: 20px;
}

.overview-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    columns: 2;
}

    .overview-list li {
        margin-bottom: 15px;
        color: #444;
        font-weight: 500;
    }

    .overview-list i {
        color: #ff0000;
        margin-right: 10px;
    }


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .aidon-hero {
        padding: 70px 0;
    }

        .aidon-hero h1 {
            font-size: 38px;
        }

    .hero-buttons a {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
        text-align: center;
    }

    .hero-features div {
        width: 100%;
    }

    .overview-list {
        columns: 1;
    }

    .process-line {
        display: block;
    }

    .step {
        width: 100%;
        margin-bottom: 40px;
    }
}

/*==============================
        MODULE SECTION
==============================*/

.modules-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    margin-bottom: 60px;
}

    .section-header span {
        color: #ff0000;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .section-header h2 {
        font-size: 42px;
        font-weight: 700;
        margin: 15px 0;
        color: #1e293b;
    }

    .section-header p {
        color: #666;
        max-width: 760px;
        margin: auto;
        line-height: 30px;
    }

.module-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 30px;
    transition: .35s;
    border: 1px solid #ececec;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .module-card:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background: #ff0000;
    }

    .module-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
    }

.module-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    line-height: 70px;
    text-align: center;
    margin-bottom: 25px;
}

    .module-icon i {
        color: #fff;
        font-size: 30px;
    }

.red {
    background: #ff0000;
}

.blue {
    background: #2563eb;
}

.orange {
    background: #f59e0b;
}

.green {
    background: #16a34a;
}

.purple {
    background: #7c3aed;
}

.cyan {
    background: #0891b2;
}

.module-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .module-card ul li {
        padding: 10px 0;
        border-bottom: 1px dashed #ececec;
        color: #555;
        position: relative;
        padding-left: 28px;
    }

        .module-card ul li:last-child {
            border: none;
        }

        .module-card ul li:before {
            content: "✓";
            color: #ff0000;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

/*==============================
WHY AIDON
==============================*/

.why-aidon {
    padding: 100px 0;
    background: #ffffff;
}

.feature-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #ececec;
    transition: .35s;
}

    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,.12);
    }

.feature-icon {
    width: 75px;
    height: 75px;
    background: #ff0000;
    border-radius: 50%;
    color: #fff;
    line-height: 75px;
    margin: auto;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
}

.feature-box p {
    color: #666;
    line-height: 28px;
}

/*==============================*/

.benefits-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-small {
    color: #ff0000;
    font-weight: 700;
    letter-spacing: 2px;
}

.benefit-list {
    margin-top: 35px;
}

    .benefit-list div {
        margin-bottom: 18px;
        font-size: 17px;
    }

    .benefit-list i {
        color: #ff0000;
        margin-right: 12px;
    }

.benefit-image img {
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,.15);
}

/*==============================*/

.process-section {
    padding: 100px 0;
    background: #fff;
}

.process-line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
}

.step {
    text-align: center;
    width: 16%;
}

.circle {
    width: 70px;
    height: 70px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    line-height: 70px;
    margin: auto;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 18px;
}

/*==============================*/

.cta-section {
    background: linear-gradient(135deg,#ff0000,#c40000);
    color: #fff;
    padding: 90px 0;
}

    .cta-section h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 18px;
        max-width: 760px;
        margin: auto auto 35px;
        line-height: 30px;
    }
.why-aidon .row {
    display: flex;
    flex-wrap: wrap;
}

.why-aidon .col-md-4 {
    display: flex;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    border: 1px solid #ececec;
    transition: .35s;
}

    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,.12);
    }