html, body { margin: 0 !important; padding: 0 !important; overflow: visible !important; width: 100% !important; background-color: #f8fafc !important; font-family: 'Roboto', sans-serif !important; }
#wrapper { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
.content-area { padding: 0 !important; margin: 0 !important; }

:root {
    --ss-blue: #0284c7;
    --ss-accent: #f97316;
    --ss-navy: #0f172a;
    --ss-gray: #475569;
    --ss-border: #e2e8f0;
}

.ss-sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    width: 100%;
}

.ss-eft-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.88)), url('https://images.unsplash.com/photo-1493612276216-ee3925520721?w=1400&q=80') center/cover;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.ss-eft-banner h1 {
    font-size: 38px;
    font-weight: 900;
    color: #fff !important;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.25;
}

.ss-eft-banner p {
    font-size: 18px;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.6;
    color: #e2e8f0 !important;
}

.ss-eft-banner .ss-eft-badge {
    display: inline-block;
    background: var(--ss-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ss-eft-sec {
    padding: 80px 0;
    background: #f5f7fa;
    width: 100%;
    box-sizing: border-box;
}

.ss-eft-sec.white {
    background: #fff;
}

.ss-eft-sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.ss-eft-sec-title h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--ss-navy);
    margin: 0 0 12px;
    text-transform: uppercase;
}

.ss-eft-sec-title p {
    font-size: 15.5px;
    color: var(--ss-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.ss-eft-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.ss-eft-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--ss-border);
    box-shadow: 0 10px 30px rgba(15,23,42,0.02);
    transition: all 0.35s ease;
    text-align: center;
}

.ss-eft-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15,23,42,0.05);
    border-color: rgba(2,132,199,0.15);
}

.ss-eft-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(2,132,199,0.06);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ss-blue);
    margin: 0 auto 24px;
}

.ss-eft-card-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.ss-eft-card h3 {
    font-size: 19px;
    font-weight: 850;
    color: var(--ss-navy);
    margin: 0 0 15px;
}

.ss-eft-card p {
    font-size: 14px;
    color: var(--ss-gray);
    line-height: 1.7;
    margin: 0;
}

/* Tabs & Tables */
.ss-tabs-container {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid var(--ss-border);
    overflow: hidden;
    margin-top: 20px;
}

.ss-tabs-nav {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid var(--ss-border);
    padding: 8px 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.ss-tabs-nav::-webkit-scrollbar {
    display: none;
}

.ss-tab-btn {
    flex: 1;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--ss-gray);
    cursor: pointer;
    border-radius: 12px 12px 0 0;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ss-tab-btn:hover {
    color: var(--ss-blue);
    background: rgba(2,132,199,0.05);
}

.ss-tab-btn.active {
    color: var(--ss-blue);
    background: #fff;
    position: relative;
}

.ss-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    z-index: 2;
}

.ss-tab-content {
    padding: 40px;
    display: none;
}

.ss-tab-content.active {
    display: block;
    animation: ssFadeIn 0.4s ease;
}

@keyframes ssFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ss-syllabus-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid var(--ss-border);
    padding: 40px;
}

.ss-level-header {
    margin-bottom: 25px;
}

.ss-level-header h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--ss-navy);
    margin: 0 0 8px;
}

.ss-meta-pill {
    background: rgba(249, 115, 22, 0.08);
    color: var(--ss-accent);
    font-size: 13px;
    font-weight: 750;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ss-meta-pill svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ss-syllabus-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--ss-border);
    background: #fff;
}

.ss-syllabus-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 800px;
}

.ss-syllabus-table th {
    background: var(--ss-navy);
    color: #fff;
    padding: 16px 20px;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.ss-syllabus-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--ss-border);
    font-size: 14.5px;
    color: var(--ss-navy);
    line-height: 1.6;
    vertical-align: top;
}

.ss-syllabus-table tr:last-child td {
    border-bottom: none;
}

.ss-syllabus-table tr:nth-child(even) td {
    background: #f8fafc;
}

.ss-syllabus-table ul {
    margin: 0;
    padding-left: 18px;
}

.ss-syllabus-table ul li {
    margin-bottom: 5px;
}

.ss-eft-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.ss-eft-cta h2 {
    font-size: 32px;
    font-weight: 900;
    color: #fff !important;
    margin-bottom: 16px;
}

.ss-eft-cta p {
    font-size: 16.5px;
    color: #e2e8f0 !important;
    margin-bottom: 35px;
    line-height: 1.6;
}

.ss-eft-cta .ss-btn-reg {
    display: inline-flex;
    background: var(--ss-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    padding: 14px 35px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 991px) {
    .ss-eft-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ss-eft-banner { padding: 80px 0; }
    .ss-eft-banner h1 { font-size: 28px; }
    .ss-eft-sec { padding: 60px 0; }
    .ss-eft-grid-3 { grid-template-columns: 1fr; }
    .ss-tab-content { padding: 24px 20px; }
}
