/* ==============================
   IndiaSkills 2025 Page Styles
   ============================== */

.page-content-section {
    padding: 60px 0;
    background: #fff;
}

/* --- Intro block --- */
.is-intro-block {
    margin-bottom: 56px;
}

.is-intro-block h2 {
    font-size: 1.9rem;
    color: #1a3a5c;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #6dbfe8;
    display: inline-block;
}

.is-intro-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 860px;
}

.is-video-wrap {
    margin-top: 32px;
    background: #000;
    border: 1px solid #d6eaf8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(109, 191, 232, 0.1);
    width: 100%;
}

.is-promo-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 580px;
    object-fit: contain;
    display: block;
}

/* --- Table block --- */
.is-table-block h2 {
    font-size: 1.6rem;
    color: #1a3a5c;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #6dbfe8;
    display: inline-block;
}

/* Responsive table wrapper */
.table-responsive-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
    background: #fff;
}

.data-table thead tr {
    background: #1a3a5c;
    color: #fff;
}

.data-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.91rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.data-table tbody tr {
    border-bottom: 1px solid #e8f4fd;
    transition: background 0.2s;
}

.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: #f0f8ff; }
.data-table tbody tr:nth-child(even) { background: #f8fbfe; }
.data-table tbody tr:nth-child(even):hover { background: #e8f4fd; }

.data-table tbody td {
    padding: 13px 18px;
    color: #333;
    vertical-align: middle;
}

.registration-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-divider {
    color: #ddd;
    display: none; /* Hide text divider in favor of button spacing */
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    color: #fff;
    border-radius: 4px;
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn-pdf {
    background: #e74c3c;
}

.btn-pdf:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.btn-video {
    background: #27ae60;
}

.btn-video:hover {
    background: #219653;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .page-content-section { padding: 40px 0; }
    .is-intro-block h2 { font-size: 1.4rem; }
    .is-table-block h2 { font-size: 1.3rem; }
    .data-table thead th,
    .data-table tbody td { padding: 10px 12px; font-size: 0.85rem; }
}