/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    background: #0c0c11;
    color: #ffffff;
    font-family: system-ui, sans-serif;
}
/* Fix Bootstrap text on dark theme */
body, p, .lead, .text-muted, .section-title, h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
}

/* Slightly softer muted text */
.text-muted,
.lead.text-muted {
    color: #c7c7d0 !important;
}

/* CTA BUTTONS */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    border: 1px solid #ff2c92;
    color: #ffffff;
    transition: 0.2s;
    cursor: pointer;
}
.btn:hover {
    background: #ff2c92;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
}
.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
}
.hero p {
    font-size: 18px;
    color: #bbbbbb;
    max-width: 700px;
    margin: 0 auto 32px;
}
.hero img {
    width: 60%;
    max-width: 800px;
    margin-top: 40px;
    border-radius: 12px;
    border: 1px solid #1f1f28;
}

/* SECTIONS */
.section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 30px;
}
.feature-box {
    background: #14141c;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #1f1f28;
    text-align: center;
}
.feature-box img {
    width: 80px;
    margin-bottom: 14px;
}
.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-desc {
    font-size: 14px;
    color: #bbbbbb;
}
/* FEATURE BOX MODERN STYLE */
.feature-box {
    background: #14141c;
    border: 1px solid #1f1f28;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Blue glow behind the box */
.feature-box::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(0,170,255,0.35) 0%, rgba(0,170,255,0) 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

/* Hover animation */
.feature-box:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: #00aaff;
    box-shadow: 0 0 25px rgba(0,170,255,0.35);
}

/* Glow fades in when hovering */
.feature-box:hover::before {
    opacity: 1;
}

/* Content must stay ABOVE glow */
.feature-box > * {
    position: relative;
    z-index: 2;
}

/* Icon improvement */
.feature-icon {
    font-size: 52px;
    margin-bottom: 14px;
    background: -webkit-linear-gradient(#00aaff, #80e9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Title text clean */
.feature-title {
    font-size: 18px;
    font-weight: 600;
}

/* Desc text softer */
.feature-desc {
    font-size: 14px;
    color: #bfc7d5;
}

/* IMAGE + TEXT SECTION */
.image-text {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 50px 0;
}
.image-text img {
    width: 50%;
    border-radius: 12px;
    border: 1px solid #1f1f28;
}
.image-text h3 {
    font-size: 26px;
    margin-bottom: 10px;
}
.image-text p {
    font-size: 16px;
    color: #bbbbbb;
    max-width: 500px;
}

/* CTA STRIP */
.cta-strip {
    background: #1a1a22;
    padding: 50px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #2a2a33;
}
.cta-strip h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    color: #777;
    font-size: 14px;
}

/* MOBILE */
@media(max-width: 900px) {
    .image-text {
        flex-direction: column;
        text-align: center;
    }
    .image-text img {
        width: 90%;
    }
}
/* FEATURE ICONS (Font Awesome) */
.feature-icon {
    font-size: 50px;
    margin-bottom: 14px;
    color: #ff2c92;
}
/* NAVBAR */
.navbar {
    width: 100%;
    padding: 16px 28px;
    background: #000000;
    border-bottom: 1px solid #1f1f25;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2c92, #ff70c5);
}

.navbar-site-name {
    font-size: 20px;
    font-weight: 600;
}

.nav-right a {
    margin-left: 18px;
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
}
/* MODERN FOOTER */
.footer-modern {
    background: #0a0a0f;
    padding: 40px 20px;
    border-top: 1px solid #1f1f28;
    color: #a8a8b3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    max-width: 350px;
}

.footer-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2c92, #ff70c5);
    margin-bottom: 10px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.footer-desc {
    margin-top: 8px;
    font-size: 14px;
    color: #c7c7d0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #bbbbc4;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ff2c92;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #1f1f28;
}

/* MOBILE FOOTER */
@media(max-width: 800px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
