:root {
    --primary-color: #afd616;
    --secondary-color: #1c2d40;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--gray-color);
    color: var(--secondary-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.text-center{
    text-align: center
}
.container {
    width: 100%;
    max-width: 450px;
}

.card {
    background-color: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    padding: 30px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-container {
    margin-right: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

h1 {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 600;
}

.content {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    background-color: var(--gray-color);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background-color: #f0f0f0;
}

.icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 16px;
}

.text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.text p {
    font-size: 14px;
    color: #555;
}

.text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.text a:hover {
    color: var(--primary-color);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.action-button a {
    display: block;
    text-align: center;
    padding: 15px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.action-button i {
    margin-bottom: 5px;
    font-size: 18px;
}

.review-button a {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.review-button a:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: scale(1.02);
}

.contact-button a {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.contact-button a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.02);
}

/* Name item styling */
.name-item {
    background-color: rgba(175, 214, 22, 0.15);
    border-left: 3px solid var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 8px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* QR Animation */
.qr-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;
    z-index: 0;
    overflow: hidden;
}

.qr-scanner {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px 3px var(--primary-color);
}

/* Website Button */
.website-button {
    margin-top: 25px;
}

.website-button a {
    display: block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.website-button a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .card {
        padding: 20px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .info-item {
        padding: 12px;
    }
    
   
    
    .text h3 {
        font-size: 14px;
    }
    
    .text p {
        font-size: 13px;
    }
}
