.aiu_container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.aiu_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffd93d);
}

.aiu_header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.aiu_header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.aiu_profile_section {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.aiu_profile_img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    object-fit: cover;
}

.aiu_profile_info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 1px;
}

.aiu_contact_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.aiu_contact_item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.aiu_contact_icon {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.aiu_main_content {
    padding: 40px;
}

.aiu_section {
    margin-bottom: 40px;
}

.aiu_section_title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.aiu_section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.aiu_objective_text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.aiu_experience_item {
    margin-bottom: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4ecdc4;
    transition: all 0.3s ease;
}

.aiu_experience_item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aiu_job_title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.aiu_job_duration {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-left: 10px;
}

.aiu_education_item {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.aiu_degree {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.aiu_university {
    color: #7f8c8d;
    margin-top: 5px;
}

.aiu_skills_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.aiu_skill_tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aiu_skill_tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.aiu_skill_tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.aiu_skill_tag:hover::before {
    left: 100%;
}

.aiu_documents_section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.aiu_document_title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.aiu_passport_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.aiu_passport_img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.aiu_passport_img:hover {
    transform: scale(1.05);
}
/* AIU Responsive Table Styles */
.aiu_section {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.aiu_section_title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.aiu_table_container {
    overflow-x: auto;
    margin-top: 20px;
}

.aiu_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.aiu_table_head {
   background: linear-gradient(135deg, #33485c 0%, #4e4c50 100%);
    color: white;
}

.aiu_table_header {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aiu_table_body {
    background: #fff;
}

.aiu_table_row {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.aiu_table_row:hover {
    background-color: #f8f9fa;
}

.aiu_table_row:last-child {
    border-bottom: none;
}

.aiu_table_cell {
    padding: 15px;
    font-size: 14px;
    color: #555;
    border-right: 1px solid #eee;
}

.aiu_table_cell:last-child {
    border-right: none;
}
/* Card Layout for Very Small Screens */
.aiu_table_mobile_card {
    display: none;
}
/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .aiu_section {
        padding: 15px;
        margin: 10px;
    }

    .aiu_section_title {
        font-size: 20px;
        text-align: center;
    }

    .aiu_table_container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .aiu_table {
        min-width: 500px;
    }

    .aiu_table_header {
        padding: 12px 8px;
        font-size: 12px;
    }

    .aiu_table_cell {
        padding: 12px 8px;
        font-size: 13px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
    .aiu_section {
        margin: 5px;
        padding: 10px;
        border-radius: 5px;
    }

    .aiu_section_title {
        font-size: 18px;
    }

    @media screen and (max-width: 400px) {
        .aiu_table_container {
            overflow: visible;
        }

        .aiu_table {
            display: none;
        }

        .aiu_table_mobile_card {
            display: block;
        }

        .aiu_mobile_card {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .aiu_mobile_card_title {
            font-weight: bold;
            color: #667eea;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .aiu_mobile_card_item {
            display: flex;
            justify-content: space-between;
            padding: 5px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .aiu_mobile_card_item:last-child {
            border-bottom: none;
        }

        .aiu_mobile_card_label {
            font-weight: 600;
            color: #333;
            flex: 0 0 40%;
        }

        .aiu_mobile_card_value {
            color: #666;
            text-align: right;
            flex: 1;
        }
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .aiu_section {
        padding: 25px;
    }

    .aiu_table_header,
    .aiu_table_cell {
        padding: 16px 12px;
    }
}

/* Print Styles */
@media print {
    .aiu_section {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .aiu_table_head {
        background: #f0f0f0 !important;
        color: #000 !important;
    }

    .aiu_table_row:hover {
        background-color: transparent !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .aiu_section {
        background: #1a1a1a;
        color: #fff;
    }

    .aiu_table {
        background: #2d2d2d;
    }

    .aiu_table_body {
        background: #2d2d2d;
    }

    .aiu_table_row:hover {
        background-color: #3a3a3a;
    }

    .aiu_table_cell {
        color: #ddd;
        border-color: #444;
    }

    .aiu_mobile_card {
        background: #2d2d2d;
        border-color: #444;
        color: #ddd;
    }
}
@media (max-width: 768px) {
    .aiu_profile_section {
        flex-direction: column;
        text-align: center;
    }

    .aiu_profile_info h1 {
        font-size: 2rem;
    }

    .aiu_main_content {
        padding: 20px;
    }

    .aiu_skills_container {
        justify-content: center;
    }

    .aiu_experience_item:hover {
        transform: none;
    }
}