* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f2fafa;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.card {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 80, 80, 0.15);
}

/* =========================
   HEADER
========================= */

.card-header {
    background: linear-gradient(
        135deg,
        #003f40,
        #008080
    );

    color: #fff;
    text-align: center;

    padding: 28px 20px 70px;

    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(255,255,255,0.04);

    top: -120px;
    right: -70px;
}

.card-header::after {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255,255,255,0.04);

    bottom: -100px;
    left: -70px;
}

/* =========================
   LOGO
========================= */

.logo-wrapper {
    width: 190px;
    height: 75px;

    margin: 0 auto 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 2;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

/* =========================
   PROFILE
========================= */

.profile {
    width: 88px;
    height: 88px;

    margin: auto;

    border-radius: 50%;

    background: #fff;

    border: 4px solid rgba(255,255,255,.9);

    display: flex;
    justify-content: center;
    align-items: center;

    color: #008080;

    font-size: 30px;
    font-weight: 800;

    position: relative;
    z-index: 2;

    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.name {
    margin-top: 14px;

    font-size: 27px;
    font-weight: 700;

    position: relative;
    z-index: 2;
}

.designation {
    margin-top: 6px;

    font-size: 13px;

    opacity: .95;

    position: relative;
    z-index: 2;
}

/* =========================
   BODY
========================= */

.card-body {
    padding: 0 20px 25px;

    margin-top: -42px;

    position: relative;
    z-index: 5;
}

/* =========================
   CONTACT BOX
========================= */

.contact-box {
    background: #fff;

    border-radius: 25px;

    padding: 8px 10px;

    box-shadow: 0 8px 30px rgba(0,80,80,.12);
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 13px 10px;

    border-bottom: 1px solid #e8eeee;

    text-decoration: none;

    color: #222;
}

.contact-item:last-child {
    border-bottom: none;
}

/* =========================
   ICON BOX
========================= */

.icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    border-radius: 15px;

    background: #e7f6f6;

    color: #008080;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 20px;
}

/* Actual icon colors */

.phone-icon {
    color: #008080;
}

.email-icon {
    color: #008080;
}

.website-icon {
    color: #008080;
}

.location-icon {
    color: #008080;
}

/* =========================
   CONTACT TEXT
========================= */

.contact-content {
    min-width: 0;
}

.contact-label {
    font-size: 10px;

    color: #888;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;

    line-height: 1.4;

    color: #222;

    word-break: break-word;
}

/* =========================
   AI SECTION
========================= */

.ai-section {
    margin-top: 23px;

    padding: 20px;

    border-radius: 24px;

    background: linear-gradient(
        135deg,
        #f1fbfb,
        #e5f6f6
    );

    border: 1px solid #cceeee;
}

.ai-title {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #008080;

    font-size: 19px;

    font-weight: 700;

    margin-bottom: 17px;
}

.ai-title-icon {
    width: 36px;
    height: 36px;

    border-radius: 11px;

    background: #008080;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 14px;

    font-weight: 800;
}

.services {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 11px;
}

.service {
    background: #fff;

    border: 1px solid #e1eeee;

    border-radius: 15px;

    padding: 13px 11px;

    font-size: 13px;

    line-height: 1.4;

    color: #333;
}

.service i {
    color: #008080;

    margin-right: 7px;
}

/* =========================
   BUTTONS
========================= */

.actions {
    display: flex;

    gap: 13px;

    margin-top: 22px;
}

.action-btn {
    flex: 1;

    min-height: 58px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: .2s ease;
}

.action-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* Call */

.call-btn {
    background: #008080;

    color: #fff;
}

/* WhatsApp */

.whatsapp-btn {
    background: #25D366;

    color: #fff;
}

.whatsapp-btn i {
    font-size: 21px;
}

/* =========================
   FOOTER
========================= */

.footer {
    text-align: center;

    padding: 0 20px 25px;
}

.website {
    color: #008080;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
}

.tagline {
    margin-top: 5px;

    color: #999;

    font-size: 11px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 450px) {

    body {
        padding: 8px;
    }

    .card {
        border-radius: 25px;
    }

    .card-header {
        padding: 25px 15px 68px;
    }

    .logo-wrapper {
        width: 170px;
        height: 68px;
    }

    .profile {
        width: 82px;
        height: 82px;
    }

    .name {
        font-size: 24px;
    }

    .designation {
        font-size: 12px;
    }

    .card-body {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-item {
        gap: 14px;
        padding: 12px 8px;
    }

    .icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .contact-value {
        font-size: 14px;
    }

    .services {
        grid-template-columns: 1fr 1fr;
    }

    .service {
        font-size: 12px;
    }

    .actions {
        gap: 10px;
    }

    .action-btn {
        min-height: 55px;
        font-size: 14px;
    }
}

@media (max-width: 360px) {

    .services {
        grid-template-columns: 1fr;
    }

    .name {
        font-size: 22px;
    }

    .contact-value {
        font-size: 13px;
    }
}

/* =========================
   SOCIAL MEDIA
========================= */
.social-section {
    margin-top: 22px;
}

.social-title {
    text-align: center;
    color: #008080;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 13px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 5px 15px rgba(0, 80, 80, .12);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 20px rgba(0, 80, 80, .18);
}

.social-link.linkedin { background: #0A66C2; }
.social-link.facebook { background: #1877F2; }
.social-link.instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}
.social-link.youtube { background: #FF0000; }
.social-link.github { background: #24292F; }
.social-link.twitter { background: #111; }

@media (max-width: 360px) {
    .social-link {
        width: 43px;
        height: 43px;
        font-size: 17px;
        border-radius: 13px;
    }
}
