.contactme-section {
    width: min(1150px, 96vw);
    margin: 24px auto 0;
}

.contactme-intro {
    text-align: center;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto 24px;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.contactme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    margin-top: 0%;
}

.contactme-card {
    position: relative;
    padding: 22px 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.72);
    text-align: center;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    animation: fadeUp 0.5s ease both;
}

.contactme-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    background:rgba(56, 189, 248, 0.5);
}

.contactme-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.38);
}

.contactme-card h2 {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid rgba(100, 116, 139, 0.6);
    background: rgba(15, 23, 42, 0.8);
    color: #f1f5f9;
}

.contactme-card p {
    margin: 0 0 16px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #e2e8f0;
}

.contactme-card a {
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid rgba(100, 116, 139, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-radius: 10px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.55);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contactme-card a:hover {
    transform: translateY(-1px);
    background: #38bdf8;
    border-color: #38bdf8;
    color: #0f172a;
}

.contact-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contactme-section {
        width: 100%;
    }

    .contactme-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contactme-intro {
        font-size: 16px;
    }

    .contactme-card {
        padding: 18px;
    }

    .contactme-card p {
        font-size: 16px;
    }
}
