
/* Brand Colors */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --accent: #4f46e5;
    --muted: #6b7280;
    --muted-light: #9ca3af;
    --bg-light: #f8f9ff;
    --shadow: 0 4px 14px rgba(0,0,0,0.08);
    --radius: 14px;
}

/* General reset */
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ------------------------------------------
   HERO SECTION
------------------------------------------- */
.hero {
    min-height: 60vh;
    padding: 40px 15px;
    align-items: center;
    
}

.hero-card {
    padding-right: 15px;
}

.hero .title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.kicker {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 240px;
}

/* ------------------------------------------
   RIGHT CONTACT CARD
------------------------------------------- */
.card-right {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}

.chip {
    background: var(--primary);
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 20px;
}

.contact .item {
    margin-bottom: 10px;
}

/* ------------------------------------------
   SERVICES SECTION
------------------------------------------- */
#services {
    padding: 50px 15px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    flex: 1 1 calc(33.33% - 20px);
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .service-card h4 {
        color: var(--primary);
        font-weight: 700;
        margin-bottom: 10px;
    }

/* Mobile fix for service cards */
@media screen and (max-width: 767px) {
    .service-card {
        flex: 1 1 100%;
    }
}

/* ------------------------------------------
   VISION & WHY SECTIONS
------------------------------------------- */
.split {
    padding: 40px 15px;
}

.vision,
.why {
    padding: 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

    .vision h3, .why h3 {
        color: var(--primary);
        font-weight: 800;
    }

/* Desktop split layout */
@media (min-width: 992px) {
    .split {
        display: flex;
        gap: 25px;
    }

    .vision, .why {
        flex: 1;
    }
}

/* ------------------------------------------
   CTA SECTION
------------------------------------------- */
.cta-box {
    padding: 20px;
    background: linear-gradient(90deg, #eef4ff, #ffffff);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 30px;
}


/* ------------------------------------------
   BUTTONS
------------------------------------------- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background: var(--primary-light);
    }

.btn-ghost {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

    .btn-ghost:hover {
        background: var(--primary);
        color: #fff;
    }

/* ------------------------------------------
   ANIMATIONS
------------------------------------------- */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-card,
.vision,
.why {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s ease, transform .8s ease;
}
.hero {
    width: 100%;
    height: auto;
    background: linear-gradient(45deg, rgba(92, 91, 211, 0.8090338186055672) 0%, rgb(107 106 163 / 62%) 100%), url("../img/hero-bg.jpg") center top no-repeat;
    background-size: cover;
    position: relative;
}

.cta-btn,
.cta-btn:focus {
    color: #2de90b;
    font-size: 13px;
    padding: 7px 25px;
    margin: 0 0 0 30px;
    border-radius: 4px;
    transition: 0.3s;
    text-transform: uppercase;
    border: 2px solid #c56ecbd6;
}

    .cta-btn:hover,
     .cta-btn:focus:hover {
        color: var(--contrast-color);
        background: var(--accent-color);
        border-color: var(--accent-color);
    }
.cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
}
