/* Technical Assessment Page Custom Styles - Visual Update */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    color: #52526C;
}

.technical-assesment-main {
    background-color: #eaf5ff;
    /* Light Blue Background to match soft skills section, fixing gap */
}

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    border-top: 30px solid #eaf5ff;
    /* Top separate strip */
    border-bottom: 30px solid #eaf5ff;
    /* Middle separate strip between header and hero */
}

.logo img {
    max-height: 60px;
}

/* .squear-logo img {
    max-height: 40px;
} */

/* Banner Section */
.banner-section {
    padding: 60px 0;
    background-color: #fff;
}

.banner-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #14254b;
    /* Dark Blue Heading #14254b */
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    font-weight: 400;
    max-width: 90%;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Cards Section */
.cards-section {
    background-color: #eaf5ff;
    /* Light Blue Background matching design */
    padding: 60px 0 80px;
    position: relative;
}

/* Add the top decorative strip if needed, or rely on background color */

.info-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0050cf;
    /* Bright Blue Background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon img {
    width: 24px;
    /* Adjust icon size inside the circle */
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.info-card h4 {
    font-size: 16px;
    font-weight: 700;
    font-size: 16px;
    font-weight: 700;
    color: #14254b;
    /* Dark Blue */
    margin-bottom: 15px;
}

.info-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #52526C;
    margin: 0;
    flex-grow: 1;
    /* Pushes content to fill height if needed */
}

.info-card strong {
    font-weight: 600;
}

/* Explore Button Container */
.explore-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    /* Ensure it takes up vertical space */
}


.banner-section .container .explore-container {
    justify-content: left;
}

.explore-btn {
    border: 2px solid #0050cf;
    /* Bright Blue */
    color: #0050cf;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 10px;
    /* Pillow shape */
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.explore-btn:hover {
    background-color: #003bb3;
    color: #fff;
}

/* Footer Message within Cards Section */
.footer-message {
    font-size: 16px;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.footer-message strong {
    font-weight: 700;
}

/* Site Footer */
.site-footer {
    background-color: #0050cf;
    /* Bright Blue Footer */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 0;
    /* Connected to the previous section */
    border-bottom: 30px solid #eaf5ff;
    /* Bottom decorative strip */
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .banner-content h1 {
        font-size: 28px;
    }

    .banner-image {
        margin-top: 30px;
        text-align: center;
    }

    .banner-image img {
        margin: 0 auto;
    }

    /* Navbar Logos Mobile Adjustment */
    .logo img {
        max-width: 140px !important;
        height: auto !important;
    }

    .squear-logo img {
        max-width: 110px !important;
        height: auto !important;
    }

    header div.container {
        height: auto !important;
        padding: 5px 15px !important;
    }
}

/* =========================================
   Technical Assessment Page Specific Styles
   ========================================= */

.tech-page-hero {
    background-color: #0050cf;
    /* Bright Blue */
    padding: 80px 0 160px;
    /* Extra padding bottom for overlap */
    color: #fff;
    position: relative;
}

.tech-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.tech-hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    /* White for text */
    max-width: 90%;
    margin-bottom: 30px;
    /* Space for button */
}

.tech-hero-btn {
    display: inline-block;
    background-color: #fff;
    color: #0050cf;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tech-hero-btn:hover {
    background-color: #eaf5ff;
    color: #0050cf;
}

.tech-hero-btn2 {
    display: inline-block;
    background-color: #0050cf;
    color: #fff;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tech-hero-btn2:hover {
    background-color: #fff;
    color: #0050cf;
}

/* Overlapping Card Section */
.tech-overlap-container {

    margin-top: -100px;
    /* Negative margin to create overlap */
    position: relative;
    z-index: 2;
    padding-bottom: 0px;
}

.tech-overlap-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Updated Feature Section */
.tech-feature-block {
    position: relative;
    padding-left: 30px;
    /* Space for icon to stick out */
    height: 100%;
}

.tech-feature-icon {
    position: absolute;
    left: 0;
    top: 25px;
    /* Aligned visually with upper part */
    width: 60px;
    height: 60px;
    background: #eaf5ff;
    /* Light Blue BG */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tech-feature-icon img {
    width: 28px;
}

.tech-feature-text {
    border: 1px solid #0050cf;
    /* Bright Blue border */
    border-radius: 40px;
    /* Pillow shape */
    padding: 30px 30px 30px 50px;
    /* Large left padding for icon */
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-feature-text h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0050cf;
    margin-bottom: 15px;
}

.tech-feature-text p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.tech-overlap-footer {
    text-align: center;
    margin-top: 40px;
    font-weight: 700;
    color: #000;
    font-size: 15px;
}

/* Remove old rules if any conflict */
.tech-feature-item {
    display: none;
}

/* Soft Skills Section (Beige) */
.tech-soft-skills {
    background-color: #eaf5ff;
    /* Light Blue BG */
    padding: 60px 0;
    color: #52526C;
}

.tech-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0050cf;
    text-align: center;
    margin-bottom: 10px;
}

.tech-section-subtitle {
    text-align: center;
    font-size: 14px;
    /* max-width: 700px; */
    margin: 0 auto 30px;
    color: #4a3a38;
}

.tech-soft-item {
    margin-bottom: 30px;
}

.tech-soft-item h5 {
    color: #0050cf;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.tech-soft-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* Upskilling Section (Dark) */
.tech-upskill {
    background-color: #0050cf;
    padding: 80px 0;
    color: #fff;
    border-top: 10px solid #eaf5ff;
    /* Match screenshot border */
    border-bottom: 30px solid #eaf5ff;
    /* Added bottom strip */
}

.tech-upskill-card {
    background: #fff;
    border-radius: 30px;
    /* Increased radius */
    padding: 30px;
    /* Increased padding slightly */
    height: 100%;
    text-align: center;

    color: #52526C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-upskill-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0050cf;
    margin-bottom: 12px;
}

.tech-upskill-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.taking-test-btn {
    text-align: center;
    margin-top: 30px;
    margin-bottom: -40px;
}

/* New Psychometric Assessment Styles */
.importance-list, .audience-list {
    list-style: none;
    padding-left: 0;
}

.importance-list li, .audience-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #52526C;
}

.importance-list li::before, .audience-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0050cf;
    font-weight: bold;
    font-size: 18px;
}

.process-step-card, .importance-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 80, 207, 0.1);
}

.process-step-card:hover, .importance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 80, 207, 0.1) !important;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(0, 80, 207, 0.1);
    line-height: 1;
}

.advantage-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    filter: brightness(0) invert(1);
}

.cta-section .explore-btn {
    background-color: #0050cf;
    color: #fff;
}

.cta-section .explore-btn:hover {
    background-color: #003bb3;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .tech-section-title {
        font-size: 24px;
    }
    
    .importance-image {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    .mt-lg-n5 {
        margin-top: -3rem !important;
    }
}