:root {
    --primary-color: #7a185f;
    --secondary-color: #0d9488;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-medium: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.main-wrapper {
    padding: 3rem 1rem;
    min-height: calc(100vh - 135px);

}

.main-card {
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-medium);
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
}

.card-content {
    padding: 3rem;
}

/* Center Column: Company Info */
.company-section {
    text-align: center;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    padding: 0 3rem;
}

.icon-bg {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.3);
    transition: transform 0.3s ease;
}
.icon-bg img{
     width: 100px;
    height: 100px;
    border-radius:50%;
    object-fit: fill;
}
.icon-bg:hover {
    transform: scale(1.05);
}

.icon-bg i {
    font-size: 2.2rem;
    color: white;
}

.profile-icon {
    border-radius: 50%;
}

.company-icon {
    border-radius: 1.25rem;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.company-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    
}

.service-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 120px;
}

/* Left Column: Profile */
.profile-section {
    text-align: center;
}

.profile-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-section .credential {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.profile-section .title {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.profile-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.email-button,
.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.email-button {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.email-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.linkedin-button {
    color: #0077b5;
    border: 1px solid #0077b5;
}

.linkedin-button:hover {
    background-color: #0077b5;
    color: white;
}

/* Right Column: Contact */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease-in-out;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h6 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.badge-primary,
.badge-secondary {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

.badge-secondary {
    background-color: var(--text-light);
    color: white;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25d366 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128c7e !important;
}

.whatsapp-link i {
    font-size: 1.1rem;
}

.map-section {
    height: 400px;
    margin-top: -1rem;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .company-section {
        border: none;
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        margin: 2rem 0;
    }

    .card-content {
        padding: 2rem;
    }

    .profile-buttons {
        flex-direction: column;
    }

    .email-button,
    .linkedin-button {
        min-width: auto;
        width: 100%;
    }
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    margin: 0;
    font-size: 0.6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}