﻿/* PAGE BACKGROUND */
body, .landing-page {
    /*background: #ffffff !important;
    font-family: 'Segoe UI', sans-serif;*/
    background: #333333 !important; /* dark grey */
    color: #ffffff; /* optional: set text to white for contrast */
    font-family: 'Segoe UI', sans-serif;
}

/* HERO SECTION */
.hero {
    background: #ffffff !important;
    padding: 40px 15px 20px;
}

/* HERO CONTENT CARD */
.hero-content {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* TEXT */
.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ================= FEATURES ROW ================= */
.features-row {
    display: flex; /* use flexbox for horizontal layout */
    flex-wrap: wrap; /* wrap cards on smaller screens */
    justify-content: center; /* center cards horizontally */
    gap: 20px; /* spacing between cards */
    width: 100%;
    max-width: 1000px;
    margin: 0 auto; /* center the row container */
}

/* ================= FEATURE CARD ================= */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 20px;
    flex: 0 1 280px; /* base width 280px, flexible for smaller screens */
    transition: 0.3s;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* ================= ICON ================= */
.icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .feature-card {
        flex: 0 1 45%; /* two cards per row on medium screens */
    }
}

@media (max-width: 500px) {
    .feature-card {
        flex: 0 1 100%; /* one card per row on small screens */
    }
}

/* BUTTON */
.btn-glow {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: bold;
    border: none;
}

    .btn-glow:hover {
        opacity: 0.9;
    }

/* REMOVE UNUSED DARK/GRADIENT SECTIONS */
.stats-section,
.features-section,
.testimonial-card,
.cta-section {
    background: transparent !important;
}
