﻿/* Global Font */
.idx-wrapper, .idx-hero, .idx-features, .idx-footer {
    font-family: Arial, sans-serif, Tahoma;
}

/* Wrapper */
.idx-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HERO SECTION — using your original background */
.idx-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    color: white;
    background-color: #44A6C6;
    border-radius: 5px;
    box-shadow: 8px 8px 10px rgba(0,0,0,0.18);
    outline: 1px solid rgba(255,255,255,0.15);
    margin: 20px; /* ← THIS makes the shadow visible */
}
.idx-hero-content {
    /*max-width: 600px;*/
    padding-right: 40px; /* ensures text doesn't collide with image */
}

/* Keep your original fonts & sizes */
.idx-hero-title {
    font-size: 20pt;
    font-weight: bold;
    /*margin-bottom: 10px;*/
}

.idx-hero-subtitle {
    font-size: 18pt;
    margin-bottom: 10px;
}

.idx-hero-tagline {
    font-size: 14pt;
    opacity: 0.95;
}

.idx-hero-image {
    width: 380px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


/* FEATURE GRID */
.idx-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.idx-feature-card {
    width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.idx-feature-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.idx-feature-img-50 {
    width: 50%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.idx-feature-card h3 {
    font-size: 14pt;
    color: #1A1A1A;
    margin-bottom: 12px;
    padding: 6px 0;
    background-color: rgba(240, 230, 255, 1); /* soft blue highlight #E3F2F7   soft purple: rgba(245, 235, 255, 1)*/
    border-radius: 6px;
}

.idx-feature-card h4 {
    font-size: 14pt;
    color: #1A1A1A;
    margin-bottom: 12px;
    padding: 6px 0;
    background-color: #FFF0B7; /* soft blue highlight #E3F2F7   soft purple: rgba(245, 235, 255, 1)*/
    border-radius: 6px;
}

.idx-feature-card p {
    font-size: 14pt; /* match your original body text */
    color: #444;
}

/* FOOTER */
.idx-footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    font-size: 14pt;
    color: #777;
}

.hero-logo {
    max-width: 350px;
}

@media (max-width: 750px) {
    .hero-logo {
        max-width: 180px;
        height: auto;
    }
}

.idx-footer img {
    width: 100%;
    max-width: 700px; /* shrink target size */
    height: auto;
}

/* Optional: even smaller on very narrow screens */
@media (max-width: 700px) {
    .idx-footer img {
        max-width: 360px;
    }
}




