/* Footer */
        footer {
            background: #000000;
            color: white;
            padding: 80px 0 30px;
            margin-top: 100px;
            image: width 200px, height 100px;
            
        }
        
        

        .footer-link {
            color: #dfe6e9;
            text-decoration: none;
            transition: 0.3s;
            display: block;
            margin-bottom: 10px;
        }

        .footer-link:hover { color: var(--accent-color); padding-left: 5px; }

        .social-icons a {
            font-size: 1.5rem;
            color: white;
            margin-right: 20px;
            transition: 0.3s;
        }

        .social-icons a:hover { color: var(--accent-color); }
:root {
    --primary: #1e40af;
    --secondary: #3b82f6;
    --black: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #f9fafb;
    --border: #f3f4f6;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* Hero Section */
.hero {
    padding: 160px 0 60px;
    text-align: center;
}

.tagline {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.blue-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    width: 80px;
    height: 6px;
    background: var(--primary);
    margin: 0 auto 2rem;
    border-radius: 100px;
}

.hero-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--gray);
}

/* Services Grid */
.services-grid {
    padding: 60px 0 120px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

/* Card Design */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.icon-box {
    width: 54px;
    height: 54px;
    background: var(--light-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: background 0.3s ease;
}

.service-card:hover .icon-box {
    background: #eff6ff;
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 800;
    opacity: 0.1;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.tag {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 24px;
    font-weight: 500;
}

.view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.view-btn:hover {
    color: var(--secondary);
}

.chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Expandable Content */
.expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

/* Show on Hover or Active Class */
.service-card:hover .expand-content,
.service-card.active .expand-content {
    max-height: 800px;
    opacity: 1;
}

.content-inner {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
}

.content-inner h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 12px;
}

.content-inner ul {
    list-style: none;
    margin-bottom: 20px;
}

.content-inner li {
    font-size: 0.875rem;
    color: var(--black);
    margin-bottom: 8px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.content-inner li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: 800;
    flex-shrink: 0;
}

.outcome-box {
    background: #f0f7ff;
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.outcome-box .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.outcome-box p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a8a;
}
