/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--bg-light);
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: var(--border-color);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3.5rem 2.5rem 2.5rem;
    text-align: center;
}

.modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.modal-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.modal-text {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.modal-features {
    list-style: none;
    text-align: left;
    margin: 0 auto 2.5rem;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-features li {
    padding: 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.modal-buttons .btn-primary {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.modal-buttons .btn-primary:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

.modal-close-btn {
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
    border: 1.5px solid var(--border-color) !important;
    font-weight: 500;
}

.modal-close-btn:hover {
    background: var(--bg-light) !important;
    border-color: var(--text-light) !important;
    color: var(--text-dark) !important;
    transform: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Provisional Design Banner */
.provisional-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-bottom: 2px solid #f59e0b;
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.provisional-banner-text {
    text-align: center;
    color: #92400e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .provisional-banner-text {
        font-size: 12px;
        padding: 0 10px;
    }
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.subsidiary-badge {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* AI Assistant Section */
.ai-assistant-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.ai-assistant-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ai-grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1.5" fill="rgba(37,99,235,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23ai-grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.ai-assistant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-assistant-text {
    max-width: 100%;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ai-badge svg {
    flex-shrink: 0;
}

.ai-assistant-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-assistant-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.ai-feature-text {
    flex: 1;
}

.ai-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.ai-feature-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

.ai-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ai-chat,
.btn-ai-learn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ai-chat {
    background: var(--primary-color) !important;
    color: white !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-ai-chat:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
}

.btn-ai-chat svg,
.btn-ai-learn svg {
    flex-shrink: 0;
}

.ai-assistant-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-bubble {
    position: absolute;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    max-width: 280px;
    animation: floatUp 3s ease-in-out infinite;
}

.ai-bubble-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.ai-bubble-2 {
    top: 35%;
    right: 0;
    animation-delay: 1s;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
}

.ai-bubble-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.bubble-content {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.ai-bubble-2 .bubble-content {
    color: white;
}

.bubble-time {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 500;
}

.ai-bubble-2 .bubble-time {
    color: rgba(255, 255, 255, 0.9);
}

.ai-assistant-avatar {
    position: absolute;
    bottom: 10%;
    right: 15%;
    z-index: 2;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
}

.avatar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Demat Account Section */
.demat-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.demat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.demat-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.demat-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.demat-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demat-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.demat-features li svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.demat-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-demat {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-demat:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-demat svg {
    transition: transform 0.3s ease;
}

.btn-demat:hover svg {
    transform: translateX(4px);
}

.demat-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Topics Section */
.topics-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.topics-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-export-pdf {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-export-pdf:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.btn-export-pdf svg {
    flex-shrink: 0;
}

.topics-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.topic-card {
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.topic-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.topic-content {
    flex: 1;
}

.topic-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.topic-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.topic-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
}

/* Videos Section */
.videos-section {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
}

.video-toggles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.video-toggle-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-toggle-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.video-toggle-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.video-category {
    display: none;
}

.video-category.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-play-icon {
    position: absolute;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.video-card:hover .video-play-icon {
    transform: scale(1.1);
    background: white;
}

.video-duration {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.video-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Platforms Section */
.platforms-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.platforms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="waves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 0 50 Q 25 30, 50 50 T 100 50" fill="none" stroke="rgba(37,99,235,0.05)" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.platforms-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.platforms-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.platforms-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.platform-item {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.platform-header-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 1.5rem;
}

.platform-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.platform-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.platform-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.platform-chevron {
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.platform-item.active .platform-chevron {
    transform: rotate(180deg);
}

.platform-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.platform-item.active .platform-content {
    max-height: 500px;
}

.platform-description {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.9375rem;
    margin: 0;
    padding-left: calc(2rem + 48px + 1rem);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-link:hover {
    gap: 1rem;
}

/* Why Choose MasterTrust Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text {
    max-width: 100%;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.underline-text {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    text-decoration-color: var(--primary-color);
}

.why-choose-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-blue {
    background: var(--primary-color) !important;
    color: white !important;
}

.btn-blue:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.stat-icon-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.stat-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.stat-icon-yellow {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: white;
}

.stat-stars {
    position: absolute;
    top: -6px;
    right: -6px;
    display: flex;
    gap: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.stat-plus {
    position: absolute;
    top: -6px;
    right: -6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-stars-above {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 6px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Resources Section */
.resources {
    padding: 6rem 0;
    background: var(--bg-white);
}

/* Platform Tutorials Section */
.platform-tutorials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.platform-tutorials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1.5" fill="rgba(37,99,235,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.platform-tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.platform-tutorial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.platform-tutorial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.platform-tutorial-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.platform-tutorial-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.platform-tutorial-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex: 1;
}

.platform-tutorial-topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.platform-tutorial-topics li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 500;
}

.platform-tutorial-topics li svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.platform-tutorial-btn {
    align-self: flex-start;
    margin-top: auto;
}

.platform-tutorials-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.platform-tutorials-cta .btn-primary {
    border: 2px solid var(--primary-color);
}

.platform-tutorials-note {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Platform Tutorials Page */
.platform-tutorials-page {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
}

.platform-tab-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.platform-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-tab:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

#tab-agnik:checked ~ label[for="tab-agnik"],
#tab-masterswift:checked ~ label[for="tab-masterswift"],
#tab-masterweb:checked ~ label[for="tab-masterweb"] {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.platform-tab svg {
    flex-shrink: 0;
}

.platform-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

/* Show content based on checked radio button using general sibling combinator */
#tab-agnik:checked ~ .platform-content#agnik {
    display: block !important;
}

#tab-masterswift:checked ~ .platform-content#masterswift {
    display: block !important;
}

#tab-masterweb:checked ~ .platform-content#masterweb {
    display: block !important;
}

.platform-intro {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.platform-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.platform-intro-text {
    flex: 1;
}

.platform-intro-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.platform-intro-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tutorial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tutorial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tutorial-card:hover::before {
    transform: scaleY(1);
}

.tutorial-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.tutorial-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-right: 3rem;
}

.tutorial-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.tutorial-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tutorial-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-left: 0;
    position: relative;
}

.tutorial-steps li::before {
    content: '→';
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.cta-title-small {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Platform Tutorials Content Page */
.platform-tutorials-content {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
}

.platform-branding {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: 20px;
}

.platform-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
}

.platform-branding-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.platform-branding-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.platform-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.platform-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.platform-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.platform-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.platform-card-title-area {
    flex: 1;
}

.platform-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.platform-card-subtitle {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

.platform-card-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.platform-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.platform-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.platform-step:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.platform-features {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.features-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.features-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.platform-resources {
    margin-bottom: 4rem;
}

.resources-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.resource-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.resource-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 0.75rem;
}

.platform-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
}

.platform-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.platform-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.platform-cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.platform-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.platform-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Agnik Steps Section */
.agnik-steps-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    display: block !important;
    width: 100%;
    overflow: visible;
}

.agnik-steps-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.agnik-steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.agnik-app-preview {
    position: sticky;
    top: 100px;
}

.app-mockup {
    position: relative;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-annotations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.annotation {
    position: absolute;
    pointer-events: all;
    cursor: pointer;
}

.annotation-dot {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

.annotation-line {
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.6;
    z-index: 1;
}

.annotation-popup {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    min-width: 200px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.annotation:hover .annotation-popup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.annotation-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.annotation-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.annotation-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Annotation positions - adjust based on image */
.annotation-1 {
    top: 15%;
    left: 20%;
}

.annotation-1 .annotation-line {
    height: 60px;
    top: 24px;
    left: 11px;
}

.annotation-1 .annotation-popup {
    top: 90px;
    left: -50px;
}

.annotation-2 {
    top: 25%;
    right: 15%;
}

.annotation-2 .annotation-line {
    height: 50px;
    top: 24px;
    left: 11px;
}

.annotation-2 .annotation-popup {
    top: 80px;
    right: -50px;
}

.annotation-3 {
    top: 50%;
    left: 30%;
}

.annotation-3 .annotation-line {
    height: 40px;
    top: 24px;
    left: 11px;
}

.annotation-3 .annotation-popup {
    top: 70px;
    left: -60px;
}

.annotation-4 {
    bottom: 25%;
    left: 20%;
}

.annotation-4 .annotation-line {
    height: 50px;
    bottom: 24px;
    left: 11px;
}

.annotation-4 .annotation-popup {
    bottom: 80px;
    left: -50px;
}

.annotation-5 {
    bottom: 20%;
    right: 25%;
}

.annotation-5 .annotation-line {
    height: 40px;
    bottom: 24px;
    left: 11px;
}

.annotation-5 .annotation-popup {
    bottom: 70px;
    right: -60px;
}

.agnik-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateX(8px);
}

.step-item.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.step-item-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
}

.step-item.active .step-item-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.step-item-content {
    flex: 1;
}

.step-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-item.active .step-item-title {
    color: var(--primary-color);
}

.step-item-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.resource-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resource-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.meta-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Floating AI Assistant Button */
.ai-assistant-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: fabFloat 3s ease-in-out infinite;
}

.ai-assistant-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.ai-assistant-fab:active {
    transform: scale(0.95);
}

.ai-assistant-fab svg {
    position: relative;
    z-index: 2;
}

.fab-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.3);
    animation: fabPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes fabFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes fabPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* AI Chat Modal */
.ai-chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.ai-chat-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.ai-chat-modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.ai-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ai-chat-header-text {
    flex: 1;
}

.ai-chat-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
}

.ai-chat-subtitle {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.ai-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 300px;
    max-height: calc(85vh - 200px);
}

.ai-chat-welcome {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.ai-chat-welcome-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.ai-chat-welcome-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.ai-chat-welcome-text {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.ai-chat-message {
    display: flex;
    gap: 0.75rem;
    animation: slideIn 0.3s ease;
}

.ai-chat-message.user {
    flex-direction: row-reverse;
}

.ai-chat-message-bubble {
    max-width: 75%;
    padding: 0.875rem 1.125rem;
    border-radius: 16px;
    font-size: 0.9375rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.ai-chat-message.user .ai-chat-message-bubble {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-bottom-right-radius: 4px;
}

.ai-chat-message.ai .ai-chat-message-bubble {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 4px;
}

.ai-chat-input-area {
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.ai-chat-suggestions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.ai-suggestion-btn {
    padding: 0.5rem 0.875rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.ai-suggestion-btn:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.ai-chat-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.ai-chat-input {
    flex: 1;
    padding: 0.875rem 1.125rem;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.ai-chat-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ai-chat-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ai-chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.ai-chat-send:active {
    transform: scale(0.95);
}

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

/* Blogs Page Styles */
.blogs-page-section {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.blog-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    overflow: hidden;
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.3;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blogs-load-more {
    text-align: center;
    margin-top: 3rem;
}

/* Blogs Section on Home Page */
.blogs-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.blogs-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-preview-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-preview-image {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    overflow: hidden;
}

.blog-preview-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.3;
}

.blog-preview-content {
    padding: 1.5rem;
}

.blog-preview-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-preview-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-preview-excerpt {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-preview-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-preview-link:hover {
    gap: 0.75rem;
}

.blogs-section-cta {
    text-align: center;
}

/* Blog Post Page */
.blog-post-page {
    padding: 4rem 0 6rem;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.blog-post-main {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-category {
    margin-bottom: 1rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-post-date-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-post-featured-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.blog-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    opacity: 0.3;
}

.blog-featured-placeholder p {
    margin-top: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

.blog-post-content {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

.blog-post-intro {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-post-content h2:first-of-type {
    margin-top: 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog-post-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Blog Post Sidebar */
.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.author-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.author-card-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
}

.author-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-card-role {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.author-card-bio {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.related-articles {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.related-articles-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.related-article-item {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.related-article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-article-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.related-article-link:hover {
    color: var(--primary-color);
}

.related-article-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.related-article-link:hover .related-article-title {
    color: var(--primary-color);
}

.related-article-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Topic Page Styles */
.topic-page {
    padding: 4rem 0;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.topic-page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.topic-main-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb span {
    color: var(--text-light);
}

.topic-header {
    margin-bottom: 2rem;
}

.topic-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.topic-page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    flex-wrap: wrap;
    border-top: 2px solid var(--border-color);
}

.share-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.share-btn svg {
    flex-shrink: 0;
}

.share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.share-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

.share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.share-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.share-copy:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.topic-video-section {
    margin-bottom: 3rem;
}

.topic-audio-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.audio-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.audio-section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

.audio-players {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audio-player-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.audio-player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.audio-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.audio-info {
    flex: 1;
}

.audio-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.audio-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.audio-controls {
    width: 100%;
    height: 48px;
    margin-top: 1rem;
    border-radius: 8px;
    outline: none;
}

.audio-controls::-webkit-media-controls-panel {
    background-color: var(--bg-light);
    border-radius: 8px;
}

.audio-controls::-webkit-media-controls-play-button {
    background-color: var(--primary-color);
    border-radius: 50%;
}

.audio-controls::-webkit-media-controls-current-time-display,
.audio-controls::-webkit-media-controls-time-remaining-display {
    color: var(--text-dark);
    font-weight: 500;
}

.video-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.8);
}

.video-placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.6;
}

.video-placeholder p {
    font-size: 1rem;
    font-weight: 500;
}

.topic-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.topic-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.topic-content h2:first-of-type {
    margin-top: 0;
}

.topic-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.topic-content ol,
.topic-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.topic-content li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.topic-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Quiz Section */
.quiz-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.quiz-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.quiz-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quiz-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.quiz-question {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.question-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover:not(.correct):not(.wrong):not(.not-selected-correct) {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.quiz-option:has(input[type="radio"]:disabled):hover {
    border-color: inherit;
    background: inherit;
}

.quiz-option input[type="radio"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.quiz-option input[type="radio"]:checked + .option-label {
    color: var(--primary-color);
    font-weight: 600;
}

.quiz-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
}

.quiz-option.correct {
    border-color: var(--secondary-color) !important;
    background: rgba(16, 185, 129, 0.1) !important;
    position: relative;
}

.quiz-option.correct::after {
    content: '✓ Correct';
    position: absolute;
    right: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.quiz-option.wrong {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
    position: relative;
}

.quiz-option.wrong::after {
    content: '✗ Wrong';
    position: absolute;
    right: 1rem;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.875rem;
}

.quiz-option.not-selected-correct {
    border-color: var(--secondary-color) !important;
    background: rgba(16, 185, 129, 0.05) !important;
    position: relative;
}

.quiz-option.not-selected-correct::after {
    content: 'Correct Answer';
    position: absolute;
    right: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.quiz-option input[type="radio"]:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.option-label {
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    flex: 1;
}

.quiz-option.correct .option-label,
.quiz-option.not-selected-correct .option-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.quiz-option.wrong .option-label {
    color: #ef4444;
    font-weight: 600;
}

.quiz-submit-btn {
    align-self: flex-start;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: none !important;
}

.quiz-submit-btn:hover:not(:disabled) {
    background: white !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

.quiz-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Sidebar Styles */
.topic-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-branding {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    color: var(--text-dark);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.branding-header h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mastertrust-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.mastertrust-logo-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.branding-tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.branding-cta {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

.branding-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.topic-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-topic-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-topic-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-topic-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.nav-topic-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.nav-topic-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.nav-topic-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.nav-topic-link:hover {
    gap: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-assistant-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ai-assistant-title {
        font-size: 2.25rem;
    }

    .ai-assistant-description {
        font-size: 1rem;
    }

    .ai-assistant-visual {
        height: 400px;
    }

    .ai-chat-bubble {
        max-width: 240px;
        padding: 1rem 1.25rem;
    }

    .avatar-circle {
        width: 64px;
        height: 64px;
    }

    .avatar-pulse {
        width: 64px;
        height: 64px;
    }

    .ai-cta-buttons {
        flex-direction: column;
    }

    .btn-ai-chat,
    .btn-ai-learn {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    .why-choose-description {
        font-size: 1rem;
    }

    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .platforms-title {
        font-size: 2.25rem;
    }

    .platforms-subtitle {
        font-size: 1.125rem;
    }

    .platform-header-btn {
        padding: 1.25rem 1.5rem;
    }

    .platform-description {
        padding-left: calc(1.5rem + 48px + 1rem);
        padding-right: 1.5rem;
    }

    .features-grid,
    .resources-grid,
    .platform-tutorials-grid,
    .tutorials-grid {
        grid-template-columns: 1fr;
    }

    .platform-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-tab {
        width: 100%;
        justify-content: center;
    }

    .platform-intro {
        padding: 1.5rem;
    }

    .platform-intro-title {
        font-size: 1.5rem;
    }

    .platform-intro-description {
        font-size: 0.9375rem;
    }

    .agnik-steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .agnik-app-preview {
        position: static;
    }

    .app-mockup {
        padding: 1.5rem;
    }

    .annotation-popup {
        min-width: 180px;
        padding: 0.875rem 1rem;
    }

    .annotation-content h4 {
        font-size: 0.9375rem;
    }

    .annotation-content p {
        font-size: 0.8125rem;
    }

    .step-item {
        padding: 1.25rem;
        gap: 1rem;
    }

    .step-item-number {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .step-item-title {
        font-size: 1.125rem;
    }

    .step-item-description {
        font-size: 0.875rem;
    }

    .demat-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .demat-title {
        font-size: 1.75rem;
    }

    .demat-subtitle {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .topic-page-layout,
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .topic-sidebar,
    .blog-post-sidebar {
        position: static;
        order: -1;
    }

    .blog-post-main {
        padding: 2rem;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-post-featured-image {
        height: 300px;
    }

    .blog-post-intro {
        font-size: 1.125rem;
        padding: 1.25rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }

    .topic-main-content,
    .blog-post-main {
        padding: 2rem;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-featured-image {
        height: 250px;
    }

    .blog-post-intro {
        font-size: 1rem;
        padding: 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.25rem;
    }

    .blog-post-content {
        font-size: 0.9375rem;
    }

    .author-card,
    .related-articles {
        padding: 1.5rem;
    }

    .topic-page-title {
        font-size: 2rem;
    }

    .topic-content h2 {
        font-size: 1.5rem;
    }

    .share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .share-buttons {
        width: 100%;
        gap: 0.5rem;
    }

    .share-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        justify-content: center;
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
    }

    .quiz-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .quiz-title {
        font-size: 1.5rem;
    }

    .quiz-question {
        padding: 1.5rem;
    }

    .question-title {
        font-size: 1.125rem;
    }

    .topic-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .topic-btn {
        width: 100%;
        text-align: center;
    }

    .topics-actions {
        margin-bottom: 1.5rem;
    }

    .btn-export-pdf {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-toggles {
        gap: 0.75rem;
    }

    .video-toggle-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .category-title {
        font-size: 1.75rem;
    }

    .platform-branding {
        padding: 2rem 1.5rem;
    }

    .platform-logo {
        max-width: 200px;
    }

    .platform-branding-title {
        font-size: 2rem;
    }

    .platform-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platform-card {
        padding: 2rem;
    }

    .platform-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .platform-card-icon {
        width: 64px;
        height: 64px;
    }

    .platform-card-title {
        font-size: 1.5rem;
    }

    .platform-step {
        padding: 1rem;
        gap: 1rem;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .resources-title {
        font-size: 2rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .platform-cta {
        padding: 3rem 2rem;
    }

    .platform-cta-title {
        font-size: 2rem;
    }

    .platform-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .ai-assistant-section {
        padding: 4rem 0;
    }

    .ai-assistant-title {
        font-size: 1.75rem;
    }

    .ai-assistant-description {
        font-size: 0.9375rem;
    }

    .ai-feature-icon {
        width: 40px;
        height: 40px;
    }

    .ai-feature-title {
        font-size: 1rem;
    }

    .ai-feature-desc {
        font-size: 0.875rem;
    }

    .ai-assistant-visual {
        height: 350px;
    }

    .ai-chat-bubble {
        max-width: 200px;
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .avatar-circle {
        width: 56px;
        height: 56px;
    }

    .avatar-pulse {
        width: 56px;
        height: 56px;
    }

    .ai-chat-modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }

    .ai-chat-header {
        padding: 1.25rem;
    }

    .ai-chat-avatar {
        width: 36px;
        height: 36px;
    }

    .ai-chat-title {
        font-size: 1rem;
    }

    .ai-chat-subtitle {
        font-size: 0.8125rem;
    }

    .ai-chat-messages {
        padding: 1rem;
        min-height: 250px;
        max-height: calc(90vh - 180px);
    }

    .ai-chat-welcome {
        padding: 1.5rem 1rem;
    }

    .ai-chat-welcome-icon {
        width: 56px;
        height: 56px;
    }

    .ai-chat-welcome-title {
        font-size: 1.125rem;
    }

    .ai-chat-welcome-text {
        font-size: 0.875rem;
    }

    .ai-chat-input-area {
        padding: 0.875rem 1rem;
    }

    .ai-chat-suggestions {
        margin-bottom: 0.5rem;
    }

    .ai-suggestion-btn {
        padding: 0.4375rem 0.75rem;
        font-size: 0.75rem;
    }

    .ai-chat-input {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .ai-chat-send {
        width: 40px;
        height: 40px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .features,
    .resources,
    .cta,
    .demat-section,
    .topics-section,
    .platforms-section,
    .why-choose-section,
    .platform-tutorials-section {
        padding: 4rem 0;
    }

    .why-choose-title {
        font-size: 1.75rem;
    }

    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .platform-branding {
        padding: 1.5rem 1rem;
    }

    .platform-logo {
        max-width: 150px;
    }

    .platform-branding-title {
        font-size: 1.75rem;
    }

    .platform-branding-subtitle {
        font-size: 1rem;
    }

    .platform-card {
        padding: 1.5rem;
    }

    .platform-card-icon {
        width: 56px;
        height: 56px;
    }

    .platform-card-title {
        font-size: 1.25rem;
    }

    .platform-step {
        padding: 0.875rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9375rem;
    }

    .platform-cta {
        padding: 2rem 1.5rem;
    }

    .platform-cta-title {
        font-size: 1.75rem;
    }

    .resources-title {
        font-size: 1.75rem;
    }

    .blogs-section {
        padding: 4rem 0;
    }

    .blogs-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-preview-image {
        height: 160px;
    }

    .blog-preview-content {
        padding: 1.25rem;
    }

    .blog-preview-title {
        font-size: 1.125rem;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blog-filters {
        gap: 0.75rem;
    }

    .blog-filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .ai-assistant-fab {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .ai-assistant-fab svg {
        width: 20px;
        height: 20px;
    }

    .fab-pulse {
        width: 56px;
        height: 56px;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .platforms-title {
        font-size: 2rem;
    }

    .platforms-subtitle {
        font-size: 1rem;
    }

    .platform-header-btn {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .platform-header-content {
        gap: 0.75rem;
    }

    .platform-icon {
        width: 40px;
        height: 40px;
    }

    .platform-title {
        font-size: 1.125rem;
    }

    .platform-description {
        padding-left: calc(1.25rem + 40px + 0.75rem);
        padding-right: 1.25rem;
        padding-bottom: 1.25rem;
        font-size: 0.875rem;
    }

    .topic-main-content {
        padding: 1.5rem;
    }

    .topic-page-title {
        font-size: 1.75rem;
    }

    .topic-content h2 {
        font-size: 1.25rem;
    }

    .topic-audio-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .audio-section-title {
        font-size: 1.25rem;
    }

    .audio-player-card {
        padding: 1.25rem;
    }

    .audio-player-header {
        gap: 0.75rem;
    }

    .audio-icon {
        width: 40px;
        height: 40px;
    }

    .audio-title {
        font-size: 1rem;
    }

    .audio-description {
        font-size: 0.8125rem;
    }

    .audio-controls {
        height: 40px;
    }

    .share-btn {
        font-size: 0.75rem;
        padding: 0.4375rem 0.625rem;
    }

    .share-btn svg {
        width: 16px;
        height: 16px;
    }

    .quiz-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .quiz-title {
        font-size: 1.25rem;
    }

    .quiz-question {
        padding: 1.25rem;
    }

    .question-title {
        font-size: 1rem;
    }

    .quiz-option {
        padding: 0.875rem 1rem;
    }

    .option-label {
        font-size: 0.9375rem;
    }

    .sidebar-branding {
        padding: 1.5rem;
    }

    .demat-content {
        padding: 1.5rem;
    }

    .demat-title {
        font-size: 1.5rem;
    }

    .btn-demat {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        max-width: none;
    }

    .modal-body {
        padding: 2.5rem 1.75rem 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-text {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .modal-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .modal-features {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .modal-features li {
        font-size: 0.875rem;
        padding-left: 1.75rem;
    }

    .topic-card {
        padding: 1.25rem;
    }

    .video-toggle-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .video-info {
        padding: 1.25rem;
    }

    .topic-title {
        font-size: 1.125rem;
    }

    .topic-description {
        font-size: 0.875rem;
    }

    .platform-tutorial-card {
        padding: 2rem;
    }

    .platform-tutorial-title {
        font-size: 1.25rem;
    }

    .platform-tutorial-description {
        font-size: 0.9375rem;
    }

    .platform-tutorials-cta {
        padding: 2rem;
    }

    .platform-tutorials-note {
        font-size: 1rem;
    }

    .agnik-steps-section {
        margin: 3rem 0;
        padding: 2rem 0;
    }

    .agnik-steps-container {
        gap: 1.5rem;
    }

    .app-mockup {
        padding: 1rem;
    }

    .annotation-dot {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .annotation-popup {
        min-width: 160px;
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .annotation-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .step-item {
        padding: 1rem;
        gap: 0.875rem;
    }

    .step-item-number {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .step-item-title {
        font-size: 1rem;
    }

    .step-item-description {
        font-size: 0.8125rem;
    }

    .platform-tabs {
        gap: 0.75rem;
    }

    .platform-tab {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .platform-intro {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .platform-intro-icon {
        width: 64px;
        height: 64px;
    }

    .platform-intro-title {
        font-size: 1.75rem;
    }

    .platform-intro-description {
        font-size: 1rem;
    }

    .tutorials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tutorial-card {
        padding: 1.5rem;
    }

    .tutorial-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .tutorial-title {
        font-size: 1.25rem;
        padding-right: 2.5rem;
    }

    .tutorial-description {
        font-size: 0.9375rem;
    }

    .cta-title-small {
        font-size: 1.5rem;
    }
}

