/* ============================================================
   home.css  —  Styles exclusive to the Home page (Home.html)
   ============================================================ */

/* ── Hero Banner ─────────────────────────── */
.hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1117 0%, #141e30 40%, #1a0533 100%);
    padding: 80px 20px 70px;
    text-align: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(210, 74, 228, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(21, 202, 225, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 90%, rgba(0, 76, 170, 0.12) 0%, transparent 50%);
    animation: glowShift 8s ease-in-out infinite alternate;
}

@keyframes glowShift {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(to right, #d24ae4, #15cae1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 5px 18px;
    margin-bottom: 22px;
    font-family: 'Times New Roman', Times, serif;
}

.hero-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #ffffff 0%, #d24ae4 40%, #15cae1 70%, #004caa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
    background-size: 200%;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-family: 'Times New Roman', Times, serif;
    color: #b0b8d0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(to right, #d24ae4, #15cae1);
    color: #fff !important;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 13px 36px;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(21, 202, 225, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(210, 74, 228, 0.45);
    color: #fff !important;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, #004caa, #d24ae4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-family: 'Times New Roman', Times, serif;
    color: #8899aa;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Project Carousel ─────────────────────── */
.project-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.project-item {
    display: block;
    border-radius: 10px;
    text-decoration: none;
}

.project-title {
    background: #1e2233;
    padding: 10px 14px;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.project-title h5 {
    color: #fff !important;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
}
/*  Orange Hover Effect for Tool Cards  */
.feature_section .features-box:hover {
    background-color: rgba(246, 152, 10, 0.1) !important;
    border-color: #f6980a !important;
    transform: translateY(-5px);
}

.feature_section .features-box:hover .features-icon-border {
    border-color: #f6980a !important;
}

.feature_section .features-box:hover .features-icon {
    background-color: #f6980a !important;
}

.feature_section .features-box:hover .features-text h3 {
    color: #f6980a !important;
}

.feature_section .features-box:hover .features-icon i {
    color: #fff !important;
}
