:root {
    --brand-primary: #8A5CCF;
    --brand-primary-deep: #5A2D8A;
    --brand-primary-light: #B79AE6;
    --brand-bg-soft: #F7F7FB;
    --brand-surface: #FFFFFF;
    --text-main: #333333;
    --text-muted: #6B6B6B;

    /* Spacing scale */
    --space-2: 4px;
    --space-4: 8px;
    --space-6: 12px;
    --space-8: 16px;
    --space-10: 20px;
    --space-12: 24px;
    --space-16: 32px;
    --space-20: 40px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--brand-surface);
    margin: 0;
    padding: 0;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

h2, h3, h4 {
    color: var(--brand-primary-deep);
    margin-top: 0;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: var(--space-4);
}

h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-8);
}

h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-4);
}

p {
    margin-top: 0;
    margin-bottom: var(--space-4);
    color: var(--text-muted);
}

.page-header {
    margin-bottom: var(--space-20);
}

.section {
    background: var(--brand-surface);
    border-radius: 16px;
    padding: var(--space-16);
    margin-bottom: var(--space-16);
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-12);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* Buttons */
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    align-items: center;
}

.btn {
    border-radius: 999px;
    padding: 10px 20px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-lg {
    font-size: 1.3rem;
}

.btn-primary {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 6px 14px rgba(90,45,138,0.35);
}

.btn-primary:hover {
    background: var(--brand-primary-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(90,45,138,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--brand-primary-deep);
    border: 1.5px solid var(--brand-primary-light);
}

.btn-outline:hover {
    background: var(--brand-primary-light);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--brand-primary-deep);
}

.btn-ghost:hover {
    background: rgba(183,154,230,0.18);
}

thead {
    background: linear-gradient(135deg, #E8DFFC, #B79AE6);
}










 /* -----  SITE STYLES   ----------------------------------------------- */

/* NAVIGATION */
.logo-overflow {
    height: 120px;
    position: absolute;
    top: 10px;
    z-index: 1;
}

/* SPLIT-SCREEN HERO */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8DFFC, #B79AE6);
    position: relative;
    overflow: hidden;
}

/* SECTION TITLES */
.section-title {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

/* ABOUT */
.about-img {
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* SERVICES */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card {
    border: none;
    border-radius: 18px;
    padding: 30px;
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.earlybird-link-link:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* TESTIMONIALS */
.testimonial {
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-left: 5px solid var(--brand-primary);
}

/* CONSULTANCY PARTNERS */
#partners img {
    max-height: 75px;
}

/* CONTACT */
.contact-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CONTACT */
footer {
    background: linear-gradient(135deg, #E8DFFC, #B79AE6);
    color: #fff;
    padding: 40px 0;
}
