/* ui.css - Custom styles for UI components */

/* Example UI styles - customize as needed */
body {
    background-color: #f8f9fa;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.button:hover {
    background: #0056b3;
}

/* Center logo image in logo-container */
.logo-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.logo-container img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Add more UI styles below as needed */

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0b3d59;
    /* Fallback */
    background: linear-gradient(180deg, #1c5d79 0%, #0b3d59 100%);
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

/* Technical Background Pattern Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    pointer-events: none;
    z-index: 0;
}

.card {
    position: relative;
    z-index: 1;

    width: 100%;
    background: rgba(255, 255, 255, 0.95);

    overflow: hidden;

    text-align: center;
}

.header {
    padding: 10px 20px;
    background: linear-gradient(to bottom, #f0faff, #ffffff);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.logo-icon {
    font-size: 40px;
    color: #2c6e8f;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #2c6e8f;
    line-height: 1.1;
    text-align: left;
}

/* Section Containers */
.section-box {
    background: #fff;
    margin: 15px;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

/* Detail Rows */
.detail-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
}

.detail-row:last-child {
    border-bottom: none;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: #2c6e8f;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.detail-text {
    flex-grow: 1;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.btn-small {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

.btn-call {
    background: #e0f7f4;
    color: #1abc9c;
}

.btn-email {
    background: #fff3e0;
    color: #e67e22;
}

.download-contact-btn {
    background: linear-gradient(90deg, #2c6e8f, #4a90b2);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}

/* Social Share Icons */
.social-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.wa {
    background: #25d366;
}

.fb {
    background: #3b5998;
}

.ln {
    background: #0077b5;
}

.tw {
    background: #1da1f2;
}

.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* WhatsApp Share Input */
.wa-box {
    text-align: center;
}

.input-group {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px 0;
    overflow: hidden;
}

.country-code {
    padding: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    border-right: 1px solid #ddd;
}

.input-group input {
    border: none;
    padding: 10px;
    flex-grow: 1;
    outline: none;
}

.send-card-btn {
    background: #90ee90;
    color: #2c6e8f;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* Action Buttons */
.action-btns {
    padding: 0 15px;
}

.action-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    background: linear-gradient(90deg, #4282a3, #5a9ab9);
}

/* Footer */
.footer {
    background: #2c6e8f;
    color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    font-size: 12px;
    line-height: 1.5;
}

.footer a {
    color: white;
    text-decoration: none;
}