.elementor-6294 .elementor-element.elementor-element-b9dbfa4{--display:flex;}.elementor-6294 .elementor-element.elementor-element-acde9e7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-2013649 *//* General Reset & Performance optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.8;
}

/* Container limits width for better reading experience on PC */
.blog-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header Styles */
.blog-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
}

.category-badge {
    background-color: #0056b3;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 15px 0;
    line-height: 1.4;
}

/* Author Box Style */
.author-box {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0056b3, #00d2ff);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #222;
}

.verified-badge {
    color: #28a745;
    font-size: 12px;
    margin-left: 5px;
}

.author-bio {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

.post-date {
    font-size: 12px;
    color: #999;
}

/* Content Styling */
.post-content h2 {
    font-size: 24px;
    color: #0056b3;
    margin: 30px 0 15px 0;
    border-left: 4px solid #00d2ff;
    padding-left: 10px;
}

.post-content h3 {
    font-size: 20px;
    color: #333;
    margin: 20px 0 10px 0;
}

.post-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.intro-text {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* Attractive Job Cards */
.job-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    border-color: #0056b3;
}

.job-card h3 {
    margin-top: 0;
    color: #d93025; /* Highlighting job titles */
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

ul li, ol li {
    margin-bottom: 10px;
}

.process-list li {
    background: #f1f3f5;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 6px;
}

.highlight {
    background-color: #fff3cd;
    color: #856404;
    padding: 2px 5px;
    border-radius: 3px;
}

/* Conclusion Box */
.conclusion-box {
    background-color: #e8f4fd;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.conclusion-box h2 {
    border-left: none;
    padding-left: 0;
    margin-top: 0;
    text-align: center;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .blog-container {
        margin: 20px;
        padding: 20px;
    }
    
    .post-title {
        font-size: 24px;
    }

    .post-content h2 {
        font-size: 20px;
    }

    .job-card {
        padding: 15px;
    }
}/* End custom CSS */