/* Global styles */

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #F5F7F9;       /* Light page background */
    color: #4B5A67;            /* Body text colour */
}

/* Top bar */
/* Top bar */
.top-bar {
    background: #F8FAFC;
    color: #4A5568;
    padding: 6px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    border-bottom: 1px solid #E2E8F0;
}

.top-bar-left span + span {
    margin-left: 16px;
}

.top-bar-left i {
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right a {
    color: #4A97B5;              /* blue icons like jnthhub */
    text-decoration: none;
    font-size: 0.9rem;
}

.top-bar-right a:hover {
    color: #1C667F;
}

.top-bar-company {
    margin-left: 12px;
    font-size: 0.85rem;
    color: #4B5A67;
}


/* Header / nav */
.main-header {
    background: #FFFFFF;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E8F0;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #235369;
}

.logo-tagline {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #1F2933;
    font-size: 0.95rem;
}

.nav-links a i {
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #1C667F;
}

/* search icon button */
.nav-search-button {
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: 6px;
    font-size: 1rem;
    color: #1F2933;
}

.nav-search-button:hover {
    color: #1C667F;
}


/* Hero */
.hero {
    background: linear-gradient(
        135deg,
        rgba(74, 151, 181, 0.92),  /* Primary blue */
        rgba(124, 186, 209, 0.96)  /* Secondary blue */
    );
    padding: 80px 40px;
    text-align: left;
    color: #FFFFFF;             /* White text on hero */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.hero p {
    font-size: 1.05rem;
    color: #EDEFF4;             /* Softer white */
    margin-bottom: 28px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 10px 22px;
    margin-right: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Buttons */
.btn-primary {
    background: #1C667F;        /* Deep button blue */
    color: #FFFFFF;
    font-weight: 600;
    border: 1px solid #1C667F;
}

.btn-primary:hover {
    background: #164E61;        /* Slightly darker on hover */
    border-color: #164E61;
}

.btn-secondary {
    border: 1px solid #1C667F;
    color: #1C667F;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(28, 102, 127, 0.08);
}

/* Sections */
.section {
    padding: 60px 40px;
    background: #FFFFFF;        /* White section */
}

.section-alt {
    background: #F7FAFC;        /* Very light grey alt section */
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #235369;             /* Section heading */
}

.section-subtitle {
    color: #718096;             /* Subheading muted grey */
    margin-bottom: 30px;
}

/* Grids */
.grid-4,
.grid-3 {
    display: grid;
    gap: 20px;
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Cards */
.card {
    background: #FFFFFF;        /* White cards */
    border-radius: 6px;
    padding: 18px 18px 20px;
    border: 1px solid #E2E8F0;  /* Light border */
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1C667F;             /* Blue card titles */
}

.card p,
.card ul {
    font-size: 0.95rem;
    color: #4B5A67;
}

.card ul {
    padding-left: 18px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Footer */
.site-footer {
    background: #1F2937;        /* Darker, clean footer bar */
    border-top: 1px solid #111827;
    padding: 30px 40px;
    color: #E5E7EB;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    font-size: 0.9rem;
}

.footer-logo {
    font-weight: 700;
    margin-bottom: 6px;
}

.site-footer h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.site-footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 4px;
}

.site-footer a {
    color: #CBD5F5;
    text-decoration: none;
}

.site-footer a:hover {
    color: #FFFFFF;
}

.site-footer .footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #A0AEC0;
    font-size: 0.85rem;
}
/* ==== PRO FEATURE CARDS ==== */

/* Grid refinement (optional, just adds spacing) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

/* Card container */
.feature-card {
    text-align: center;
    padding: 28px 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Optional extra class you added */
.pro-card {
    /* you can tweak these if you want a slightly different look */
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

/* ICONS – support BOTH feature-icon AND card-icon */
.feature-card .feature-icon,
.feature-card .card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    background: #edf6fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon i,
.feature-card .card-icon i {
    font-size: 26px;
    color: #1C667F;
}

/* Title */
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1C667F;
    margin: 10px 0 8px;
}

/* Text */
.feature-card p {
    font-size: 0.95rem;
    color: #4B5A67;
    line-height: 1.5;
}

/* Read more link */
.feature-card .card-link {
    display: inline-block;
    margin-top: 14px;
    color: #1C667F;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.feature-card .card-link:hover {
    text-decoration: underline;
}

