/* Optimized Global Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}
.success-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 300px;
    transform: scale(0.8);
    animation: popIn 0.3s ease-out forwards;
}
.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.success-icon svg {
     width: 100%;
     height: 100%;
}
.success-message {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { to { transform: scale(1); } }
@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Phone validation styles */
.phone:focus, .phone:active {
    outline: none;
    box-shadow: none;
    background: transparent !important;
}
.iti { width: 100%; }
.iti__country-name, .iti__search-input { color: #000 !important; }
.iti__selected-dial-code { color: #fff !important; }

/* Loader styles */
.loader_svg svg { width: 100px; }

/* Home page styles */
@media screen and (min-width: 992px) {
    h4.service-page-h4 {
         font-size: 40px;
         font-weight: 500;
    }
}
.linkedin-feed-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(157, 203, 59, 0.2);
    padding: 20px;
    display: inline-block;
    width: 100%;
}
.linkedin-feed-container iframe {
    width: 100%;
    height: 500px;
    display: block;
}
.linkedin-feed-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(157, 203, 59, 0.15);
    border-color: rgba(157, 203, 59, 0.5);
}
.zq_linkedin-section-title {
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
}
.zq_linkedin-subtitle {
    color: #9dcb3b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}
@media (max-width: 768px) {
    .linkedin-feed-container {
        padding: 10px;
    }
    .linkedin-feed-container iframe {
        height: 600px;
    }
}

/* Blog styles */
.blog_description ul li {
    margin-top: 10px;
    opacity: .7;
    padding-left: 5px;
    position: relative;
    list-style-type: disc;
}
.blog_description ul li::marker {
    color: #585b58;
    font-size: 1.5em;
}
.blog_description p {
    color: #b7bfbd;
    font-size: 16px !important;
}
.blog_description h1 {
    font-size: 48px;
}
.blog_description p strong {
    color: #ffffff;
}
.blog_description h2, .blog_description h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #8af137;
}
.blog_description h2 { font-size: 40px; }
.blog_description h3 { font-size: 32px; }
.blog_description h4 { font-size: 28px; }
.blog_description h5 { font-size: 24px; }
.blog_description h6 { font-size: 20px; }
.zq_footer-top { padding-top: 60px; }
.blog_description table {
    border-collapse: collapse !important;
    width: 100% !important;
    margin-bottom: 1em;
    border: 1px solid #000 !important;
}
.blog_description th, .blog_description td {
    border: 1px solid #000 !important;
    padding: 8px !important;
    color: #fff;
}
.blog_description th {
    background-color: #222 !important;
    color: #fff !important;
}
.blog_description tr:nth-child(even) td, .blog_description tr:nth-child(even) th {
    background-color: #fff !important;
    color: #000 !important;
}
.blog_description tr:nth-child(odd) td, .blog_description tr:nth-child(odd) th {
    background-color: #2a4741 !important;
    color: #fff !important;
}
.code-container {
    position: relative;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    margin: 10px 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}
div.code-container code, div.code-container .code {
    color: #32452e !important;
}
.copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 4px;
}
.copy-btn:hover { background: #ccc; }
.blog_description pre {
    margin: 0;
    overflow-x: auto;
}
